System¶
Calls¶
kill_prefix¶
See [Pallet::kill_prefix
].
Attributes¶
Name | Type |
---|---|
prefix | Key |
subkeys | u32 |
Python¶
call = substrate.compose_call(
'System', 'kill_prefix', {'prefix': 'Bytes', 'subkeys': 'u32'}
)
kill_storage¶
See [Pallet::kill_storage
].
Attributes¶
Name | Type |
---|---|
keys | Vec<Key> |
Python¶
call = substrate.compose_call(
'System', 'kill_storage', {'keys': ['Bytes']}
)
remark¶
See [Pallet::remark
].
Attributes¶
Name | Type |
---|---|
remark | Vec<u8> |
Python¶
call = substrate.compose_call(
'System', 'remark', {'remark': 'Bytes'}
)
remark_with_event¶
See [Pallet::remark_with_event
].
Attributes¶
Name | Type |
---|---|
remark | Vec<u8> |
Python¶
call = substrate.compose_call(
'System', 'remark_with_event', {'remark': 'Bytes'}
)
set_code¶
See [Pallet::set_code
].
Attributes¶
Name | Type |
---|---|
code | Vec<u8> |
Python¶
call = substrate.compose_call(
'System', 'set_code', {'code': 'Bytes'}
)
set_code_without_checks¶
See [Pallet::set_code_without_checks
].
Attributes¶
Name | Type |
---|---|
code | Vec<u8> |
Python¶
call = substrate.compose_call(
'System', 'set_code_without_checks', {'code': 'Bytes'}
)
set_heap_pages¶
See [Pallet::set_heap_pages
].
Attributes¶
Name | Type |
---|---|
pages | u64 |
Python¶
call = substrate.compose_call(
'System', 'set_heap_pages', {'pages': 'u64'}
)
set_storage¶
See [Pallet::set_storage
].
Attributes¶
Name | Type |
---|---|
items | Vec<KeyValue> |
Python¶
call = substrate.compose_call(
'System', 'set_storage', {'items': [('Bytes', 'Bytes')]}
)
Events¶
CodeUpdated¶
:code
was updated.
Attributes¶
No attributes
ExtrinsicFailed¶
An extrinsic failed.
Attributes¶
Name | Type | Composition |
---|---|---|
dispatch_error | DispatchError |
{'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('FundsUnavailable', 'OnlyProvider', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported', 'CannotCreateHold', 'NotExpendable', 'Blocked'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None, 'RootNotAllowed': None} |
dispatch_info | DispatchInfo |
{'weight': {'ref_time': 'u64', 'proof_size': 'u64'}, 'class': ('Normal', 'Operational', 'Mandatory'), 'pays_fee': ('Yes', 'No')} |
ExtrinsicSuccess¶
An extrinsic completed successfully.
Attributes¶
Name | Type | Composition |
---|---|---|
dispatch_info | DispatchInfo |
{'weight': {'ref_time': 'u64', 'proof_size': 'u64'}, 'class': ('Normal', 'Operational', 'Mandatory'), 'pays_fee': ('Yes', 'No')} |
KilledAccount¶
An account was reaped.
Attributes¶
Name | Type | Composition |
---|---|---|
account | T::AccountId |
AccountId |
NewAccount¶
A new account was created.
Attributes¶
Name | Type | Composition |
---|---|---|
account | T::AccountId |
AccountId |
Remarked¶
On on-chain remark happened.
Attributes¶
Name | Type | Composition |
---|---|---|
sender | T::AccountId |
AccountId |
hash | T::Hash |
scale_info::12 |
Storage functions¶
Account¶
The full account information for a particular account ID.
Python¶
result = substrate.query(
'System', 'Account', ['AccountId']
)
Return value¶
{
'consumers': 'u32',
'data': {
'flags': 'u128',
'free': 'u128',
'frozen': 'u128',
'reserved': 'u128',
},
'nonce': 'u32',
'providers': 'u32',
'sufficients': 'u32',
}
AllExtrinsicsLen¶
Total length (in bytes) for all extrinsics put together, for the current block.
Python¶
result = substrate.query(
'System', 'AllExtrinsicsLen', []
)
Return value¶
'u32'
BlockHash¶
Map of block numbers to block hashes.
Python¶
result = substrate.query(
'System', 'BlockHash', ['u32']
)
Return value¶
'scale_info::12'
BlockWeight¶
The current weight for the block.
Python¶
result = substrate.query(
'System', 'BlockWeight', []
)
Return value¶
{
'mandatory': {'proof_size': 'u64', 'ref_time': 'u64'},
'normal': {'proof_size': 'u64', 'ref_time': 'u64'},
'operational': {'proof_size': 'u64', 'ref_time': 'u64'},
}
Digest¶
Digest of the current block, also part of the block header.
Python¶
result = substrate.query(
'System', 'Digest', []
)
Return value¶
{
'logs': [
{
'Other': 'Bytes',
None: None,
'Consensus': ('[u8; 4]', 'Bytes'),
'PreRuntime': ('[u8; 4]', 'Bytes'),
'RuntimeEnvironmentUpdated': None,
'Seal': ('[u8; 4]', 'Bytes'),
},
],
}
EventCount¶
The number of events in the Events<T>
list.
Python¶
result = substrate.query(
'System', 'EventCount', []
)
Return value¶
'u32'
EventTopics¶
Mapping between a topic (represented by T::Hash) and a vector of indexes
of events in the <Events<T>>
list.
All topic vectors have deterministic storage locations depending on the topic. This allows light-clients to leverage the changes trie storage tracking mechanism and in case of changes fetch the list of events of interest.
The value has the type (BlockNumberFor<T>, EventIndex)
because if we used only just
the EventIndex
then in case if the topic has the same contents on the next block
no notification will be triggered thus the event might be lost.
Python¶
result = substrate.query(
'System', 'EventTopics', ['scale_info::12']
)
Return value¶
[('u32', 'u32')]
Events¶
Events deposited for the current block.
NOTE: The item is unbound and should therefore never be read on chain. It could otherwise inflate the PoV size of a block.
Events have a large in-memory size. Box the events to not go out-of-memory just in case someone still reads them from within the runtime.
Python¶
result = substrate.query(
'System', 'Events', []
)
Return value¶
[
{
'event': {
'Balances': {
'BalanceSet': {'free': 'u128', 'who': 'AccountId'},
'Burned': {'amount': 'u128', 'who': 'AccountId'},
'Deposit': {'amount': 'u128', 'who': 'AccountId'},
'DustLost': {'account': 'AccountId', 'amount': 'u128'},
'Endowed': {'account': 'AccountId', 'free_balance': 'u128'},
'Frozen': {'amount': 'u128', 'who': 'AccountId'},
'Issued': {'amount': 'u128'},
'Locked': {'amount': 'u128', 'who': 'AccountId'},
'Minted': {'amount': 'u128', 'who': 'AccountId'},
'Rescinded': {'amount': 'u128'},
'ReserveRepatriated': {
'amount': 'u128',
'destination_status': 'scale_info::44',
'from': 'AccountId',
'to': 'AccountId',
},
'Reserved': {'amount': 'u128', 'who': 'AccountId'},
'Restored': {'amount': 'u128', 'who': 'AccountId'},
'Slashed': {'amount': 'u128', 'who': 'AccountId'},
'Suspended': {'amount': 'u128', 'who': 'AccountId'},
'Thawed': {'amount': 'u128', 'who': 'AccountId'},
'Transfer': {
'amount': 'u128',
'from': 'AccountId',
'to': 'AccountId',
},
'Unlocked': {'amount': 'u128', 'who': 'AccountId'},
'Unreserved': {'amount': 'u128', 'who': 'AccountId'},
'Upgraded': {'who': 'AccountId'},
'Withdraw': {'amount': 'u128', 'who': 'AccountId'},
},
'Bounties': {
'BountyAwarded': {'beneficiary': 'AccountId', 'index': 'u32'},
'BountyBecameActive': {'index': 'u32'},
'BountyCanceled': {'index': 'u32'},
'BountyClaimed': {
'beneficiary': 'AccountId',
'index': 'u32',
'payout': 'u128',
},
'BountyExtended': {'index': 'u32'},
'BountyProposed': {'index': 'u32'},
'BountyRejected': {'bond': 'u128', 'index': 'u32'},
},
'Claims': {'Claimed': ('AccountId', '[u8; 20]', 'u128')},
'Democracy': {
'Blacklisted': {'proposal_hash': 'scale_info::12'},
'Cancelled': {'ref_index': 'u32'},
'Delegated': {'target': 'AccountId', 'who': 'AccountId'},
'ExternalTabled': None,
'MetadataCleared': {
'hash': 'scale_info::12',
'owner': 'scale_info::52',
},
'MetadataSet': {
'hash': 'scale_info::12',
'owner': 'scale_info::52',
},
'MetadataTransferred': {
'hash': 'scale_info::12',
'owner': 'scale_info::52',
'prev_owner': 'scale_info::52',
},
'NotPassed': {'ref_index': 'u32'},
'Passed': {'ref_index': 'u32'},
'ProposalCanceled': {'prop_index': 'u32'},
'Proposed': {'deposit': 'u128', 'proposal_index': 'u32'},
'Seconded': {'prop_index': 'u32', 'seconder': 'AccountId'},
'Started': {'ref_index': 'u32', 'threshold': 'scale_info::49'},
'Tabled': {'deposit': 'u128', 'proposal_index': 'u32'},
'Undelegated': {'account': 'AccountId'},
'Vetoed': {
'proposal_hash': 'scale_info::12',
'until': 'u32',
'who': 'AccountId',
},
'Voted': {
'ref_index': 'u32',
'vote': 'scale_info::50',
'voter': 'AccountId',
},
},
'Multisig': {
'MultisigApproval': {
'approving': 'AccountId',
'call_hash': '[u8; 32]',
'multisig': 'AccountId',
'timepoint': 'scale_info::34',
},
'MultisigCancelled': {
'call_hash': '[u8; 32]',
'cancelling': 'AccountId',
'multisig': 'AccountId',
'timepoint': 'scale_info::34',
},
'MultisigExecuted': {
'approving': 'AccountId',
'call_hash': '[u8; 32]',
'multisig': 'AccountId',
'result': 'scale_info::35',
'timepoint': 'scale_info::34',
},
'NewMultisig': {
'approving': 'AccountId',
'call_hash': '[u8; 32]',
'multisig': 'AccountId',
},
},
None: None,
'ChildBounties': {
'Added': {'child_index': 'u32', 'index': 'u32'},
'Awarded': {
'beneficiary': 'AccountId',
'child_index': 'u32',
'index': 'u32',
},
'Canceled': {'child_index': 'u32', 'index': 'u32'},
'Claimed': {
'beneficiary': 'AccountId',
'child_index': 'u32',
'index': 'u32',
'payout': 'u128',
},
},
'Council': {
'Approved': {'proposal_hash': 'scale_info::12'},
'Closed': {
'no': 'u32',
'proposal_hash': 'scale_info::12',
'yes': 'u32',
},
'Disapproved': {'proposal_hash': 'scale_info::12'},
'Executed': {
'proposal_hash': 'scale_info::12',
'result': 'scale_info::35',
},
'MemberExecuted': {
'proposal_hash': 'scale_info::12',
'result': 'scale_info::35',
},
'Proposed': {
'account': 'AccountId',
'proposal_hash': 'scale_info::12',
'proposal_index': 'u32',
'threshold': 'u32',
},
'Voted': {
'account': 'AccountId',
'no': 'u32',
'proposal_hash': 'scale_info::12',
'voted': 'bool',
'yes': 'u32',
},
},
'CumulusXcm': {
'ExecutedDownward': ('[u8; 32]', 'scale_info::62'),
'InvalidFormat': '[u8; 32]',
'UnsupportedVersion': '[u8; 32]',
},
'DmpQueue': {
'ExecutedDownward': {
'message_hash': '[u8; 32]',
'message_id': '[u8; 32]',
'outcome': 'scale_info::62',
},
'InvalidFormat': {'message_hash': '[u8; 32]'},
'MaxMessagesExhausted': {'message_hash': '[u8; 32]'},
'OverweightEnqueued': {
'message_hash': '[u8; 32]',
'message_id': '[u8; 32]',
'overweight_index': 'u64',
'required_weight': 'scale_info::9',
},
'OverweightServiced': {
'overweight_index': 'u64',
'weight_used': 'scale_info::9',
},
'UnsupportedVersion': {'message_hash': '[u8; 32]'},
'WeightExhausted': {
'message_hash': '[u8; 32]',
'message_id': '[u8; 32]',
'remaining_weight': 'scale_info::9',
'required_weight': 'scale_info::9',
},
},
'EnclaveBridge': {
'IndirectInvocationRegistered': 'scale_info::12',
'ProcessedParentchainBlock': {
'block_hash': 'scale_info::12',
'block_number': 'u32',
'shard': 'scale_info::12',
'trusted_calls_merkle_root': 'scale_info::12',
},
'PublishedHash': {
'data': 'Bytes',
'enclave_fingerprint': 'scale_info::12',
'hash': 'scale_info::12',
},
'PurgedEnclaveFromShardConfig': {
'shard': 'scale_info::12',
'subject': 'AccountId',
},
'ShardConfigUpdated': 'scale_info::12',
'ShieldFunds': {
'amount': 'u128',
'encrypted_beneficiary': 'Bytes',
'shard': 'scale_info::12',
},
'UnshieldedFunds': {
'amount': 'u128',
'beneficiary': 'AccountId',
'shard': 'scale_info::12',
},
},
'OrmlXcm': {
'Sent': {'message': ['scale_info::75'], 'to': 'scale_info::63'},
},
'ParachainSystem': {
'DownwardMessagesProcessed': {
'dmq_head': 'scale_info::12',
'weight_used': 'scale_info::9',
},
'DownwardMessagesReceived': {'count': 'u32'},
'UpgradeAuthorized': {'code_hash': 'scale_info::12'},
'UpwardMessageSent': {'message_hash': (None, '[u8; 32]')},
'ValidationFunctionApplied': {'relay_chain_block_num': 'u32'},
'ValidationFunctionDiscarded': None,
'ValidationFunctionStored': None,
},
'PolkadotXcm': {
'AssetsClaimed': {
'assets': 'scale_info::101',
'hash': 'scale_info::12',
'origin': 'scale_info::63',
},
'AssetsTrapped': {
'assets': 'scale_info::101',
'hash': 'scale_info::12',
'origin': 'scale_info::63',
},
'Attempted': {'outcome': 'scale_info::62'},
'FeesPaid': {'fees': ['scale_info::78'], 'paying': 'scale_info::63'},
'InvalidQuerier': {
'expected_querier': 'scale_info::63',
'maybe_actual_querier': (None, 'scale_info::63'),
'origin': 'scale_info::63',
'query_id': 'u64',
},
'InvalidQuerierVersion': {
'origin': 'scale_info::63',
'query_id': 'u64',
},
'InvalidResponder': {
'expected_location': (None, 'scale_info::63'),
'origin': 'scale_info::63',
'query_id': 'u64',
},
'InvalidResponderVersion': {
'origin': 'scale_info::63',
'query_id': 'u64',
},
'Notified': {
'call_index': 'u8',
'pallet_index': 'u8',
'query_id': 'u64',
},
'NotifyDecodeFailed': {
'call_index': 'u8',
'pallet_index': 'u8',
'query_id': 'u64',
},
'NotifyDispatchError': {
'call_index': 'u8',
'pallet_index': 'u8',
'query_id': 'u64',
},
'NotifyOverweight': {
'actual_weight': 'scale_info::9',
'call_index': 'u8',
'max_budgeted_weight': 'scale_info::9',
'pallet_index': 'u8',
'query_id': 'u64',
},
'NotifyTargetMigrationFail': {
'location': 'scale_info::115',
'query_id': 'u64',
},
'NotifyTargetSendFail': {
'error': 'scale_info::59',
'location': 'scale_info::63',
'query_id': 'u64',
},
'ResponseReady': {
'query_id': 'u64',
'response': 'scale_info::84',
},
'ResponseTaken': {'query_id': 'u64'},
'Sent': {
'destination': 'scale_info::63',
'message': ['scale_info::75'],
'message_id': '[u8; 32]',
'origin': 'scale_info::63',
},
'SupportedVersionChanged': {
'location': 'scale_info::63',
'version': 'u32',
},
'UnexpectedResponse': {
'origin': 'scale_info::63',
'query_id': 'u64',
},
'VersionChangeNotified': {
'cost': ['scale_info::78'],
'destination': 'scale_info::63',
'message_id': '[u8; 32]',
'result': 'u32',
},
'VersionNotifyRequested': {
'cost': ['scale_info::78'],
'destination': 'scale_info::63',
'message_id': '[u8; 32]',
},
'VersionNotifyStarted': {
'cost': ['scale_info::78'],
'destination': 'scale_info::63',
'message_id': '[u8; 32]',
},
'VersionNotifyUnrequested': {
'cost': ['scale_info::78'],
'destination': 'scale_info::63',
'message_id': '[u8; 32]',
},
},
'Preimage': {
'Cleared': {'hash': 'scale_info::12'},
'Noted': {'hash': 'scale_info::12'},
'Requested': {'hash': 'scale_info::12'},
},
'Proxy': {
'Announced': {
'call_hash': 'scale_info::12',
'proxy': 'AccountId',
'real': 'AccountId',
},
'ProxyAdded': {
'delay': 'u32',
'delegatee': 'AccountId',
'delegator': 'AccountId',
'proxy_type': 'scale_info::38',
},
'ProxyExecuted': {'result': 'scale_info::35'},
'ProxyRemoved': {
'delay': 'u32',
'delegatee': 'AccountId',
'delegator': 'AccountId',
'proxy_type': 'scale_info::38',
},
'PureCreated': {
'disambiguation_index': 'u16',
'proxy_type': 'scale_info::38',
'pure': 'AccountId',
'who': 'AccountId',
},
},
'Scheduler': {
'CallUnavailable': {
'id': (None, '[u8; 32]'),
'task': ('u32', 'u32'),
},
'Canceled': {'index': 'u32', 'when': 'u32'},
'Dispatched': {
'id': (None, '[u8; 32]'),
'result': 'scale_info::35',
'task': ('u32', 'u32'),
},
'PeriodicFailed': {
'id': (None, '[u8; 32]'),
'task': ('u32', 'u32'),
},
'PermanentlyOverweight': {
'id': (None, '[u8; 32]'),
'task': ('u32', 'u32'),
},
'Scheduled': {'index': 'u32', 'when': 'u32'},
},
'Sidechain': {
'FinalizedSidechainBlock': {
'block_header_hash': 'scale_info::12',
'block_number': 'u64',
'shard': 'scale_info::12',
'validateer': 'AccountId',
},
},
'System': {
'CodeUpdated': None,
'ExtrinsicFailed': {
'dispatch_error': 'scale_info::25',
'dispatch_info': 'scale_info::22',
},
'ExtrinsicSuccess': {'dispatch_info': 'scale_info::22'},
'KilledAccount': {'account': 'AccountId'},
'NewAccount': {'account': 'AccountId'},
'Remarked': {'hash': 'scale_info::12', 'sender': 'AccountId'},
},
'TechnicalCommittee': {
'Approved': {'proposal_hash': 'scale_info::12'},
'Closed': {
'no': 'u32',
'proposal_hash': 'scale_info::12',
'yes': 'u32',
},
'Disapproved': {'proposal_hash': 'scale_info::12'},
'Executed': {
'proposal_hash': 'scale_info::12',
'result': 'scale_info::35',
},
'MemberExecuted': {
'proposal_hash': 'scale_info::12',
'result': 'scale_info::35',
},
'Proposed': {
'account': 'AccountId',
'proposal_hash': 'scale_info::12',
'proposal_index': 'u32',
'threshold': 'u32',
},
'Voted': {
'account': 'AccountId',
'no': 'u32',
'proposal_hash': 'scale_info::12',
'voted': 'bool',
'yes': 'u32',
},
},
'Teeracle': {
'AddedToWhitelist': {
'data_source': 'Bytes',
'enclave_fingerprint': 'scale_info::12',
},
'ExchangeRateDeleted': {
'data_source': 'Bytes',
'trading_pair': 'Bytes',
},
'ExchangeRateUpdated': {
'data_source': 'Bytes',
'exchange_rate': 'scale_info::145',
'trading_pair': 'Bytes',
},
'OracleUpdated': {
'data_source': 'Bytes',
'oracle_data_name': 'Bytes',
},
'RemovedFromWhitelist': {
'data_source': 'Bytes',
'enclave_fingerprint': 'scale_info::12',
},
},
'Teerex': {
'AddedSgxEnclave': {
'attestation_method': 'scale_info::125',
'registered_by': 'AccountId',
'tcb_status': (None, 'scale_info::124'),
'worker_url': (None, 'Bytes'),
},
'RemovedProxiedEnclave': {
'fingerprint': 'scale_info::12',
'registrar': 'AccountId',
'signer': 'scale_info::127',
},
'RemovedSovereignEnclave': 'AccountId',
'SgxQuotingEnclaveRegistered': {
'quoting_enclave': 'scale_info::139',
},
'SgxTcbInfoRegistered': {
'fmspc': '[u8; 6]',
'on_chain_info': 'scale_info::135',
},
'UpdatedSecurityFlags': {
'allow_skipping_attestation': 'bool',
'sgx_allow_debug_mode': 'bool',
},
},
'TransactionPayment': {
'TransactionFeePaid': {
'actual_fee': 'u128',
'tip': 'u128',
'who': 'AccountId',
},
},
'Treasury': {
'Awarded': {
'account': 'AccountId',
'award': 'u128',
'proposal_index': 'u32',
},
'Burnt': {'burnt_funds': 'u128'},
'Deposit': {'value': 'u128'},
'Proposed': {'proposal_index': 'u32'},
'Rejected': {'proposal_index': 'u32', 'slashed': 'u128'},
'Rollover': {'rollover_balance': 'u128'},
'SpendApproved': {
'amount': 'u128',
'beneficiary': 'AccountId',
'proposal_index': 'u32',
},
'Spending': {'budget_remaining': 'u128'},
'UpdatedInactive': {
'deactivated': 'u128',
'reactivated': 'u128',
},
},
'Utility': {
'BatchCompleted': None,
'BatchCompletedWithErrors': None,
'BatchInterrupted': {
'error': 'scale_info::25',
'index': 'u32',
},
'DispatchedAs': {'result': 'scale_info::35'},
'ItemCompleted': None,
'ItemFailed': {'error': 'scale_info::25'},
},
'Vesting': {
'VestingCompleted': {'account': 'AccountId'},
'VestingUpdated': {'account': 'AccountId', 'unvested': 'u128'},
},
'XTokens': {
'TransferredMultiAssets': {
'assets': ['scale_info::78'],
'dest': 'scale_info::63',
'fee': 'scale_info::78',
'sender': 'AccountId',
},
},
'XcmTransactor': {
'SentXcm': {'hash': '[u8; 32]'},
'SwapTransactSent': {'para_a': 'u32', 'para_b': 'u32'},
},
'XcmpQueue': {
'BadFormat': {'message_hash': '[u8; 32]'},
'BadVersion': {'message_hash': '[u8; 32]'},
'Fail': {
'error': 'scale_info::59',
'message_hash': '[u8; 32]',
'message_id': '[u8; 32]',
'weight': 'scale_info::9',
},
'OverweightEnqueued': {
'index': 'u64',
'required': 'scale_info::9',
'sender': 'u32',
'sent_at': 'u32',
},
'OverweightServiced': {
'index': 'u64',
'used': 'scale_info::9',
},
'Success': {
'message_hash': '[u8; 32]',
'message_id': '[u8; 32]',
'weight': 'scale_info::9',
},
'XcmpMessageSent': {'message_hash': '[u8; 32]'},
},
},
'phase': {
'ApplyExtrinsic': 'u32',
'Finalization': None,
'Initialization': None,
},
'topics': ['scale_info::12'],
},
]
ExecutionPhase¶
The execution phase of the block.
Python¶
result = substrate.query(
'System', 'ExecutionPhase', []
)
Return value¶
{'ApplyExtrinsic': 'u32', 'Finalization': None, 'Initialization': None}
ExtrinsicCount¶
Total extrinsics count for the current block.
Python¶
result = substrate.query(
'System', 'ExtrinsicCount', []
)
Return value¶
'u32'
ExtrinsicData¶
Extrinsics data for the current block (maps an extrinsic's index to its data).
Python¶
result = substrate.query(
'System', 'ExtrinsicData', ['u32']
)
Return value¶
'Bytes'
LastRuntimeUpgrade¶
Stores the spec_version
and spec_name
of when the last runtime upgrade happened.
Python¶
result = substrate.query(
'System', 'LastRuntimeUpgrade', []
)
Return value¶
{'spec_name': 'Str', 'spec_version': 'u32'}
Number¶
The current block number being processed. Set by execute_block
.
Python¶
result = substrate.query(
'System', 'Number', []
)
Return value¶
'u32'
ParentHash¶
Hash of the previous block.
Python¶
result = substrate.query(
'System', 'ParentHash', []
)
Return value¶
'scale_info::12'
UpgradedToTripleRefCount¶
True if we have upgraded so that AccountInfo contains three types of RefCount
. False
(default) if not.
Python¶
result = substrate.query(
'System', 'UpgradedToTripleRefCount', []
)
Return value¶
'bool'
UpgradedToU32RefCount¶
True if we have upgraded so that type RefCount
is u32
. False (default) if not.
Python¶
result = substrate.query(
'System', 'UpgradedToU32RefCount', []
)
Return value¶
'bool'
Constants¶
BlockHashCount¶
Maximum number of block number to block hash mappings to keep (oldest pruned first).
Value¶
250
Python¶
constant = substrate.get_constant('System', 'BlockHashCount')
BlockLength¶
The maximum length of a block (in bytes).
Value¶
{'max': {'mandatory': 5242880, 'normal': 3932160, 'operational': 5242880}}
Python¶
constant = substrate.get_constant('System', 'BlockLength')
BlockWeights¶
Block & extrinsics weights: base values and limits.
Value¶
{
'base_block': {'proof_size': 0, 'ref_time': 390584000},
'max_block': {'proof_size': 5242880, 'ref_time': 500000000000},
'per_class': {
'mandatory': {
'base_extrinsic': {'proof_size': 0, 'ref_time': 124414000},
'max_extrinsic': None,
'max_total': None,
'reserved': None,
},
'normal': {
'base_extrinsic': {'proof_size': 0, 'ref_time': 124414000},
'max_extrinsic': {'proof_size': 3670016, 'ref_time': 349875586000},
'max_total': {'proof_size': 3932160, 'ref_time': 375000000000},
'reserved': {'proof_size': 0, 'ref_time': 0},
},
'operational': {
'base_extrinsic': {'proof_size': 0, 'ref_time': 124414000},
'max_extrinsic': {'proof_size': 4980736, 'ref_time': 474875586000},
'max_total': {'proof_size': 5242880, 'ref_time': 500000000000},
'reserved': {'proof_size': 1310720, 'ref_time': 125000000000},
},
},
}
Python¶
constant = substrate.get_constant('System', 'BlockWeights')
DbWeight¶
The weight of runtime database operations the runtime can invoke.
Value¶
{'read': 25000000, 'write': 100000000}
Python¶
constant = substrate.get_constant('System', 'DbWeight')
SS58Prefix¶
The designated SS58 prefix of this chain.
This replaces the "ss58Format" property declared in the chain spec. Reason is that the runtime should know about the prefix in order to make use of it as an identifier of the chain.
Value¶
13
Python¶
constant = substrate.get_constant('System', 'SS58Prefix')
Version¶
Get the chain's current version.
Value¶
{
'apis': [
('0xdd718d5cc53262d4', 1),
('0xdf6acb689907609b', 4),
('0x37e397fc7c91f5e4', 2),
('0x40fe3ad401f8959a', 6),
('0xd2bc9897eed08f15', 3),
('0xf78b278be53f454c', 2),
('0xab3c0572291feb8b', 1),
('0xbc9d89904f5b923f', 1),
('0x37c8bb1350a9a2a8', 4),
('0xf3ff14d5ab527059', 3),
('0xea93e3f16f3d6962', 2),
],
'authoring_version': 2,
'impl_name': 'integritee-full',
'impl_version': 1,
'spec_name': 'integritee-parachain',
'spec_version': 44,
'state_version': 0,
'transaction_version': 6,
}
Python¶
constant = substrate.get_constant('System', 'Version')
Errors¶
CallFiltered¶
The origin filter prevent the call to be dispatched.
FailedToExtractRuntimeVersion¶
Failed to extract the runtime version from the new runtime.
Either calling Core_version
or decoding RuntimeVersion
failed.
InvalidSpecName¶
The name of specification does not match between the current runtime and the new runtime.
NonDefaultComposite¶
Suicide called when the account has non-default composite data.
NonZeroRefCount¶
There is a non-zero reference count preventing the account from being purged.
SpecVersionNeedsToIncrease¶
The specification version is not allowed to decrease between the current runtime and the new runtime.