Name | Lookup | Parameters | |
|---|---|---|---|
| change_controller | 1000 | 1 | |
| change_admin | 1001 | 1 | |
| change_timelock | 1002 | 1 | |
| freeze | 1003 | - | |
| unfreeze | 1004 | - | |
| change_bridge_limit | 1005 | 2 | |
| change_bridge_exempted | 1006 | 1 | |
| force_handle_bridge_tx | 1007 | 1 | |
| batch_propose_bridge_tx | 1008 | 1 | |
| propose_bridge_tx | 1009 | 1 | |
| handle_bridge_tx | 100a | 1 | |
| freeze_txs | 100b | 1 | |
| unfreeze_txs | 100c | 1 | |
| handle_scheduled_bridge_tx | 100d | 1 | |
| add_freeze_admin | 100e | 1 | |
| remove_freeze_admin | 100f | 1 | |
| remove_txs | 1010 | 1 |
Name | Lookup | Attributes | |
|---|---|---|---|
| ControllerChanged | 1000 | ["IdentityId","AccountId"] | |
| AdminChanged | 1001 | ["IdentityId","AccountId"] | |
| TimelockChanged | 1002 | ["IdentityId","BlockNumber"] | |
| Bridged | 1003 | ["IdentityId","BridgeTx<AccountId>"] | |
| Frozen | 1004 | ["IdentityId"] | |
| Unfrozen | 1005 | ["IdentityId"] | |
| FrozenTx | 1006 | ["IdentityId","BridgeTx<AccountId>"] | |
| UnfrozenTx | 1007 | ["IdentityId","BridgeTx<AccountId>"] | |
| ExemptedUpdated | 1008 | ["IdentityId","IdentityId","bool"] | |
| BridgeLimitUpdated | 1009 | ["IdentityId","Balance","BlockNumber"] | |
| TxsHandled | 100a | ["Vec<(AccountId, u32, HandledTxStatus)>"] | |
| BridgeTxScheduled | 100b | ["IdentityId","BridgeTx<AccountId>","BlockNumber"] | |
| BridgeTxScheduleFailed | 100c | ["IdentityId","BridgeTx<AccountId>","Bytes"] | |
| FreezeAdminAdded | 100d | ["IdentityId","AccountId"] | |
| FreezeAdminRemoved | 100e | ["IdentityId","AccountId"] | |
| TxRemoved | 100f | ["IdentityId","BridgeTx<AccountId>"] |
Name | Type | |
|---|---|---|
| Controller | {"origin":"PlainType","plain_type":"AccountId","PlainTypeValue":0} | |
| BridgeTxDetails | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat","Blake2_128Concat"],"key_vec":["AccountId","U32"],"value":"pallet_bridge:BridgeTxDetail","keys_id":544,"value_id":545}} | |
| Admin | {"origin":"PlainType","plain_type":"AccountId","PlainTypeValue":0} | |
| Frozen | {"origin":"PlainType","plain_type":"Bool","PlainTypeValue":71} | |
| FreezeAdmins | {"origin":"Map","n_map_type":{"hashers":["Blake2_128Concat"],"key_vec":["AccountId"],"value":"Bool","keys_id":0,"value_id":71}} | |
| Timelock | {"origin":"PlainType","plain_type":"U32","PlainTypeValue":4} | |
| BridgeLimit | {"origin":"PlainType","plain_type":"Tuple:U128U32","PlainTypeValue":547} | |
| PolyxBridged | {"origin":"Map","n_map_type":{"hashers":["Identity"],"key_vec":["[U8; 32]"],"value":"Tuple:U128U32","keys_id":30,"value_id":547}} | |
| BridgeLimitExempted | {"origin":"Map","n_map_type":{"hashers":["Twox64Concat"],"key_vec":["[U8; 32]"],"value":"Bool","keys_id":30,"value_id":71}} | |
| StorageVersion | {"origin":"PlainType","plain_type":"U8","PlainTypeValue":548} |
Name | Docs |
|---|---|
| ControllerNotSet | The bridge controller address is not set. |
| BadCaller | The origin is not the controller or the admin address. |
| BadAdmin | The origin is not the admin address. |
| NoValidCdd | The recipient DID has no valid CDD. |
| ProposalAlreadyHandled | The bridge transaction proposal has already been handled and the funds minted. |
| Unauthorized | Unauthorized to perform an operation. |
| Frozen | The bridge is already frozen. |
| NotFrozen | The bridge is not frozen. |
| FrozenTx | The transaction is frozen. |
| BridgeLimitReached | The identity's minted total has reached the bridge limit. |
| Overflow | The identity's minted total has overflowed. |
| DivisionByZero | The block interval duration is zero. Cannot divide. |
| TimelockedTx | The transaction is timelocked. |