Name | Lookup | Parameters | |
|---|---|---|---|
| upload_code | 6800 | 1 | |
| upload_program | 6801 | 5 | |
| create_program | 6802 | 5 | |
| send_message | 6803 | 5 | |
| send_reply | 6804 | 5 | |
| claim_value | 6805 | 1 | |
| run | 6806 | 1 | |
| set_execute_inherent | 6807 | 1 | |
| pay_program_rent | 6808 | 2 | |
| resume_session_init | 6809 | 3 | |
| resume_session_push | 680a | 2 | |
| resume_session_commit | 680b | 2 |
Name | Lookup | Attributes | |
|---|---|---|---|
| MessageQueued | 6800 | ["MessageId","AccountId","ProgramId","MessageEntry"] | |
| UserMessageSent | 6801 | ["UserMessage","Option<BlockNumber>"] | |
| UserMessageRead | 6802 | ["MessageId","UserMessageReadReason"] | |
| MessagesDispatched | 6803 | ["MessengerCapacityOf","BTreeMap<MessageId, DispatchStatus>","BTreeSet<ProgramId>"] | |
| MessageWaited | 6804 | ["MessageId","Option<GasNodeId<MessageId, ReservationId>>","MessageWaitedReason","BlockNumber"] | |
| MessageWoken | 6805 | ["MessageId","MessageWokenReason"] | |
| CodeChanged | 6806 | ["CodeId","CodeChangeKind<BlockNumber>"] | |
| ProgramChanged | 6807 | ["ProgramId","ProgramChangeKind<BlockNumber>"] | |
| QueueNotProcessed | 6808 | ||
| ProgramResumeSessionStarted | 6809 | ["SessionId","AccountId","ProgramId","BlockNumber"] |
Name | Type | |
|---|---|---|
| ExecuteInherent | {"origin":"PlainType","plain_type":"Bool","PlainTypeValue":52} | |
| BlockNumber | {"origin":"PlainType","plain_type":"U32","PlainTypeValue":4} | |
| GearRunInBlock | {"origin":"PlainType","plain_type":"NULL","PlainTypeValue":58} |
Name | Type | Value | |
|---|---|---|---|
| Schedule | pallet_gear:schedule:Schedule | 01204e000000010000000400008000000000020010000000010000200000002000000000008000000008000a000000d0000000132d00003c290000f84b00006d460000901c0000611800003a0c00001916000024290000560100004b110000494b00000509000000000000f5020000700700000307000048060000dd0a0000c137000050190000aa17000021180000261400001f040000b8020000280e000039080000f20200001703000038030000890300005f030000e102000061010000a9000000810d0000ed070000170d0000c00700000b0d0000e3070000a80d0000db070000c00d0000460800004c0d000031070000320d00002b070000d00c000090070000ba0c0000fe070000650d0000bd0700006d0800006a0300000008000053030000420c0000c3070000181000006d0f0000f4130000221100001a470000113900007815000080120000b3080000c3030000310800001e0300002108000019030000c2060000050300000c070000100300006507000004030000970600006d0300009b0600005e030000e2a5b201007a6f160000ca08300000ba8e9400007289790000b6d84a00008a4e4100003a03420000567601000016d9480000f2614100001e904000005a56410000865440000032fb710000810200966a4600000ad7400000164f8300003285c0010032c3c40000190400bec1c8000011040092e7460000fe34780000a1050092e3a300006e52a60000fa9bca0000210400e666b100005adbf70400c60ad003004e35a502007add190000a6d34301008a1d6f00001acc030400950600b678e50400950600c5090076894100004e674100005e7c3805000000fefb5200005902000a56d200009aeed800003e496200005d02004a89570000e90400e2803f0000da70a505002a71e80200aa02230300b2ab550300ea7aea02001ebc77000082650201007501002922007a390801006d01002d22005ab9e40600220955080086146602003ee51207004eb31b0800a2ab5b020082a55802004244a818009101003af73800000000c52500410300850a00a2a19d43ed3c0a7b030000 | |
| OutgoingLimit | U32 | 00040000 | |
| MailboxThreshold | U64 | b80b000000000000 | |
| ReservationsLimit | U64 | 0001000000000000 | |
| ProgramRentFreePeriod | U32 | 00d44900 | |
| ProgramResumeMinimalRentPeriod | U32 | 004e0c00 | |
| ProgramRentCostPerBlock | U128 | 40597307000000000000000000000000 | |
| ProgramResumeSessionDuration | U32 | b0040000 | |
| ProgramRentEnabled | Bool | 00 | |
| ProgramRentDisabledDelta | U32 | 80130300 |
Name | Docs |
|---|---|
| MessageNotFound | Message wasn't found in the mailbox. |
| InsufficientBalance | Not enough balance to execute an action.Usually occurs when the gas_limit specified is such that the origin account can't afford the message. |
| GasLimitTooHigh | Gas limit too high.Occurs when an extrinsic's declared `gas_limit` is greater than a block's maximum gas limit. |
| ProgramAlreadyExists | Program already exists.Occurs if a program with some specific program id already exists in program storage. |
| InactiveProgram | Program is terminated.Program init failed, so such message destination is no longer unavailable. |
| NoMessageTree | Message gas tree is not found.When a message claimed from the mailbox has a corrupted or non-extant gas tree associated. |
| CodeAlreadyExists | Code already exists.Occurs when trying to save to storage a program code that has been saved there. |
| CodeDoesntExist | Code does not exist.Occurs when trying to get a program code from storage, that doesn't exist. |
| CodeTooLarge | The code supplied to `upload_code` or `upload_program` exceeds the limit specified in thecurrent schedule. |
| ProgramConstructionFailed | Failed to create a program. |
| ValueLessThanMinimal | Value doesn't cover ExistentialDeposit. |
| MessageQueueProcessingDisabled | Message queue processing is disabled. |
| ResumePeriodLessThanMinimal | Block count doesn't cover MinimalResumePeriod. |
| ProgramNotFound | Program with the specified id is not found. |
| FailureRedeemingVoucher | Voucher can't be redeemed |
| GearRunAlreadyInBlock | Gear::run() already included in current block. |
| ProgramRentDisabled | The program rent logic is disabled. |