Nodle
subscan
Runtime Modules / Contracts
Spec Version:
Events
Name
Lookup
Attributes
Instantiated3e00["AccountId","AccountId"]
Terminated3e01["AccountId","AccountId"]
CodeStored3e02["Hash"]
ContractEmitted3e03["AccountId","Bytes"]
CodeRemoved3e04["Hash"]
ContractCodeUpdated3e05["AccountId","Hash","Hash"]
Called3e06["Origin","AccountId"]
DelegateCalled3e07["AccountId","CodeHash"]
Storage Functions
Name
Type
PristineCode{"origin":"Map","n_map_type":{"hashers":["Identity"],"key_vec":["H256"],"value":"Vec<U8>","keys_id":12,"value_id":427}}
CodeInfoOf{"origin":"Map","n_map_type":{"hashers":["Identity"],"key_vec":["H256"],"value":"pallet_contracts:wasm:CodeInfo","keys_id":12,"value_id":428}}
Nonce{"origin":"PlainType","plain_type":"U64","PlainTypeValue":11}
ContractInfoOf{"origin":"Map","n_map_type":{"hashers":["Twox64Concat"],"key_vec":["AccountId"],"value":"pallet_contracts:storage:ContractInfo","keys_id":0,"value_id":429}}
DeletionQueue{"origin":"Map","n_map_type":{"hashers":["Twox64Concat"],"key_vec":["U32"],"value":"Vec<U8>","keys_id":4,"value_id":300}}
DeletionQueueCounter{"origin":"PlainType","plain_type":"pallet_contracts:storage:DeletionQueueManager","PlainTypeValue":431}
MigrationInProgress{"origin":"PlainType","plain_type":"Vec<U8>","PlainTypeValue":432}
Constants
Name
Type
Value
Schedulepallet_contracts:schedule:Schedule040000000001000000040000800000001000000000100000000100002000000000400000000000087e3c0000be252400001e45150700d6426b0700aeeb2f0000c6360d000082020c0000ea7624000092dc2600008606a50000ce142400001617240000daf7230000c6802300002e917e0000be5a1a00001909005e908d0000a90500038a27654200c239c00000aeda6001003e54af1e00fd0b009a36110000cd0e0042bd861f008d0900d90500faa559490032ff7e1f00b105009e915e07003d02006a9c6b0700a50d00d6cd8c1f00c10e00ce9c582c005e238b8500b63b2c73002a13634a0029090003295e88450002d4863500311e00311f00d666210000f11400fa4e370000a93400c23d260000591a0022e7250000711a00320c4b0a00f6c6b002003e1a2b0e005d65007ea80d0000a65d110000aa680b0000
DepositPerByteU12800879303000000000000000000000000
DefaultDepositLimitU128000046335c3900000000000000000000
DepositPerItemU12880d1f008000000000000000000000000
MaxCodeLenU3200ec0100
MaxStorageKeyLenU3280000000
UnsafeUnstableInterfaceBool00
MaxDebugBufferLenU3200002000
Error Types
Name
Docs
InvalidScheduleInvalid schedule supplied, e.g. with zero weight of a basic operation.
InvalidCallFlagsInvalid combination of flags supplied to `seal_call` or `seal_delegate_call`.
OutOfGasThe executed contract exhausted its gas limit.
OutputBufferTooSmallThe output buffer supplied to a contract API call was too small.
TransferFailedPerforming the requested transfer failed. Probably because there isn't enoughfree balance in the sender's account.
MaxCallDepthReachedPerforming a call was denied because the calling depth reached the limitof what is specified in the schedule.
ContractNotFoundNo contract was found at the specified address.
CodeTooLargeThe code supplied to `instantiate_with_code` exceeds the limit specified in thecurrent schedule.
CodeNotFoundNo code could be found at the supplied code hash.
CodeInfoNotFoundNo code info could be found at the supplied code hash.
OutOfBoundsA buffer outside of sandbox memory was passed to a contract API function.
DecodingFailedInput passed to a contract API function failed to decode as expected type.
ContractTrappedContract trapped during execution.
ValueTooLargeThe size defined in `T::MaxValueSize` was exceeded.
TerminatedWhileReentrantTermination of a contract is not allowed while the contract is alreadyon the call stack. Can be triggered by `seal_terminate`.
InputForwarded`seal_call` forwarded this contracts input. It therefore is no longer available.
RandomSubjectTooLongThe subject passed to `seal_random` exceeds the limit.
TooManyTopicsThe amount of topics passed to `seal_deposit_events` exceeds the limit.
NoChainExtensionThe chain does not provide a chain extension. Calling the chain extension resultsin this error. Note that this usually shouldn't happen as deploying such contractsis rejected.
DuplicateContractA contract with the same AccountId already exists.
TerminatedInConstructorA contract self destructed in its constructor.This can be triggered by a call to `seal_terminate`.
ReentranceDeniedA call tried to invoke a contract that is flagged as non-reentrant.The only other cause is that a call from a contract into the runtime tried to call backinto `pallet-contracts`. This would make the whole pallet reentrant with regard tocontract code execution which is not supported.
StorageDepositNotEnoughFundsOrigin doesn't have enough balance to pay the required storage deposits.
StorageDepositLimitExhaustedMore storage was created than allowed by the storage deposit limit.
CodeInUseCode removal was denied because the code is still in use by at least one contract.
ContractRevertedThe contract ran to completion but decided to revert its storage changes.Please note that this error is only returned from extrinsics. When called directlyor via RPC an `Ok` will be returned. In this case the caller needs to inspect the flagsto determine whether a reversion has taken place.
CodeRejectedThe contract's code was found to be invalid during validation.The most likely cause of this is that an API was used which is not supported by thenode. This happens if an older node is used with a new version of ink!. Try updatingyour node to the newest available version.A more detailed error can be found on the node console if debug messages are enabledby supplying `-lruntime::contracts=debug`.
IndeterministicAn indetermistic code was used in a context where this is not permitted.
MigrationInProgressA pending migration needs to complete before the extrinsic can be called.
NoMigrationPerformedMigrate dispatch call was attempted but no migration was performed.