Name | Lookup | Parameters | |
---|---|---|---|
hrmp_init_open_channel | 3c00 | 3 | |
hrmp_accept_open_channel | 3c01 | 1 | |
hrmp_close_channel | 3c02 | 1 | |
force_clean_hrmp | 3c03 | 3 | |
force_process_hrmp_open | 3c04 | 1 | |
force_process_hrmp_close | 3c05 | 1 | |
hrmp_cancel_open_request | 3c06 | 2 | |
force_open_hrmp_channel | 3c07 | 4 | |
establish_system_channel | 3c08 | 2 | |
poke_channel_deposits | 3c09 | 2 | |
establish_channel_with_system | 3c0a | 1 |
Name | Lookup | Attributes | |
---|---|---|---|
OpenChannelRequested | 3c00 | ["ParaId","ParaId","u32","u32"] | |
OpenChannelCanceled | 3c01 | ["ParaId","HrmpChannelId"] | |
OpenChannelAccepted | 3c02 | ["ParaId","ParaId"] | |
ChannelClosed | 3c03 | ["ParaId","HrmpChannelId"] | |
HrmpChannelForceOpened | 3c04 | ["ParaId","ParaId","u32","u32"] | |
HrmpSystemChannelOpened | 3c05 | ["ParaId","ParaId","u32","u32"] | |
OpenChannelDepositsUpdated | 3c06 | ["ParaId","ParaId"] |
Name | Type | |
---|---|---|
HrmpOpenChannelRequests | {"origin":"Map","n_map_type":{"hashers":["Twox64Concat"],"key_vec":["polkadot_parachain_primitives:primitives:HrmpChannelId"],"value":"polkadot_runtime_parachains:hrmp:HrmpOpenChannelRequest","keys_id":326,"value_id":765}} | |
HrmpOpenChannelRequestsList | {"origin":"PlainType","plain_type":"Vec<polkadot_parachain_primitives:primitives:HrmpChannelId>","PlainTypeValue":766} | |
HrmpOpenChannelRequestCount | {"origin":"Map","n_map_type":{"hashers":["Twox64Concat"],"key_vec":["U32"],"value":"U32","keys_id":163,"value_id":4}} | |
HrmpAcceptedChannelRequestCount | {"origin":"Map","n_map_type":{"hashers":["Twox64Concat"],"key_vec":["U32"],"value":"U32","keys_id":163,"value_id":4}} | |
HrmpCloseChannelRequests | {"origin":"Map","n_map_type":{"hashers":["Twox64Concat"],"key_vec":["polkadot_parachain_primitives:primitives:HrmpChannelId"],"value":"NULL","keys_id":326,"value_id":35}} | |
HrmpCloseChannelRequestsList | {"origin":"PlainType","plain_type":"Vec<polkadot_parachain_primitives:primitives:HrmpChannelId>","PlainTypeValue":766} | |
HrmpWatermarks | {"origin":"Map","n_map_type":{"hashers":["Twox64Concat"],"key_vec":["U32"],"value":"U32","keys_id":163,"value_id":4}} | |
HrmpChannels | {"origin":"Map","n_map_type":{"hashers":["Twox64Concat"],"key_vec":["polkadot_parachain_primitives:primitives:HrmpChannelId"],"value":"polkadot_runtime_parachains:hrmp:HrmpChannel","keys_id":326,"value_id":767}} | |
HrmpIngressChannelsIndex | {"origin":"Map","n_map_type":{"hashers":["Twox64Concat"],"key_vec":["U32"],"value":"Vec<U32>","keys_id":163,"value_id":751}} | |
HrmpEgressChannelsIndex | {"origin":"Map","n_map_type":{"hashers":["Twox64Concat"],"key_vec":["U32"],"value":"Vec<U32>","keys_id":163,"value_id":751}} | |
HrmpChannelContents | {"origin":"Map","n_map_type":{"hashers":["Twox64Concat"],"key_vec":["polkadot_parachain_primitives:primitives:HrmpChannelId"],"value":"Vec<polkadot_core_primitives:InboundHrmpMessage>","keys_id":326,"value_id":768}} | |
HrmpChannelDigests | {"origin":"Map","n_map_type":{"hashers":["Twox64Concat"],"key_vec":["U32"],"value":"Vec<Tuple:U32Vec<U32>>","keys_id":163,"value_id":770}} |
Name | Docs |
---|---|
OpenHrmpChannelToSelf | The sender tried to open a channel to themselves. |
OpenHrmpChannelInvalidRecipient | The recipient is not a valid para. |
OpenHrmpChannelZeroCapacity | The requested capacity is zero. |
OpenHrmpChannelCapacityExceedsLimit | The requested capacity exceeds the global limit. |
OpenHrmpChannelZeroMessageSize | The requested maximum message size is 0. |
OpenHrmpChannelMessageSizeExceedsLimit | The open request requested the message size that exceeds the global limit. |
OpenHrmpChannelAlreadyExists | The channel already exists |
OpenHrmpChannelAlreadyRequested | There is already a request to open the same channel. |
OpenHrmpChannelLimitExceeded | The sender already has the maximum number of allowed outbound channels. |
AcceptHrmpChannelDoesntExist | The channel from the sender to the origin doesn't exist. |
AcceptHrmpChannelAlreadyConfirmed | The channel is already confirmed. |
AcceptHrmpChannelLimitExceeded | The recipient already has the maximum number of allowed inbound channels. |
CloseHrmpChannelUnauthorized | The origin tries to close a channel where it is neither the sender nor the recipient. |
CloseHrmpChannelDoesntExist | The channel to be closed doesn't exist. |
CloseHrmpChannelAlreadyUnderway | The channel close request is already requested. |
CancelHrmpOpenChannelUnauthorized | Canceling is requested by neither the sender nor recipient of the open channel request. |
OpenHrmpChannelDoesntExist | The open request doesn't exist. |
OpenHrmpChannelAlreadyConfirmed | Cannot cancel an HRMP open channel request because it is already confirmed. |
WrongWitness | The provided witness data is wrong. |
ChannelCreationNotAuthorized | The channel between these two chains cannot be authorized. |