diff --git a/app/Makefile b/app/Makefile index 7ae3c59..d3676d2 100755 --- a/app/Makefile +++ b/app/Makefile @@ -27,7 +27,7 @@ include $(CURDIR)/../deps/ledger-zxlib/makefiles/Makefile.installer_script include $(BOLOS_SDK)/Makefile.defines # Set the default value for PRODUCTION_BUILD to 0 if not already defined -PRODUCTION_BUILD ?= 1 +PRODUCTION_BUILD ?= 0 $(info ************ TARGET_NAME = [$(TARGET_NAME)]) diff --git a/app/src/parser_impl.h b/app/src/parser_impl.h index 456d110..6c2a7a9 100644 --- a/app/src/parser_impl.h +++ b/app/src/parser_impl.h @@ -53,6 +53,7 @@ extern "C" { #define GEN_DEF_TOSTRING_ARRAY(SIZE) \ CLEAN_AND_CHECK(); \ if ((SIZE) == 0) { \ + *pageCount = 1; \ snprintf(outValue, outValueLen, "Empty"); \ return parser_ok; \ } \ diff --git a/app/src/parser_impl_common.c b/app/src/parser_impl_common.c index 6816e92..0db4ed9 100644 --- a/app/src/parser_impl_common.c +++ b/app/src/parser_impl_common.c @@ -24,8 +24,6 @@ #include "substrate_types.h" #include "substrate_dispatch.h" -#define SUPPORTED_SPEC_VERSION_V4 6003001 - parser_error_t parser_init_context(parser_context_t *ctx, const uint8_t *buffer, uint16_t bufferSize) { @@ -354,7 +352,7 @@ parser_error_t _checkVersions(parser_context_t *c) { transactionVersion += (uint32_t) p[3] << 24u; if (transactionVersion != (SUPPORTED_TX_VERSION_CURRENT) && - transactionVersion != (SUPPORTED_SPEC_VERSION_V4)) { + transactionVersion != (SUPPORTED_TX_VERSION_PREVIOUS)) { return parser_tx_version_not_supported; } diff --git a/app/src/substrate/substrate_dispatch_V4.c b/app/src/substrate/substrate_dispatch_V7.c similarity index 68% rename from app/src/substrate/substrate_dispatch_V4.c rename to app/src/substrate/substrate_dispatch_V7.c index 37e26b7..ae20c18 100644 --- a/app/src/substrate/substrate_dispatch_V4.c +++ b/app/src/substrate/substrate_dispatch_V7.c @@ -14,7 +14,7 @@ * limitations under the License. ********************************************************************************/ -#include "substrate_dispatch_V4.h" +#include "substrate_dispatch_V7.h" #include "substrate_strings.h" #include "zxmacros.h" #include @@ -22,16 +22,16 @@ #include "bolos_target.h" #endif -__Z_INLINE parser_error_t _readMethod_balances_transfer_V4( - parser_context_t* c, pd_balances_transfer_V4_t* m) +__Z_INLINE parser_error_t _readMethod_balances_transfer_V7( + parser_context_t* c, pd_balances_transfer_V7_t* m) { CHECK_ERROR(_readLookupasStaticLookupSource(c, &m->dest)) CHECK_ERROR(_readCompactBalance(c, &m->amount)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_balances_transfer_with_memo_V4( - parser_context_t* c, pd_balances_transfer_with_memo_V4_t* m) +__Z_INLINE parser_error_t _readMethod_balances_transfer_with_memo_V7( + parser_context_t* c, pd_balances_transfer_with_memo_V7_t* m) { CHECK_ERROR(_readLookupasStaticLookupSource(c, &m->dest)) CHECK_ERROR(_readCompactBalance(c, &m->amount)) @@ -39,31 +39,31 @@ __Z_INLINE parser_error_t _readMethod_balances_transfer_with_memo_V4( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_identity_accept_primary_key_V4( - parser_context_t* c, pd_identity_accept_primary_key_V4_t* m) +__Z_INLINE parser_error_t _readMethod_identity_accept_primary_key_V7( + parser_context_t* c, pd_identity_accept_primary_key_V7_t* m) { CHECK_ERROR(_readu64(c, &m->rotation_auth_id)) CHECK_ERROR(_readOptionu64(c, &m->optional_cdd_auth_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_identity_join_identity_as_key_V4( - parser_context_t* c, pd_identity_join_identity_as_key_V4_t* m) +__Z_INLINE parser_error_t _readMethod_identity_join_identity_as_key_V7( + parser_context_t* c, pd_identity_join_identity_as_key_V7_t* m) { CHECK_ERROR(_readu64(c, &m->auth_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_identity_leave_identity_as_key_V4( - parser_context_t* c, pd_identity_leave_identity_as_key_V4_t* m) +__Z_INLINE parser_error_t _readMethod_identity_leave_identity_as_key_V7( + parser_context_t* c, pd_identity_leave_identity_as_key_V7_t* m) { UNUSED(c); UNUSED(m); return parser_ok; } -__Z_INLINE parser_error_t _readMethod_identity_add_claim_V4( - parser_context_t* c, pd_identity_add_claim_V4_t* m) +__Z_INLINE parser_error_t _readMethod_identity_add_claim_V7( + parser_context_t* c, pd_identity_add_claim_V7_t* m) { CHECK_ERROR(_readIdentityId(c, &m->target)) CHECK_ERROR(_readClaim(c, &m->claim)) @@ -71,32 +71,32 @@ __Z_INLINE parser_error_t _readMethod_identity_add_claim_V4( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_identity_revoke_claim_V4( - parser_context_t* c, pd_identity_revoke_claim_V4_t* m) +__Z_INLINE parser_error_t _readMethod_identity_revoke_claim_V7( + parser_context_t* c, pd_identity_revoke_claim_V7_t* m) { CHECK_ERROR(_readIdentityId(c, &m->target)) CHECK_ERROR(_readClaim(c, &m->claim)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_identity_freeze_secondary_keys_V4( - parser_context_t* c, pd_identity_freeze_secondary_keys_V4_t* m) +__Z_INLINE parser_error_t _readMethod_identity_freeze_secondary_keys_V7( + parser_context_t* c, pd_identity_freeze_secondary_keys_V7_t* m) { UNUSED(c); UNUSED(m); return parser_ok; } -__Z_INLINE parser_error_t _readMethod_identity_unfreeze_secondary_keys_V4( - parser_context_t* c, pd_identity_unfreeze_secondary_keys_V4_t* m) +__Z_INLINE parser_error_t _readMethod_identity_unfreeze_secondary_keys_V7( + parser_context_t* c, pd_identity_unfreeze_secondary_keys_V7_t* m) { UNUSED(c); UNUSED(m); return parser_ok; } -__Z_INLINE parser_error_t _readMethod_identity_add_authorization_V4( - parser_context_t* c, pd_identity_add_authorization_V4_t* m) +__Z_INLINE parser_error_t _readMethod_identity_add_authorization_V7( + parser_context_t* c, pd_identity_add_authorization_V7_t* m) { CHECK_ERROR(_readSignatoryAccountId(c, &m->target)) CHECK_ERROR(_readAuthorizationDataAccountId(c, &m->data)) @@ -104,8 +104,8 @@ __Z_INLINE parser_error_t _readMethod_identity_add_authorization_V4( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_identity_remove_authorization_V4( - parser_context_t* c, pd_identity_remove_authorization_V4_t* m) +__Z_INLINE parser_error_t _readMethod_identity_remove_authorization_V7( + parser_context_t* c, pd_identity_remove_authorization_V7_t* m) { CHECK_ERROR(_readSignatoryAccountId(c, &m->target)) CHECK_ERROR(_readu64(c, &m->auth_id)) @@ -113,119 +113,39 @@ __Z_INLINE parser_error_t _readMethod_identity_remove_authorization_V4( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_identity_add_secondary_keys_with_authorization_V4( - parser_context_t* c, pd_identity_add_secondary_keys_with_authorization_V4_t* m) +__Z_INLINE parser_error_t _readMethod_identity_add_secondary_keys_with_authorization_V7( + parser_context_t* c, pd_identity_add_secondary_keys_with_authorization_V7_t* m) { CHECK_ERROR(_readVecSecondaryKeyWithAuthAccountId(c, &m->additional_keys)) CHECK_ERROR(_readMoment(c, &m->expires_at)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_identity_remove_secondary_keys_V4( - parser_context_t* c, pd_identity_remove_secondary_keys_V4_t* m) +__Z_INLINE parser_error_t _readMethod_identity_remove_secondary_keys_V7( + parser_context_t* c, pd_identity_remove_secondary_keys_V7_t* m) { CHECK_ERROR(_readVecAccountId(c, &m->keys_to_remove)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_multisig_create_multisig_V4( - parser_context_t* c, pd_multisig_create_multisig_V4_t* m) +__Z_INLINE parser_error_t _readMethod_multisig_create_multisig_V7( + parser_context_t* c, pd_multisig_create_multisig_V7_t* m) { - CHECK_ERROR(_readVecSignatoryAccountId(c, &m->signers)) + CHECK_ERROR(_readBoundedVecAccountIdMaxSigners(c, &m->signers)) CHECK_ERROR(_readu64(c, &m->sigs_required)) + CHECK_ERROR(_readOptionPermissions(c, &m->permissions)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_multisig_create_or_approve_proposal_as_key_V4( - parser_context_t* c, pd_multisig_create_or_approve_proposal_as_key_V4_t* m) -{ - CHECK_ERROR(_readAccountId(c, &m->multisig)) - CHECK_ERROR(_readProposal(c, &m->proposal)) - CHECK_ERROR(_readOptionMoment(c, &m->expiry)) - CHECK_ERROR(_readbool(c, &m->auto_close)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_multisig_create_proposal_as_key_V4( - parser_context_t* c, pd_multisig_create_proposal_as_key_V4_t* m) -{ - CHECK_ERROR(_readAccountId(c, &m->multisig)) - CHECK_ERROR(_readProposal(c, &m->proposal)) - CHECK_ERROR(_readOptionMoment(c, &m->expiry)) - CHECK_ERROR(_readbool(c, &m->auto_close)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_multisig_approve_as_key_V4( - parser_context_t* c, pd_multisig_approve_as_key_V4_t* m) -{ - CHECK_ERROR(_readAccountId(c, &m->multisig)) - CHECK_ERROR(_readu64(c, &m->proposal_id)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_multisig_reject_as_key_V4( - parser_context_t* c, pd_multisig_reject_as_key_V4_t* m) -{ - CHECK_ERROR(_readAccountId(c, &m->multisig)) - CHECK_ERROR(_readu64(c, &m->proposal_id)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_multisig_accept_multisig_signer_as_key_V4( - parser_context_t* c, pd_multisig_accept_multisig_signer_as_key_V4_t* m) -{ - CHECK_ERROR(_readu64(c, &m->auth_id)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_multisig_add_multisig_signer_V4( - parser_context_t* c, pd_multisig_add_multisig_signer_V4_t* m) -{ - CHECK_ERROR(_readSignatoryAccountId(c, &m->signer)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_multisig_remove_multisig_signer_V4( - parser_context_t* c, pd_multisig_remove_multisig_signer_V4_t* m) -{ - CHECK_ERROR(_readSignatoryAccountId(c, &m->signer)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_multisig_add_multisig_signers_via_creator_V4( - parser_context_t* c, pd_multisig_add_multisig_signers_via_creator_V4_t* m) -{ - CHECK_ERROR(_readAccountId(c, &m->multisig)) - CHECK_ERROR(_readVecSignatoryAccountId(c, &m->signers)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_multisig_remove_multisig_signers_via_creator_V4( - parser_context_t* c, pd_multisig_remove_multisig_signers_via_creator_V4_t* m) -{ - CHECK_ERROR(_readAccountId(c, &m->multisig)) - CHECK_ERROR(_readVecSignatoryAccountId(c, &m->signers)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_multisig_change_sigs_required_V4( - parser_context_t* c, pd_multisig_change_sigs_required_V4_t* m) +__Z_INLINE parser_error_t _readMethod_multisig_change_sigs_required_V7( + parser_context_t* c, pd_multisig_change_sigs_required_V7_t* m) { CHECK_ERROR(_readu64(c, &m->sigs_required)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_multisig_make_multisig_primary_V4( - parser_context_t* c, pd_multisig_make_multisig_primary_V4_t* m) -{ - CHECK_ERROR(_readAccountId(c, &m->multisig)) - CHECK_ERROR(_readOptionu64(c, &m->optional_cdd_auth_id)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_staking_bond_V4( - parser_context_t* c, pd_staking_bond_V4_t* m) +__Z_INLINE parser_error_t _readMethod_staking_bond_V7( + parser_context_t* c, pd_staking_bond_V7_t* m) { CHECK_ERROR(_readAccountIdLookupOfT(c, &m->controller)) CHECK_ERROR(_readCompactBalance(c, &m->amount)) @@ -233,72 +153,72 @@ __Z_INLINE parser_error_t _readMethod_staking_bond_V4( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_staking_bond_extra_V4( - parser_context_t* c, pd_staking_bond_extra_V4_t* m) +__Z_INLINE parser_error_t _readMethod_staking_bond_extra_V7( + parser_context_t* c, pd_staking_bond_extra_V7_t* m) { CHECK_ERROR(_readCompactBalance(c, &m->amount)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_staking_unbond_V4( - parser_context_t* c, pd_staking_unbond_V4_t* m) +__Z_INLINE parser_error_t _readMethod_staking_unbond_V7( + parser_context_t* c, pd_staking_unbond_V7_t* m) { CHECK_ERROR(_readCompactBalance(c, &m->amount)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_staking_withdraw_unbonded_V4( - parser_context_t* c, pd_staking_withdraw_unbonded_V4_t* m) +__Z_INLINE parser_error_t _readMethod_staking_withdraw_unbonded_V7( + parser_context_t* c, pd_staking_withdraw_unbonded_V7_t* m) { CHECK_ERROR(_readu32(c, &m->num_slashing_spans)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_staking_validate_V4( - parser_context_t* c, pd_staking_validate_V4_t* m) +__Z_INLINE parser_error_t _readMethod_staking_validate_V7( + parser_context_t* c, pd_staking_validate_V7_t* m) { CHECK_ERROR(_readValidatorPrefs(c, &m->prefs)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_staking_nominate_V4( - parser_context_t* c, pd_staking_nominate_V4_t* m) +__Z_INLINE parser_error_t _readMethod_staking_nominate_V7( + parser_context_t* c, pd_staking_nominate_V7_t* m) { CHECK_ERROR(_readVecAccountIdLookupOfT(c, &m->targets)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_staking_chill_V4( - parser_context_t* c, pd_staking_chill_V4_t* m) +__Z_INLINE parser_error_t _readMethod_staking_chill_V7( + parser_context_t* c, pd_staking_chill_V7_t* m) { UNUSED(c); UNUSED(m); return parser_ok; } -__Z_INLINE parser_error_t _readMethod_staking_set_payee_V4( - parser_context_t* c, pd_staking_set_payee_V4_t* m) +__Z_INLINE parser_error_t _readMethod_staking_set_payee_V7( + parser_context_t* c, pd_staking_set_payee_V7_t* m) { CHECK_ERROR(_readRewardDestination(c, &m->payee)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_staking_set_controller_V4( - parser_context_t* c, pd_staking_set_controller_V4_t* m) +__Z_INLINE parser_error_t _readMethod_staking_set_controller_V7( + parser_context_t* c, pd_staking_set_controller_V7_t* m) { CHECK_ERROR(_readAccountIdLookupOfT(c, &m->controller)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_staking_rebond_V4( - parser_context_t* c, pd_staking_rebond_V4_t* m) +__Z_INLINE parser_error_t _readMethod_staking_rebond_V7( + parser_context_t* c, pd_staking_rebond_V7_t* m) { CHECK_ERROR(_readCompactBalance(c, &m->amount)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_pips_propose_V4( - parser_context_t* c, pd_pips_propose_V4_t* m) +__Z_INLINE parser_error_t _readMethod_pips_propose_V7( + parser_context_t* c, pd_pips_propose_V7_t* m) { CHECK_ERROR(_readProposal(c, &m->proposal)) CHECK_ERROR(_readBalance(c, &m->deposit)) @@ -307,8 +227,8 @@ __Z_INLINE parser_error_t _readMethod_pips_propose_V4( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_pips_vote_V4( - parser_context_t* c, pd_pips_vote_V4_t* m) +__Z_INLINE parser_error_t _readMethod_pips_vote_V7( + parser_context_t* c, pd_pips_vote_V7_t* m) { CHECK_ERROR(_readPipId(c, &m->id)) CHECK_ERROR(_readbool(c, &m->aye_or_nay)) @@ -316,22 +236,22 @@ __Z_INLINE parser_error_t _readMethod_pips_vote_V4( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_utility_batch_V4( - parser_context_t* c, pd_utility_batch_V4_t* m) +__Z_INLINE parser_error_t _readMethod_utility_batch_V7( + parser_context_t* c, pd_utility_batch_V7_t* m) { CHECK_ERROR(_readVecCall(c, &m->calls)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_utility_batch_atomic_V4( - parser_context_t* c, pd_utility_batch_atomic_V4_t* m) +__Z_INLINE parser_error_t _readMethod_utility_batch_atomic_V7( + parser_context_t* c, pd_utility_batch_atomic_V7_t* m) { CHECK_ERROR(_readVecCall(c, &m->calls)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_utility_batch_optimistic_V4( - parser_context_t* c, pd_utility_batch_optimistic_V4_t* m) +__Z_INLINE parser_error_t _readMethod_utility_batch_optimistic_V7( + parser_context_t* c, pd_utility_batch_optimistic_V7_t* m) { CHECK_ERROR(_readVecCall(c, &m->calls)) return parser_ok; @@ -339,52 +259,52 @@ __Z_INLINE parser_error_t _readMethod_utility_batch_optimistic_V4( #ifdef SUBSTRATE_PARSER_FULL #ifndef TARGET_NANOS -__Z_INLINE parser_error_t _readMethod_asset_add_mandatory_mediators_V4( - parser_context_t* c, pd_asset_add_mandatory_mediators_V4_t* m) +__Z_INLINE parser_error_t _readMethod_asset_add_mandatory_mediators_V7( + parser_context_t* c, pd_asset_add_mandatory_mediators_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) CHECK_ERROR(_readBoundedBTreeSetIdentityIdMaxAssetMediators(c, &m->mediators)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_asset_remove_mandatory_mediators_V4( - parser_context_t* c, pd_asset_remove_mandatory_mediators_V4_t* m) +__Z_INLINE parser_error_t _readMethod_asset_remove_mandatory_mediators_V7( + parser_context_t* c, pd_asset_remove_mandatory_mediators_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) CHECK_ERROR(_readBoundedBTreeSetIdentityIdMaxAssetMediators(c, &m->mediators)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_corporateaction_set_max_details_length_V4( - parser_context_t* c, pd_corporateaction_set_max_details_length_V4_t* m) +__Z_INLINE parser_error_t _readMethod_corporateaction_set_max_details_length_V7( + parser_context_t* c, pd_corporateaction_set_max_details_length_V7_t* m) { CHECK_ERROR(_readu32(c, &m->length)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_corporateaction_set_default_targets_V4( - parser_context_t* c, pd_corporateaction_set_default_targets_V4_t* m) +__Z_INLINE parser_error_t _readMethod_corporateaction_set_default_targets_V7( + parser_context_t* c, pd_corporateaction_set_default_targets_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) CHECK_ERROR(_readTargetIdentities(c, &m->targets)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_corporateaction_set_default_withholding_tax_V4( - parser_context_t* c, pd_corporateaction_set_default_withholding_tax_V4_t* m) +__Z_INLINE parser_error_t _readMethod_corporateaction_set_default_withholding_tax_V7( + parser_context_t* c, pd_corporateaction_set_default_withholding_tax_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) CHECK_ERROR(_readTax(c, &m->tax)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_corporateaction_set_did_withholding_tax_V4( - parser_context_t* c, pd_corporateaction_set_did_withholding_tax_V4_t* m) +__Z_INLINE parser_error_t _readMethod_corporateaction_set_did_withholding_tax_V7( + parser_context_t* c, pd_corporateaction_set_did_withholding_tax_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) CHECK_ERROR(_readIdentityId(c, &m->taxed_did)) CHECK_ERROR(_readOptionTax(c, &m->tax)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_corporateaction_initiate_corporate_action_V4( - parser_context_t* c, pd_corporateaction_initiate_corporate_action_V4_t* m) +__Z_INLINE parser_error_t _readMethod_corporateaction_initiate_corporate_action_V7( + parser_context_t* c, pd_corporateaction_initiate_corporate_action_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) CHECK_ERROR(_readCAKind(c, &m->kind)) CHECK_ERROR(_readMoment(c, &m->decl_date)) CHECK_ERROR(_readOptionRecordDateSpec(c, &m->record_date)) @@ -394,40 +314,40 @@ __Z_INLINE parser_error_t _readMethod_corporateaction_initiate_corporate_action_ CHECK_ERROR(_readOptionVecTupleIdentityIdTax(c, &m->withholding_tax)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_corporateaction_link_ca_doc_V4( - parser_context_t* c, pd_corporateaction_link_ca_doc_V4_t* m) +__Z_INLINE parser_error_t _readMethod_corporateaction_link_ca_doc_V7( + parser_context_t* c, pd_corporateaction_link_ca_doc_V7_t* m) { CHECK_ERROR(_readCAId(c, &m->id)) CHECK_ERROR(_readVecDocumentId(c, &m->docs)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_corporateaction_remove_ca_V4( - parser_context_t* c, pd_corporateaction_remove_ca_V4_t* m) +__Z_INLINE parser_error_t _readMethod_corporateaction_remove_ca_V7( + parser_context_t* c, pd_corporateaction_remove_ca_V7_t* m) { CHECK_ERROR(_readCAId(c, &m->ca_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_corporateaction_change_record_date_V4( - parser_context_t* c, pd_corporateaction_change_record_date_V4_t* m) +__Z_INLINE parser_error_t _readMethod_corporateaction_change_record_date_V7( + parser_context_t* c, pd_corporateaction_change_record_date_V7_t* m) { CHECK_ERROR(_readCAId(c, &m->ca_id)) CHECK_ERROR(_readOptionRecordDateSpec(c, &m->record_date)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_corporateaction_initiate_corporate_action_and_distribute_V4( - parser_context_t* c, pd_corporateaction_initiate_corporate_action_and_distribute_V4_t* m) +__Z_INLINE parser_error_t _readMethod_corporateaction_initiate_corporate_action_and_distribute_V7( + parser_context_t* c, pd_corporateaction_initiate_corporate_action_and_distribute_V7_t* m) { CHECK_ERROR(_readInitiateCorporateActionArgs(c, &m->ca_args)) CHECK_ERROR(_readOptionPortfolioNumber(c, &m->portfolio)) - CHECK_ERROR(_readTicker(c, &m->currency)) + CHECK_ERROR(_readAssetID(c, &m->currency)) CHECK_ERROR(_readBalance(c, &m->per_share)) CHECK_ERROR(_readBalance(c, &m->amount)) CHECK_ERROR(_readMoment(c, &m->payment_at)) CHECK_ERROR(_readOptionMoment(c, &m->expires_at)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_corporateballot_attach_ballot_V4( - parser_context_t* c, pd_corporateballot_attach_ballot_V4_t* m) +__Z_INLINE parser_error_t _readMethod_corporateballot_attach_ballot_V7( + parser_context_t* c, pd_corporateballot_attach_ballot_V7_t* m) { CHECK_ERROR(_readCAId(c, &m->ca_id)) CHECK_ERROR(_readBallotTimeRange(c, &m->range)) @@ -435,67 +355,67 @@ __Z_INLINE parser_error_t _readMethod_corporateballot_attach_ballot_V4( CHECK_ERROR(_readbool(c, &m->rcv)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_corporateballot_vote_V4( - parser_context_t* c, pd_corporateballot_vote_V4_t* m) +__Z_INLINE parser_error_t _readMethod_corporateballot_vote_V7( + parser_context_t* c, pd_corporateballot_vote_V7_t* m) { CHECK_ERROR(_readCAId(c, &m->ca_id)) CHECK_ERROR(_readVecBallotVote(c, &m->votes)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_corporateballot_change_end_V4( - parser_context_t* c, pd_corporateballot_change_end_V4_t* m) +__Z_INLINE parser_error_t _readMethod_corporateballot_change_end_V7( + parser_context_t* c, pd_corporateballot_change_end_V7_t* m) { CHECK_ERROR(_readCAId(c, &m->ca_id)) CHECK_ERROR(_readMoment(c, &m->end)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_corporateballot_change_meta_V4( - parser_context_t* c, pd_corporateballot_change_meta_V4_t* m) +__Z_INLINE parser_error_t _readMethod_corporateballot_change_meta_V7( + parser_context_t* c, pd_corporateballot_change_meta_V7_t* m) { CHECK_ERROR(_readCAId(c, &m->ca_id)) CHECK_ERROR(_readBallotMeta(c, &m->meta)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_corporateballot_change_rcv_V4( - parser_context_t* c, pd_corporateballot_change_rcv_V4_t* m) +__Z_INLINE parser_error_t _readMethod_corporateballot_change_rcv_V7( + parser_context_t* c, pd_corporateballot_change_rcv_V7_t* m) { CHECK_ERROR(_readCAId(c, &m->ca_id)) CHECK_ERROR(_readbool(c, &m->rcv)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_corporateballot_remove_ballot_V4( - parser_context_t* c, pd_corporateballot_remove_ballot_V4_t* m) +__Z_INLINE parser_error_t _readMethod_corporateballot_remove_ballot_V7( + parser_context_t* c, pd_corporateballot_remove_ballot_V7_t* m) { CHECK_ERROR(_readCAId(c, &m->ca_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_pips_enact_snapshot_results_V4( - parser_context_t* c, pd_pips_enact_snapshot_results_V4_t* m) +__Z_INLINE parser_error_t _readMethod_pips_enact_snapshot_results_V7( + parser_context_t* c, pd_pips_enact_snapshot_results_V7_t* m) { CHECK_ERROR(_readVecTuplePipIdSnapshotResult(c, &m->results)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_portfolio_allow_identity_to_create_portfolios_V4( - parser_context_t* c, pd_portfolio_allow_identity_to_create_portfolios_V4_t* m) +__Z_INLINE parser_error_t _readMethod_portfolio_allow_identity_to_create_portfolios_V7( + parser_context_t* c, pd_portfolio_allow_identity_to_create_portfolios_V7_t* m) { CHECK_ERROR(_readIdentityId(c, &m->trusted_identity)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_portfolio_revoke_create_portfolios_permission_V4( - parser_context_t* c, pd_portfolio_revoke_create_portfolios_permission_V4_t* m) +__Z_INLINE parser_error_t _readMethod_portfolio_revoke_create_portfolios_permission_V7( + parser_context_t* c, pd_portfolio_revoke_create_portfolios_permission_V7_t* m) { CHECK_ERROR(_readIdentityId(c, &m->identity)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_portfolio_create_custody_portfolio_V4( - parser_context_t* c, pd_portfolio_create_custody_portfolio_V4_t* m) +__Z_INLINE parser_error_t _readMethod_portfolio_create_custody_portfolio_V7( + parser_context_t* c, pd_portfolio_create_custody_portfolio_V7_t* m) { CHECK_ERROR(_readIdentityId(c, &m->portfolio_owner_id)) CHECK_ERROR(_readPortfolioName(c, &m->portfolio_name)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_settlement_affirm_with_receipts_with_count_V4( - parser_context_t* c, pd_settlement_affirm_with_receipts_with_count_V4_t* m) +__Z_INLINE parser_error_t _readMethod_settlement_affirm_with_receipts_with_count_V7( + parser_context_t* c, pd_settlement_affirm_with_receipts_with_count_V7_t* m) { CHECK_ERROR(_readInstructionId(c, &m->id)) CHECK_ERROR(_readVecReceiptDetails(c, &m->receipt_details)) @@ -503,34 +423,34 @@ __Z_INLINE parser_error_t _readMethod_settlement_affirm_with_receipts_with_count CHECK_ERROR(_readOptionAffirmationCount(c, &m->number_of_assets)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_settlement_affirm_instruction_with_count_V4( - parser_context_t* c, pd_settlement_affirm_instruction_with_count_V4_t* m) +__Z_INLINE parser_error_t _readMethod_settlement_affirm_instruction_with_count_V7( + parser_context_t* c, pd_settlement_affirm_instruction_with_count_V7_t* m) { CHECK_ERROR(_readInstructionId(c, &m->id)) CHECK_ERROR(_readVecPortfolioId(c, &m->portfolios)) CHECK_ERROR(_readOptionAffirmationCount(c, &m->number_of_assets)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_settlement_reject_instruction_with_count_V4( - parser_context_t* c, pd_settlement_reject_instruction_with_count_V4_t* m) +__Z_INLINE parser_error_t _readMethod_settlement_reject_instruction_with_count_V7( + parser_context_t* c, pd_settlement_reject_instruction_with_count_V7_t* m) { CHECK_ERROR(_readInstructionId(c, &m->id)) CHECK_ERROR(_readPortfolioId(c, &m->portfolio)) CHECK_ERROR(_readOptionAssetCount(c, &m->number_of_assets)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_settlement_withdraw_affirmation_with_count_V4( - parser_context_t* c, pd_settlement_withdraw_affirmation_with_count_V4_t* m) +__Z_INLINE parser_error_t _readMethod_settlement_withdraw_affirmation_with_count_V7( + parser_context_t* c, pd_settlement_withdraw_affirmation_with_count_V7_t* m) { CHECK_ERROR(_readInstructionId(c, &m->id)) CHECK_ERROR(_readVecPortfolioId(c, &m->portfolios)) CHECK_ERROR(_readOptionAffirmationCount(c, &m->number_of_assets)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_settlement_add_instruction_with_mediators_V4( - parser_context_t* c, pd_settlement_add_instruction_with_mediators_V4_t* m) +__Z_INLINE parser_error_t _readMethod_settlement_add_instruction_with_mediators_V7( + parser_context_t* c, pd_settlement_add_instruction_with_mediators_V7_t* m) { - CHECK_ERROR(_readVenueId(c, &m->venue_id)) + CHECK_ERROR(_readOptionVenueId(c, &m->venue_id)) CHECK_ERROR(_readSettlementTypeBlockNumber(c, &m->settlement_type)) CHECK_ERROR(_readOptionMoment(c, &m->trade_date)) CHECK_ERROR(_readOptionMoment(c, &m->value_date)) @@ -539,10 +459,10 @@ __Z_INLINE parser_error_t _readMethod_settlement_add_instruction_with_mediators_ CHECK_ERROR(_readBoundedBTreeSetIdentityIdMaxInstructionMediators(c, &m->mediators)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_settlement_add_and_affirm_with_mediators_V4( - parser_context_t* c, pd_settlement_add_and_affirm_with_mediators_V4_t* m) +__Z_INLINE parser_error_t _readMethod_settlement_add_and_affirm_with_mediators_V7( + parser_context_t* c, pd_settlement_add_and_affirm_with_mediators_V7_t* m) { - CHECK_ERROR(_readVenueId(c, &m->venue_id)) + CHECK_ERROR(_readOptionVenueId(c, &m->venue_id)) CHECK_ERROR(_readSettlementTypeBlockNumber(c, &m->settlement_type)) CHECK_ERROR(_readOptionMoment(c, &m->trade_date)) CHECK_ERROR(_readOptionMoment(c, &m->value_date)) @@ -552,102 +472,101 @@ __Z_INLINE parser_error_t _readMethod_settlement_add_and_affirm_with_mediators_V CHECK_ERROR(_readBoundedBTreeSetIdentityIdMaxInstructionMediators(c, &m->mediators)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_settlement_affirm_instruction_as_mediator_V4( - parser_context_t* c, pd_settlement_affirm_instruction_as_mediator_V4_t* m) +__Z_INLINE parser_error_t _readMethod_settlement_affirm_instruction_as_mediator_V7( + parser_context_t* c, pd_settlement_affirm_instruction_as_mediator_V7_t* m) { CHECK_ERROR(_readInstructionId(c, &m->instruction_id)) CHECK_ERROR(_readOptionMoment(c, &m->expiry)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_settlement_withdraw_affirmation_as_mediator_V4( - parser_context_t* c, pd_settlement_withdraw_affirmation_as_mediator_V4_t* m) +__Z_INLINE parser_error_t _readMethod_settlement_withdraw_affirmation_as_mediator_V7( + parser_context_t* c, pd_settlement_withdraw_affirmation_as_mediator_V7_t* m) { CHECK_ERROR(_readInstructionId(c, &m->instruction_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_settlement_reject_instruction_as_mediator_V4( - parser_context_t* c, pd_settlement_reject_instruction_as_mediator_V4_t* m) +__Z_INLINE parser_error_t _readMethod_settlement_reject_instruction_as_mediator_V7( + parser_context_t* c, pd_settlement_reject_instruction_as_mediator_V7_t* m) { CHECK_ERROR(_readInstructionId(c, &m->instruction_id)) CHECK_ERROR(_readOptionAssetCount(c, &m->number_of_assets)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_nft_controller_transfer_V4( - parser_context_t* c, pd_nft_controller_transfer_V4_t* m) +__Z_INLINE parser_error_t _readMethod_nft_controller_transfer_V7( + parser_context_t* c, pd_nft_controller_transfer_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) CHECK_ERROR(_readNFTs(c, &m->nfts)) CHECK_ERROR(_readPortfolioId(c, &m->source_portfolio)) CHECK_ERROR(_readPortfolioKind(c, &m->callers_portfolio_kind)) return parser_ok; } #endif -__Z_INLINE parser_error_t _readMethod_system_remark_V4( - parser_context_t* c, pd_system_remark_V4_t* m) +__Z_INLINE parser_error_t _readMethod_system_remark_V7( + parser_context_t* c, pd_system_remark_V7_t* m) { CHECK_ERROR(_readBytes(c, &m->remark)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_system_set_heap_pages_V4( - parser_context_t* c, pd_system_set_heap_pages_V4_t* m) +__Z_INLINE parser_error_t _readMethod_system_set_heap_pages_V7( + parser_context_t* c, pd_system_set_heap_pages_V7_t* m) { CHECK_ERROR(_readu64(c, &m->pages)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_system_set_code_V4( - parser_context_t* c, pd_system_set_code_V4_t* m) +__Z_INLINE parser_error_t _readMethod_system_set_code_V7( + parser_context_t* c, pd_system_set_code_V7_t* m) { CHECK_ERROR(_readBytes(c, &m->code)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_system_set_code_without_checks_V4( - parser_context_t* c, pd_system_set_code_without_checks_V4_t* m) +__Z_INLINE parser_error_t _readMethod_system_set_code_without_checks_V7( + parser_context_t* c, pd_system_set_code_without_checks_V7_t* m) { CHECK_ERROR(_readVecu8(c, &m->code)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_system_remark_with_event_V4( - parser_context_t* c, pd_system_remark_with_event_V4_t* m) +__Z_INLINE parser_error_t _readMethod_system_remark_with_event_V7( + parser_context_t* c, pd_system_remark_with_event_V7_t* m) { CHECK_ERROR(_readBytes(c, &m->remark)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_timestamp_set_V4( - parser_context_t* c, pd_timestamp_set_V4_t* m) +__Z_INLINE parser_error_t _readMethod_timestamp_set_V7( + parser_context_t* c, pd_timestamp_set_V7_t* m) { CHECK_ERROR(_readCompactu64(c, &m->now)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_indices_claim_V4( - parser_context_t* c, pd_indices_claim_V4_t* m) +__Z_INLINE parser_error_t _readMethod_indices_claim_V7( + parser_context_t* c, pd_indices_claim_V7_t* m) { CHECK_ERROR(_readAccountIndex(c, &m->index)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_indices_transfer_V4( - parser_context_t* c, pd_indices_transfer_V4_t* m) +__Z_INLINE parser_error_t _readMethod_indices_transfer_V7( + parser_context_t* c, pd_indices_transfer_V7_t* m) { CHECK_ERROR(_readAccountIdLookupOfT(c, &m->new_)) CHECK_ERROR(_readAccountIndex(c, &m->index)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_indices_free_V4( - parser_context_t* c, pd_indices_free_V4_t* m) +__Z_INLINE parser_error_t _readMethod_indices_free_V7( + parser_context_t* c, pd_indices_free_V7_t* m) { CHECK_ERROR(_readAccountIndex(c, &m->index)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_indices_force_transfer_V4( - parser_context_t* c, pd_indices_force_transfer_V4_t* m) +__Z_INLINE parser_error_t _readMethod_indices_force_transfer_V7( + parser_context_t* c, pd_indices_force_transfer_V7_t* m) { CHECK_ERROR(_readAccountIdLookupOfT(c, &m->new_)) CHECK_ERROR(_readAccountIndex(c, &m->index)) @@ -655,22 +574,22 @@ __Z_INLINE parser_error_t _readMethod_indices_force_transfer_V4( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_indices_freeze_V4( - parser_context_t* c, pd_indices_freeze_V4_t* m) +__Z_INLINE parser_error_t _readMethod_indices_freeze_V7( + parser_context_t* c, pd_indices_freeze_V7_t* m) { CHECK_ERROR(_readAccountIndex(c, &m->index)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_balances_deposit_block_reward_reserve_balance_V4( - parser_context_t* c, pd_balances_deposit_block_reward_reserve_balance_V4_t* m) +__Z_INLINE parser_error_t _readMethod_balances_deposit_block_reward_reserve_balance_V7( + parser_context_t* c, pd_balances_deposit_block_reward_reserve_balance_V7_t* m) { CHECK_ERROR(_readCompactBalance(c, &m->amount)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_balances_set_balance_V4( - parser_context_t* c, pd_balances_set_balance_V4_t* m) +__Z_INLINE parser_error_t _readMethod_balances_set_balance_V7( + parser_context_t* c, pd_balances_set_balance_V7_t* m) { CHECK_ERROR(_readLookupasStaticLookupSource(c, &m->who)) CHECK_ERROR(_readCompactBalance(c, &m->new_free)) @@ -678,8 +597,8 @@ __Z_INLINE parser_error_t _readMethod_balances_set_balance_V4( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_balances_force_transfer_V4( - parser_context_t* c, pd_balances_force_transfer_V4_t* m) +__Z_INLINE parser_error_t _readMethod_balances_force_transfer_V7( + parser_context_t* c, pd_balances_force_transfer_V7_t* m) { CHECK_ERROR(_readLookupasStaticLookupSource(c, &m->source)) CHECK_ERROR(_readLookupasStaticLookupSource(c, &m->dest)) @@ -687,23 +606,23 @@ __Z_INLINE parser_error_t _readMethod_balances_force_transfer_V4( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_balances_burn_account_balance_V4( - parser_context_t* c, pd_balances_burn_account_balance_V4_t* m) +__Z_INLINE parser_error_t _readMethod_balances_burn_account_balance_V7( + parser_context_t* c, pd_balances_burn_account_balance_V7_t* m) { CHECK_ERROR(_readBalance(c, &m->amount)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_identity_cdd_register_did_V4( - parser_context_t* c, pd_identity_cdd_register_did_V4_t* m) +__Z_INLINE parser_error_t _readMethod_identity_cdd_register_did_V7( + parser_context_t* c, pd_identity_cdd_register_did_V7_t* m) { CHECK_ERROR(_readAccountId(c, &m->target_account)) CHECK_ERROR(_readVecSecondaryKeyAccountId(c, &m->secondary_keys)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_identity_invalidate_cdd_claims_V4( - parser_context_t* c, pd_identity_invalidate_cdd_claims_V4_t* m) +__Z_INLINE parser_error_t _readMethod_identity_invalidate_cdd_claims_V7( + parser_context_t* c, pd_identity_invalidate_cdd_claims_V7_t* m) { CHECK_ERROR(_readIdentityId(c, &m->cdd)) CHECK_ERROR(_readMoment(c, &m->disable_from)) @@ -711,29 +630,29 @@ __Z_INLINE parser_error_t _readMethod_identity_invalidate_cdd_claims_V4( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_identity_change_cdd_requirement_for_mk_rotation_V4( - parser_context_t* c, pd_identity_change_cdd_requirement_for_mk_rotation_V4_t* m) +__Z_INLINE parser_error_t _readMethod_identity_change_cdd_requirement_for_mk_rotation_V7( + parser_context_t* c, pd_identity_change_cdd_requirement_for_mk_rotation_V7_t* m) { CHECK_ERROR(_readbool(c, &m->auth_required)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_identity_gc_add_cdd_claim_V4( - parser_context_t* c, pd_identity_gc_add_cdd_claim_V4_t* m) +__Z_INLINE parser_error_t _readMethod_identity_gc_add_cdd_claim_V7( + parser_context_t* c, pd_identity_gc_add_cdd_claim_V7_t* m) { CHECK_ERROR(_readIdentityId(c, &m->target)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_identity_gc_revoke_cdd_claim_V4( - parser_context_t* c, pd_identity_gc_revoke_cdd_claim_V4_t* m) +__Z_INLINE parser_error_t _readMethod_identity_gc_revoke_cdd_claim_V7( + parser_context_t* c, pd_identity_gc_revoke_cdd_claim_V7_t* m) { CHECK_ERROR(_readIdentityId(c, &m->target)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_identity_revoke_claim_by_index_V4( - parser_context_t* c, pd_identity_revoke_claim_by_index_V4_t* m) +__Z_INLINE parser_error_t _readMethod_identity_revoke_claim_by_index_V7( + parser_context_t* c, pd_identity_revoke_claim_by_index_V7_t* m) { CHECK_ERROR(_readIdentityId(c, &m->target)) CHECK_ERROR(_readClaimType(c, &m->claim_type)) @@ -741,31 +660,31 @@ __Z_INLINE parser_error_t _readMethod_identity_revoke_claim_by_index_V4( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_identity_rotate_primary_key_to_secondary_V4( - parser_context_t* c, pd_identity_rotate_primary_key_to_secondary_V4_t* m) +__Z_INLINE parser_error_t _readMethod_identity_rotate_primary_key_to_secondary_V7( + parser_context_t* c, pd_identity_rotate_primary_key_to_secondary_V7_t* m) { CHECK_ERROR(_readu64(c, &m->auth_id)) CHECK_ERROR(_readOptionu64(c, &m->optional_cdd_auth_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_identity_set_secondary_key_permissions_V4( - parser_context_t* c, pd_identity_set_secondary_key_permissions_V4_t* m) +__Z_INLINE parser_error_t _readMethod_identity_set_secondary_key_permissions_V7( + parser_context_t* c, pd_identity_set_secondary_key_permissions_V7_t* m) { CHECK_ERROR(_readAccountId(c, &m->key)) CHECK_ERROR(_readPermissions(c, &m->perms)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_identity_register_custom_claim_type_V4( - parser_context_t* c, pd_identity_register_custom_claim_type_V4_t* m) +__Z_INLINE parser_error_t _readMethod_identity_register_custom_claim_type_V7( + parser_context_t* c, pd_identity_register_custom_claim_type_V7_t* m) { CHECK_ERROR(_readVecu8(c, &m->ty)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_identity_cdd_register_did_with_cdd_V4( - parser_context_t* c, pd_identity_cdd_register_did_with_cdd_V4_t* m) +__Z_INLINE parser_error_t _readMethod_identity_cdd_register_did_with_cdd_V7( + parser_context_t* c, pd_identity_cdd_register_did_with_cdd_V7_t* m) { CHECK_ERROR(_readAccountId(c, &m->target_account)) CHECK_ERROR(_readVecSecondaryKeyAccountId(c, &m->secondary_keys)) @@ -773,37 +692,37 @@ __Z_INLINE parser_error_t _readMethod_identity_cdd_register_did_with_cdd_V4( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_identity_create_child_identity_V4( - parser_context_t* c, pd_identity_create_child_identity_V4_t* m) +__Z_INLINE parser_error_t _readMethod_identity_create_child_identity_V7( + parser_context_t* c, pd_identity_create_child_identity_V7_t* m) { CHECK_ERROR(_readAccountId(c, &m->secondary_key)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_identity_create_child_identities_V4( - parser_context_t* c, pd_identity_create_child_identities_V4_t* m) +__Z_INLINE parser_error_t _readMethod_identity_create_child_identities_V7( + parser_context_t* c, pd_identity_create_child_identities_V7_t* m) { CHECK_ERROR(_readVecCreateChildIdentityWithAuthAccountId(c, &m->child_keys)) CHECK_ERROR(_readMoment(c, &m->expires_at)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_identity_unlink_child_identity_V4( - parser_context_t* c, pd_identity_unlink_child_identity_V4_t* m) +__Z_INLINE parser_error_t _readMethod_identity_unlink_child_identity_V7( + parser_context_t* c, pd_identity_unlink_child_identity_V7_t* m) { CHECK_ERROR(_readIdentityId(c, &m->child_did)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_cddserviceproviders_set_active_members_limit_V4( - parser_context_t* c, pd_cddserviceproviders_set_active_members_limit_V4_t* m) +__Z_INLINE parser_error_t _readMethod_cddserviceproviders_set_active_members_limit_V7( + parser_context_t* c, pd_cddserviceproviders_set_active_members_limit_V7_t* m) { CHECK_ERROR(_readMemberCount(c, &m->limit)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_cddserviceproviders_disable_member_V4( - parser_context_t* c, pd_cddserviceproviders_disable_member_V4_t* m) +__Z_INLINE parser_error_t _readMethod_cddserviceproviders_disable_member_V7( + parser_context_t* c, pd_cddserviceproviders_disable_member_V7_t* m) { CHECK_ERROR(_readIdentityId(c, &m->who)) CHECK_ERROR(_readOptionMoment(c, &m->expiry)) @@ -811,75 +730,75 @@ __Z_INLINE parser_error_t _readMethod_cddserviceproviders_disable_member_V4( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_cddserviceproviders_add_member_V4( - parser_context_t* c, pd_cddserviceproviders_add_member_V4_t* m) +__Z_INLINE parser_error_t _readMethod_cddserviceproviders_add_member_V7( + parser_context_t* c, pd_cddserviceproviders_add_member_V7_t* m) { CHECK_ERROR(_readIdentityId(c, &m->who)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_cddserviceproviders_remove_member_V4( - parser_context_t* c, pd_cddserviceproviders_remove_member_V4_t* m) +__Z_INLINE parser_error_t _readMethod_cddserviceproviders_remove_member_V7( + parser_context_t* c, pd_cddserviceproviders_remove_member_V7_t* m) { CHECK_ERROR(_readIdentityId(c, &m->who)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_cddserviceproviders_swap_member_V4( - parser_context_t* c, pd_cddserviceproviders_swap_member_V4_t* m) +__Z_INLINE parser_error_t _readMethod_cddserviceproviders_swap_member_V7( + parser_context_t* c, pd_cddserviceproviders_swap_member_V7_t* m) { CHECK_ERROR(_readIdentityId(c, &m->remove)) CHECK_ERROR(_readIdentityId(c, &m->add)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_cddserviceproviders_reset_members_V4( - parser_context_t* c, pd_cddserviceproviders_reset_members_V4_t* m) +__Z_INLINE parser_error_t _readMethod_cddserviceproviders_reset_members_V7( + parser_context_t* c, pd_cddserviceproviders_reset_members_V7_t* m) { CHECK_ERROR(_readVecIdentityId(c, &m->members)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_cddserviceproviders_abdicate_membership_V4( - parser_context_t* c, pd_cddserviceproviders_abdicate_membership_V4_t* m) +__Z_INLINE parser_error_t _readMethod_cddserviceproviders_abdicate_membership_V7( + parser_context_t* c, pd_cddserviceproviders_abdicate_membership_V7_t* m) { UNUSED(c); UNUSED(m); return parser_ok; } -__Z_INLINE parser_error_t _readMethod_polymeshcommittee_set_vote_threshold_V4( - parser_context_t* c, pd_polymeshcommittee_set_vote_threshold_V4_t* m) +__Z_INLINE parser_error_t _readMethod_polymeshcommittee_set_vote_threshold_V7( + parser_context_t* c, pd_polymeshcommittee_set_vote_threshold_V7_t* m) { CHECK_ERROR(_readu32(c, &m->n)) CHECK_ERROR(_readu32(c, &m->d)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_polymeshcommittee_set_release_coordinator_V4( - parser_context_t* c, pd_polymeshcommittee_set_release_coordinator_V4_t* m) +__Z_INLINE parser_error_t _readMethod_polymeshcommittee_set_release_coordinator_V7( + parser_context_t* c, pd_polymeshcommittee_set_release_coordinator_V7_t* m) { CHECK_ERROR(_readIdentityId(c, &m->id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_polymeshcommittee_set_expires_after_V4( - parser_context_t* c, pd_polymeshcommittee_set_expires_after_V4_t* m) +__Z_INLINE parser_error_t _readMethod_polymeshcommittee_set_expires_after_V7( + parser_context_t* c, pd_polymeshcommittee_set_expires_after_V7_t* m) { CHECK_ERROR(_readMaybeBlockBlockNumber(c, &m->expiry)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_polymeshcommittee_vote_or_propose_V4( - parser_context_t* c, pd_polymeshcommittee_vote_or_propose_V4_t* m) +__Z_INLINE parser_error_t _readMethod_polymeshcommittee_vote_or_propose_V7( + parser_context_t* c, pd_polymeshcommittee_vote_or_propose_V7_t* m) { CHECK_ERROR(_readbool(c, &m->approve)) CHECK_ERROR(_readProposal(c, &m->call)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_polymeshcommittee_vote_V4( - parser_context_t* c, pd_polymeshcommittee_vote_V4_t* m) +__Z_INLINE parser_error_t _readMethod_polymeshcommittee_vote_V7( + parser_context_t* c, pd_polymeshcommittee_vote_V7_t* m) { CHECK_ERROR(_readHash(c, &m->proposal)) CHECK_ERROR(_readProposalIndex(c, &m->index)) @@ -887,15 +806,15 @@ __Z_INLINE parser_error_t _readMethod_polymeshcommittee_vote_V4( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_committeemembership_set_active_members_limit_V4( - parser_context_t* c, pd_committeemembership_set_active_members_limit_V4_t* m) +__Z_INLINE parser_error_t _readMethod_committeemembership_set_active_members_limit_V7( + parser_context_t* c, pd_committeemembership_set_active_members_limit_V7_t* m) { CHECK_ERROR(_readMemberCount(c, &m->limit)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_committeemembership_disable_member_V4( - parser_context_t* c, pd_committeemembership_disable_member_V4_t* m) +__Z_INLINE parser_error_t _readMethod_committeemembership_disable_member_V7( + parser_context_t* c, pd_committeemembership_disable_member_V7_t* m) { CHECK_ERROR(_readIdentityId(c, &m->who)) CHECK_ERROR(_readOptionMoment(c, &m->expiry)) @@ -903,75 +822,75 @@ __Z_INLINE parser_error_t _readMethod_committeemembership_disable_member_V4( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_committeemembership_add_member_V4( - parser_context_t* c, pd_committeemembership_add_member_V4_t* m) +__Z_INLINE parser_error_t _readMethod_committeemembership_add_member_V7( + parser_context_t* c, pd_committeemembership_add_member_V7_t* m) { CHECK_ERROR(_readIdentityId(c, &m->who)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_committeemembership_remove_member_V4( - parser_context_t* c, pd_committeemembership_remove_member_V4_t* m) +__Z_INLINE parser_error_t _readMethod_committeemembership_remove_member_V7( + parser_context_t* c, pd_committeemembership_remove_member_V7_t* m) { CHECK_ERROR(_readIdentityId(c, &m->who)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_committeemembership_swap_member_V4( - parser_context_t* c, pd_committeemembership_swap_member_V4_t* m) +__Z_INLINE parser_error_t _readMethod_committeemembership_swap_member_V7( + parser_context_t* c, pd_committeemembership_swap_member_V7_t* m) { CHECK_ERROR(_readIdentityId(c, &m->remove)) CHECK_ERROR(_readIdentityId(c, &m->add)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_committeemembership_reset_members_V4( - parser_context_t* c, pd_committeemembership_reset_members_V4_t* m) +__Z_INLINE parser_error_t _readMethod_committeemembership_reset_members_V7( + parser_context_t* c, pd_committeemembership_reset_members_V7_t* m) { CHECK_ERROR(_readVecIdentityId(c, &m->members)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_committeemembership_abdicate_membership_V4( - parser_context_t* c, pd_committeemembership_abdicate_membership_V4_t* m) +__Z_INLINE parser_error_t _readMethod_committeemembership_abdicate_membership_V7( + parser_context_t* c, pd_committeemembership_abdicate_membership_V7_t* m) { UNUSED(c); UNUSED(m); return parser_ok; } -__Z_INLINE parser_error_t _readMethod_technicalcommittee_set_vote_threshold_V4( - parser_context_t* c, pd_technicalcommittee_set_vote_threshold_V4_t* m) +__Z_INLINE parser_error_t _readMethod_technicalcommittee_set_vote_threshold_V7( + parser_context_t* c, pd_technicalcommittee_set_vote_threshold_V7_t* m) { CHECK_ERROR(_readu32(c, &m->n)) CHECK_ERROR(_readu32(c, &m->d)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_technicalcommittee_set_release_coordinator_V4( - parser_context_t* c, pd_technicalcommittee_set_release_coordinator_V4_t* m) +__Z_INLINE parser_error_t _readMethod_technicalcommittee_set_release_coordinator_V7( + parser_context_t* c, pd_technicalcommittee_set_release_coordinator_V7_t* m) { CHECK_ERROR(_readIdentityId(c, &m->id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_technicalcommittee_set_expires_after_V4( - parser_context_t* c, pd_technicalcommittee_set_expires_after_V4_t* m) +__Z_INLINE parser_error_t _readMethod_technicalcommittee_set_expires_after_V7( + parser_context_t* c, pd_technicalcommittee_set_expires_after_V7_t* m) { CHECK_ERROR(_readMaybeBlockBlockNumber(c, &m->expiry)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_technicalcommittee_vote_or_propose_V4( - parser_context_t* c, pd_technicalcommittee_vote_or_propose_V4_t* m) +__Z_INLINE parser_error_t _readMethod_technicalcommittee_vote_or_propose_V7( + parser_context_t* c, pd_technicalcommittee_vote_or_propose_V7_t* m) { CHECK_ERROR(_readbool(c, &m->approve)) CHECK_ERROR(_readProposal(c, &m->call)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_technicalcommittee_vote_V4( - parser_context_t* c, pd_technicalcommittee_vote_V4_t* m) +__Z_INLINE parser_error_t _readMethod_technicalcommittee_vote_V7( + parser_context_t* c, pd_technicalcommittee_vote_V7_t* m) { CHECK_ERROR(_readHash(c, &m->proposal)) CHECK_ERROR(_readProposalIndex(c, &m->index)) @@ -979,15 +898,15 @@ __Z_INLINE parser_error_t _readMethod_technicalcommittee_vote_V4( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_technicalcommitteemembership_set_active_members_limit_V4( - parser_context_t* c, pd_technicalcommitteemembership_set_active_members_limit_V4_t* m) +__Z_INLINE parser_error_t _readMethod_technicalcommitteemembership_set_active_members_limit_V7( + parser_context_t* c, pd_technicalcommitteemembership_set_active_members_limit_V7_t* m) { CHECK_ERROR(_readMemberCount(c, &m->limit)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_technicalcommitteemembership_disable_member_V4( - parser_context_t* c, pd_technicalcommitteemembership_disable_member_V4_t* m) +__Z_INLINE parser_error_t _readMethod_technicalcommitteemembership_disable_member_V7( + parser_context_t* c, pd_technicalcommitteemembership_disable_member_V7_t* m) { CHECK_ERROR(_readIdentityId(c, &m->who)) CHECK_ERROR(_readOptionMoment(c, &m->expiry)) @@ -995,75 +914,75 @@ __Z_INLINE parser_error_t _readMethod_technicalcommitteemembership_disable_membe return parser_ok; } -__Z_INLINE parser_error_t _readMethod_technicalcommitteemembership_add_member_V4( - parser_context_t* c, pd_technicalcommitteemembership_add_member_V4_t* m) +__Z_INLINE parser_error_t _readMethod_technicalcommitteemembership_add_member_V7( + parser_context_t* c, pd_technicalcommitteemembership_add_member_V7_t* m) { CHECK_ERROR(_readIdentityId(c, &m->who)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_technicalcommitteemembership_remove_member_V4( - parser_context_t* c, pd_technicalcommitteemembership_remove_member_V4_t* m) +__Z_INLINE parser_error_t _readMethod_technicalcommitteemembership_remove_member_V7( + parser_context_t* c, pd_technicalcommitteemembership_remove_member_V7_t* m) { CHECK_ERROR(_readIdentityId(c, &m->who)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_technicalcommitteemembership_swap_member_V4( - parser_context_t* c, pd_technicalcommitteemembership_swap_member_V4_t* m) +__Z_INLINE parser_error_t _readMethod_technicalcommitteemembership_swap_member_V7( + parser_context_t* c, pd_technicalcommitteemembership_swap_member_V7_t* m) { CHECK_ERROR(_readIdentityId(c, &m->remove)) CHECK_ERROR(_readIdentityId(c, &m->add)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_technicalcommitteemembership_reset_members_V4( - parser_context_t* c, pd_technicalcommitteemembership_reset_members_V4_t* m) +__Z_INLINE parser_error_t _readMethod_technicalcommitteemembership_reset_members_V7( + parser_context_t* c, pd_technicalcommitteemembership_reset_members_V7_t* m) { CHECK_ERROR(_readVecIdentityId(c, &m->members)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_technicalcommitteemembership_abdicate_membership_V4( - parser_context_t* c, pd_technicalcommitteemembership_abdicate_membership_V4_t* m) +__Z_INLINE parser_error_t _readMethod_technicalcommitteemembership_abdicate_membership_V7( + parser_context_t* c, pd_technicalcommitteemembership_abdicate_membership_V7_t* m) { UNUSED(c); UNUSED(m); return parser_ok; } -__Z_INLINE parser_error_t _readMethod_upgradecommittee_set_vote_threshold_V4( - parser_context_t* c, pd_upgradecommittee_set_vote_threshold_V4_t* m) +__Z_INLINE parser_error_t _readMethod_upgradecommittee_set_vote_threshold_V7( + parser_context_t* c, pd_upgradecommittee_set_vote_threshold_V7_t* m) { CHECK_ERROR(_readu32(c, &m->n)) CHECK_ERROR(_readu32(c, &m->d)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_upgradecommittee_set_release_coordinator_V4( - parser_context_t* c, pd_upgradecommittee_set_release_coordinator_V4_t* m) +__Z_INLINE parser_error_t _readMethod_upgradecommittee_set_release_coordinator_V7( + parser_context_t* c, pd_upgradecommittee_set_release_coordinator_V7_t* m) { CHECK_ERROR(_readIdentityId(c, &m->id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_upgradecommittee_set_expires_after_V4( - parser_context_t* c, pd_upgradecommittee_set_expires_after_V4_t* m) +__Z_INLINE parser_error_t _readMethod_upgradecommittee_set_expires_after_V7( + parser_context_t* c, pd_upgradecommittee_set_expires_after_V7_t* m) { CHECK_ERROR(_readMaybeBlockBlockNumber(c, &m->expiry)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_upgradecommittee_vote_or_propose_V4( - parser_context_t* c, pd_upgradecommittee_vote_or_propose_V4_t* m) +__Z_INLINE parser_error_t _readMethod_upgradecommittee_vote_or_propose_V7( + parser_context_t* c, pd_upgradecommittee_vote_or_propose_V7_t* m) { CHECK_ERROR(_readbool(c, &m->approve)) CHECK_ERROR(_readProposal(c, &m->call)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_upgradecommittee_vote_V4( - parser_context_t* c, pd_upgradecommittee_vote_V4_t* m) +__Z_INLINE parser_error_t _readMethod_upgradecommittee_vote_V7( + parser_context_t* c, pd_upgradecommittee_vote_V7_t* m) { CHECK_ERROR(_readHash(c, &m->proposal)) CHECK_ERROR(_readProposalIndex(c, &m->index)) @@ -1071,15 +990,15 @@ __Z_INLINE parser_error_t _readMethod_upgradecommittee_vote_V4( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_upgradecommitteemembership_set_active_members_limit_V4( - parser_context_t* c, pd_upgradecommitteemembership_set_active_members_limit_V4_t* m) +__Z_INLINE parser_error_t _readMethod_upgradecommitteemembership_set_active_members_limit_V7( + parser_context_t* c, pd_upgradecommitteemembership_set_active_members_limit_V7_t* m) { CHECK_ERROR(_readMemberCount(c, &m->limit)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_upgradecommitteemembership_disable_member_V4( - parser_context_t* c, pd_upgradecommitteemembership_disable_member_V4_t* m) +__Z_INLINE parser_error_t _readMethod_upgradecommitteemembership_disable_member_V7( + parser_context_t* c, pd_upgradecommitteemembership_disable_member_V7_t* m) { CHECK_ERROR(_readIdentityId(c, &m->who)) CHECK_ERROR(_readOptionMoment(c, &m->expiry)) @@ -1087,577 +1006,549 @@ __Z_INLINE parser_error_t _readMethod_upgradecommitteemembership_disable_member_ return parser_ok; } -__Z_INLINE parser_error_t _readMethod_upgradecommitteemembership_add_member_V4( - parser_context_t* c, pd_upgradecommitteemembership_add_member_V4_t* m) +__Z_INLINE parser_error_t _readMethod_upgradecommitteemembership_add_member_V7( + parser_context_t* c, pd_upgradecommitteemembership_add_member_V7_t* m) { CHECK_ERROR(_readIdentityId(c, &m->who)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_upgradecommitteemembership_remove_member_V4( - parser_context_t* c, pd_upgradecommitteemembership_remove_member_V4_t* m) +__Z_INLINE parser_error_t _readMethod_upgradecommitteemembership_remove_member_V7( + parser_context_t* c, pd_upgradecommitteemembership_remove_member_V7_t* m) { CHECK_ERROR(_readIdentityId(c, &m->who)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_upgradecommitteemembership_swap_member_V4( - parser_context_t* c, pd_upgradecommitteemembership_swap_member_V4_t* m) +__Z_INLINE parser_error_t _readMethod_upgradecommitteemembership_swap_member_V7( + parser_context_t* c, pd_upgradecommitteemembership_swap_member_V7_t* m) { CHECK_ERROR(_readIdentityId(c, &m->remove)) CHECK_ERROR(_readIdentityId(c, &m->add)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_upgradecommitteemembership_reset_members_V4( - parser_context_t* c, pd_upgradecommitteemembership_reset_members_V4_t* m) +__Z_INLINE parser_error_t _readMethod_upgradecommitteemembership_reset_members_V7( + parser_context_t* c, pd_upgradecommitteemembership_reset_members_V7_t* m) { CHECK_ERROR(_readVecIdentityId(c, &m->members)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_upgradecommitteemembership_abdicate_membership_V4( - parser_context_t* c, pd_upgradecommitteemembership_abdicate_membership_V4_t* m) +__Z_INLINE parser_error_t _readMethod_upgradecommitteemembership_abdicate_membership_V7( + parser_context_t* c, pd_upgradecommitteemembership_abdicate_membership_V7_t* m) { UNUSED(c); UNUSED(m); return parser_ok; } -__Z_INLINE parser_error_t _readMethod_multisig_create_or_approve_proposal_as_identity_V4( - parser_context_t* c, pd_multisig_create_or_approve_proposal_as_identity_V4_t* m) +__Z_INLINE parser_error_t _readMethod_multisig_create_proposal_V7( + parser_context_t* c, pd_multisig_create_proposal_V7_t* m) { CHECK_ERROR(_readAccountId(c, &m->multisig)) - CHECK_ERROR(_readProposal(c, &m->proposal)) - CHECK_ERROR(_readOptionMoment(c, &m->expiry)) - CHECK_ERROR(_readbool(c, &m->auto_close)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_multisig_create_proposal_as_identity_V4( - parser_context_t* c, pd_multisig_create_proposal_as_identity_V4_t* m) -{ - CHECK_ERROR(_readAccountId(c, &m->multisig)) - CHECK_ERROR(_readProposal(c, &m->proposal)) + CHECK_ERROR(_readBoxTasConfigProposal(c, &m->proposal)) CHECK_ERROR(_readOptionMoment(c, &m->expiry)) - CHECK_ERROR(_readbool(c, &m->auto_close)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_multisig_approve_as_identity_V4( - parser_context_t* c, pd_multisig_approve_as_identity_V4_t* m) +__Z_INLINE parser_error_t _readMethod_multisig_approve_V7( + parser_context_t* c, pd_multisig_approve_V7_t* m) { CHECK_ERROR(_readAccountId(c, &m->multisig)) CHECK_ERROR(_readu64(c, &m->proposal_id)) + CHECK_ERROR(_readOptionWeight(c, &m->max_weight)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_multisig_reject_as_identity_V4( - parser_context_t* c, pd_multisig_reject_as_identity_V4_t* m) +__Z_INLINE parser_error_t _readMethod_multisig_reject_V7( + parser_context_t* c, pd_multisig_reject_V7_t* m) { CHECK_ERROR(_readAccountId(c, &m->multisig)) CHECK_ERROR(_readu64(c, &m->proposal_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_multisig_accept_multisig_signer_as_identity_V4( - parser_context_t* c, pd_multisig_accept_multisig_signer_as_identity_V4_t* m) +__Z_INLINE parser_error_t _readMethod_multisig_accept_multisig_signer_V7( + parser_context_t* c, pd_multisig_accept_multisig_signer_V7_t* m) { - CHECK_ERROR(_readu64(c, &m->_auth_id)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_multisig_make_multisig_secondary_V4( - parser_context_t* c, pd_multisig_make_multisig_secondary_V4_t* m) -{ - CHECK_ERROR(_readAccountId(c, &m->multisig)) + CHECK_ERROR(_readu64(c, &m->auth_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_multisig_execute_scheduled_proposal_V4( - parser_context_t* c, pd_multisig_execute_scheduled_proposal_V4_t* m) +__Z_INLINE parser_error_t _readMethod_multisig_add_multisig_signers_V7( + parser_context_t* c, pd_multisig_add_multisig_signers_V7_t* m) { - CHECK_ERROR(_readAccountId(c, &m->multisig)) - CHECK_ERROR(_readu64(c, &m->proposal_id)) - CHECK_ERROR(_readIdentityId(c, &m->multisig_did)) - CHECK_ERROR(_readWeight(c, &m->_proposal_weight)) + CHECK_ERROR(_readBoundedVecAccountIdMaxSigners(c, &m->signers)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_multisig_change_sigs_required_via_creator_V4( - parser_context_t* c, pd_multisig_change_sigs_required_via_creator_V4_t* m) +__Z_INLINE parser_error_t _readMethod_multisig_remove_multisig_signers_V7( + parser_context_t* c, pd_multisig_remove_multisig_signers_V7_t* m) { - CHECK_ERROR(_readAccountId(c, &m->multisig_account)) - CHECK_ERROR(_readu64(c, &m->signatures_required)) + CHECK_ERROR(_readBoundedVecAccountIdMaxSigners(c, &m->signers)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_multisig_remove_creator_controls_V4( - parser_context_t* c, pd_multisig_remove_creator_controls_V4_t* m) +__Z_INLINE parser_error_t _readMethod_multisig_add_multisig_signers_via_admin_V7( + parser_context_t* c, pd_multisig_add_multisig_signers_via_admin_V7_t* m) { - CHECK_ERROR(_readAccountId(c, &m->multisig_account)) + CHECK_ERROR(_readAccountId(c, &m->multisig)) + CHECK_ERROR(_readBoundedVecAccountIdMaxSigners(c, &m->signers)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_bridge_change_controller_V4( - parser_context_t* c, pd_bridge_change_controller_V4_t* m) +__Z_INLINE parser_error_t _readMethod_multisig_remove_multisig_signers_via_admin_V7( + parser_context_t* c, pd_multisig_remove_multisig_signers_via_admin_V7_t* m) { - CHECK_ERROR(_readAccountId(c, &m->controller)) + CHECK_ERROR(_readAccountId(c, &m->multisig)) + CHECK_ERROR(_readBoundedVecAccountIdMaxSigners(c, &m->signers)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_bridge_change_admin_V4( - parser_context_t* c, pd_bridge_change_admin_V4_t* m) +__Z_INLINE parser_error_t _readMethod_multisig_change_sigs_required_via_admin_V7( + parser_context_t* c, pd_multisig_change_sigs_required_via_admin_V7_t* m) { - CHECK_ERROR(_readAccountId(c, &m->admin)) + CHECK_ERROR(_readAccountId(c, &m->multisig)) + CHECK_ERROR(_readu64(c, &m->signatures_required)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_bridge_change_timelock_V4( - parser_context_t* c, pd_bridge_change_timelock_V4_t* m) +__Z_INLINE parser_error_t _readMethod_multisig_add_admin_V7( + parser_context_t* c, pd_multisig_add_admin_V7_t* m) { - CHECK_ERROR(_readBlockNumber(c, &m->timelock)) + CHECK_ERROR(_readIdentityId(c, &m->admin_did)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_bridge_freeze_V4( - parser_context_t* c, pd_bridge_freeze_V4_t* m) +__Z_INLINE parser_error_t _readMethod_multisig_remove_admin_via_admin_V7( + parser_context_t* c, pd_multisig_remove_admin_via_admin_V7_t* m) { - UNUSED(c); - UNUSED(m); + CHECK_ERROR(_readAccountId(c, &m->multisig)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_bridge_unfreeze_V4( - parser_context_t* c, pd_bridge_unfreeze_V4_t* m) +__Z_INLINE parser_error_t _readMethod_multisig_remove_payer_V7( + parser_context_t* c, pd_multisig_remove_payer_V7_t* m) { UNUSED(c); UNUSED(m); return parser_ok; } -__Z_INLINE parser_error_t _readMethod_bridge_change_bridge_limit_V4( - parser_context_t* c, pd_bridge_change_bridge_limit_V4_t* m) -{ - CHECK_ERROR(_readBalance(c, &m->amount)) - CHECK_ERROR(_readBlockNumber(c, &m->duration)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_bridge_change_bridge_exempted_V4( - parser_context_t* c, pd_bridge_change_bridge_exempted_V4_t* m) -{ - CHECK_ERROR(_readVecTupleIdentityIdbool(c, &m->exempted)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_bridge_force_handle_bridge_tx_V4( - parser_context_t* c, pd_bridge_force_handle_bridge_tx_V4_t* m) +__Z_INLINE parser_error_t _readMethod_multisig_remove_payer_via_payer_V7( + parser_context_t* c, pd_multisig_remove_payer_via_payer_V7_t* m) { - CHECK_ERROR(_readBridgeTxAccountId(c, &m->bridge_tx)) + CHECK_ERROR(_readAccountId(c, &m->multisig)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_bridge_batch_propose_bridge_tx_V4( - parser_context_t* c, pd_bridge_batch_propose_bridge_tx_V4_t* m) +__Z_INLINE parser_error_t _readMethod_multisig_approve_join_identity_V7( + parser_context_t* c, pd_multisig_approve_join_identity_V7_t* m) { - CHECK_ERROR(_readVecBridgeTxAccountId(c, &m->bridge_txs)) + CHECK_ERROR(_readAccountId(c, &m->multisig)) + CHECK_ERROR(_readu64(c, &m->auth_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_bridge_propose_bridge_tx_V4( - parser_context_t* c, pd_bridge_propose_bridge_tx_V4_t* m) +__Z_INLINE parser_error_t _readMethod_multisig_join_identity_V7( + parser_context_t* c, pd_multisig_join_identity_V7_t* m) { - CHECK_ERROR(_readBridgeTxAccountId(c, &m->bridge_tx)) + CHECK_ERROR(_readu64(c, &m->auth_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_bridge_handle_bridge_tx_V4( - parser_context_t* c, pd_bridge_handle_bridge_tx_V4_t* m) +__Z_INLINE parser_error_t _readMethod_staking_set_validator_count_V7( + parser_context_t* c, pd_staking_set_validator_count_V7_t* m) { - CHECK_ERROR(_readBridgeTxAccountId(c, &m->bridge_tx)) + CHECK_ERROR(_readCompactu32(c, &m->new_)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_bridge_freeze_txs_V4( - parser_context_t* c, pd_bridge_freeze_txs_V4_t* m) +__Z_INLINE parser_error_t _readMethod_staking_increase_validator_count_V7( + parser_context_t* c, pd_staking_increase_validator_count_V7_t* m) { - CHECK_ERROR(_readVecBridgeTxAccountId(c, &m->bridge_txs)) + CHECK_ERROR(_readCompactu32(c, &m->additional)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_bridge_unfreeze_txs_V4( - parser_context_t* c, pd_bridge_unfreeze_txs_V4_t* m) +__Z_INLINE parser_error_t _readMethod_staking_scale_validator_count_V7( + parser_context_t* c, pd_staking_scale_validator_count_V7_t* m) { - CHECK_ERROR(_readVecBridgeTxAccountId(c, &m->bridge_txs)) + CHECK_ERROR(_readPercent(c, &m->factor)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_bridge_handle_scheduled_bridge_tx_V4( - parser_context_t* c, pd_bridge_handle_scheduled_bridge_tx_V4_t* m) +__Z_INLINE parser_error_t _readMethod_staking_force_no_eras_V7( + parser_context_t* c, pd_staking_force_no_eras_V7_t* m) { - CHECK_ERROR(_readBridgeTxAccountId(c, &m->bridge_tx)) + UNUSED(c); + UNUSED(m); return parser_ok; } -__Z_INLINE parser_error_t _readMethod_bridge_add_freeze_admin_V4( - parser_context_t* c, pd_bridge_add_freeze_admin_V4_t* m) +__Z_INLINE parser_error_t _readMethod_staking_force_new_era_V7( + parser_context_t* c, pd_staking_force_new_era_V7_t* m) { - CHECK_ERROR(_readAccountId(c, &m->freeze_admin)) + UNUSED(c); + UNUSED(m); return parser_ok; } -__Z_INLINE parser_error_t _readMethod_bridge_remove_freeze_admin_V4( - parser_context_t* c, pd_bridge_remove_freeze_admin_V4_t* m) +__Z_INLINE parser_error_t _readMethod_staking_set_invulnerables_V7( + parser_context_t* c, pd_staking_set_invulnerables_V7_t* m) { - CHECK_ERROR(_readAccountId(c, &m->freeze_admin)) + CHECK_ERROR(_readVecAccountId(c, &m->invulnerables)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_bridge_remove_txs_V4( - parser_context_t* c, pd_bridge_remove_txs_V4_t* m) +__Z_INLINE parser_error_t _readMethod_staking_force_unstake_V7( + parser_context_t* c, pd_staking_force_unstake_V7_t* m) { - CHECK_ERROR(_readVecBridgeTxAccountId(c, &m->bridge_txs)) + CHECK_ERROR(_readAccountId(c, &m->stash)) + CHECK_ERROR(_readu32(c, &m->num_slashing_spans)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_staking_set_validator_count_V4( - parser_context_t* c, pd_staking_set_validator_count_V4_t* m) +__Z_INLINE parser_error_t _readMethod_staking_force_new_era_always_V7( + parser_context_t* c, pd_staking_force_new_era_always_V7_t* m) { - CHECK_ERROR(_readCompactu32(c, &m->new_)) + UNUSED(c); + UNUSED(m); return parser_ok; } -__Z_INLINE parser_error_t _readMethod_staking_increase_validator_count_V4( - parser_context_t* c, pd_staking_increase_validator_count_V4_t* m) +__Z_INLINE parser_error_t _readMethod_staking_cancel_deferred_slash_V7( + parser_context_t* c, pd_staking_cancel_deferred_slash_V7_t* m) { - CHECK_ERROR(_readCompactu32(c, &m->additional)) + CHECK_ERROR(_readEraIndex(c, &m->era)) + CHECK_ERROR(_readVecu32(c, &m->slash_indices)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_staking_scale_validator_count_V4( - parser_context_t* c, pd_staking_scale_validator_count_V4_t* m) +__Z_INLINE parser_error_t _readMethod_staking_payout_stakers_V7( + parser_context_t* c, pd_staking_payout_stakers_V7_t* m) { - CHECK_ERROR(_readPercent(c, &m->factor)) + CHECK_ERROR(_readAccountId(c, &m->validator_stash)) + CHECK_ERROR(_readEraIndex(c, &m->era)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_staking_add_permissioned_validator_V4( - parser_context_t* c, pd_staking_add_permissioned_validator_V4_t* m) +__Z_INLINE parser_error_t _readMethod_staking_reap_stash_V7( + parser_context_t* c, pd_staking_reap_stash_V7_t* m) { - CHECK_ERROR(_readIdentityId(c, &m->identity)) - CHECK_ERROR(_readOptionu32(c, &m->intended_count)) + CHECK_ERROR(_readAccountId(c, &m->stash)) + CHECK_ERROR(_readu32(c, &m->num_slashing_spans)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_staking_remove_permissioned_validator_V4( - parser_context_t* c, pd_staking_remove_permissioned_validator_V4_t* m) +__Z_INLINE parser_error_t _readMethod_staking_kick_V7( + parser_context_t* c, pd_staking_kick_V7_t* m) { - CHECK_ERROR(_readIdentityId(c, &m->identity)) + CHECK_ERROR(_readVecAccountIdLookupOfT(c, &m->who)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_staking_validate_cdd_expiry_nominators_V4( - parser_context_t* c, pd_staking_validate_cdd_expiry_nominators_V4_t* m) +__Z_INLINE parser_error_t _readMethod_staking_set_staking_configs_V7( + parser_context_t* c, pd_staking_set_staking_configs_V7_t* m) { - CHECK_ERROR(_readVecAccountId(c, &m->targets)) + CHECK_ERROR(_readConfigOpBalanceOfT(c, &m->min_nominator_bond)) + CHECK_ERROR(_readConfigOpBalanceOfT(c, &m->min_validator_bond)) + CHECK_ERROR(_readConfigOpu32(c, &m->max_nominator_count)) + CHECK_ERROR(_readConfigOpu32(c, &m->max_validator_count)) + CHECK_ERROR(_readConfigOpPercent(c, &m->chill_threshold)) + CHECK_ERROR(_readConfigOpPerbill(c, &m->min_commission)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_staking_set_commission_cap_V4( - parser_context_t* c, pd_staking_set_commission_cap_V4_t* m) +__Z_INLINE parser_error_t _readMethod_staking_chill_other_V7( + parser_context_t* c, pd_staking_chill_other_V7_t* m) { - CHECK_ERROR(_readPerbill(c, &m->new_cap)) + CHECK_ERROR(_readAccountId(c, &m->controller)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_staking_set_min_bond_threshold_V4( - parser_context_t* c, pd_staking_set_min_bond_threshold_V4_t* m) +__Z_INLINE parser_error_t _readMethod_staking_force_apply_min_commission_V7( + parser_context_t* c, pd_staking_force_apply_min_commission_V7_t* m) { - CHECK_ERROR(_readBalance(c, &m->new_value)) + CHECK_ERROR(_readAccountId(c, &m->validator_stash)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_staking_force_no_eras_V4( - parser_context_t* c, pd_staking_force_no_eras_V4_t* m) +__Z_INLINE parser_error_t _readMethod_staking_set_min_commission_V7( + parser_context_t* c, pd_staking_set_min_commission_V7_t* m) { - UNUSED(c); - UNUSED(m); + CHECK_ERROR(_readPerbill(c, &m->new_)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_staking_force_new_era_V4( - parser_context_t* c, pd_staking_force_new_era_V4_t* m) +__Z_INLINE parser_error_t _readMethod_staking_add_permissioned_validator_V7( + parser_context_t* c, pd_staking_add_permissioned_validator_V7_t* m) { - UNUSED(c); - UNUSED(m); + CHECK_ERROR(_readIdentityId(c, &m->identity)) + CHECK_ERROR(_readOptionu32(c, &m->intended_count)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_staking_set_invulnerables_V4( - parser_context_t* c, pd_staking_set_invulnerables_V4_t* m) +__Z_INLINE parser_error_t _readMethod_staking_remove_permissioned_validator_V7( + parser_context_t* c, pd_staking_remove_permissioned_validator_V7_t* m) { - CHECK_ERROR(_readVecAccountId(c, &m->invulnerables)) + CHECK_ERROR(_readIdentityId(c, &m->identity)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_staking_force_unstake_V4( - parser_context_t* c, pd_staking_force_unstake_V4_t* m) +__Z_INLINE parser_error_t _readMethod_staking_validate_cdd_expiry_nominators_V7( + parser_context_t* c, pd_staking_validate_cdd_expiry_nominators_V7_t* m) { - CHECK_ERROR(_readAccountId(c, &m->stash)) - CHECK_ERROR(_readu32(c, &m->num_slashing_spans)) + CHECK_ERROR(_readVecAccountId(c, &m->targets)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_staking_force_new_era_always_V4( - parser_context_t* c, pd_staking_force_new_era_always_V4_t* m) +__Z_INLINE parser_error_t _readMethod_staking_payout_stakers_by_system_V7( + parser_context_t* c, pd_staking_payout_stakers_by_system_V7_t* m) { - UNUSED(c); - UNUSED(m); + CHECK_ERROR(_readAccountId(c, &m->validator_stash)) + CHECK_ERROR(_readEraIndex(c, &m->era)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_staking_cancel_deferred_slash_V4( - parser_context_t* c, pd_staking_cancel_deferred_slash_V4_t* m) +__Z_INLINE parser_error_t _readMethod_staking_change_slashing_allowed_for_V7( + parser_context_t* c, pd_staking_change_slashing_allowed_for_V7_t* m) { - CHECK_ERROR(_readEraIndex(c, &m->era)) - CHECK_ERROR(_readVecu32(c, &m->slash_indices)) + CHECK_ERROR(_readSlashingSwitch(c, &m->slashing_switch)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_staking_payout_stakers_V4( - parser_context_t* c, pd_staking_payout_stakers_V4_t* m) +__Z_INLINE parser_error_t _readMethod_staking_update_permissioned_validator_intended_count_V7( + parser_context_t* c, pd_staking_update_permissioned_validator_intended_count_V7_t* m) { - CHECK_ERROR(_readAccountId(c, &m->validator_stash)) - CHECK_ERROR(_readEraIndex(c, &m->era)) + CHECK_ERROR(_readIdentityId(c, &m->identity)) + CHECK_ERROR(_readu32(c, &m->new_intended_count)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_staking_set_history_depth_V4( - parser_context_t* c, pd_staking_set_history_depth_V4_t* m) +__Z_INLINE parser_error_t _readMethod_staking_chill_from_governance_V7( + parser_context_t* c, pd_staking_chill_from_governance_V7_t* m) { - CHECK_ERROR(_readCompactu32(c, &m->new_history_depth)) - CHECK_ERROR(_readCompactu32(c, &m->era_items_deleted)) + CHECK_ERROR(_readIdentityId(c, &m->identity)) + CHECK_ERROR(_readVecAccountId(c, &m->stash_keys)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_staking_reap_stash_V4( - parser_context_t* c, pd_staking_reap_stash_V4_t* m) +__Z_INLINE parser_error_t _readMethod_staking_set_commission_cap_V7( + parser_context_t* c, pd_staking_set_commission_cap_V7_t* m) { - CHECK_ERROR(_readAccountId(c, &m->stash)) - CHECK_ERROR(_readu32(c, &m->num_slashing_spans)) + CHECK_ERROR(_readPerbill(c, &m->new_cap)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_staking_payout_stakers_by_system_V4( - parser_context_t* c, pd_staking_payout_stakers_by_system_V4_t* m) +__Z_INLINE parser_error_t _readMethod_session_set_keys_V7( + parser_context_t* c, pd_session_set_keys_V7_t* m) { - CHECK_ERROR(_readAccountId(c, &m->validator_stash)) - CHECK_ERROR(_readEraIndex(c, &m->era)) + CHECK_ERROR(_readKeys(c, &m->keys)) + CHECK_ERROR(_readBytes(c, &m->proof)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_staking_change_slashing_allowed_for_V4( - parser_context_t* c, pd_staking_change_slashing_allowed_for_V4_t* m) +__Z_INLINE parser_error_t _readMethod_session_purge_keys_V7( + parser_context_t* c, pd_session_purge_keys_V7_t* m) { - CHECK_ERROR(_readSlashingSwitch(c, &m->slashing_switch)) + UNUSED(c); + UNUSED(m); return parser_ok; } -__Z_INLINE parser_error_t _readMethod_staking_update_permissioned_validator_intended_count_V4( - parser_context_t* c, pd_staking_update_permissioned_validator_intended_count_V4_t* m) +__Z_INLINE parser_error_t _readMethod_sudo_sudo_V7( + parser_context_t* c, pd_sudo_sudo_V7_t* m) { - CHECK_ERROR(_readIdentityId(c, &m->identity)) - CHECK_ERROR(_readu32(c, &m->new_intended_count)) + CHECK_ERROR(_readCall(c, &m->call)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_staking_chill_from_governance_V4( - parser_context_t* c, pd_staking_chill_from_governance_V4_t* m) +__Z_INLINE parser_error_t _readMethod_sudo_sudo_unchecked_weight_V7( + parser_context_t* c, pd_sudo_sudo_unchecked_weight_V7_t* m) { - CHECK_ERROR(_readIdentityId(c, &m->identity)) - CHECK_ERROR(_readVecAccountId(c, &m->stash_keys)) + CHECK_ERROR(_readCall(c, &m->call)) + CHECK_ERROR(_readWeight(c, &m->_weight)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_session_set_keys_V4( - parser_context_t* c, pd_session_set_keys_V4_t* m) +__Z_INLINE parser_error_t _readMethod_sudo_set_key_V7( + parser_context_t* c, pd_sudo_set_key_V7_t* m) { - CHECK_ERROR(_readKeys(c, &m->keys)) - CHECK_ERROR(_readBytes(c, &m->proof)) + CHECK_ERROR(_readLookupasStaticLookupSource(c, &m->new_)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_session_purge_keys_V4( - parser_context_t* c, pd_session_purge_keys_V4_t* m) +__Z_INLINE parser_error_t _readMethod_sudo_sudo_as_V7( + parser_context_t* c, pd_sudo_sudo_as_V7_t* m) { - UNUSED(c); - UNUSED(m); + CHECK_ERROR(_readLookupasStaticLookupSource(c, &m->who)) + CHECK_ERROR(_readCall(c, &m->call)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_asset_register_ticker_V4( - parser_context_t* c, pd_asset_register_ticker_V4_t* m) +__Z_INLINE parser_error_t _readMethod_asset_register_unique_ticker_V7( + parser_context_t* c, pd_asset_register_unique_ticker_V7_t* m) { CHECK_ERROR(_readTicker(c, &m->ticker)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_asset_accept_ticker_transfer_V4( - parser_context_t* c, pd_asset_accept_ticker_transfer_V4_t* m) +__Z_INLINE parser_error_t _readMethod_asset_accept_ticker_transfer_V7( + parser_context_t* c, pd_asset_accept_ticker_transfer_V7_t* m) { CHECK_ERROR(_readu64(c, &m->auth_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_asset_accept_asset_ownership_transfer_V4( - parser_context_t* c, pd_asset_accept_asset_ownership_transfer_V4_t* m) +__Z_INLINE parser_error_t _readMethod_asset_accept_asset_ownership_transfer_V7( + parser_context_t* c, pd_asset_accept_asset_ownership_transfer_V7_t* m) { CHECK_ERROR(_readu64(c, &m->auth_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_asset_create_asset_V4( - parser_context_t* c, pd_asset_create_asset_V4_t* m) +__Z_INLINE parser_error_t _readMethod_asset_create_asset_V7( + parser_context_t* c, pd_asset_create_asset_V7_t* m) { - CHECK_ERROR(_readAssetName(c, &m->name)) - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetName(c, &m->asset_name)) CHECK_ERROR(_readbool(c, &m->divisible)) CHECK_ERROR(_readAssetType(c, &m->asset_type)) - CHECK_ERROR(_readVecAssetIdentifier(c, &m->identifiers)) - CHECK_ERROR(_readOptionFundingRoundName(c, &m->funding_round)) + CHECK_ERROR(_readVecAssetIdentifier(c, &m->asset_identifiers)) + CHECK_ERROR(_readOptionFundingRoundName(c, &m->funding_round_name)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_asset_freeze_V4( - parser_context_t* c, pd_asset_freeze_V4_t* m) +__Z_INLINE parser_error_t _readMethod_asset_freeze_V7( + parser_context_t* c, pd_asset_freeze_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_asset_unfreeze_V4( - parser_context_t* c, pd_asset_unfreeze_V4_t* m) +__Z_INLINE parser_error_t _readMethod_asset_unfreeze_V7( + parser_context_t* c, pd_asset_unfreeze_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_asset_rename_asset_V4( - parser_context_t* c, pd_asset_rename_asset_V4_t* m) +__Z_INLINE parser_error_t _readMethod_asset_rename_asset_V7( + parser_context_t* c, pd_asset_rename_asset_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) - CHECK_ERROR(_readAssetName(c, &m->name)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetName(c, &m->asset_name)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_asset_issue_V4( - parser_context_t* c, pd_asset_issue_V4_t* m) +__Z_INLINE parser_error_t _readMethod_asset_issue_V7( + parser_context_t* c, pd_asset_issue_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) CHECK_ERROR(_readBalanceNoSymbol(c, &m->amount)) CHECK_ERROR(_readPortfolioKind(c, &m->portfolio_kind)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_asset_redeem_V4( - parser_context_t* c, pd_asset_redeem_V4_t* m) +__Z_INLINE parser_error_t _readMethod_asset_redeem_V7( + parser_context_t* c, pd_asset_redeem_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) CHECK_ERROR(_readBalanceNoSymbol(c, &m->amount)) + CHECK_ERROR(_readPortfolioKind(c, &m->portfolio_kind)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_asset_make_divisible_V4( - parser_context_t* c, pd_asset_make_divisible_V4_t* m) +__Z_INLINE parser_error_t _readMethod_asset_make_divisible_V7( + parser_context_t* c, pd_asset_make_divisible_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_asset_add_documents_V4( - parser_context_t* c, pd_asset_add_documents_V4_t* m) +__Z_INLINE parser_error_t _readMethod_asset_add_documents_V7( + parser_context_t* c, pd_asset_add_documents_V7_t* m) { CHECK_ERROR(_readVecDocument(c, &m->docs)) - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_asset_remove_documents_V4( - parser_context_t* c, pd_asset_remove_documents_V4_t* m) +__Z_INLINE parser_error_t _readMethod_asset_remove_documents_V7( + parser_context_t* c, pd_asset_remove_documents_V7_t* m) { - CHECK_ERROR(_readVecDocumentId(c, &m->ids)) - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readVecDocumentId(c, &m->docs_id)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_asset_set_funding_round_V4( - parser_context_t* c, pd_asset_set_funding_round_V4_t* m) +__Z_INLINE parser_error_t _readMethod_asset_set_funding_round_V7( + parser_context_t* c, pd_asset_set_funding_round_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) - CHECK_ERROR(_readFundingRoundName(c, &m->name)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readFundingRoundName(c, &m->founding_round_name)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_asset_update_identifiers_V4( - parser_context_t* c, pd_asset_update_identifiers_V4_t* m) +__Z_INLINE parser_error_t _readMethod_asset_update_identifiers_V7( + parser_context_t* c, pd_asset_update_identifiers_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) CHECK_ERROR(_readVecAssetIdentifier(c, &m->asset_identifiers)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_asset_controller_transfer_V4( - parser_context_t* c, pd_asset_controller_transfer_V4_t* m) +__Z_INLINE parser_error_t _readMethod_asset_controller_transfer_V7( + parser_context_t* c, pd_asset_controller_transfer_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) CHECK_ERROR(_readBalanceNoSymbol(c, &m->amount)) CHECK_ERROR(_readPortfolioId(c, &m->from_portfolio)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_asset_register_custom_asset_type_V4( - parser_context_t* c, pd_asset_register_custom_asset_type_V4_t* m) +__Z_INLINE parser_error_t _readMethod_asset_register_custom_asset_type_V7( + parser_context_t* c, pd_asset_register_custom_asset_type_V7_t* m) { CHECK_ERROR(_readVecu8(c, &m->ty)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_asset_create_asset_with_custom_type_V4( - parser_context_t* c, pd_asset_create_asset_with_custom_type_V4_t* m) +__Z_INLINE parser_error_t _readMethod_asset_create_asset_with_custom_type_V7( + parser_context_t* c, pd_asset_create_asset_with_custom_type_V7_t* m) { - CHECK_ERROR(_readAssetName(c, &m->name)) - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetName(c, &m->asset_name)) CHECK_ERROR(_readbool(c, &m->divisible)) CHECK_ERROR(_readVecu8(c, &m->custom_asset_type)) - CHECK_ERROR(_readVecAssetIdentifier(c, &m->identifiers)) - CHECK_ERROR(_readOptionFundingRoundName(c, &m->funding_round)) + CHECK_ERROR(_readVecAssetIdentifier(c, &m->asset_identifiers)) + CHECK_ERROR(_readOptionFundingRoundName(c, &m->funding_round_name)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_asset_set_asset_metadata_V4( - parser_context_t* c, pd_asset_set_asset_metadata_V4_t* m) +__Z_INLINE parser_error_t _readMethod_asset_set_asset_metadata_V7( + parser_context_t* c, pd_asset_set_asset_metadata_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) CHECK_ERROR(_readAssetMetadataKey(c, &m->key)) CHECK_ERROR(_readAssetMetadataValue(c, &m->value)) CHECK_ERROR(_readOptionAssetMetadataValueDetailMoment(c, &m->detail)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_asset_set_asset_metadata_details_V4( - parser_context_t* c, pd_asset_set_asset_metadata_details_V4_t* m) +__Z_INLINE parser_error_t _readMethod_asset_set_asset_metadata_details_V7( + parser_context_t* c, pd_asset_set_asset_metadata_details_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) CHECK_ERROR(_readAssetMetadataKey(c, &m->key)) CHECK_ERROR(_readAssetMetadataValueDetailMoment(c, &m->detail)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_asset_register_and_set_local_asset_metadata_V4( - parser_context_t* c, pd_asset_register_and_set_local_asset_metadata_V4_t* m) +__Z_INLINE parser_error_t _readMethod_asset_register_and_set_local_asset_metadata_V7( + parser_context_t* c, pd_asset_register_and_set_local_asset_metadata_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) CHECK_ERROR(_readAssetMetadataName(c, &m->name)) CHECK_ERROR(_readAssetMetadataSpec(c, &m->spec)) CHECK_ERROR(_readAssetMetadataValue(c, &m->value)) @@ -1665,90 +1556,89 @@ __Z_INLINE parser_error_t _readMethod_asset_register_and_set_local_asset_metadat return parser_ok; } -__Z_INLINE parser_error_t _readMethod_asset_register_asset_metadata_local_type_V4( - parser_context_t* c, pd_asset_register_asset_metadata_local_type_V4_t* m) +__Z_INLINE parser_error_t _readMethod_asset_register_asset_metadata_local_type_V7( + parser_context_t* c, pd_asset_register_asset_metadata_local_type_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) CHECK_ERROR(_readAssetMetadataName(c, &m->name)) CHECK_ERROR(_readAssetMetadataSpec(c, &m->spec)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_asset_register_asset_metadata_global_type_V4( - parser_context_t* c, pd_asset_register_asset_metadata_global_type_V4_t* m) +__Z_INLINE parser_error_t _readMethod_asset_register_asset_metadata_global_type_V7( + parser_context_t* c, pd_asset_register_asset_metadata_global_type_V7_t* m) { CHECK_ERROR(_readAssetMetadataName(c, &m->name)) CHECK_ERROR(_readAssetMetadataSpec(c, &m->spec)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_asset_redeem_from_portfolio_V4( - parser_context_t* c, pd_asset_redeem_from_portfolio_V4_t* m) +__Z_INLINE parser_error_t _readMethod_asset_update_asset_type_V7( + parser_context_t* c, pd_asset_update_asset_type_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) - CHECK_ERROR(_readBalanceNoSymbol(c, &m->amount)) - CHECK_ERROR(_readPortfolioKind(c, &m->portfolio)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetType(c, &m->asset_type)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_asset_update_asset_type_V4( - parser_context_t* c, pd_asset_update_asset_type_V4_t* m) +__Z_INLINE parser_error_t _readMethod_asset_remove_local_metadata_key_V7( + parser_context_t* c, pd_asset_remove_local_metadata_key_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) - CHECK_ERROR(_readAssetType(c, &m->asset_type)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetMetadataLocalKey(c, &m->local_key)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_asset_remove_local_metadata_key_V4( - parser_context_t* c, pd_asset_remove_local_metadata_key_V4_t* m) +__Z_INLINE parser_error_t _readMethod_asset_remove_metadata_value_V7( + parser_context_t* c, pd_asset_remove_metadata_value_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) - CHECK_ERROR(_readAssetMetadataLocalKey(c, &m->local_key)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) + CHECK_ERROR(_readAssetMetadataKey(c, &m->metadata_key)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_asset_remove_metadata_value_V4( - parser_context_t* c, pd_asset_remove_metadata_value_V4_t* m) +__Z_INLINE parser_error_t _readMethod_asset_exempt_asset_affirmation_V7( + parser_context_t* c, pd_asset_exempt_asset_affirmation_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) - CHECK_ERROR(_readAssetMetadataKey(c, &m->metadata_key)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_asset_exempt_ticker_affirmation_V4( - parser_context_t* c, pd_asset_exempt_ticker_affirmation_V4_t* m) +__Z_INLINE parser_error_t _readMethod_asset_remove_asset_affirmation_exemption_V7( + parser_context_t* c, pd_asset_remove_asset_affirmation_exemption_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_asset_remove_ticker_affirmation_exemption_V4( - parser_context_t* c, pd_asset_remove_ticker_affirmation_exemption_V4_t* m) +__Z_INLINE parser_error_t _readMethod_asset_pre_approve_asset_V7( + parser_context_t* c, pd_asset_pre_approve_asset_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_asset_pre_approve_ticker_V4( - parser_context_t* c, pd_asset_pre_approve_ticker_V4_t* m) +__Z_INLINE parser_error_t _readMethod_asset_remove_asset_pre_approval_V7( + parser_context_t* c, pd_asset_remove_asset_pre_approval_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_asset_remove_ticker_pre_approval_V4( - parser_context_t* c, pd_asset_remove_ticker_pre_approval_V4_t* m) +__Z_INLINE parser_error_t _readMethod_asset_link_ticker_to_asset_id_V7( + parser_context_t* c, pd_asset_link_ticker_to_asset_id_V7_t* m) { CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_capitaldistribution_distribute_V4( - parser_context_t* c, pd_capitaldistribution_distribute_V4_t* m) +__Z_INLINE parser_error_t _readMethod_capitaldistribution_distribute_V7( + parser_context_t* c, pd_capitaldistribution_distribute_V7_t* m) { CHECK_ERROR(_readCAId(c, &m->ca_id)) CHECK_ERROR(_readOptionPortfolioNumber(c, &m->portfolio)) - CHECK_ERROR(_readTicker(c, &m->currency)) + CHECK_ERROR(_readAssetID(c, &m->currency)) CHECK_ERROR(_readBalance(c, &m->per_share)) CHECK_ERROR(_readBalance(c, &m->amount)) CHECK_ERROR(_readMoment(c, &m->payment_at)) @@ -1756,275 +1646,275 @@ __Z_INLINE parser_error_t _readMethod_capitaldistribution_distribute_V4( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_capitaldistribution_claim_V4( - parser_context_t* c, pd_capitaldistribution_claim_V4_t* m) +__Z_INLINE parser_error_t _readMethod_capitaldistribution_claim_V7( + parser_context_t* c, pd_capitaldistribution_claim_V7_t* m) { CHECK_ERROR(_readCAId(c, &m->ca_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_capitaldistribution_push_benefit_V4( - parser_context_t* c, pd_capitaldistribution_push_benefit_V4_t* m) +__Z_INLINE parser_error_t _readMethod_capitaldistribution_push_benefit_V7( + parser_context_t* c, pd_capitaldistribution_push_benefit_V7_t* m) { CHECK_ERROR(_readCAId(c, &m->ca_id)) CHECK_ERROR(_readIdentityId(c, &m->holder)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_capitaldistribution_reclaim_V4( - parser_context_t* c, pd_capitaldistribution_reclaim_V4_t* m) +__Z_INLINE parser_error_t _readMethod_capitaldistribution_reclaim_V7( + parser_context_t* c, pd_capitaldistribution_reclaim_V7_t* m) { CHECK_ERROR(_readCAId(c, &m->ca_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_capitaldistribution_remove_distribution_V4( - parser_context_t* c, pd_capitaldistribution_remove_distribution_V4_t* m) +__Z_INLINE parser_error_t _readMethod_capitaldistribution_remove_distribution_V7( + parser_context_t* c, pd_capitaldistribution_remove_distribution_V7_t* m) { CHECK_ERROR(_readCAId(c, &m->ca_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_checkpoint_create_checkpoint_V4( - parser_context_t* c, pd_checkpoint_create_checkpoint_V4_t* m) +__Z_INLINE parser_error_t _readMethod_checkpoint_create_checkpoint_V7( + parser_context_t* c, pd_checkpoint_create_checkpoint_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_checkpoint_set_schedules_max_complexity_V4( - parser_context_t* c, pd_checkpoint_set_schedules_max_complexity_V4_t* m) +__Z_INLINE parser_error_t _readMethod_checkpoint_set_schedules_max_complexity_V7( + parser_context_t* c, pd_checkpoint_set_schedules_max_complexity_V7_t* m) { CHECK_ERROR(_readu64(c, &m->max_complexity)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_checkpoint_create_schedule_V4( - parser_context_t* c, pd_checkpoint_create_schedule_V4_t* m) +__Z_INLINE parser_error_t _readMethod_checkpoint_create_schedule_V7( + parser_context_t* c, pd_checkpoint_create_schedule_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) CHECK_ERROR(_readScheduleCheckpoints(c, &m->schedule)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_checkpoint_remove_schedule_V4( - parser_context_t* c, pd_checkpoint_remove_schedule_V4_t* m) +__Z_INLINE parser_error_t _readMethod_checkpoint_remove_schedule_V7( + parser_context_t* c, pd_checkpoint_remove_schedule_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) CHECK_ERROR(_readScheduleId(c, &m->id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_compliancemanager_add_compliance_requirement_V4( - parser_context_t* c, pd_compliancemanager_add_compliance_requirement_V4_t* m) +__Z_INLINE parser_error_t _readMethod_compliancemanager_add_compliance_requirement_V7( + parser_context_t* c, pd_compliancemanager_add_compliance_requirement_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) CHECK_ERROR(_readVecCondition(c, &m->sender_conditions)) CHECK_ERROR(_readVecCondition(c, &m->receiver_conditions)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_compliancemanager_remove_compliance_requirement_V4( - parser_context_t* c, pd_compliancemanager_remove_compliance_requirement_V4_t* m) +__Z_INLINE parser_error_t _readMethod_compliancemanager_remove_compliance_requirement_V7( + parser_context_t* c, pd_compliancemanager_remove_compliance_requirement_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) CHECK_ERROR(_readu32(c, &m->id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_compliancemanager_replace_asset_compliance_V4( - parser_context_t* c, pd_compliancemanager_replace_asset_compliance_V4_t* m) +__Z_INLINE parser_error_t _readMethod_compliancemanager_replace_asset_compliance_V7( + parser_context_t* c, pd_compliancemanager_replace_asset_compliance_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) CHECK_ERROR(_readVecComplianceRequirement(c, &m->asset_compliance)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_compliancemanager_reset_asset_compliance_V4( - parser_context_t* c, pd_compliancemanager_reset_asset_compliance_V4_t* m) +__Z_INLINE parser_error_t _readMethod_compliancemanager_reset_asset_compliance_V7( + parser_context_t* c, pd_compliancemanager_reset_asset_compliance_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_compliancemanager_pause_asset_compliance_V4( - parser_context_t* c, pd_compliancemanager_pause_asset_compliance_V4_t* m) +__Z_INLINE parser_error_t _readMethod_compliancemanager_pause_asset_compliance_V7( + parser_context_t* c, pd_compliancemanager_pause_asset_compliance_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_compliancemanager_resume_asset_compliance_V4( - parser_context_t* c, pd_compliancemanager_resume_asset_compliance_V4_t* m) +__Z_INLINE parser_error_t _readMethod_compliancemanager_resume_asset_compliance_V7( + parser_context_t* c, pd_compliancemanager_resume_asset_compliance_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_compliancemanager_add_default_trusted_claim_issuer_V4( - parser_context_t* c, pd_compliancemanager_add_default_trusted_claim_issuer_V4_t* m) +__Z_INLINE parser_error_t _readMethod_compliancemanager_add_default_trusted_claim_issuer_V7( + parser_context_t* c, pd_compliancemanager_add_default_trusted_claim_issuer_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) CHECK_ERROR(_readTrustedIssuer(c, &m->issuer)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_compliancemanager_remove_default_trusted_claim_issuer_V4( - parser_context_t* c, pd_compliancemanager_remove_default_trusted_claim_issuer_V4_t* m) +__Z_INLINE parser_error_t _readMethod_compliancemanager_remove_default_trusted_claim_issuer_V7( + parser_context_t* c, pd_compliancemanager_remove_default_trusted_claim_issuer_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) CHECK_ERROR(_readIdentityId(c, &m->issuer)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_compliancemanager_change_compliance_requirement_V4( - parser_context_t* c, pd_compliancemanager_change_compliance_requirement_V4_t* m) +__Z_INLINE parser_error_t _readMethod_compliancemanager_change_compliance_requirement_V7( + parser_context_t* c, pd_compliancemanager_change_compliance_requirement_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) CHECK_ERROR(_readComplianceRequirement(c, &m->new_req)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_pips_set_prune_historical_pips_V4( - parser_context_t* c, pd_pips_set_prune_historical_pips_V4_t* m) +__Z_INLINE parser_error_t _readMethod_pips_set_prune_historical_pips_V7( + parser_context_t* c, pd_pips_set_prune_historical_pips_V7_t* m) { CHECK_ERROR(_readbool(c, &m->prune)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_pips_set_min_proposal_deposit_V4( - parser_context_t* c, pd_pips_set_min_proposal_deposit_V4_t* m) +__Z_INLINE parser_error_t _readMethod_pips_set_min_proposal_deposit_V7( + parser_context_t* c, pd_pips_set_min_proposal_deposit_V7_t* m) { CHECK_ERROR(_readBalance(c, &m->deposit)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_pips_set_default_enactment_period_V4( - parser_context_t* c, pd_pips_set_default_enactment_period_V4_t* m) +__Z_INLINE parser_error_t _readMethod_pips_set_default_enactment_period_V7( + parser_context_t* c, pd_pips_set_default_enactment_period_V7_t* m) { CHECK_ERROR(_readBlockNumber(c, &m->duration)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_pips_set_pending_pip_expiry_V4( - parser_context_t* c, pd_pips_set_pending_pip_expiry_V4_t* m) +__Z_INLINE parser_error_t _readMethod_pips_set_pending_pip_expiry_V7( + parser_context_t* c, pd_pips_set_pending_pip_expiry_V7_t* m) { CHECK_ERROR(_readMaybeBlockBlockNumber(c, &m->expiry)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_pips_set_max_pip_skip_count_V4( - parser_context_t* c, pd_pips_set_max_pip_skip_count_V4_t* m) +__Z_INLINE parser_error_t _readMethod_pips_set_max_pip_skip_count_V7( + parser_context_t* c, pd_pips_set_max_pip_skip_count_V7_t* m) { CHECK_ERROR(_readSkippedCount(c, &m->max)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_pips_set_active_pip_limit_V4( - parser_context_t* c, pd_pips_set_active_pip_limit_V4_t* m) +__Z_INLINE parser_error_t _readMethod_pips_set_active_pip_limit_V7( + parser_context_t* c, pd_pips_set_active_pip_limit_V7_t* m) { CHECK_ERROR(_readu32(c, &m->limit)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_pips_approve_committee_proposal_V4( - parser_context_t* c, pd_pips_approve_committee_proposal_V4_t* m) +__Z_INLINE parser_error_t _readMethod_pips_approve_committee_proposal_V7( + parser_context_t* c, pd_pips_approve_committee_proposal_V7_t* m) { CHECK_ERROR(_readPipId(c, &m->id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_pips_reject_proposal_V4( - parser_context_t* c, pd_pips_reject_proposal_V4_t* m) +__Z_INLINE parser_error_t _readMethod_pips_reject_proposal_V7( + parser_context_t* c, pd_pips_reject_proposal_V7_t* m) { CHECK_ERROR(_readPipId(c, &m->id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_pips_prune_proposal_V4( - parser_context_t* c, pd_pips_prune_proposal_V4_t* m) +__Z_INLINE parser_error_t _readMethod_pips_prune_proposal_V7( + parser_context_t* c, pd_pips_prune_proposal_V7_t* m) { CHECK_ERROR(_readPipId(c, &m->id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_pips_reschedule_execution_V4( - parser_context_t* c, pd_pips_reschedule_execution_V4_t* m) +__Z_INLINE parser_error_t _readMethod_pips_reschedule_execution_V7( + parser_context_t* c, pd_pips_reschedule_execution_V7_t* m) { CHECK_ERROR(_readPipId(c, &m->id)) CHECK_ERROR(_readOptionBlockNumber(c, &m->until)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_pips_clear_snapshot_V4( - parser_context_t* c, pd_pips_clear_snapshot_V4_t* m) +__Z_INLINE parser_error_t _readMethod_pips_clear_snapshot_V7( + parser_context_t* c, pd_pips_clear_snapshot_V7_t* m) { UNUSED(c); UNUSED(m); return parser_ok; } -__Z_INLINE parser_error_t _readMethod_pips_snapshot_V4( - parser_context_t* c, pd_pips_snapshot_V4_t* m) +__Z_INLINE parser_error_t _readMethod_pips_snapshot_V7( + parser_context_t* c, pd_pips_snapshot_V7_t* m) { UNUSED(c); UNUSED(m); return parser_ok; } -__Z_INLINE parser_error_t _readMethod_pips_execute_scheduled_pip_V4( - parser_context_t* c, pd_pips_execute_scheduled_pip_V4_t* m) +__Z_INLINE parser_error_t _readMethod_pips_execute_scheduled_pip_V7( + parser_context_t* c, pd_pips_execute_scheduled_pip_V7_t* m) { CHECK_ERROR(_readPipId(c, &m->id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_pips_expire_scheduled_pip_V4( - parser_context_t* c, pd_pips_expire_scheduled_pip_V4_t* m) +__Z_INLINE parser_error_t _readMethod_pips_expire_scheduled_pip_V7( + parser_context_t* c, pd_pips_expire_scheduled_pip_V7_t* m) { CHECK_ERROR(_readIdentityId(c, &m->did)) CHECK_ERROR(_readPipId(c, &m->id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_portfolio_create_portfolio_V4( - parser_context_t* c, pd_portfolio_create_portfolio_V4_t* m) +__Z_INLINE parser_error_t _readMethod_portfolio_create_portfolio_V7( + parser_context_t* c, pd_portfolio_create_portfolio_V7_t* m) { CHECK_ERROR(_readPortfolioName(c, &m->name)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_portfolio_delete_portfolio_V4( - parser_context_t* c, pd_portfolio_delete_portfolio_V4_t* m) +__Z_INLINE parser_error_t _readMethod_portfolio_delete_portfolio_V7( + parser_context_t* c, pd_portfolio_delete_portfolio_V7_t* m) { CHECK_ERROR(_readPortfolioNumber(c, &m->num)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_portfolio_rename_portfolio_V4( - parser_context_t* c, pd_portfolio_rename_portfolio_V4_t* m) +__Z_INLINE parser_error_t _readMethod_portfolio_rename_portfolio_V7( + parser_context_t* c, pd_portfolio_rename_portfolio_V7_t* m) { CHECK_ERROR(_readPortfolioNumber(c, &m->num)) CHECK_ERROR(_readPortfolioName(c, &m->to_name)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_portfolio_quit_portfolio_custody_V4( - parser_context_t* c, pd_portfolio_quit_portfolio_custody_V4_t* m) +__Z_INLINE parser_error_t _readMethod_portfolio_quit_portfolio_custody_V7( + parser_context_t* c, pd_portfolio_quit_portfolio_custody_V7_t* m) { CHECK_ERROR(_readPortfolioId(c, &m->pid)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_portfolio_accept_portfolio_custody_V4( - parser_context_t* c, pd_portfolio_accept_portfolio_custody_V4_t* m) +__Z_INLINE parser_error_t _readMethod_portfolio_accept_portfolio_custody_V7( + parser_context_t* c, pd_portfolio_accept_portfolio_custody_V7_t* m) { CHECK_ERROR(_readu64(c, &m->auth_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_portfolio_move_portfolio_funds_V4( - parser_context_t* c, pd_portfolio_move_portfolio_funds_V4_t* m) +__Z_INLINE parser_error_t _readMethod_portfolio_move_portfolio_funds_V7( + parser_context_t* c, pd_portfolio_move_portfolio_funds_V7_t* m) { CHECK_ERROR(_readPortfolioId(c, &m->from)) CHECK_ERROR(_readPortfolioId(c, &m->to)) @@ -2032,31 +1922,31 @@ __Z_INLINE parser_error_t _readMethod_portfolio_move_portfolio_funds_V4( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_portfolio_pre_approve_portfolio_V4( - parser_context_t* c, pd_portfolio_pre_approve_portfolio_V4_t* m) +__Z_INLINE parser_error_t _readMethod_portfolio_pre_approve_portfolio_V7( + parser_context_t* c, pd_portfolio_pre_approve_portfolio_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) CHECK_ERROR(_readPortfolioId(c, &m->portfolio_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_portfolio_remove_portfolio_pre_approval_V4( - parser_context_t* c, pd_portfolio_remove_portfolio_pre_approval_V4_t* m) +__Z_INLINE parser_error_t _readMethod_portfolio_remove_portfolio_pre_approval_V7( + parser_context_t* c, pd_portfolio_remove_portfolio_pre_approval_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) CHECK_ERROR(_readPortfolioId(c, &m->portfolio_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_protocolfee_change_coefficient_V4( - parser_context_t* c, pd_protocolfee_change_coefficient_V4_t* m) +__Z_INLINE parser_error_t _readMethod_protocolfee_change_coefficient_V7( + parser_context_t* c, pd_protocolfee_change_coefficient_V7_t* m) { CHECK_ERROR(_readPosRatio(c, &m->coefficient)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_settlement_create_venue_V4( - parser_context_t* c, pd_settlement_create_venue_V4_t* m) +__Z_INLINE parser_error_t _readMethod_settlement_create_venue_V7( + parser_context_t* c, pd_settlement_create_venue_V7_t* m) { CHECK_ERROR(_readVenueDetails(c, &m->details)) CHECK_ERROR(_readVecAccountId(c, &m->signers)) @@ -2064,24 +1954,24 @@ __Z_INLINE parser_error_t _readMethod_settlement_create_venue_V4( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_settlement_update_venue_details_V4( - parser_context_t* c, pd_settlement_update_venue_details_V4_t* m) +__Z_INLINE parser_error_t _readMethod_settlement_update_venue_details_V7( + parser_context_t* c, pd_settlement_update_venue_details_V7_t* m) { CHECK_ERROR(_readVenueId(c, &m->id)) CHECK_ERROR(_readVenueDetails(c, &m->details)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_settlement_update_venue_type_V4( - parser_context_t* c, pd_settlement_update_venue_type_V4_t* m) +__Z_INLINE parser_error_t _readMethod_settlement_update_venue_type_V7( + parser_context_t* c, pd_settlement_update_venue_type_V7_t* m) { CHECK_ERROR(_readVenueId(c, &m->id)) CHECK_ERROR(_readVenueType(c, &m->typ)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_settlement_affirm_with_receipts_V4( - parser_context_t* c, pd_settlement_affirm_with_receipts_V4_t* m) +__Z_INLINE parser_error_t _readMethod_settlement_affirm_with_receipts_V7( + parser_context_t* c, pd_settlement_affirm_with_receipts_V7_t* m) { CHECK_ERROR(_readInstructionId(c, &m->id)) CHECK_ERROR(_readVecReceiptDetails(c, &m->receipt_details)) @@ -2089,32 +1979,32 @@ __Z_INLINE parser_error_t _readMethod_settlement_affirm_with_receipts_V4( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_settlement_set_venue_filtering_V4( - parser_context_t* c, pd_settlement_set_venue_filtering_V4_t* m) +__Z_INLINE parser_error_t _readMethod_settlement_set_venue_filtering_V7( + parser_context_t* c, pd_settlement_set_venue_filtering_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) CHECK_ERROR(_readbool(c, &m->enabled)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_settlement_allow_venues_V4( - parser_context_t* c, pd_settlement_allow_venues_V4_t* m) +__Z_INLINE parser_error_t _readMethod_settlement_allow_venues_V7( + parser_context_t* c, pd_settlement_allow_venues_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) CHECK_ERROR(_readVecVenueId(c, &m->venues)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_settlement_disallow_venues_V4( - parser_context_t* c, pd_settlement_disallow_venues_V4_t* m) +__Z_INLINE parser_error_t _readMethod_settlement_disallow_venues_V7( + parser_context_t* c, pd_settlement_disallow_venues_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) CHECK_ERROR(_readVecVenueId(c, &m->venues)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_settlement_update_venue_signers_V4( - parser_context_t* c, pd_settlement_update_venue_signers_V4_t* m) +__Z_INLINE parser_error_t _readMethod_settlement_update_venue_signers_V7( + parser_context_t* c, pd_settlement_update_venue_signers_V7_t* m) { CHECK_ERROR(_readVenueId(c, &m->id)) CHECK_ERROR(_readVecAccountId(c, &m->signers)) @@ -2122,8 +2012,8 @@ __Z_INLINE parser_error_t _readMethod_settlement_update_venue_signers_V4( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_settlement_execute_manual_instruction_V4( - parser_context_t* c, pd_settlement_execute_manual_instruction_V4_t* m) +__Z_INLINE parser_error_t _readMethod_settlement_execute_manual_instruction_V7( + parser_context_t* c, pd_settlement_execute_manual_instruction_V7_t* m) { CHECK_ERROR(_readInstructionId(c, &m->id)) CHECK_ERROR(_readOptionPortfolioId(c, &m->portfolio)) @@ -2134,10 +2024,10 @@ __Z_INLINE parser_error_t _readMethod_settlement_execute_manual_instruction_V4( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_settlement_add_instruction_V4( - parser_context_t* c, pd_settlement_add_instruction_V4_t* m) +__Z_INLINE parser_error_t _readMethod_settlement_add_instruction_V7( + parser_context_t* c, pd_settlement_add_instruction_V7_t* m) { - CHECK_ERROR(_readVenueId(c, &m->venue_id)) + CHECK_ERROR(_readOptionVenueId(c, &m->venue_id)) CHECK_ERROR(_readSettlementTypeBlockNumber(c, &m->settlement_type)) CHECK_ERROR(_readOptionMoment(c, &m->trade_date)) CHECK_ERROR(_readOptionMoment(c, &m->value_date)) @@ -2146,10 +2036,10 @@ __Z_INLINE parser_error_t _readMethod_settlement_add_instruction_V4( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_settlement_add_and_affirm_instruction_V4( - parser_context_t* c, pd_settlement_add_and_affirm_instruction_V4_t* m) +__Z_INLINE parser_error_t _readMethod_settlement_add_and_affirm_instruction_V7( + parser_context_t* c, pd_settlement_add_and_affirm_instruction_V7_t* m) { - CHECK_ERROR(_readVenueId(c, &m->venue_id)) + CHECK_ERROR(_readOptionVenueId(c, &m->venue_id)) CHECK_ERROR(_readSettlementTypeBlockNumber(c, &m->settlement_type)) CHECK_ERROR(_readOptionMoment(c, &m->trade_date)) CHECK_ERROR(_readOptionMoment(c, &m->value_date)) @@ -2159,45 +2049,45 @@ __Z_INLINE parser_error_t _readMethod_settlement_add_and_affirm_instruction_V4( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_settlement_affirm_instruction_V4( - parser_context_t* c, pd_settlement_affirm_instruction_V4_t* m) +__Z_INLINE parser_error_t _readMethod_settlement_affirm_instruction_V7( + parser_context_t* c, pd_settlement_affirm_instruction_V7_t* m) { CHECK_ERROR(_readInstructionId(c, &m->id)) CHECK_ERROR(_readVecPortfolioId(c, &m->portfolios)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_settlement_withdraw_affirmation_V4( - parser_context_t* c, pd_settlement_withdraw_affirmation_V4_t* m) +__Z_INLINE parser_error_t _readMethod_settlement_withdraw_affirmation_V7( + parser_context_t* c, pd_settlement_withdraw_affirmation_V7_t* m) { CHECK_ERROR(_readInstructionId(c, &m->id)) CHECK_ERROR(_readVecPortfolioId(c, &m->portfolios)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_settlement_reject_instruction_V4( - parser_context_t* c, pd_settlement_reject_instruction_V4_t* m) +__Z_INLINE parser_error_t _readMethod_settlement_reject_instruction_V7( + parser_context_t* c, pd_settlement_reject_instruction_V7_t* m) { CHECK_ERROR(_readInstructionId(c, &m->id)) CHECK_ERROR(_readPortfolioId(c, &m->portfolio)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_settlement_execute_scheduled_instruction_V4( - parser_context_t* c, pd_settlement_execute_scheduled_instruction_V4_t* m) +__Z_INLINE parser_error_t _readMethod_settlement_execute_scheduled_instruction_V7( + parser_context_t* c, pd_settlement_execute_scheduled_instruction_V7_t* m) { CHECK_ERROR(_readInstructionId(c, &m->id)) CHECK_ERROR(_readWeight(c, &m->weight_limit)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_sto_create_fundraiser_V4( - parser_context_t* c, pd_sto_create_fundraiser_V4_t* m) +__Z_INLINE parser_error_t _readMethod_sto_create_fundraiser_V7( + parser_context_t* c, pd_sto_create_fundraiser_V7_t* m) { CHECK_ERROR(_readPortfolioId(c, &m->offering_portfolio)) - CHECK_ERROR(_readTicker(c, &m->offering_asset)) + CHECK_ERROR(_readAssetID(c, &m->offering_asset)) CHECK_ERROR(_readPortfolioId(c, &m->raising_portfolio)) - CHECK_ERROR(_readTicker(c, &m->raising_asset)) + CHECK_ERROR(_readAssetID(c, &m->raising_asset)) CHECK_ERROR(_readVecPriceTier(c, &m->tiers)) CHECK_ERROR(_readVenueId(c, &m->venue_id)) CHECK_ERROR(_readOptionMoment(c, &m->start)) @@ -2207,12 +2097,12 @@ __Z_INLINE parser_error_t _readMethod_sto_create_fundraiser_V4( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_sto_invest_V4( - parser_context_t* c, pd_sto_invest_V4_t* m) +__Z_INLINE parser_error_t _readMethod_sto_invest_V7( + parser_context_t* c, pd_sto_invest_V7_t* m) { CHECK_ERROR(_readPortfolioId(c, &m->investment_portfolio)) CHECK_ERROR(_readPortfolioId(c, &m->funding_portfolio)) - CHECK_ERROR(_readTicker(c, &m->offering_asset)) + CHECK_ERROR(_readAssetID(c, &m->offering_asset)) CHECK_ERROR(_readFundraiserId(c, &m->id)) CHECK_ERROR(_readBalanceNoSymbol(c, &m->purchase_amount)) CHECK_ERROR(_readOptionBalance(c, &m->max_price)) @@ -2220,56 +2110,56 @@ __Z_INLINE parser_error_t _readMethod_sto_invest_V4( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_sto_freeze_fundraiser_V4( - parser_context_t* c, pd_sto_freeze_fundraiser_V4_t* m) +__Z_INLINE parser_error_t _readMethod_sto_freeze_fundraiser_V7( + parser_context_t* c, pd_sto_freeze_fundraiser_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->offering_asset)) + CHECK_ERROR(_readAssetID(c, &m->offering_asset)) CHECK_ERROR(_readFundraiserId(c, &m->id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_sto_unfreeze_fundraiser_V4( - parser_context_t* c, pd_sto_unfreeze_fundraiser_V4_t* m) +__Z_INLINE parser_error_t _readMethod_sto_unfreeze_fundraiser_V7( + parser_context_t* c, pd_sto_unfreeze_fundraiser_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->offering_asset)) + CHECK_ERROR(_readAssetID(c, &m->offering_asset)) CHECK_ERROR(_readFundraiserId(c, &m->id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_sto_modify_fundraiser_window_V4( - parser_context_t* c, pd_sto_modify_fundraiser_window_V4_t* m) +__Z_INLINE parser_error_t _readMethod_sto_modify_fundraiser_window_V7( + parser_context_t* c, pd_sto_modify_fundraiser_window_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->offering_asset)) + CHECK_ERROR(_readAssetID(c, &m->offering_asset)) CHECK_ERROR(_readFundraiserId(c, &m->id)) CHECK_ERROR(_readMoment(c, &m->start)) CHECK_ERROR(_readOptionMoment(c, &m->end)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_sto_stop_V4( - parser_context_t* c, pd_sto_stop_V4_t* m) +__Z_INLINE parser_error_t _readMethod_sto_stop_V7( + parser_context_t* c, pd_sto_stop_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->offering_asset)) + CHECK_ERROR(_readAssetID(c, &m->offering_asset)) CHECK_ERROR(_readFundraiserId(c, &m->id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_treasury_disbursement_V4( - parser_context_t* c, pd_treasury_disbursement_V4_t* m) +__Z_INLINE parser_error_t _readMethod_treasury_disbursement_V7( + parser_context_t* c, pd_treasury_disbursement_V7_t* m) { CHECK_ERROR(_readVecBeneficiary(c, &m->beneficiaries)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_treasury_reimbursement_V4( - parser_context_t* c, pd_treasury_reimbursement_V4_t* m) +__Z_INLINE parser_error_t _readMethod_treasury_reimbursement_V7( + parser_context_t* c, pd_treasury_reimbursement_V7_t* m) { CHECK_ERROR(_readBalance(c, &m->amount)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_utility_relay_tx_V4( - parser_context_t* c, pd_utility_relay_tx_V4_t* m) +__Z_INLINE parser_error_t _readMethod_utility_relay_tx_V7( + parser_context_t* c, pd_utility_relay_tx_V7_t* m) { CHECK_ERROR(_readAccountId(c, &m->target)) CHECK_ERROR(_readOffChainSignature(c, &m->signature)) @@ -2277,167 +2167,159 @@ __Z_INLINE parser_error_t _readMethod_utility_relay_tx_V4( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_utility_batch_all_V4( - parser_context_t* c, pd_utility_batch_all_V4_t* m) +__Z_INLINE parser_error_t _readMethod_utility_batch_all_V7( + parser_context_t* c, pd_utility_batch_all_V7_t* m) { CHECK_ERROR(_readVecCall(c, &m->calls)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_utility_dispatch_as_V4( - parser_context_t* c, pd_utility_dispatch_as_V4_t* m) +__Z_INLINE parser_error_t _readMethod_utility_dispatch_as_V7( + parser_context_t* c, pd_utility_dispatch_as_V7_t* m) { CHECK_ERROR(_readBoxPalletsOrigin(c, &m->as_origin)) CHECK_ERROR(_readCall(c, &m->call)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_utility_force_batch_V4( - parser_context_t* c, pd_utility_force_batch_V4_t* m) +__Z_INLINE parser_error_t _readMethod_utility_force_batch_V7( + parser_context_t* c, pd_utility_force_batch_V7_t* m) { CHECK_ERROR(_readVecCall(c, &m->calls)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_utility_with_weight_V4( - parser_context_t* c, pd_utility_with_weight_V4_t* m) +__Z_INLINE parser_error_t _readMethod_utility_with_weight_V7( + parser_context_t* c, pd_utility_with_weight_V7_t* m) { CHECK_ERROR(_readCall(c, &m->call)) CHECK_ERROR(_readWeight(c, &m->weight)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_utility_batch_old_V4( - parser_context_t* c, pd_utility_batch_old_V4_t* m) +__Z_INLINE parser_error_t _readMethod_utility_batch_old_V7( + parser_context_t* c, pd_utility_batch_old_V7_t* m) { CHECK_ERROR(_readVecCall(c, &m->calls)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_utility_as_derivative_V4( - parser_context_t* c, pd_utility_as_derivative_V4_t* m) -{ - CHECK_ERROR(_readu16(c, &m->index)) - CHECK_ERROR(_readCall(c, &m->call)) - return parser_ok; -} - -__Z_INLINE parser_error_t _readMethod_externalagents_create_group_V4( - parser_context_t* c, pd_externalagents_create_group_V4_t* m) +__Z_INLINE parser_error_t _readMethod_externalagents_create_group_V7( + parser_context_t* c, pd_externalagents_create_group_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) CHECK_ERROR(_readExtrinsicPermissions(c, &m->perms)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_externalagents_set_group_permissions_V4( - parser_context_t* c, pd_externalagents_set_group_permissions_V4_t* m) +__Z_INLINE parser_error_t _readMethod_externalagents_set_group_permissions_V7( + parser_context_t* c, pd_externalagents_set_group_permissions_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) CHECK_ERROR(_readAGId(c, &m->id)) CHECK_ERROR(_readExtrinsicPermissions(c, &m->perms)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_externalagents_remove_agent_V4( - parser_context_t* c, pd_externalagents_remove_agent_V4_t* m) +__Z_INLINE parser_error_t _readMethod_externalagents_remove_agent_V7( + parser_context_t* c, pd_externalagents_remove_agent_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) CHECK_ERROR(_readIdentityId(c, &m->agent)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_externalagents_abdicate_V4( - parser_context_t* c, pd_externalagents_abdicate_V4_t* m) +__Z_INLINE parser_error_t _readMethod_externalagents_abdicate_V7( + parser_context_t* c, pd_externalagents_abdicate_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_externalagents_change_group_V4( - parser_context_t* c, pd_externalagents_change_group_V4_t* m) +__Z_INLINE parser_error_t _readMethod_externalagents_change_group_V7( + parser_context_t* c, pd_externalagents_change_group_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) CHECK_ERROR(_readIdentityId(c, &m->agent)) CHECK_ERROR(_readAgentGroup(c, &m->group)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_externalagents_accept_become_agent_V4( - parser_context_t* c, pd_externalagents_accept_become_agent_V4_t* m) +__Z_INLINE parser_error_t _readMethod_externalagents_accept_become_agent_V7( + parser_context_t* c, pd_externalagents_accept_become_agent_V7_t* m) { CHECK_ERROR(_readu64(c, &m->auth_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_externalagents_create_group_and_add_auth_V4( - parser_context_t* c, pd_externalagents_create_group_and_add_auth_V4_t* m) +__Z_INLINE parser_error_t _readMethod_externalagents_create_group_and_add_auth_V7( + parser_context_t* c, pd_externalagents_create_group_and_add_auth_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) CHECK_ERROR(_readExtrinsicPermissions(c, &m->perms)) CHECK_ERROR(_readIdentityId(c, &m->target)) CHECK_ERROR(_readOptionMoment(c, &m->expiry)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_externalagents_create_and_change_custom_group_V4( - parser_context_t* c, pd_externalagents_create_and_change_custom_group_V4_t* m) +__Z_INLINE parser_error_t _readMethod_externalagents_create_and_change_custom_group_V7( + parser_context_t* c, pd_externalagents_create_and_change_custom_group_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) CHECK_ERROR(_readExtrinsicPermissions(c, &m->perms)) CHECK_ERROR(_readIdentityId(c, &m->agent)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_relayer_set_paying_key_V4( - parser_context_t* c, pd_relayer_set_paying_key_V4_t* m) +__Z_INLINE parser_error_t _readMethod_relayer_set_paying_key_V7( + parser_context_t* c, pd_relayer_set_paying_key_V7_t* m) { CHECK_ERROR(_readAccountId(c, &m->user_key)) CHECK_ERROR(_readBalance(c, &m->polyx_limit)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_relayer_accept_paying_key_V4( - parser_context_t* c, pd_relayer_accept_paying_key_V4_t* m) +__Z_INLINE parser_error_t _readMethod_relayer_accept_paying_key_V7( + parser_context_t* c, pd_relayer_accept_paying_key_V7_t* m) { CHECK_ERROR(_readu64(c, &m->auth_id)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_relayer_remove_paying_key_V4( - parser_context_t* c, pd_relayer_remove_paying_key_V4_t* m) +__Z_INLINE parser_error_t _readMethod_relayer_remove_paying_key_V7( + parser_context_t* c, pd_relayer_remove_paying_key_V7_t* m) { CHECK_ERROR(_readAccountId(c, &m->user_key)) CHECK_ERROR(_readAccountId(c, &m->paying_key)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_relayer_update_polyx_limit_V4( - parser_context_t* c, pd_relayer_update_polyx_limit_V4_t* m) +__Z_INLINE parser_error_t _readMethod_relayer_update_polyx_limit_V7( + parser_context_t* c, pd_relayer_update_polyx_limit_V7_t* m) { CHECK_ERROR(_readAccountId(c, &m->user_key)) CHECK_ERROR(_readBalance(c, &m->polyx_limit)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_relayer_increase_polyx_limit_V4( - parser_context_t* c, pd_relayer_increase_polyx_limit_V4_t* m) +__Z_INLINE parser_error_t _readMethod_relayer_increase_polyx_limit_V7( + parser_context_t* c, pd_relayer_increase_polyx_limit_V7_t* m) { CHECK_ERROR(_readAccountId(c, &m->user_key)) CHECK_ERROR(_readBalance(c, &m->amount)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_relayer_decrease_polyx_limit_V4( - parser_context_t* c, pd_relayer_decrease_polyx_limit_V4_t* m) +__Z_INLINE parser_error_t _readMethod_relayer_decrease_polyx_limit_V7( + parser_context_t* c, pd_relayer_decrease_polyx_limit_V7_t* m) { CHECK_ERROR(_readAccountId(c, &m->user_key)) CHECK_ERROR(_readBalance(c, &m->amount)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_contracts_call_old_weight_V4( - parser_context_t* c, pd_contracts_call_old_weight_V4_t* m) +__Z_INLINE parser_error_t _readMethod_contracts_call_old_weight_V7( + parser_context_t* c, pd_contracts_call_old_weight_V7_t* m) { CHECK_ERROR(_readAccountIdLookupOfT(c, &m->dest)) CHECK_ERROR(_readCompactBalance(c, &m->amount)) @@ -2447,8 +2329,8 @@ __Z_INLINE parser_error_t _readMethod_contracts_call_old_weight_V4( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_contracts_instantiate_with_code_old_weight_V4( - parser_context_t* c, pd_contracts_instantiate_with_code_old_weight_V4_t* m) +__Z_INLINE parser_error_t _readMethod_contracts_instantiate_with_code_old_weight_V7( + parser_context_t* c, pd_contracts_instantiate_with_code_old_weight_V7_t* m) { CHECK_ERROR(_readCompactBalance(c, &m->amount)) CHECK_ERROR(_readCompactu64(c, &m->gas_limit)) @@ -2459,8 +2341,8 @@ __Z_INLINE parser_error_t _readMethod_contracts_instantiate_with_code_old_weight return parser_ok; } -__Z_INLINE parser_error_t _readMethod_contracts_instantiate_old_weight_V4( - parser_context_t* c, pd_contracts_instantiate_old_weight_V4_t* m) +__Z_INLINE parser_error_t _readMethod_contracts_instantiate_old_weight_V7( + parser_context_t* c, pd_contracts_instantiate_old_weight_V7_t* m) { CHECK_ERROR(_readCompactBalance(c, &m->amount)) CHECK_ERROR(_readCompactu64(c, &m->gas_limit)) @@ -2471,8 +2353,8 @@ __Z_INLINE parser_error_t _readMethod_contracts_instantiate_old_weight_V4( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_contracts_upload_code_V4( - parser_context_t* c, pd_contracts_upload_code_V4_t* m) +__Z_INLINE parser_error_t _readMethod_contracts_upload_code_V7( + parser_context_t* c, pd_contracts_upload_code_V7_t* m) { CHECK_ERROR(_readBytes(c, &m->code)) CHECK_ERROR(_readOptionCompactBalanceOf(c, &m->storage_deposit_limit)) @@ -2480,23 +2362,23 @@ __Z_INLINE parser_error_t _readMethod_contracts_upload_code_V4( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_contracts_remove_code_V4( - parser_context_t* c, pd_contracts_remove_code_V4_t* m) +__Z_INLINE parser_error_t _readMethod_contracts_remove_code_V7( + parser_context_t* c, pd_contracts_remove_code_V7_t* m) { CHECK_ERROR(_readCodeHash(c, &m->code_hash)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_contracts_set_code_V4( - parser_context_t* c, pd_contracts_set_code_V4_t* m) +__Z_INLINE parser_error_t _readMethod_contracts_set_code_V7( + parser_context_t* c, pd_contracts_set_code_V7_t* m) { CHECK_ERROR(_readAccountIdLookupOfT(c, &m->dest)) CHECK_ERROR(_readCodeHash(c, &m->code_hash)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_contracts_call_V4( - parser_context_t* c, pd_contracts_call_V4_t* m) +__Z_INLINE parser_error_t _readMethod_contracts_call_V7( + parser_context_t* c, pd_contracts_call_V7_t* m) { CHECK_ERROR(_readAccountIdLookupOfT(c, &m->dest)) CHECK_ERROR(_readCompactBalance(c, &m->amount)) @@ -2506,8 +2388,8 @@ __Z_INLINE parser_error_t _readMethod_contracts_call_V4( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_contracts_instantiate_with_code_V4( - parser_context_t* c, pd_contracts_instantiate_with_code_V4_t* m) +__Z_INLINE parser_error_t _readMethod_contracts_instantiate_with_code_V7( + parser_context_t* c, pd_contracts_instantiate_with_code_V7_t* m) { CHECK_ERROR(_readCompactBalance(c, &m->amount)) CHECK_ERROR(_readWeight(c, &m->gas_limit)) @@ -2518,8 +2400,8 @@ __Z_INLINE parser_error_t _readMethod_contracts_instantiate_with_code_V4( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_contracts_instantiate_V4( - parser_context_t* c, pd_contracts_instantiate_V4_t* m) +__Z_INLINE parser_error_t _readMethod_contracts_instantiate_V7( + parser_context_t* c, pd_contracts_instantiate_V7_t* m) { CHECK_ERROR(_readCompactBalance(c, &m->amount)) CHECK_ERROR(_readWeight(c, &m->gas_limit)) @@ -2530,8 +2412,8 @@ __Z_INLINE parser_error_t _readMethod_contracts_instantiate_V4( return parser_ok; } -__Z_INLINE parser_error_t _readMethod_polymeshcontracts_instantiate_with_code_perms_V4( - parser_context_t* c, pd_polymeshcontracts_instantiate_with_code_perms_V4_t* m) +__Z_INLINE parser_error_t _readMethod_polymeshcontracts_instantiate_with_code_perms_V7( + parser_context_t* c, pd_polymeshcontracts_instantiate_with_code_perms_V7_t* m) { CHECK_ERROR(_readBalance(c, &m->endowment)) CHECK_ERROR(_readWeight(c, &m->gas_limit)) @@ -2543,8 +2425,8 @@ __Z_INLINE parser_error_t _readMethod_polymeshcontracts_instantiate_with_code_pe return parser_ok; } -__Z_INLINE parser_error_t _readMethod_polymeshcontracts_instantiate_with_hash_perms_V4( - parser_context_t* c, pd_polymeshcontracts_instantiate_with_hash_perms_V4_t* m) +__Z_INLINE parser_error_t _readMethod_polymeshcontracts_instantiate_with_hash_perms_V7( + parser_context_t* c, pd_polymeshcontracts_instantiate_with_hash_perms_V7_t* m) { CHECK_ERROR(_readBalance(c, &m->endowment)) CHECK_ERROR(_readWeight(c, &m->gas_limit)) @@ -2556,15 +2438,15 @@ __Z_INLINE parser_error_t _readMethod_polymeshcontracts_instantiate_with_hash_pe return parser_ok; } -__Z_INLINE parser_error_t _readMethod_polymeshcontracts_update_call_runtime_whitelist_V4( - parser_context_t* c, pd_polymeshcontracts_update_call_runtime_whitelist_V4_t* m) +__Z_INLINE parser_error_t _readMethod_polymeshcontracts_update_call_runtime_whitelist_V7( + parser_context_t* c, pd_polymeshcontracts_update_call_runtime_whitelist_V7_t* m) { CHECK_ERROR(_readVecTupleExtrinsicIdbool(c, &m->updates)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_polymeshcontracts_instantiate_with_code_as_primary_key_V4( - parser_context_t* c, pd_polymeshcontracts_instantiate_with_code_as_primary_key_V4_t* m) +__Z_INLINE parser_error_t _readMethod_polymeshcontracts_instantiate_with_code_as_primary_key_V7( + parser_context_t* c, pd_polymeshcontracts_instantiate_with_code_as_primary_key_V7_t* m) { CHECK_ERROR(_readBalance(c, &m->endowment)) CHECK_ERROR(_readWeight(c, &m->gas_limit)) @@ -2575,8 +2457,8 @@ __Z_INLINE parser_error_t _readMethod_polymeshcontracts_instantiate_with_code_as return parser_ok; } -__Z_INLINE parser_error_t _readMethod_polymeshcontracts_instantiate_with_hash_as_primary_key_V4( - parser_context_t* c, pd_polymeshcontracts_instantiate_with_hash_as_primary_key_V4_t* m) +__Z_INLINE parser_error_t _readMethod_polymeshcontracts_instantiate_with_hash_as_primary_key_V7( + parser_context_t* c, pd_polymeshcontracts_instantiate_with_hash_as_primary_key_V7_t* m) { CHECK_ERROR(_readBalance(c, &m->endowment)) CHECK_ERROR(_readWeight(c, &m->gas_limit)) @@ -2587,1068 +2469,1076 @@ __Z_INLINE parser_error_t _readMethod_polymeshcontracts_instantiate_with_hash_as return parser_ok; } -__Z_INLINE parser_error_t _readMethod_polymeshcontracts_upgrade_api_V4( - parser_context_t* c, pd_polymeshcontracts_upgrade_api_V4_t* m) +__Z_INLINE parser_error_t _readMethod_polymeshcontracts_upgrade_api_V7( + parser_context_t* c, pd_polymeshcontracts_upgrade_api_V7_t* m) { CHECK_ERROR(_readApi(c, &m->api)) CHECK_ERROR(_readNextUpgradeT(c, &m->next_upgrade)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_preimage_note_preimage_V4( - parser_context_t* c, pd_preimage_note_preimage_V4_t* m) +__Z_INLINE parser_error_t _readMethod_preimage_note_preimage_V7( + parser_context_t* c, pd_preimage_note_preimage_V7_t* m) { CHECK_ERROR(_readVecu8(c, &m->bytes)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_preimage_unnote_preimage_V4( - parser_context_t* c, pd_preimage_unnote_preimage_V4_t* m) +__Z_INLINE parser_error_t _readMethod_preimage_unnote_preimage_V7( + parser_context_t* c, pd_preimage_unnote_preimage_V7_t* m) { CHECK_ERROR(_readHash(c, &m->hash)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_preimage_request_preimage_V4( - parser_context_t* c, pd_preimage_request_preimage_V4_t* m) +__Z_INLINE parser_error_t _readMethod_preimage_request_preimage_V7( + parser_context_t* c, pd_preimage_request_preimage_V7_t* m) { CHECK_ERROR(_readHash(c, &m->hash)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_preimage_unrequest_preimage_V4( - parser_context_t* c, pd_preimage_unrequest_preimage_V4_t* m) +__Z_INLINE parser_error_t _readMethod_preimage_unrequest_preimage_V7( + parser_context_t* c, pd_preimage_unrequest_preimage_V7_t* m) { CHECK_ERROR(_readHash(c, &m->hash)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_nft_create_nft_collection_V4( - parser_context_t* c, pd_nft_create_nft_collection_V4_t* m) +__Z_INLINE parser_error_t _readMethod_nft_create_nft_collection_V7( + parser_context_t* c, pd_nft_create_nft_collection_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readOptionAssetID(c, &m->asset_id)) CHECK_ERROR(_readOptionNonFungibleType(c, &m->nft_type)) CHECK_ERROR(_readVecAssetMetadataKey(c, &m->collection_keys)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_nft_issue_nft_V4( - parser_context_t* c, pd_nft_issue_nft_V4_t* m) +__Z_INLINE parser_error_t _readMethod_nft_issue_nft_V7( + parser_context_t* c, pd_nft_issue_nft_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) CHECK_ERROR(_readVecNFTMetadataAttribute(c, &m->nft_metadata_attributes)) CHECK_ERROR(_readPortfolioKind(c, &m->portfolio_kind)) return parser_ok; } -__Z_INLINE parser_error_t _readMethod_nft_redeem_nft_V4( - parser_context_t* c, pd_nft_redeem_nft_V4_t* m) +__Z_INLINE parser_error_t _readMethod_nft_redeem_nft_V7( + parser_context_t* c, pd_nft_redeem_nft_V7_t* m) { - CHECK_ERROR(_readTicker(c, &m->ticker)) + CHECK_ERROR(_readAssetID(c, &m->asset_id)) CHECK_ERROR(_readNFTId(c, &m->nft_id)) CHECK_ERROR(_readPortfolioKind(c, &m->portfolio_kind)) + CHECK_ERROR(_readOptionu8(c, &m->number_of_keys)) return parser_ok; } -#endif +__Z_INLINE parser_error_t _readMethod_electionprovidermultiphase_submit_unsigned_V7( + parser_context_t* c, pd_electionprovidermultiphase_submit_unsigned_V7_t* m) +{ + CHECK_ERROR(_readBoxRawSolutionSolutionOfMinerConfig(c, &m->raw_solution)) + CHECK_ERROR(_readSolutionOrSnapshotSize(c, &m->witness)) + return parser_ok; +} -parser_error_t _readMethod_V4( - parser_context_t* c, - uint8_t moduleIdx, - uint8_t callIdx, - pd_Method_V4_t* method) +__Z_INLINE parser_error_t _readMethod_electionprovidermultiphase_set_minimum_untrusted_score_V7( + parser_context_t* c, pd_electionprovidermultiphase_set_minimum_untrusted_score_V7_t* m) { - uint16_t callPrivIdx = ((uint16_t)moduleIdx << 8u) + callIdx; + CHECK_ERROR(_readOptionElectionScore(c, &m->maybe_next_score)) + return parser_ok; +} - switch (callPrivIdx) { +__Z_INLINE parser_error_t _readMethod_electionprovidermultiphase_set_emergency_election_result_V7( + parser_context_t* c, pd_electionprovidermultiphase_set_emergency_election_result_V7_t* m) +{ + CHECK_ERROR(_readSupportsAccountId(c, &m->supports)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_electionprovidermultiphase_submit_V7( + parser_context_t* c, pd_electionprovidermultiphase_submit_V7_t* m) +{ + CHECK_ERROR(_readBoxRawSolutionSolutionOfMinerConfig(c, &m->raw_solution)) + return parser_ok; +} + +__Z_INLINE parser_error_t _readMethod_electionprovidermultiphase_governance_fallback_V7( + parser_context_t* c, pd_electionprovidermultiphase_governance_fallback_V7_t* m) +{ + CHECK_ERROR(_readOptionu32(c, &m->maybe_max_voters)) + CHECK_ERROR(_readOptionu32(c, &m->maybe_max_targets)) + return parser_ok; +} + +#endif + +parser_error_t _readMethod_V7( + parser_context_t* c, + uint8_t moduleIdx, + uint8_t callIdx, + pd_Method_V7_t* method) +{ + uint16_t callPrivIdx = ((uint16_t)moduleIdx << 8u) + callIdx; + + switch (callPrivIdx) { case 1280: /* module 5 call 0 */ - CHECK_ERROR(_readMethod_balances_transfer_V4(c, &method->nested.balances_transfer_V4)) + CHECK_ERROR(_readMethod_balances_transfer_V7(c, &method->nested.balances_transfer_V7)) break; case 1281: /* module 5 call 1 */ - CHECK_ERROR(_readMethod_balances_transfer_with_memo_V4(c, &method->nested.balances_transfer_with_memo_V4)) + CHECK_ERROR(_readMethod_balances_transfer_with_memo_V7(c, &method->nested.balances_transfer_with_memo_V7)) break; case 1794: /* module 7 call 2 */ - CHECK_ERROR(_readMethod_identity_accept_primary_key_V4(c, &method->nested.identity_accept_primary_key_V4)) + CHECK_ERROR(_readMethod_identity_accept_primary_key_V7(c, &method->nested.identity_accept_primary_key_V7)) break; case 1796: /* module 7 call 4 */ - CHECK_ERROR(_readMethod_identity_join_identity_as_key_V4(c, &method->nested.identity_join_identity_as_key_V4)) + CHECK_ERROR(_readMethod_identity_join_identity_as_key_V7(c, &method->nested.identity_join_identity_as_key_V7)) break; case 1797: /* module 7 call 5 */ - CHECK_ERROR(_readMethod_identity_leave_identity_as_key_V4(c, &method->nested.identity_leave_identity_as_key_V4)) + CHECK_ERROR(_readMethod_identity_leave_identity_as_key_V7(c, &method->nested.identity_leave_identity_as_key_V7)) break; case 1798: /* module 7 call 6 */ - CHECK_ERROR(_readMethod_identity_add_claim_V4(c, &method->nested.identity_add_claim_V4)) + CHECK_ERROR(_readMethod_identity_add_claim_V7(c, &method->nested.identity_add_claim_V7)) break; case 1799: /* module 7 call 7 */ - CHECK_ERROR(_readMethod_identity_revoke_claim_V4(c, &method->nested.identity_revoke_claim_V4)) + CHECK_ERROR(_readMethod_identity_revoke_claim_V7(c, &method->nested.identity_revoke_claim_V7)) break; case 1800: /* module 7 call 8 */ - CHECK_ERROR(_readMethod_identity_freeze_secondary_keys_V4(c, &method->nested.identity_freeze_secondary_keys_V4)) + CHECK_ERROR(_readMethod_identity_freeze_secondary_keys_V7(c, &method->nested.identity_freeze_secondary_keys_V7)) break; case 1801: /* module 7 call 9 */ - CHECK_ERROR(_readMethod_identity_unfreeze_secondary_keys_V4(c, &method->nested.identity_unfreeze_secondary_keys_V4)) + CHECK_ERROR(_readMethod_identity_unfreeze_secondary_keys_V7(c, &method->nested.identity_unfreeze_secondary_keys_V7)) break; case 1802: /* module 7 call 10 */ - CHECK_ERROR(_readMethod_identity_add_authorization_V4(c, &method->nested.identity_add_authorization_V4)) + CHECK_ERROR(_readMethod_identity_add_authorization_V7(c, &method->nested.identity_add_authorization_V7)) break; case 1803: /* module 7 call 11 */ - CHECK_ERROR(_readMethod_identity_remove_authorization_V4(c, &method->nested.identity_remove_authorization_V4)) + CHECK_ERROR(_readMethod_identity_remove_authorization_V7(c, &method->nested.identity_remove_authorization_V7)) break; case 1808: /* module 7 call 16 */ - CHECK_ERROR(_readMethod_identity_add_secondary_keys_with_authorization_V4(c, &method->nested.identity_add_secondary_keys_with_authorization_V4)) + CHECK_ERROR(_readMethod_identity_add_secondary_keys_with_authorization_V7(c, &method->nested.identity_add_secondary_keys_with_authorization_V7)) break; case 1810: /* module 7 call 18 */ - CHECK_ERROR(_readMethod_identity_remove_secondary_keys_V4(c, &method->nested.identity_remove_secondary_keys_V4)) + CHECK_ERROR(_readMethod_identity_remove_secondary_keys_V7(c, &method->nested.identity_remove_secondary_keys_V7)) break; case 3840: /* module 15 call 0 */ - CHECK_ERROR(_readMethod_multisig_create_multisig_V4(c, &method->nested.multisig_create_multisig_V4)) - break; - case 3842: /* module 15 call 2 */ - CHECK_ERROR(_readMethod_multisig_create_or_approve_proposal_as_key_V4(c, &method->nested.multisig_create_or_approve_proposal_as_key_V4)) - break; - case 3844: /* module 15 call 4 */ - CHECK_ERROR(_readMethod_multisig_create_proposal_as_key_V4(c, &method->nested.multisig_create_proposal_as_key_V4)) - break; - case 3846: /* module 15 call 6 */ - CHECK_ERROR(_readMethod_multisig_approve_as_key_V4(c, &method->nested.multisig_approve_as_key_V4)) - break; - case 3848: /* module 15 call 8 */ - CHECK_ERROR(_readMethod_multisig_reject_as_key_V4(c, &method->nested.multisig_reject_as_key_V4)) - break; - case 3850: /* module 15 call 10 */ - CHECK_ERROR(_readMethod_multisig_accept_multisig_signer_as_key_V4(c, &method->nested.multisig_accept_multisig_signer_as_key_V4)) - break; - case 3851: /* module 15 call 11 */ - CHECK_ERROR(_readMethod_multisig_add_multisig_signer_V4(c, &method->nested.multisig_add_multisig_signer_V4)) - break; - case 3852: /* module 15 call 12 */ - CHECK_ERROR(_readMethod_multisig_remove_multisig_signer_V4(c, &method->nested.multisig_remove_multisig_signer_V4)) - break; - case 3853: /* module 15 call 13 */ - CHECK_ERROR(_readMethod_multisig_add_multisig_signers_via_creator_V4(c, &method->nested.multisig_add_multisig_signers_via_creator_V4)) - break; - case 3854: /* module 15 call 14 */ - CHECK_ERROR(_readMethod_multisig_remove_multisig_signers_via_creator_V4(c, &method->nested.multisig_remove_multisig_signers_via_creator_V4)) - break; - case 3855: /* module 15 call 15 */ - CHECK_ERROR(_readMethod_multisig_change_sigs_required_V4(c, &method->nested.multisig_change_sigs_required_V4)) + CHECK_ERROR(_readMethod_multisig_create_multisig_V7(c, &method->nested.multisig_create_multisig_V7)) break; - case 3857: /* module 15 call 17 */ - CHECK_ERROR(_readMethod_multisig_make_multisig_primary_V4(c, &method->nested.multisig_make_multisig_primary_V4)) + case 3849: /* module 15 call 9 */ + CHECK_ERROR(_readMethod_multisig_change_sigs_required_V7(c, &method->nested.multisig_change_sigs_required_V7)) break; case 4352: /* module 17 call 0 */ - CHECK_ERROR(_readMethod_staking_bond_V4(c, &method->nested.staking_bond_V4)) + CHECK_ERROR(_readMethod_staking_bond_V7(c, &method->nested.staking_bond_V7)) break; case 4353: /* module 17 call 1 */ - CHECK_ERROR(_readMethod_staking_bond_extra_V4(c, &method->nested.staking_bond_extra_V4)) + CHECK_ERROR(_readMethod_staking_bond_extra_V7(c, &method->nested.staking_bond_extra_V7)) break; case 4354: /* module 17 call 2 */ - CHECK_ERROR(_readMethod_staking_unbond_V4(c, &method->nested.staking_unbond_V4)) + CHECK_ERROR(_readMethod_staking_unbond_V7(c, &method->nested.staking_unbond_V7)) break; case 4355: /* module 17 call 3 */ - CHECK_ERROR(_readMethod_staking_withdraw_unbonded_V4(c, &method->nested.staking_withdraw_unbonded_V4)) + CHECK_ERROR(_readMethod_staking_withdraw_unbonded_V7(c, &method->nested.staking_withdraw_unbonded_V7)) break; case 4356: /* module 17 call 4 */ - CHECK_ERROR(_readMethod_staking_validate_V4(c, &method->nested.staking_validate_V4)) + CHECK_ERROR(_readMethod_staking_validate_V7(c, &method->nested.staking_validate_V7)) break; case 4357: /* module 17 call 5 */ - CHECK_ERROR(_readMethod_staking_nominate_V4(c, &method->nested.staking_nominate_V4)) + CHECK_ERROR(_readMethod_staking_nominate_V7(c, &method->nested.staking_nominate_V7)) break; case 4358: /* module 17 call 6 */ - CHECK_ERROR(_readMethod_staking_chill_V4(c, &method->nested.staking_chill_V4)) + CHECK_ERROR(_readMethod_staking_chill_V7(c, &method->nested.staking_chill_V7)) break; case 4359: /* module 17 call 7 */ - CHECK_ERROR(_readMethod_staking_set_payee_V4(c, &method->nested.staking_set_payee_V4)) + CHECK_ERROR(_readMethod_staking_set_payee_V7(c, &method->nested.staking_set_payee_V7)) break; case 4360: /* module 17 call 8 */ - CHECK_ERROR(_readMethod_staking_set_controller_V4(c, &method->nested.staking_set_controller_V4)) + CHECK_ERROR(_readMethod_staking_set_controller_V7(c, &method->nested.staking_set_controller_V7)) break; - case 4376: /* module 17 call 24 */ - CHECK_ERROR(_readMethod_staking_rebond_V4(c, &method->nested.staking_rebond_V4)) + case 4371: /* module 17 call 19 */ + CHECK_ERROR(_readMethod_staking_rebond_V7(c, &method->nested.staking_rebond_V7)) break; case 8454: /* module 33 call 6 */ - CHECK_ERROR(_readMethod_pips_propose_V4(c, &method->nested.pips_propose_V4)) + CHECK_ERROR(_readMethod_pips_propose_V7(c, &method->nested.pips_propose_V7)) break; case 8455: /* module 33 call 7 */ - CHECK_ERROR(_readMethod_pips_vote_V4(c, &method->nested.pips_vote_V4)) + CHECK_ERROR(_readMethod_pips_vote_V7(c, &method->nested.pips_vote_V7)) break; case 10496: /* module 41 call 0 */ - CHECK_ERROR(_readMethod_utility_batch_V4(c, &method->nested.utility_batch_V4)) + CHECK_ERROR(_readMethod_utility_batch_V7(c, &method->nested.utility_batch_V7)) break; case 10503: /* module 41 call 7 */ - CHECK_ERROR(_readMethod_utility_batch_atomic_V4(c, &method->nested.utility_batch_atomic_V4)) + CHECK_ERROR(_readMethod_utility_batch_atomic_V7(c, &method->nested.utility_batch_atomic_V7)) break; case 10504: /* module 41 call 8 */ - CHECK_ERROR(_readMethod_utility_batch_optimistic_V4(c, &method->nested.utility_batch_optimistic_V4)) + CHECK_ERROR(_readMethod_utility_batch_optimistic_V7(c, &method->nested.utility_batch_optimistic_V7)) break; #ifdef SUBSTRATE_PARSER_FULL #ifndef TARGET_NANOS - case 6686: /* module 26 call 30 */ - CHECK_ERROR(_readMethod_asset_add_mandatory_mediators_V4(c, &method->basic.asset_add_mandatory_mediators_V4)) + case 6685: /* module 26 call 29 */ + CHECK_ERROR(_readMethod_asset_add_mandatory_mediators_V7(c, &method->basic.asset_add_mandatory_mediators_V7)) break; - case 6687: /* module 26 call 31 */ - CHECK_ERROR(_readMethod_asset_remove_mandatory_mediators_V4(c, &method->basic.asset_remove_mandatory_mediators_V4)) + case 6686: /* module 26 call 30 */ + CHECK_ERROR(_readMethod_asset_remove_mandatory_mediators_V7(c, &method->basic.asset_remove_mandatory_mediators_V7)) break; case 7680: /* module 30 call 0 */ - CHECK_ERROR(_readMethod_corporateaction_set_max_details_length_V4(c, &method->nested.corporateaction_set_max_details_length_V4)) + CHECK_ERROR(_readMethod_corporateaction_set_max_details_length_V7(c, &method->nested.corporateaction_set_max_details_length_V7)) break; case 7681: /* module 30 call 1 */ - CHECK_ERROR(_readMethod_corporateaction_set_default_targets_V4(c, &method->nested.corporateaction_set_default_targets_V4)) + CHECK_ERROR(_readMethod_corporateaction_set_default_targets_V7(c, &method->nested.corporateaction_set_default_targets_V7)) break; case 7682: /* module 30 call 2 */ - CHECK_ERROR(_readMethod_corporateaction_set_default_withholding_tax_V4(c, &method->nested.corporateaction_set_default_withholding_tax_V4)) + CHECK_ERROR(_readMethod_corporateaction_set_default_withholding_tax_V7(c, &method->nested.corporateaction_set_default_withholding_tax_V7)) break; case 7683: /* module 30 call 3 */ - CHECK_ERROR(_readMethod_corporateaction_set_did_withholding_tax_V4(c, &method->nested.corporateaction_set_did_withholding_tax_V4)) + CHECK_ERROR(_readMethod_corporateaction_set_did_withholding_tax_V7(c, &method->nested.corporateaction_set_did_withholding_tax_V7)) break; case 7684: /* module 30 call 4 */ - CHECK_ERROR(_readMethod_corporateaction_initiate_corporate_action_V4(c, &method->nested.corporateaction_initiate_corporate_action_V4)) + CHECK_ERROR(_readMethod_corporateaction_initiate_corporate_action_V7(c, &method->nested.corporateaction_initiate_corporate_action_V7)) break; case 7685: /* module 30 call 5 */ - CHECK_ERROR(_readMethod_corporateaction_link_ca_doc_V4(c, &method->nested.corporateaction_link_ca_doc_V4)) + CHECK_ERROR(_readMethod_corporateaction_link_ca_doc_V7(c, &method->nested.corporateaction_link_ca_doc_V7)) break; case 7686: /* module 30 call 6 */ - CHECK_ERROR(_readMethod_corporateaction_remove_ca_V4(c, &method->nested.corporateaction_remove_ca_V4)) + CHECK_ERROR(_readMethod_corporateaction_remove_ca_V7(c, &method->nested.corporateaction_remove_ca_V7)) break; case 7687: /* module 30 call 7 */ - CHECK_ERROR(_readMethod_corporateaction_change_record_date_V4(c, &method->nested.corporateaction_change_record_date_V4)) + CHECK_ERROR(_readMethod_corporateaction_change_record_date_V7(c, &method->nested.corporateaction_change_record_date_V7)) break; case 7688: /* module 30 call 8 */ - CHECK_ERROR(_readMethod_corporateaction_initiate_corporate_action_and_distribute_V4(c, &method->nested.corporateaction_initiate_corporate_action_and_distribute_V4)) + CHECK_ERROR(_readMethod_corporateaction_initiate_corporate_action_and_distribute_V7(c, &method->nested.corporateaction_initiate_corporate_action_and_distribute_V7)) break; case 7936: /* module 31 call 0 */ - CHECK_ERROR(_readMethod_corporateballot_attach_ballot_V4(c, &method->nested.corporateballot_attach_ballot_V4)) + CHECK_ERROR(_readMethod_corporateballot_attach_ballot_V7(c, &method->nested.corporateballot_attach_ballot_V7)) break; case 7937: /* module 31 call 1 */ - CHECK_ERROR(_readMethod_corporateballot_vote_V4(c, &method->nested.corporateballot_vote_V4)) + CHECK_ERROR(_readMethod_corporateballot_vote_V7(c, &method->nested.corporateballot_vote_V7)) break; case 7938: /* module 31 call 2 */ - CHECK_ERROR(_readMethod_corporateballot_change_end_V4(c, &method->nested.corporateballot_change_end_V4)) + CHECK_ERROR(_readMethod_corporateballot_change_end_V7(c, &method->nested.corporateballot_change_end_V7)) break; case 7939: /* module 31 call 3 */ - CHECK_ERROR(_readMethod_corporateballot_change_meta_V4(c, &method->nested.corporateballot_change_meta_V4)) + CHECK_ERROR(_readMethod_corporateballot_change_meta_V7(c, &method->nested.corporateballot_change_meta_V7)) break; case 7940: /* module 31 call 4 */ - CHECK_ERROR(_readMethod_corporateballot_change_rcv_V4(c, &method->nested.corporateballot_change_rcv_V4)) + CHECK_ERROR(_readMethod_corporateballot_change_rcv_V7(c, &method->nested.corporateballot_change_rcv_V7)) break; case 7941: /* module 31 call 5 */ - CHECK_ERROR(_readMethod_corporateballot_remove_ballot_V4(c, &method->nested.corporateballot_remove_ballot_V4)) + CHECK_ERROR(_readMethod_corporateballot_remove_ballot_V7(c, &method->nested.corporateballot_remove_ballot_V7)) break; case 8462: /* module 33 call 14 */ - CHECK_ERROR(_readMethod_pips_enact_snapshot_results_V4(c, &method->nested.pips_enact_snapshot_results_V4)) + CHECK_ERROR(_readMethod_pips_enact_snapshot_results_V7(c, &method->nested.pips_enact_snapshot_results_V7)) break; case 8712: /* module 34 call 8 */ - CHECK_ERROR(_readMethod_portfolio_allow_identity_to_create_portfolios_V4(c, &method->basic.portfolio_allow_identity_to_create_portfolios_V4)) + CHECK_ERROR(_readMethod_portfolio_allow_identity_to_create_portfolios_V7(c, &method->basic.portfolio_allow_identity_to_create_portfolios_V7)) break; case 8713: /* module 34 call 9 */ - CHECK_ERROR(_readMethod_portfolio_revoke_create_portfolios_permission_V4(c, &method->basic.portfolio_revoke_create_portfolios_permission_V4)) + CHECK_ERROR(_readMethod_portfolio_revoke_create_portfolios_permission_V7(c, &method->basic.portfolio_revoke_create_portfolios_permission_V7)) break; case 8714: /* module 34 call 10 */ - CHECK_ERROR(_readMethod_portfolio_create_custody_portfolio_V4(c, &method->basic.portfolio_create_custody_portfolio_V4)) + CHECK_ERROR(_readMethod_portfolio_create_custody_portfolio_V7(c, &method->basic.portfolio_create_custody_portfolio_V7)) break; case 9487: /* module 37 call 15 */ - CHECK_ERROR(_readMethod_settlement_affirm_with_receipts_with_count_V4(c, &method->basic.settlement_affirm_with_receipts_with_count_V4)) + CHECK_ERROR(_readMethod_settlement_affirm_with_receipts_with_count_V7(c, &method->basic.settlement_affirm_with_receipts_with_count_V7)) break; case 9488: /* module 37 call 16 */ - CHECK_ERROR(_readMethod_settlement_affirm_instruction_with_count_V4(c, &method->basic.settlement_affirm_instruction_with_count_V4)) + CHECK_ERROR(_readMethod_settlement_affirm_instruction_with_count_V7(c, &method->basic.settlement_affirm_instruction_with_count_V7)) break; case 9489: /* module 37 call 17 */ - CHECK_ERROR(_readMethod_settlement_reject_instruction_with_count_V4(c, &method->basic.settlement_reject_instruction_with_count_V4)) + CHECK_ERROR(_readMethod_settlement_reject_instruction_with_count_V7(c, &method->basic.settlement_reject_instruction_with_count_V7)) break; case 9490: /* module 37 call 18 */ - CHECK_ERROR(_readMethod_settlement_withdraw_affirmation_with_count_V4(c, &method->basic.settlement_withdraw_affirmation_with_count_V4)) + CHECK_ERROR(_readMethod_settlement_withdraw_affirmation_with_count_V7(c, &method->basic.settlement_withdraw_affirmation_with_count_V7)) break; case 9491: /* module 37 call 19 */ - CHECK_ERROR(_readMethod_settlement_add_instruction_with_mediators_V4(c, &method->basic.settlement_add_instruction_with_mediators_V4)) + CHECK_ERROR(_readMethod_settlement_add_instruction_with_mediators_V7(c, &method->basic.settlement_add_instruction_with_mediators_V7)) break; case 9492: /* module 37 call 20 */ - CHECK_ERROR(_readMethod_settlement_add_and_affirm_with_mediators_V4(c, &method->basic.settlement_add_and_affirm_with_mediators_V4)) + CHECK_ERROR(_readMethod_settlement_add_and_affirm_with_mediators_V7(c, &method->basic.settlement_add_and_affirm_with_mediators_V7)) break; case 9493: /* module 37 call 21 */ - CHECK_ERROR(_readMethod_settlement_affirm_instruction_as_mediator_V4(c, &method->basic.settlement_affirm_instruction_as_mediator_V4)) + CHECK_ERROR(_readMethod_settlement_affirm_instruction_as_mediator_V7(c, &method->basic.settlement_affirm_instruction_as_mediator_V7)) break; case 9494: /* module 37 call 22 */ - CHECK_ERROR(_readMethod_settlement_withdraw_affirmation_as_mediator_V4(c, &method->basic.settlement_withdraw_affirmation_as_mediator_V4)) + CHECK_ERROR(_readMethod_settlement_withdraw_affirmation_as_mediator_V7(c, &method->basic.settlement_withdraw_affirmation_as_mediator_V7)) break; case 9495: /* module 37 call 23 */ - CHECK_ERROR(_readMethod_settlement_reject_instruction_as_mediator_V4(c, &method->basic.settlement_reject_instruction_as_mediator_V4)) + CHECK_ERROR(_readMethod_settlement_reject_instruction_as_mediator_V7(c, &method->basic.settlement_reject_instruction_as_mediator_V7)) break; case 12547: /* module 49 call 3 */ - CHECK_ERROR(_readMethod_nft_controller_transfer_V4(c, &method->basic.nft_controller_transfer_V4)) + CHECK_ERROR(_readMethod_nft_controller_transfer_V7(c, &method->basic.nft_controller_transfer_V7)) break; #endif case 0: /* module 0 call 0 */ - CHECK_ERROR(_readMethod_system_remark_V4(c, &method->nested.system_remark_V4)) + CHECK_ERROR(_readMethod_system_remark_V7(c, &method->nested.system_remark_V7)) break; case 1: /* module 0 call 1 */ - CHECK_ERROR(_readMethod_system_set_heap_pages_V4(c, &method->nested.system_set_heap_pages_V4)) + CHECK_ERROR(_readMethod_system_set_heap_pages_V7(c, &method->nested.system_set_heap_pages_V7)) break; case 2: /* module 0 call 2 */ - CHECK_ERROR(_readMethod_system_set_code_V4(c, &method->nested.system_set_code_V4)) + CHECK_ERROR(_readMethod_system_set_code_V7(c, &method->nested.system_set_code_V7)) break; case 3: /* module 0 call 3 */ - CHECK_ERROR(_readMethod_system_set_code_without_checks_V4(c, &method->nested.system_set_code_without_checks_V4)) + CHECK_ERROR(_readMethod_system_set_code_without_checks_V7(c, &method->nested.system_set_code_without_checks_V7)) break; case 7: /* module 0 call 7 */ - CHECK_ERROR(_readMethod_system_remark_with_event_V4(c, &method->nested.system_remark_with_event_V4)) + CHECK_ERROR(_readMethod_system_remark_with_event_V7(c, &method->nested.system_remark_with_event_V7)) break; case 512: /* module 2 call 0 */ - CHECK_ERROR(_readMethod_timestamp_set_V4(c, &method->nested.timestamp_set_V4)) + CHECK_ERROR(_readMethod_timestamp_set_V7(c, &method->nested.timestamp_set_V7)) break; case 768: /* module 3 call 0 */ - CHECK_ERROR(_readMethod_indices_claim_V4(c, &method->nested.indices_claim_V4)) + CHECK_ERROR(_readMethod_indices_claim_V7(c, &method->nested.indices_claim_V7)) break; case 769: /* module 3 call 1 */ - CHECK_ERROR(_readMethod_indices_transfer_V4(c, &method->nested.indices_transfer_V4)) + CHECK_ERROR(_readMethod_indices_transfer_V7(c, &method->nested.indices_transfer_V7)) break; case 770: /* module 3 call 2 */ - CHECK_ERROR(_readMethod_indices_free_V4(c, &method->nested.indices_free_V4)) + CHECK_ERROR(_readMethod_indices_free_V7(c, &method->nested.indices_free_V7)) break; case 771: /* module 3 call 3 */ - CHECK_ERROR(_readMethod_indices_force_transfer_V4(c, &method->nested.indices_force_transfer_V4)) + CHECK_ERROR(_readMethod_indices_force_transfer_V7(c, &method->nested.indices_force_transfer_V7)) break; case 772: /* module 3 call 4 */ - CHECK_ERROR(_readMethod_indices_freeze_V4(c, &method->nested.indices_freeze_V4)) + CHECK_ERROR(_readMethod_indices_freeze_V7(c, &method->nested.indices_freeze_V7)) break; case 1282: /* module 5 call 2 */ - CHECK_ERROR(_readMethod_balances_deposit_block_reward_reserve_balance_V4(c, &method->nested.balances_deposit_block_reward_reserve_balance_V4)) + CHECK_ERROR(_readMethod_balances_deposit_block_reward_reserve_balance_V7(c, &method->nested.balances_deposit_block_reward_reserve_balance_V7)) break; case 1283: /* module 5 call 3 */ - CHECK_ERROR(_readMethod_balances_set_balance_V4(c, &method->nested.balances_set_balance_V4)) + CHECK_ERROR(_readMethod_balances_set_balance_V7(c, &method->nested.balances_set_balance_V7)) break; case 1284: /* module 5 call 4 */ - CHECK_ERROR(_readMethod_balances_force_transfer_V4(c, &method->nested.balances_force_transfer_V4)) + CHECK_ERROR(_readMethod_balances_force_transfer_V7(c, &method->nested.balances_force_transfer_V7)) break; case 1285: /* module 5 call 5 */ - CHECK_ERROR(_readMethod_balances_burn_account_balance_V4(c, &method->nested.balances_burn_account_balance_V4)) + CHECK_ERROR(_readMethod_balances_burn_account_balance_V7(c, &method->nested.balances_burn_account_balance_V7)) break; case 1792: /* module 7 call 0 */ - CHECK_ERROR(_readMethod_identity_cdd_register_did_V4(c, &method->nested.identity_cdd_register_did_V4)) + CHECK_ERROR(_readMethod_identity_cdd_register_did_V7(c, &method->nested.identity_cdd_register_did_V7)) break; case 1793: /* module 7 call 1 */ - CHECK_ERROR(_readMethod_identity_invalidate_cdd_claims_V4(c, &method->nested.identity_invalidate_cdd_claims_V4)) + CHECK_ERROR(_readMethod_identity_invalidate_cdd_claims_V7(c, &method->nested.identity_invalidate_cdd_claims_V7)) break; case 1795: /* module 7 call 3 */ - CHECK_ERROR(_readMethod_identity_change_cdd_requirement_for_mk_rotation_V4(c, &method->nested.identity_change_cdd_requirement_for_mk_rotation_V4)) + CHECK_ERROR(_readMethod_identity_change_cdd_requirement_for_mk_rotation_V7(c, &method->nested.identity_change_cdd_requirement_for_mk_rotation_V7)) break; case 1804: /* module 7 call 12 */ - CHECK_ERROR(_readMethod_identity_gc_add_cdd_claim_V4(c, &method->nested.identity_gc_add_cdd_claim_V4)) + CHECK_ERROR(_readMethod_identity_gc_add_cdd_claim_V7(c, &method->nested.identity_gc_add_cdd_claim_V7)) break; case 1805: /* module 7 call 13 */ - CHECK_ERROR(_readMethod_identity_gc_revoke_cdd_claim_V4(c, &method->nested.identity_gc_revoke_cdd_claim_V4)) + CHECK_ERROR(_readMethod_identity_gc_revoke_cdd_claim_V7(c, &method->nested.identity_gc_revoke_cdd_claim_V7)) break; case 1806: /* module 7 call 14 */ - CHECK_ERROR(_readMethod_identity_revoke_claim_by_index_V4(c, &method->nested.identity_revoke_claim_by_index_V4)) + CHECK_ERROR(_readMethod_identity_revoke_claim_by_index_V7(c, &method->nested.identity_revoke_claim_by_index_V7)) break; case 1807: /* module 7 call 15 */ - CHECK_ERROR(_readMethod_identity_rotate_primary_key_to_secondary_V4(c, &method->nested.identity_rotate_primary_key_to_secondary_V4)) + CHECK_ERROR(_readMethod_identity_rotate_primary_key_to_secondary_V7(c, &method->nested.identity_rotate_primary_key_to_secondary_V7)) break; case 1809: /* module 7 call 17 */ - CHECK_ERROR(_readMethod_identity_set_secondary_key_permissions_V4(c, &method->nested.identity_set_secondary_key_permissions_V4)) + CHECK_ERROR(_readMethod_identity_set_secondary_key_permissions_V7(c, &method->nested.identity_set_secondary_key_permissions_V7)) break; case 1811: /* module 7 call 19 */ - CHECK_ERROR(_readMethod_identity_register_custom_claim_type_V4(c, &method->nested.identity_register_custom_claim_type_V4)) + CHECK_ERROR(_readMethod_identity_register_custom_claim_type_V7(c, &method->nested.identity_register_custom_claim_type_V7)) break; case 1812: /* module 7 call 20 */ - CHECK_ERROR(_readMethod_identity_cdd_register_did_with_cdd_V4(c, &method->nested.identity_cdd_register_did_with_cdd_V4)) + CHECK_ERROR(_readMethod_identity_cdd_register_did_with_cdd_V7(c, &method->nested.identity_cdd_register_did_with_cdd_V7)) break; case 1813: /* module 7 call 21 */ - CHECK_ERROR(_readMethod_identity_create_child_identity_V4(c, &method->nested.identity_create_child_identity_V4)) + CHECK_ERROR(_readMethod_identity_create_child_identity_V7(c, &method->nested.identity_create_child_identity_V7)) break; case 1814: /* module 7 call 22 */ - CHECK_ERROR(_readMethod_identity_create_child_identities_V4(c, &method->nested.identity_create_child_identities_V4)) + CHECK_ERROR(_readMethod_identity_create_child_identities_V7(c, &method->nested.identity_create_child_identities_V7)) break; case 1815: /* module 7 call 23 */ - CHECK_ERROR(_readMethod_identity_unlink_child_identity_V4(c, &method->nested.identity_unlink_child_identity_V4)) + CHECK_ERROR(_readMethod_identity_unlink_child_identity_V7(c, &method->nested.identity_unlink_child_identity_V7)) break; case 2048: /* module 8 call 0 */ - CHECK_ERROR(_readMethod_cddserviceproviders_set_active_members_limit_V4(c, &method->nested.cddserviceproviders_set_active_members_limit_V4)) + CHECK_ERROR(_readMethod_cddserviceproviders_set_active_members_limit_V7(c, &method->nested.cddserviceproviders_set_active_members_limit_V7)) break; case 2049: /* module 8 call 1 */ - CHECK_ERROR(_readMethod_cddserviceproviders_disable_member_V4(c, &method->nested.cddserviceproviders_disable_member_V4)) + CHECK_ERROR(_readMethod_cddserviceproviders_disable_member_V7(c, &method->nested.cddserviceproviders_disable_member_V7)) break; case 2050: /* module 8 call 2 */ - CHECK_ERROR(_readMethod_cddserviceproviders_add_member_V4(c, &method->nested.cddserviceproviders_add_member_V4)) + CHECK_ERROR(_readMethod_cddserviceproviders_add_member_V7(c, &method->nested.cddserviceproviders_add_member_V7)) break; case 2051: /* module 8 call 3 */ - CHECK_ERROR(_readMethod_cddserviceproviders_remove_member_V4(c, &method->nested.cddserviceproviders_remove_member_V4)) + CHECK_ERROR(_readMethod_cddserviceproviders_remove_member_V7(c, &method->nested.cddserviceproviders_remove_member_V7)) break; case 2052: /* module 8 call 4 */ - CHECK_ERROR(_readMethod_cddserviceproviders_swap_member_V4(c, &method->nested.cddserviceproviders_swap_member_V4)) + CHECK_ERROR(_readMethod_cddserviceproviders_swap_member_V7(c, &method->nested.cddserviceproviders_swap_member_V7)) break; case 2053: /* module 8 call 5 */ - CHECK_ERROR(_readMethod_cddserviceproviders_reset_members_V4(c, &method->nested.cddserviceproviders_reset_members_V4)) + CHECK_ERROR(_readMethod_cddserviceproviders_reset_members_V7(c, &method->nested.cddserviceproviders_reset_members_V7)) break; case 2054: /* module 8 call 6 */ - CHECK_ERROR(_readMethod_cddserviceproviders_abdicate_membership_V4(c, &method->nested.cddserviceproviders_abdicate_membership_V4)) + CHECK_ERROR(_readMethod_cddserviceproviders_abdicate_membership_V7(c, &method->nested.cddserviceproviders_abdicate_membership_V7)) break; case 2304: /* module 9 call 0 */ - CHECK_ERROR(_readMethod_polymeshcommittee_set_vote_threshold_V4(c, &method->nested.polymeshcommittee_set_vote_threshold_V4)) + CHECK_ERROR(_readMethod_polymeshcommittee_set_vote_threshold_V7(c, &method->nested.polymeshcommittee_set_vote_threshold_V7)) break; case 2305: /* module 9 call 1 */ - CHECK_ERROR(_readMethod_polymeshcommittee_set_release_coordinator_V4(c, &method->nested.polymeshcommittee_set_release_coordinator_V4)) + CHECK_ERROR(_readMethod_polymeshcommittee_set_release_coordinator_V7(c, &method->nested.polymeshcommittee_set_release_coordinator_V7)) break; case 2306: /* module 9 call 2 */ - CHECK_ERROR(_readMethod_polymeshcommittee_set_expires_after_V4(c, &method->nested.polymeshcommittee_set_expires_after_V4)) + CHECK_ERROR(_readMethod_polymeshcommittee_set_expires_after_V7(c, &method->nested.polymeshcommittee_set_expires_after_V7)) break; case 2307: /* module 9 call 3 */ - CHECK_ERROR(_readMethod_polymeshcommittee_vote_or_propose_V4(c, &method->nested.polymeshcommittee_vote_or_propose_V4)) + CHECK_ERROR(_readMethod_polymeshcommittee_vote_or_propose_V7(c, &method->nested.polymeshcommittee_vote_or_propose_V7)) break; case 2308: /* module 9 call 4 */ - CHECK_ERROR(_readMethod_polymeshcommittee_vote_V4(c, &method->nested.polymeshcommittee_vote_V4)) + CHECK_ERROR(_readMethod_polymeshcommittee_vote_V7(c, &method->nested.polymeshcommittee_vote_V7)) break; case 2560: /* module 10 call 0 */ - CHECK_ERROR(_readMethod_committeemembership_set_active_members_limit_V4(c, &method->nested.committeemembership_set_active_members_limit_V4)) + CHECK_ERROR(_readMethod_committeemembership_set_active_members_limit_V7(c, &method->nested.committeemembership_set_active_members_limit_V7)) break; case 2561: /* module 10 call 1 */ - CHECK_ERROR(_readMethod_committeemembership_disable_member_V4(c, &method->nested.committeemembership_disable_member_V4)) + CHECK_ERROR(_readMethod_committeemembership_disable_member_V7(c, &method->nested.committeemembership_disable_member_V7)) break; case 2562: /* module 10 call 2 */ - CHECK_ERROR(_readMethod_committeemembership_add_member_V4(c, &method->nested.committeemembership_add_member_V4)) + CHECK_ERROR(_readMethod_committeemembership_add_member_V7(c, &method->nested.committeemembership_add_member_V7)) break; case 2563: /* module 10 call 3 */ - CHECK_ERROR(_readMethod_committeemembership_remove_member_V4(c, &method->nested.committeemembership_remove_member_V4)) + CHECK_ERROR(_readMethod_committeemembership_remove_member_V7(c, &method->nested.committeemembership_remove_member_V7)) break; case 2564: /* module 10 call 4 */ - CHECK_ERROR(_readMethod_committeemembership_swap_member_V4(c, &method->nested.committeemembership_swap_member_V4)) + CHECK_ERROR(_readMethod_committeemembership_swap_member_V7(c, &method->nested.committeemembership_swap_member_V7)) break; case 2565: /* module 10 call 5 */ - CHECK_ERROR(_readMethod_committeemembership_reset_members_V4(c, &method->nested.committeemembership_reset_members_V4)) + CHECK_ERROR(_readMethod_committeemembership_reset_members_V7(c, &method->nested.committeemembership_reset_members_V7)) break; case 2566: /* module 10 call 6 */ - CHECK_ERROR(_readMethod_committeemembership_abdicate_membership_V4(c, &method->nested.committeemembership_abdicate_membership_V4)) + CHECK_ERROR(_readMethod_committeemembership_abdicate_membership_V7(c, &method->nested.committeemembership_abdicate_membership_V7)) break; case 2816: /* module 11 call 0 */ - CHECK_ERROR(_readMethod_technicalcommittee_set_vote_threshold_V4(c, &method->nested.technicalcommittee_set_vote_threshold_V4)) + CHECK_ERROR(_readMethod_technicalcommittee_set_vote_threshold_V7(c, &method->nested.technicalcommittee_set_vote_threshold_V7)) break; case 2817: /* module 11 call 1 */ - CHECK_ERROR(_readMethod_technicalcommittee_set_release_coordinator_V4(c, &method->nested.technicalcommittee_set_release_coordinator_V4)) + CHECK_ERROR(_readMethod_technicalcommittee_set_release_coordinator_V7(c, &method->nested.technicalcommittee_set_release_coordinator_V7)) break; case 2818: /* module 11 call 2 */ - CHECK_ERROR(_readMethod_technicalcommittee_set_expires_after_V4(c, &method->nested.technicalcommittee_set_expires_after_V4)) + CHECK_ERROR(_readMethod_technicalcommittee_set_expires_after_V7(c, &method->nested.technicalcommittee_set_expires_after_V7)) break; case 2819: /* module 11 call 3 */ - CHECK_ERROR(_readMethod_technicalcommittee_vote_or_propose_V4(c, &method->nested.technicalcommittee_vote_or_propose_V4)) + CHECK_ERROR(_readMethod_technicalcommittee_vote_or_propose_V7(c, &method->nested.technicalcommittee_vote_or_propose_V7)) break; case 2820: /* module 11 call 4 */ - CHECK_ERROR(_readMethod_technicalcommittee_vote_V4(c, &method->nested.technicalcommittee_vote_V4)) + CHECK_ERROR(_readMethod_technicalcommittee_vote_V7(c, &method->nested.technicalcommittee_vote_V7)) break; case 3072: /* module 12 call 0 */ - CHECK_ERROR(_readMethod_technicalcommitteemembership_set_active_members_limit_V4(c, &method->nested.technicalcommitteemembership_set_active_members_limit_V4)) + CHECK_ERROR(_readMethod_technicalcommitteemembership_set_active_members_limit_V7(c, &method->nested.technicalcommitteemembership_set_active_members_limit_V7)) break; case 3073: /* module 12 call 1 */ - CHECK_ERROR(_readMethod_technicalcommitteemembership_disable_member_V4(c, &method->nested.technicalcommitteemembership_disable_member_V4)) + CHECK_ERROR(_readMethod_technicalcommitteemembership_disable_member_V7(c, &method->nested.technicalcommitteemembership_disable_member_V7)) break; case 3074: /* module 12 call 2 */ - CHECK_ERROR(_readMethod_technicalcommitteemembership_add_member_V4(c, &method->nested.technicalcommitteemembership_add_member_V4)) + CHECK_ERROR(_readMethod_technicalcommitteemembership_add_member_V7(c, &method->nested.technicalcommitteemembership_add_member_V7)) break; case 3075: /* module 12 call 3 */ - CHECK_ERROR(_readMethod_technicalcommitteemembership_remove_member_V4(c, &method->nested.technicalcommitteemembership_remove_member_V4)) + CHECK_ERROR(_readMethod_technicalcommitteemembership_remove_member_V7(c, &method->nested.technicalcommitteemembership_remove_member_V7)) break; case 3076: /* module 12 call 4 */ - CHECK_ERROR(_readMethod_technicalcommitteemembership_swap_member_V4(c, &method->nested.technicalcommitteemembership_swap_member_V4)) + CHECK_ERROR(_readMethod_technicalcommitteemembership_swap_member_V7(c, &method->nested.technicalcommitteemembership_swap_member_V7)) break; case 3077: /* module 12 call 5 */ - CHECK_ERROR(_readMethod_technicalcommitteemembership_reset_members_V4(c, &method->nested.technicalcommitteemembership_reset_members_V4)) + CHECK_ERROR(_readMethod_technicalcommitteemembership_reset_members_V7(c, &method->nested.technicalcommitteemembership_reset_members_V7)) break; case 3078: /* module 12 call 6 */ - CHECK_ERROR(_readMethod_technicalcommitteemembership_abdicate_membership_V4(c, &method->nested.technicalcommitteemembership_abdicate_membership_V4)) + CHECK_ERROR(_readMethod_technicalcommitteemembership_abdicate_membership_V7(c, &method->nested.technicalcommitteemembership_abdicate_membership_V7)) break; case 3328: /* module 13 call 0 */ - CHECK_ERROR(_readMethod_upgradecommittee_set_vote_threshold_V4(c, &method->nested.upgradecommittee_set_vote_threshold_V4)) + CHECK_ERROR(_readMethod_upgradecommittee_set_vote_threshold_V7(c, &method->nested.upgradecommittee_set_vote_threshold_V7)) break; case 3329: /* module 13 call 1 */ - CHECK_ERROR(_readMethod_upgradecommittee_set_release_coordinator_V4(c, &method->nested.upgradecommittee_set_release_coordinator_V4)) + CHECK_ERROR(_readMethod_upgradecommittee_set_release_coordinator_V7(c, &method->nested.upgradecommittee_set_release_coordinator_V7)) break; case 3330: /* module 13 call 2 */ - CHECK_ERROR(_readMethod_upgradecommittee_set_expires_after_V4(c, &method->nested.upgradecommittee_set_expires_after_V4)) + CHECK_ERROR(_readMethod_upgradecommittee_set_expires_after_V7(c, &method->nested.upgradecommittee_set_expires_after_V7)) break; case 3331: /* module 13 call 3 */ - CHECK_ERROR(_readMethod_upgradecommittee_vote_or_propose_V4(c, &method->nested.upgradecommittee_vote_or_propose_V4)) + CHECK_ERROR(_readMethod_upgradecommittee_vote_or_propose_V7(c, &method->nested.upgradecommittee_vote_or_propose_V7)) break; case 3332: /* module 13 call 4 */ - CHECK_ERROR(_readMethod_upgradecommittee_vote_V4(c, &method->nested.upgradecommittee_vote_V4)) + CHECK_ERROR(_readMethod_upgradecommittee_vote_V7(c, &method->nested.upgradecommittee_vote_V7)) break; case 3584: /* module 14 call 0 */ - CHECK_ERROR(_readMethod_upgradecommitteemembership_set_active_members_limit_V4(c, &method->nested.upgradecommitteemembership_set_active_members_limit_V4)) + CHECK_ERROR(_readMethod_upgradecommitteemembership_set_active_members_limit_V7(c, &method->nested.upgradecommitteemembership_set_active_members_limit_V7)) break; case 3585: /* module 14 call 1 */ - CHECK_ERROR(_readMethod_upgradecommitteemembership_disable_member_V4(c, &method->nested.upgradecommitteemembership_disable_member_V4)) + CHECK_ERROR(_readMethod_upgradecommitteemembership_disable_member_V7(c, &method->nested.upgradecommitteemembership_disable_member_V7)) break; case 3586: /* module 14 call 2 */ - CHECK_ERROR(_readMethod_upgradecommitteemembership_add_member_V4(c, &method->nested.upgradecommitteemembership_add_member_V4)) + CHECK_ERROR(_readMethod_upgradecommitteemembership_add_member_V7(c, &method->nested.upgradecommitteemembership_add_member_V7)) break; case 3587: /* module 14 call 3 */ - CHECK_ERROR(_readMethod_upgradecommitteemembership_remove_member_V4(c, &method->nested.upgradecommitteemembership_remove_member_V4)) + CHECK_ERROR(_readMethod_upgradecommitteemembership_remove_member_V7(c, &method->nested.upgradecommitteemembership_remove_member_V7)) break; case 3588: /* module 14 call 4 */ - CHECK_ERROR(_readMethod_upgradecommitteemembership_swap_member_V4(c, &method->nested.upgradecommitteemembership_swap_member_V4)) + CHECK_ERROR(_readMethod_upgradecommitteemembership_swap_member_V7(c, &method->nested.upgradecommitteemembership_swap_member_V7)) break; case 3589: /* module 14 call 5 */ - CHECK_ERROR(_readMethod_upgradecommitteemembership_reset_members_V4(c, &method->nested.upgradecommitteemembership_reset_members_V4)) + CHECK_ERROR(_readMethod_upgradecommitteemembership_reset_members_V7(c, &method->nested.upgradecommitteemembership_reset_members_V7)) break; case 3590: /* module 14 call 6 */ - CHECK_ERROR(_readMethod_upgradecommitteemembership_abdicate_membership_V4(c, &method->nested.upgradecommitteemembership_abdicate_membership_V4)) + CHECK_ERROR(_readMethod_upgradecommitteemembership_abdicate_membership_V7(c, &method->nested.upgradecommitteemembership_abdicate_membership_V7)) break; case 3841: /* module 15 call 1 */ - CHECK_ERROR(_readMethod_multisig_create_or_approve_proposal_as_identity_V4(c, &method->nested.multisig_create_or_approve_proposal_as_identity_V4)) - break; - case 3843: /* module 15 call 3 */ - CHECK_ERROR(_readMethod_multisig_create_proposal_as_identity_V4(c, &method->nested.multisig_create_proposal_as_identity_V4)) - break; - case 3845: /* module 15 call 5 */ - CHECK_ERROR(_readMethod_multisig_approve_as_identity_V4(c, &method->nested.multisig_approve_as_identity_V4)) - break; - case 3847: /* module 15 call 7 */ - CHECK_ERROR(_readMethod_multisig_reject_as_identity_V4(c, &method->nested.multisig_reject_as_identity_V4)) - break; - case 3849: /* module 15 call 9 */ - CHECK_ERROR(_readMethod_multisig_accept_multisig_signer_as_identity_V4(c, &method->nested.multisig_accept_multisig_signer_as_identity_V4)) - break; - case 3856: /* module 15 call 16 */ - CHECK_ERROR(_readMethod_multisig_make_multisig_secondary_V4(c, &method->nested.multisig_make_multisig_secondary_V4)) - break; - case 3858: /* module 15 call 18 */ - CHECK_ERROR(_readMethod_multisig_execute_scheduled_proposal_V4(c, &method->nested.multisig_execute_scheduled_proposal_V4)) - break; - case 3859: /* module 15 call 19 */ - CHECK_ERROR(_readMethod_multisig_change_sigs_required_via_creator_V4(c, &method->nested.multisig_change_sigs_required_via_creator_V4)) - break; - case 3860: /* module 15 call 20 */ - CHECK_ERROR(_readMethod_multisig_remove_creator_controls_V4(c, &method->nested.multisig_remove_creator_controls_V4)) - break; - case 4096: /* module 16 call 0 */ - CHECK_ERROR(_readMethod_bridge_change_controller_V4(c, &method->nested.bridge_change_controller_V4)) - break; - case 4097: /* module 16 call 1 */ - CHECK_ERROR(_readMethod_bridge_change_admin_V4(c, &method->nested.bridge_change_admin_V4)) - break; - case 4098: /* module 16 call 2 */ - CHECK_ERROR(_readMethod_bridge_change_timelock_V4(c, &method->nested.bridge_change_timelock_V4)) + CHECK_ERROR(_readMethod_multisig_create_proposal_V7(c, &method->nested.multisig_create_proposal_V7)) break; - case 4099: /* module 16 call 3 */ - CHECK_ERROR(_readMethod_bridge_freeze_V4(c, &method->nested.bridge_freeze_V4)) + case 3842: /* module 15 call 2 */ + CHECK_ERROR(_readMethod_multisig_approve_V7(c, &method->nested.multisig_approve_V7)) break; - case 4100: /* module 16 call 4 */ - CHECK_ERROR(_readMethod_bridge_unfreeze_V4(c, &method->nested.bridge_unfreeze_V4)) + case 3843: /* module 15 call 3 */ + CHECK_ERROR(_readMethod_multisig_reject_V7(c, &method->nested.multisig_reject_V7)) break; - case 4101: /* module 16 call 5 */ - CHECK_ERROR(_readMethod_bridge_change_bridge_limit_V4(c, &method->nested.bridge_change_bridge_limit_V4)) + case 3844: /* module 15 call 4 */ + CHECK_ERROR(_readMethod_multisig_accept_multisig_signer_V7(c, &method->nested.multisig_accept_multisig_signer_V7)) break; - case 4102: /* module 16 call 6 */ - CHECK_ERROR(_readMethod_bridge_change_bridge_exempted_V4(c, &method->nested.bridge_change_bridge_exempted_V4)) + case 3845: /* module 15 call 5 */ + CHECK_ERROR(_readMethod_multisig_add_multisig_signers_V7(c, &method->nested.multisig_add_multisig_signers_V7)) break; - case 4103: /* module 16 call 7 */ - CHECK_ERROR(_readMethod_bridge_force_handle_bridge_tx_V4(c, &method->nested.bridge_force_handle_bridge_tx_V4)) + case 3846: /* module 15 call 6 */ + CHECK_ERROR(_readMethod_multisig_remove_multisig_signers_V7(c, &method->nested.multisig_remove_multisig_signers_V7)) break; - case 4104: /* module 16 call 8 */ - CHECK_ERROR(_readMethod_bridge_batch_propose_bridge_tx_V4(c, &method->basic.bridge_batch_propose_bridge_tx_V4)) + case 3847: /* module 15 call 7 */ + CHECK_ERROR(_readMethod_multisig_add_multisig_signers_via_admin_V7(c, &method->nested.multisig_add_multisig_signers_via_admin_V7)) break; - case 4105: /* module 16 call 9 */ - CHECK_ERROR(_readMethod_bridge_propose_bridge_tx_V4(c, &method->basic.bridge_propose_bridge_tx_V4)) + case 3848: /* module 15 call 8 */ + CHECK_ERROR(_readMethod_multisig_remove_multisig_signers_via_admin_V7(c, &method->nested.multisig_remove_multisig_signers_via_admin_V7)) break; - case 4106: /* module 16 call 10 */ - CHECK_ERROR(_readMethod_bridge_handle_bridge_tx_V4(c, &method->basic.bridge_handle_bridge_tx_V4)) + case 3850: /* module 15 call 10 */ + CHECK_ERROR(_readMethod_multisig_change_sigs_required_via_admin_V7(c, &method->nested.multisig_change_sigs_required_via_admin_V7)) break; - case 4107: /* module 16 call 11 */ - CHECK_ERROR(_readMethod_bridge_freeze_txs_V4(c, &method->basic.bridge_freeze_txs_V4)) + case 3851: /* module 15 call 11 */ + CHECK_ERROR(_readMethod_multisig_add_admin_V7(c, &method->nested.multisig_add_admin_V7)) break; - case 4108: /* module 16 call 12 */ - CHECK_ERROR(_readMethod_bridge_unfreeze_txs_V4(c, &method->basic.bridge_unfreeze_txs_V4)) + case 3852: /* module 15 call 12 */ + CHECK_ERROR(_readMethod_multisig_remove_admin_via_admin_V7(c, &method->nested.multisig_remove_admin_via_admin_V7)) break; - case 4109: /* module 16 call 13 */ - CHECK_ERROR(_readMethod_bridge_handle_scheduled_bridge_tx_V4(c, &method->basic.bridge_handle_scheduled_bridge_tx_V4)) + case 3853: /* module 15 call 13 */ + CHECK_ERROR(_readMethod_multisig_remove_payer_V7(c, &method->nested.multisig_remove_payer_V7)) break; - case 4110: /* module 16 call 14 */ - CHECK_ERROR(_readMethod_bridge_add_freeze_admin_V4(c, &method->basic.bridge_add_freeze_admin_V4)) + case 3854: /* module 15 call 14 */ + CHECK_ERROR(_readMethod_multisig_remove_payer_via_payer_V7(c, &method->nested.multisig_remove_payer_via_payer_V7)) break; - case 4111: /* module 16 call 15 */ - CHECK_ERROR(_readMethod_bridge_remove_freeze_admin_V4(c, &method->basic.bridge_remove_freeze_admin_V4)) + case 3855: /* module 15 call 15 */ + CHECK_ERROR(_readMethod_multisig_approve_join_identity_V7(c, &method->nested.multisig_approve_join_identity_V7)) break; - case 4112: /* module 16 call 16 */ - CHECK_ERROR(_readMethod_bridge_remove_txs_V4(c, &method->basic.bridge_remove_txs_V4)) + case 3856: /* module 15 call 16 */ + CHECK_ERROR(_readMethod_multisig_join_identity_V7(c, &method->nested.multisig_join_identity_V7)) break; case 4361: /* module 17 call 9 */ - CHECK_ERROR(_readMethod_staking_set_validator_count_V4(c, &method->nested.staking_set_validator_count_V4)) + CHECK_ERROR(_readMethod_staking_set_validator_count_V7(c, &method->nested.staking_set_validator_count_V7)) break; case 4362: /* module 17 call 10 */ - CHECK_ERROR(_readMethod_staking_increase_validator_count_V4(c, &method->nested.staking_increase_validator_count_V4)) + CHECK_ERROR(_readMethod_staking_increase_validator_count_V7(c, &method->nested.staking_increase_validator_count_V7)) break; case 4363: /* module 17 call 11 */ - CHECK_ERROR(_readMethod_staking_scale_validator_count_V4(c, &method->nested.staking_scale_validator_count_V4)) + CHECK_ERROR(_readMethod_staking_scale_validator_count_V7(c, &method->nested.staking_scale_validator_count_V7)) break; case 4364: /* module 17 call 12 */ - CHECK_ERROR(_readMethod_staking_add_permissioned_validator_V4(c, &method->nested.staking_add_permissioned_validator_V4)) + CHECK_ERROR(_readMethod_staking_force_no_eras_V7(c, &method->nested.staking_force_no_eras_V7)) break; case 4365: /* module 17 call 13 */ - CHECK_ERROR(_readMethod_staking_remove_permissioned_validator_V4(c, &method->nested.staking_remove_permissioned_validator_V4)) + CHECK_ERROR(_readMethod_staking_force_new_era_V7(c, &method->nested.staking_force_new_era_V7)) break; case 4366: /* module 17 call 14 */ - CHECK_ERROR(_readMethod_staking_validate_cdd_expiry_nominators_V4(c, &method->nested.staking_validate_cdd_expiry_nominators_V4)) + CHECK_ERROR(_readMethod_staking_set_invulnerables_V7(c, &method->nested.staking_set_invulnerables_V7)) break; case 4367: /* module 17 call 15 */ - CHECK_ERROR(_readMethod_staking_set_commission_cap_V4(c, &method->nested.staking_set_commission_cap_V4)) + CHECK_ERROR(_readMethod_staking_force_unstake_V7(c, &method->nested.staking_force_unstake_V7)) break; case 4368: /* module 17 call 16 */ - CHECK_ERROR(_readMethod_staking_set_min_bond_threshold_V4(c, &method->nested.staking_set_min_bond_threshold_V4)) + CHECK_ERROR(_readMethod_staking_force_new_era_always_V7(c, &method->nested.staking_force_new_era_always_V7)) break; case 4369: /* module 17 call 17 */ - CHECK_ERROR(_readMethod_staking_force_no_eras_V4(c, &method->nested.staking_force_no_eras_V4)) + CHECK_ERROR(_readMethod_staking_cancel_deferred_slash_V7(c, &method->nested.staking_cancel_deferred_slash_V7)) break; case 4370: /* module 17 call 18 */ - CHECK_ERROR(_readMethod_staking_force_new_era_V4(c, &method->nested.staking_force_new_era_V4)) - break; - case 4371: /* module 17 call 19 */ - CHECK_ERROR(_readMethod_staking_set_invulnerables_V4(c, &method->nested.staking_set_invulnerables_V4)) + CHECK_ERROR(_readMethod_staking_payout_stakers_V7(c, &method->nested.staking_payout_stakers_V7)) break; case 4372: /* module 17 call 20 */ - CHECK_ERROR(_readMethod_staking_force_unstake_V4(c, &method->nested.staking_force_unstake_V4)) + CHECK_ERROR(_readMethod_staking_reap_stash_V7(c, &method->nested.staking_reap_stash_V7)) break; case 4373: /* module 17 call 21 */ - CHECK_ERROR(_readMethod_staking_force_new_era_always_V4(c, &method->nested.staking_force_new_era_always_V4)) + CHECK_ERROR(_readMethod_staking_kick_V7(c, &method->nested.staking_kick_V7)) break; case 4374: /* module 17 call 22 */ - CHECK_ERROR(_readMethod_staking_cancel_deferred_slash_V4(c, &method->nested.staking_cancel_deferred_slash_V4)) + CHECK_ERROR(_readMethod_staking_set_staking_configs_V7(c, &method->nested.staking_set_staking_configs_V7)) break; case 4375: /* module 17 call 23 */ - CHECK_ERROR(_readMethod_staking_payout_stakers_V4(c, &method->nested.staking_payout_stakers_V4)) + CHECK_ERROR(_readMethod_staking_chill_other_V7(c, &method->nested.staking_chill_other_V7)) + break; + case 4376: /* module 17 call 24 */ + CHECK_ERROR(_readMethod_staking_force_apply_min_commission_V7(c, &method->nested.staking_force_apply_min_commission_V7)) break; case 4377: /* module 17 call 25 */ - CHECK_ERROR(_readMethod_staking_set_history_depth_V4(c, &method->nested.staking_set_history_depth_V4)) + CHECK_ERROR(_readMethod_staking_set_min_commission_V7(c, &method->nested.staking_set_min_commission_V7)) break; case 4378: /* module 17 call 26 */ - CHECK_ERROR(_readMethod_staking_reap_stash_V4(c, &method->nested.staking_reap_stash_V4)) + CHECK_ERROR(_readMethod_staking_add_permissioned_validator_V7(c, &method->nested.staking_add_permissioned_validator_V7)) + break; + case 4379: /* module 17 call 27 */ + CHECK_ERROR(_readMethod_staking_remove_permissioned_validator_V7(c, &method->nested.staking_remove_permissioned_validator_V7)) + break; + case 4380: /* module 17 call 28 */ + CHECK_ERROR(_readMethod_staking_validate_cdd_expiry_nominators_V7(c, &method->nested.staking_validate_cdd_expiry_nominators_V7)) break; case 4381: /* module 17 call 29 */ - CHECK_ERROR(_readMethod_staking_payout_stakers_by_system_V4(c, &method->nested.staking_payout_stakers_by_system_V4)) + CHECK_ERROR(_readMethod_staking_payout_stakers_by_system_V7(c, &method->nested.staking_payout_stakers_by_system_V7)) break; case 4382: /* module 17 call 30 */ - CHECK_ERROR(_readMethod_staking_change_slashing_allowed_for_V4(c, &method->nested.staking_change_slashing_allowed_for_V4)) + CHECK_ERROR(_readMethod_staking_change_slashing_allowed_for_V7(c, &method->nested.staking_change_slashing_allowed_for_V7)) break; case 4383: /* module 17 call 31 */ - CHECK_ERROR(_readMethod_staking_update_permissioned_validator_intended_count_V4(c, &method->nested.staking_update_permissioned_validator_intended_count_V4)) + CHECK_ERROR(_readMethod_staking_update_permissioned_validator_intended_count_V7(c, &method->nested.staking_update_permissioned_validator_intended_count_V7)) break; case 4384: /* module 17 call 32 */ - CHECK_ERROR(_readMethod_staking_chill_from_governance_V4(c, &method->nested.staking_chill_from_governance_V4)) + CHECK_ERROR(_readMethod_staking_chill_from_governance_V7(c, &method->nested.staking_chill_from_governance_V7)) + break; + case 4385: /* module 17 call 33 */ + CHECK_ERROR(_readMethod_staking_set_commission_cap_V7(c, &method->nested.staking_set_commission_cap_V7)) break; case 4864: /* module 19 call 0 */ - CHECK_ERROR(_readMethod_session_set_keys_V4(c, &method->nested.session_set_keys_V4)) + CHECK_ERROR(_readMethod_session_set_keys_V7(c, &method->nested.session_set_keys_V7)) break; case 4865: /* module 19 call 1 */ - CHECK_ERROR(_readMethod_session_purge_keys_V4(c, &method->nested.session_purge_keys_V4)) + CHECK_ERROR(_readMethod_session_purge_keys_V7(c, &method->nested.session_purge_keys_V7)) + break; + case 6400: /* module 25 call 0 */ + CHECK_ERROR(_readMethod_sudo_sudo_V7(c, &method->basic.sudo_sudo_V7)) + break; + case 6401: /* module 25 call 1 */ + CHECK_ERROR(_readMethod_sudo_sudo_unchecked_weight_V7(c, &method->basic.sudo_sudo_unchecked_weight_V7)) + break; + case 6402: /* module 25 call 2 */ + CHECK_ERROR(_readMethod_sudo_set_key_V7(c, &method->basic.sudo_set_key_V7)) + break; + case 6403: /* module 25 call 3 */ + CHECK_ERROR(_readMethod_sudo_sudo_as_V7(c, &method->basic.sudo_sudo_as_V7)) break; case 6656: /* module 26 call 0 */ - CHECK_ERROR(_readMethod_asset_register_ticker_V4(c, &method->nested.asset_register_ticker_V4)) + CHECK_ERROR(_readMethod_asset_register_unique_ticker_V7(c, &method->basic.asset_register_unique_ticker_V7)) break; case 6657: /* module 26 call 1 */ - CHECK_ERROR(_readMethod_asset_accept_ticker_transfer_V4(c, &method->nested.asset_accept_ticker_transfer_V4)) + CHECK_ERROR(_readMethod_asset_accept_ticker_transfer_V7(c, &method->nested.asset_accept_ticker_transfer_V7)) break; case 6658: /* module 26 call 2 */ - CHECK_ERROR(_readMethod_asset_accept_asset_ownership_transfer_V4(c, &method->nested.asset_accept_asset_ownership_transfer_V4)) + CHECK_ERROR(_readMethod_asset_accept_asset_ownership_transfer_V7(c, &method->nested.asset_accept_asset_ownership_transfer_V7)) break; case 6659: /* module 26 call 3 */ - CHECK_ERROR(_readMethod_asset_create_asset_V4(c, &method->nested.asset_create_asset_V4)) + CHECK_ERROR(_readMethod_asset_create_asset_V7(c, &method->nested.asset_create_asset_V7)) break; case 6660: /* module 26 call 4 */ - CHECK_ERROR(_readMethod_asset_freeze_V4(c, &method->nested.asset_freeze_V4)) + CHECK_ERROR(_readMethod_asset_freeze_V7(c, &method->nested.asset_freeze_V7)) break; case 6661: /* module 26 call 5 */ - CHECK_ERROR(_readMethod_asset_unfreeze_V4(c, &method->nested.asset_unfreeze_V4)) + CHECK_ERROR(_readMethod_asset_unfreeze_V7(c, &method->nested.asset_unfreeze_V7)) break; case 6662: /* module 26 call 6 */ - CHECK_ERROR(_readMethod_asset_rename_asset_V4(c, &method->nested.asset_rename_asset_V4)) + CHECK_ERROR(_readMethod_asset_rename_asset_V7(c, &method->nested.asset_rename_asset_V7)) break; case 6663: /* module 26 call 7 */ - CHECK_ERROR(_readMethod_asset_issue_V4(c, &method->nested.asset_issue_V4)) + CHECK_ERROR(_readMethod_asset_issue_V7(c, &method->nested.asset_issue_V7)) break; case 6664: /* module 26 call 8 */ - CHECK_ERROR(_readMethod_asset_redeem_V4(c, &method->nested.asset_redeem_V4)) + CHECK_ERROR(_readMethod_asset_redeem_V7(c, &method->nested.asset_redeem_V7)) break; case 6665: /* module 26 call 9 */ - CHECK_ERROR(_readMethod_asset_make_divisible_V4(c, &method->nested.asset_make_divisible_V4)) + CHECK_ERROR(_readMethod_asset_make_divisible_V7(c, &method->nested.asset_make_divisible_V7)) break; case 6666: /* module 26 call 10 */ - CHECK_ERROR(_readMethod_asset_add_documents_V4(c, &method->nested.asset_add_documents_V4)) + CHECK_ERROR(_readMethod_asset_add_documents_V7(c, &method->nested.asset_add_documents_V7)) break; case 6667: /* module 26 call 11 */ - CHECK_ERROR(_readMethod_asset_remove_documents_V4(c, &method->nested.asset_remove_documents_V4)) + CHECK_ERROR(_readMethod_asset_remove_documents_V7(c, &method->nested.asset_remove_documents_V7)) break; case 6668: /* module 26 call 12 */ - CHECK_ERROR(_readMethod_asset_set_funding_round_V4(c, &method->nested.asset_set_funding_round_V4)) + CHECK_ERROR(_readMethod_asset_set_funding_round_V7(c, &method->nested.asset_set_funding_round_V7)) break; case 6669: /* module 26 call 13 */ - CHECK_ERROR(_readMethod_asset_update_identifiers_V4(c, &method->nested.asset_update_identifiers_V4)) + CHECK_ERROR(_readMethod_asset_update_identifiers_V7(c, &method->nested.asset_update_identifiers_V7)) break; case 6670: /* module 26 call 14 */ - CHECK_ERROR(_readMethod_asset_controller_transfer_V4(c, &method->basic.asset_controller_transfer_V4)) + CHECK_ERROR(_readMethod_asset_controller_transfer_V7(c, &method->basic.asset_controller_transfer_V7)) break; case 6671: /* module 26 call 15 */ - CHECK_ERROR(_readMethod_asset_register_custom_asset_type_V4(c, &method->basic.asset_register_custom_asset_type_V4)) + CHECK_ERROR(_readMethod_asset_register_custom_asset_type_V7(c, &method->basic.asset_register_custom_asset_type_V7)) break; case 6672: /* module 26 call 16 */ - CHECK_ERROR(_readMethod_asset_create_asset_with_custom_type_V4(c, &method->basic.asset_create_asset_with_custom_type_V4)) + CHECK_ERROR(_readMethod_asset_create_asset_with_custom_type_V7(c, &method->basic.asset_create_asset_with_custom_type_V7)) break; case 6673: /* module 26 call 17 */ - CHECK_ERROR(_readMethod_asset_set_asset_metadata_V4(c, &method->basic.asset_set_asset_metadata_V4)) + CHECK_ERROR(_readMethod_asset_set_asset_metadata_V7(c, &method->basic.asset_set_asset_metadata_V7)) break; case 6674: /* module 26 call 18 */ - CHECK_ERROR(_readMethod_asset_set_asset_metadata_details_V4(c, &method->basic.asset_set_asset_metadata_details_V4)) + CHECK_ERROR(_readMethod_asset_set_asset_metadata_details_V7(c, &method->basic.asset_set_asset_metadata_details_V7)) break; case 6675: /* module 26 call 19 */ - CHECK_ERROR(_readMethod_asset_register_and_set_local_asset_metadata_V4(c, &method->basic.asset_register_and_set_local_asset_metadata_V4)) + CHECK_ERROR(_readMethod_asset_register_and_set_local_asset_metadata_V7(c, &method->basic.asset_register_and_set_local_asset_metadata_V7)) break; case 6676: /* module 26 call 20 */ - CHECK_ERROR(_readMethod_asset_register_asset_metadata_local_type_V4(c, &method->basic.asset_register_asset_metadata_local_type_V4)) + CHECK_ERROR(_readMethod_asset_register_asset_metadata_local_type_V7(c, &method->basic.asset_register_asset_metadata_local_type_V7)) break; case 6677: /* module 26 call 21 */ - CHECK_ERROR(_readMethod_asset_register_asset_metadata_global_type_V4(c, &method->basic.asset_register_asset_metadata_global_type_V4)) + CHECK_ERROR(_readMethod_asset_register_asset_metadata_global_type_V7(c, &method->basic.asset_register_asset_metadata_global_type_V7)) break; case 6678: /* module 26 call 22 */ - CHECK_ERROR(_readMethod_asset_redeem_from_portfolio_V4(c, &method->basic.asset_redeem_from_portfolio_V4)) + CHECK_ERROR(_readMethod_asset_update_asset_type_V7(c, &method->basic.asset_update_asset_type_V7)) break; case 6679: /* module 26 call 23 */ - CHECK_ERROR(_readMethod_asset_update_asset_type_V4(c, &method->basic.asset_update_asset_type_V4)) + CHECK_ERROR(_readMethod_asset_remove_local_metadata_key_V7(c, &method->basic.asset_remove_local_metadata_key_V7)) break; case 6680: /* module 26 call 24 */ - CHECK_ERROR(_readMethod_asset_remove_local_metadata_key_V4(c, &method->basic.asset_remove_local_metadata_key_V4)) + CHECK_ERROR(_readMethod_asset_remove_metadata_value_V7(c, &method->basic.asset_remove_metadata_value_V7)) break; case 6681: /* module 26 call 25 */ - CHECK_ERROR(_readMethod_asset_remove_metadata_value_V4(c, &method->basic.asset_remove_metadata_value_V4)) + CHECK_ERROR(_readMethod_asset_exempt_asset_affirmation_V7(c, &method->basic.asset_exempt_asset_affirmation_V7)) break; case 6682: /* module 26 call 26 */ - CHECK_ERROR(_readMethod_asset_exempt_ticker_affirmation_V4(c, &method->basic.asset_exempt_ticker_affirmation_V4)) + CHECK_ERROR(_readMethod_asset_remove_asset_affirmation_exemption_V7(c, &method->basic.asset_remove_asset_affirmation_exemption_V7)) break; case 6683: /* module 26 call 27 */ - CHECK_ERROR(_readMethod_asset_remove_ticker_affirmation_exemption_V4(c, &method->basic.asset_remove_ticker_affirmation_exemption_V4)) + CHECK_ERROR(_readMethod_asset_pre_approve_asset_V7(c, &method->basic.asset_pre_approve_asset_V7)) break; case 6684: /* module 26 call 28 */ - CHECK_ERROR(_readMethod_asset_pre_approve_ticker_V4(c, &method->basic.asset_pre_approve_ticker_V4)) + CHECK_ERROR(_readMethod_asset_remove_asset_pre_approval_V7(c, &method->basic.asset_remove_asset_pre_approval_V7)) break; - case 6685: /* module 26 call 29 */ - CHECK_ERROR(_readMethod_asset_remove_ticker_pre_approval_V4(c, &method->basic.asset_remove_ticker_pre_approval_V4)) + case 6687: /* module 26 call 31 */ + CHECK_ERROR(_readMethod_asset_link_ticker_to_asset_id_V7(c, &method->basic.asset_link_ticker_to_asset_id_V7)) break; case 6912: /* module 27 call 0 */ - CHECK_ERROR(_readMethod_capitaldistribution_distribute_V4(c, &method->nested.capitaldistribution_distribute_V4)) + CHECK_ERROR(_readMethod_capitaldistribution_distribute_V7(c, &method->nested.capitaldistribution_distribute_V7)) break; case 6913: /* module 27 call 1 */ - CHECK_ERROR(_readMethod_capitaldistribution_claim_V4(c, &method->nested.capitaldistribution_claim_V4)) + CHECK_ERROR(_readMethod_capitaldistribution_claim_V7(c, &method->nested.capitaldistribution_claim_V7)) break; case 6914: /* module 27 call 2 */ - CHECK_ERROR(_readMethod_capitaldistribution_push_benefit_V4(c, &method->nested.capitaldistribution_push_benefit_V4)) + CHECK_ERROR(_readMethod_capitaldistribution_push_benefit_V7(c, &method->nested.capitaldistribution_push_benefit_V7)) break; case 6915: /* module 27 call 3 */ - CHECK_ERROR(_readMethod_capitaldistribution_reclaim_V4(c, &method->nested.capitaldistribution_reclaim_V4)) + CHECK_ERROR(_readMethod_capitaldistribution_reclaim_V7(c, &method->nested.capitaldistribution_reclaim_V7)) break; case 6916: /* module 27 call 4 */ - CHECK_ERROR(_readMethod_capitaldistribution_remove_distribution_V4(c, &method->nested.capitaldistribution_remove_distribution_V4)) + CHECK_ERROR(_readMethod_capitaldistribution_remove_distribution_V7(c, &method->nested.capitaldistribution_remove_distribution_V7)) break; case 7168: /* module 28 call 0 */ - CHECK_ERROR(_readMethod_checkpoint_create_checkpoint_V4(c, &method->nested.checkpoint_create_checkpoint_V4)) + CHECK_ERROR(_readMethod_checkpoint_create_checkpoint_V7(c, &method->nested.checkpoint_create_checkpoint_V7)) break; case 7169: /* module 28 call 1 */ - CHECK_ERROR(_readMethod_checkpoint_set_schedules_max_complexity_V4(c, &method->nested.checkpoint_set_schedules_max_complexity_V4)) + CHECK_ERROR(_readMethod_checkpoint_set_schedules_max_complexity_V7(c, &method->nested.checkpoint_set_schedules_max_complexity_V7)) break; case 7170: /* module 28 call 2 */ - CHECK_ERROR(_readMethod_checkpoint_create_schedule_V4(c, &method->nested.checkpoint_create_schedule_V4)) + CHECK_ERROR(_readMethod_checkpoint_create_schedule_V7(c, &method->nested.checkpoint_create_schedule_V7)) break; case 7171: /* module 28 call 3 */ - CHECK_ERROR(_readMethod_checkpoint_remove_schedule_V4(c, &method->nested.checkpoint_remove_schedule_V4)) + CHECK_ERROR(_readMethod_checkpoint_remove_schedule_V7(c, &method->nested.checkpoint_remove_schedule_V7)) break; case 7424: /* module 29 call 0 */ - CHECK_ERROR(_readMethod_compliancemanager_add_compliance_requirement_V4(c, &method->nested.compliancemanager_add_compliance_requirement_V4)) + CHECK_ERROR(_readMethod_compliancemanager_add_compliance_requirement_V7(c, &method->nested.compliancemanager_add_compliance_requirement_V7)) break; case 7425: /* module 29 call 1 */ - CHECK_ERROR(_readMethod_compliancemanager_remove_compliance_requirement_V4(c, &method->nested.compliancemanager_remove_compliance_requirement_V4)) + CHECK_ERROR(_readMethod_compliancemanager_remove_compliance_requirement_V7(c, &method->nested.compliancemanager_remove_compliance_requirement_V7)) break; case 7426: /* module 29 call 2 */ - CHECK_ERROR(_readMethod_compliancemanager_replace_asset_compliance_V4(c, &method->nested.compliancemanager_replace_asset_compliance_V4)) + CHECK_ERROR(_readMethod_compliancemanager_replace_asset_compliance_V7(c, &method->nested.compliancemanager_replace_asset_compliance_V7)) break; case 7427: /* module 29 call 3 */ - CHECK_ERROR(_readMethod_compliancemanager_reset_asset_compliance_V4(c, &method->nested.compliancemanager_reset_asset_compliance_V4)) + CHECK_ERROR(_readMethod_compliancemanager_reset_asset_compliance_V7(c, &method->nested.compliancemanager_reset_asset_compliance_V7)) break; case 7428: /* module 29 call 4 */ - CHECK_ERROR(_readMethod_compliancemanager_pause_asset_compliance_V4(c, &method->nested.compliancemanager_pause_asset_compliance_V4)) + CHECK_ERROR(_readMethod_compliancemanager_pause_asset_compliance_V7(c, &method->nested.compliancemanager_pause_asset_compliance_V7)) break; case 7429: /* module 29 call 5 */ - CHECK_ERROR(_readMethod_compliancemanager_resume_asset_compliance_V4(c, &method->nested.compliancemanager_resume_asset_compliance_V4)) + CHECK_ERROR(_readMethod_compliancemanager_resume_asset_compliance_V7(c, &method->nested.compliancemanager_resume_asset_compliance_V7)) break; case 7430: /* module 29 call 6 */ - CHECK_ERROR(_readMethod_compliancemanager_add_default_trusted_claim_issuer_V4(c, &method->nested.compliancemanager_add_default_trusted_claim_issuer_V4)) + CHECK_ERROR(_readMethod_compliancemanager_add_default_trusted_claim_issuer_V7(c, &method->nested.compliancemanager_add_default_trusted_claim_issuer_V7)) break; case 7431: /* module 29 call 7 */ - CHECK_ERROR(_readMethod_compliancemanager_remove_default_trusted_claim_issuer_V4(c, &method->nested.compliancemanager_remove_default_trusted_claim_issuer_V4)) + CHECK_ERROR(_readMethod_compliancemanager_remove_default_trusted_claim_issuer_V7(c, &method->nested.compliancemanager_remove_default_trusted_claim_issuer_V7)) break; case 7432: /* module 29 call 8 */ - CHECK_ERROR(_readMethod_compliancemanager_change_compliance_requirement_V4(c, &method->nested.compliancemanager_change_compliance_requirement_V4)) + CHECK_ERROR(_readMethod_compliancemanager_change_compliance_requirement_V7(c, &method->nested.compliancemanager_change_compliance_requirement_V7)) break; case 8448: /* module 33 call 0 */ - CHECK_ERROR(_readMethod_pips_set_prune_historical_pips_V4(c, &method->nested.pips_set_prune_historical_pips_V4)) + CHECK_ERROR(_readMethod_pips_set_prune_historical_pips_V7(c, &method->nested.pips_set_prune_historical_pips_V7)) break; case 8449: /* module 33 call 1 */ - CHECK_ERROR(_readMethod_pips_set_min_proposal_deposit_V4(c, &method->nested.pips_set_min_proposal_deposit_V4)) + CHECK_ERROR(_readMethod_pips_set_min_proposal_deposit_V7(c, &method->nested.pips_set_min_proposal_deposit_V7)) break; case 8450: /* module 33 call 2 */ - CHECK_ERROR(_readMethod_pips_set_default_enactment_period_V4(c, &method->nested.pips_set_default_enactment_period_V4)) + CHECK_ERROR(_readMethod_pips_set_default_enactment_period_V7(c, &method->nested.pips_set_default_enactment_period_V7)) break; case 8451: /* module 33 call 3 */ - CHECK_ERROR(_readMethod_pips_set_pending_pip_expiry_V4(c, &method->nested.pips_set_pending_pip_expiry_V4)) + CHECK_ERROR(_readMethod_pips_set_pending_pip_expiry_V7(c, &method->nested.pips_set_pending_pip_expiry_V7)) break; case 8452: /* module 33 call 4 */ - CHECK_ERROR(_readMethod_pips_set_max_pip_skip_count_V4(c, &method->nested.pips_set_max_pip_skip_count_V4)) + CHECK_ERROR(_readMethod_pips_set_max_pip_skip_count_V7(c, &method->nested.pips_set_max_pip_skip_count_V7)) break; case 8453: /* module 33 call 5 */ - CHECK_ERROR(_readMethod_pips_set_active_pip_limit_V4(c, &method->nested.pips_set_active_pip_limit_V4)) + CHECK_ERROR(_readMethod_pips_set_active_pip_limit_V7(c, &method->nested.pips_set_active_pip_limit_V7)) break; case 8456: /* module 33 call 8 */ - CHECK_ERROR(_readMethod_pips_approve_committee_proposal_V4(c, &method->nested.pips_approve_committee_proposal_V4)) + CHECK_ERROR(_readMethod_pips_approve_committee_proposal_V7(c, &method->nested.pips_approve_committee_proposal_V7)) break; case 8457: /* module 33 call 9 */ - CHECK_ERROR(_readMethod_pips_reject_proposal_V4(c, &method->nested.pips_reject_proposal_V4)) + CHECK_ERROR(_readMethod_pips_reject_proposal_V7(c, &method->nested.pips_reject_proposal_V7)) break; case 8458: /* module 33 call 10 */ - CHECK_ERROR(_readMethod_pips_prune_proposal_V4(c, &method->nested.pips_prune_proposal_V4)) + CHECK_ERROR(_readMethod_pips_prune_proposal_V7(c, &method->nested.pips_prune_proposal_V7)) break; case 8459: /* module 33 call 11 */ - CHECK_ERROR(_readMethod_pips_reschedule_execution_V4(c, &method->nested.pips_reschedule_execution_V4)) + CHECK_ERROR(_readMethod_pips_reschedule_execution_V7(c, &method->nested.pips_reschedule_execution_V7)) break; case 8460: /* module 33 call 12 */ - CHECK_ERROR(_readMethod_pips_clear_snapshot_V4(c, &method->nested.pips_clear_snapshot_V4)) + CHECK_ERROR(_readMethod_pips_clear_snapshot_V7(c, &method->nested.pips_clear_snapshot_V7)) break; case 8461: /* module 33 call 13 */ - CHECK_ERROR(_readMethod_pips_snapshot_V4(c, &method->nested.pips_snapshot_V4)) + CHECK_ERROR(_readMethod_pips_snapshot_V7(c, &method->nested.pips_snapshot_V7)) break; case 8463: /* module 33 call 15 */ - CHECK_ERROR(_readMethod_pips_execute_scheduled_pip_V4(c, &method->nested.pips_execute_scheduled_pip_V4)) + CHECK_ERROR(_readMethod_pips_execute_scheduled_pip_V7(c, &method->nested.pips_execute_scheduled_pip_V7)) break; case 8464: /* module 33 call 16 */ - CHECK_ERROR(_readMethod_pips_expire_scheduled_pip_V4(c, &method->nested.pips_expire_scheduled_pip_V4)) + CHECK_ERROR(_readMethod_pips_expire_scheduled_pip_V7(c, &method->nested.pips_expire_scheduled_pip_V7)) break; case 8704: /* module 34 call 0 */ - CHECK_ERROR(_readMethod_portfolio_create_portfolio_V4(c, &method->nested.portfolio_create_portfolio_V4)) + CHECK_ERROR(_readMethod_portfolio_create_portfolio_V7(c, &method->nested.portfolio_create_portfolio_V7)) break; case 8705: /* module 34 call 1 */ - CHECK_ERROR(_readMethod_portfolio_delete_portfolio_V4(c, &method->nested.portfolio_delete_portfolio_V4)) + CHECK_ERROR(_readMethod_portfolio_delete_portfolio_V7(c, &method->nested.portfolio_delete_portfolio_V7)) break; case 8706: /* module 34 call 2 */ - CHECK_ERROR(_readMethod_portfolio_rename_portfolio_V4(c, &method->nested.portfolio_rename_portfolio_V4)) + CHECK_ERROR(_readMethod_portfolio_rename_portfolio_V7(c, &method->nested.portfolio_rename_portfolio_V7)) break; case 8707: /* module 34 call 3 */ - CHECK_ERROR(_readMethod_portfolio_quit_portfolio_custody_V4(c, &method->basic.portfolio_quit_portfolio_custody_V4)) + CHECK_ERROR(_readMethod_portfolio_quit_portfolio_custody_V7(c, &method->basic.portfolio_quit_portfolio_custody_V7)) break; case 8708: /* module 34 call 4 */ - CHECK_ERROR(_readMethod_portfolio_accept_portfolio_custody_V4(c, &method->basic.portfolio_accept_portfolio_custody_V4)) + CHECK_ERROR(_readMethod_portfolio_accept_portfolio_custody_V7(c, &method->basic.portfolio_accept_portfolio_custody_V7)) break; case 8709: /* module 34 call 5 */ - CHECK_ERROR(_readMethod_portfolio_move_portfolio_funds_V4(c, &method->nested.portfolio_move_portfolio_funds_V4)) + CHECK_ERROR(_readMethod_portfolio_move_portfolio_funds_V7(c, &method->nested.portfolio_move_portfolio_funds_V7)) break; case 8710: /* module 34 call 6 */ - CHECK_ERROR(_readMethod_portfolio_pre_approve_portfolio_V4(c, &method->basic.portfolio_pre_approve_portfolio_V4)) + CHECK_ERROR(_readMethod_portfolio_pre_approve_portfolio_V7(c, &method->basic.portfolio_pre_approve_portfolio_V7)) break; case 8711: /* module 34 call 7 */ - CHECK_ERROR(_readMethod_portfolio_remove_portfolio_pre_approval_V4(c, &method->basic.portfolio_remove_portfolio_pre_approval_V4)) + CHECK_ERROR(_readMethod_portfolio_remove_portfolio_pre_approval_V7(c, &method->basic.portfolio_remove_portfolio_pre_approval_V7)) break; case 8960: /* module 35 call 0 */ - CHECK_ERROR(_readMethod_protocolfee_change_coefficient_V4(c, &method->nested.protocolfee_change_coefficient_V4)) + CHECK_ERROR(_readMethod_protocolfee_change_coefficient_V7(c, &method->nested.protocolfee_change_coefficient_V7)) break; case 9472: /* module 37 call 0 */ - CHECK_ERROR(_readMethod_settlement_create_venue_V4(c, &method->nested.settlement_create_venue_V4)) + CHECK_ERROR(_readMethod_settlement_create_venue_V7(c, &method->nested.settlement_create_venue_V7)) break; case 9473: /* module 37 call 1 */ - CHECK_ERROR(_readMethod_settlement_update_venue_details_V4(c, &method->basic.settlement_update_venue_details_V4)) + CHECK_ERROR(_readMethod_settlement_update_venue_details_V7(c, &method->basic.settlement_update_venue_details_V7)) break; case 9474: /* module 37 call 2 */ - CHECK_ERROR(_readMethod_settlement_update_venue_type_V4(c, &method->basic.settlement_update_venue_type_V4)) + CHECK_ERROR(_readMethod_settlement_update_venue_type_V7(c, &method->basic.settlement_update_venue_type_V7)) break; case 9475: /* module 37 call 3 */ - CHECK_ERROR(_readMethod_settlement_affirm_with_receipts_V4(c, &method->nested.settlement_affirm_with_receipts_V4)) + CHECK_ERROR(_readMethod_settlement_affirm_with_receipts_V7(c, &method->nested.settlement_affirm_with_receipts_V7)) break; case 9476: /* module 37 call 4 */ - CHECK_ERROR(_readMethod_settlement_set_venue_filtering_V4(c, &method->nested.settlement_set_venue_filtering_V4)) + CHECK_ERROR(_readMethod_settlement_set_venue_filtering_V7(c, &method->nested.settlement_set_venue_filtering_V7)) break; case 9477: /* module 37 call 5 */ - CHECK_ERROR(_readMethod_settlement_allow_venues_V4(c, &method->nested.settlement_allow_venues_V4)) + CHECK_ERROR(_readMethod_settlement_allow_venues_V7(c, &method->nested.settlement_allow_venues_V7)) break; case 9478: /* module 37 call 6 */ - CHECK_ERROR(_readMethod_settlement_disallow_venues_V4(c, &method->nested.settlement_disallow_venues_V4)) + CHECK_ERROR(_readMethod_settlement_disallow_venues_V7(c, &method->nested.settlement_disallow_venues_V7)) break; case 9479: /* module 37 call 7 */ - CHECK_ERROR(_readMethod_settlement_update_venue_signers_V4(c, &method->basic.settlement_update_venue_signers_V4)) + CHECK_ERROR(_readMethod_settlement_update_venue_signers_V7(c, &method->basic.settlement_update_venue_signers_V7)) break; case 9480: /* module 37 call 8 */ - CHECK_ERROR(_readMethod_settlement_execute_manual_instruction_V4(c, &method->basic.settlement_execute_manual_instruction_V4)) + CHECK_ERROR(_readMethod_settlement_execute_manual_instruction_V7(c, &method->basic.settlement_execute_manual_instruction_V7)) break; case 9481: /* module 37 call 9 */ - CHECK_ERROR(_readMethod_settlement_add_instruction_V4(c, &method->nested.settlement_add_instruction_V4)) + CHECK_ERROR(_readMethod_settlement_add_instruction_V7(c, &method->nested.settlement_add_instruction_V7)) break; case 9482: /* module 37 call 10 */ - CHECK_ERROR(_readMethod_settlement_add_and_affirm_instruction_V4(c, &method->nested.settlement_add_and_affirm_instruction_V4)) + CHECK_ERROR(_readMethod_settlement_add_and_affirm_instruction_V7(c, &method->nested.settlement_add_and_affirm_instruction_V7)) break; case 9483: /* module 37 call 11 */ - CHECK_ERROR(_readMethod_settlement_affirm_instruction_V4(c, &method->nested.settlement_affirm_instruction_V4)) + CHECK_ERROR(_readMethod_settlement_affirm_instruction_V7(c, &method->nested.settlement_affirm_instruction_V7)) break; case 9484: /* module 37 call 12 */ - CHECK_ERROR(_readMethod_settlement_withdraw_affirmation_V4(c, &method->nested.settlement_withdraw_affirmation_V4)) + CHECK_ERROR(_readMethod_settlement_withdraw_affirmation_V7(c, &method->nested.settlement_withdraw_affirmation_V7)) break; case 9485: /* module 37 call 13 */ - CHECK_ERROR(_readMethod_settlement_reject_instruction_V4(c, &method->nested.settlement_reject_instruction_V4)) + CHECK_ERROR(_readMethod_settlement_reject_instruction_V7(c, &method->nested.settlement_reject_instruction_V7)) break; case 9486: /* module 37 call 14 */ - CHECK_ERROR(_readMethod_settlement_execute_scheduled_instruction_V4(c, &method->nested.settlement_execute_scheduled_instruction_V4)) + CHECK_ERROR(_readMethod_settlement_execute_scheduled_instruction_V7(c, &method->nested.settlement_execute_scheduled_instruction_V7)) break; case 9984: /* module 39 call 0 */ - CHECK_ERROR(_readMethod_sto_create_fundraiser_V4(c, &method->basic.sto_create_fundraiser_V4)) + CHECK_ERROR(_readMethod_sto_create_fundraiser_V7(c, &method->basic.sto_create_fundraiser_V7)) break; case 9985: /* module 39 call 1 */ - CHECK_ERROR(_readMethod_sto_invest_V4(c, &method->basic.sto_invest_V4)) + CHECK_ERROR(_readMethod_sto_invest_V7(c, &method->basic.sto_invest_V7)) break; case 9986: /* module 39 call 2 */ - CHECK_ERROR(_readMethod_sto_freeze_fundraiser_V4(c, &method->basic.sto_freeze_fundraiser_V4)) + CHECK_ERROR(_readMethod_sto_freeze_fundraiser_V7(c, &method->basic.sto_freeze_fundraiser_V7)) break; case 9987: /* module 39 call 3 */ - CHECK_ERROR(_readMethod_sto_unfreeze_fundraiser_V4(c, &method->basic.sto_unfreeze_fundraiser_V4)) + CHECK_ERROR(_readMethod_sto_unfreeze_fundraiser_V7(c, &method->basic.sto_unfreeze_fundraiser_V7)) break; case 9988: /* module 39 call 4 */ - CHECK_ERROR(_readMethod_sto_modify_fundraiser_window_V4(c, &method->basic.sto_modify_fundraiser_window_V4)) + CHECK_ERROR(_readMethod_sto_modify_fundraiser_window_V7(c, &method->basic.sto_modify_fundraiser_window_V7)) break; case 9989: /* module 39 call 5 */ - CHECK_ERROR(_readMethod_sto_stop_V4(c, &method->basic.sto_stop_V4)) + CHECK_ERROR(_readMethod_sto_stop_V7(c, &method->basic.sto_stop_V7)) break; case 10240: /* module 40 call 0 */ - CHECK_ERROR(_readMethod_treasury_disbursement_V4(c, &method->nested.treasury_disbursement_V4)) + CHECK_ERROR(_readMethod_treasury_disbursement_V7(c, &method->nested.treasury_disbursement_V7)) break; case 10241: /* module 40 call 1 */ - CHECK_ERROR(_readMethod_treasury_reimbursement_V4(c, &method->nested.treasury_reimbursement_V4)) + CHECK_ERROR(_readMethod_treasury_reimbursement_V7(c, &method->nested.treasury_reimbursement_V7)) break; case 10497: /* module 41 call 1 */ - CHECK_ERROR(_readMethod_utility_relay_tx_V4(c, &method->nested.utility_relay_tx_V4)) + CHECK_ERROR(_readMethod_utility_relay_tx_V7(c, &method->nested.utility_relay_tx_V7)) break; case 10498: /* module 41 call 2 */ - CHECK_ERROR(_readMethod_utility_batch_all_V4(c, &method->basic.utility_batch_all_V4)) + CHECK_ERROR(_readMethod_utility_batch_all_V7(c, &method->basic.utility_batch_all_V7)) break; case 10499: /* module 41 call 3 */ - CHECK_ERROR(_readMethod_utility_dispatch_as_V4(c, &method->basic.utility_dispatch_as_V4)) + CHECK_ERROR(_readMethod_utility_dispatch_as_V7(c, &method->basic.utility_dispatch_as_V7)) break; case 10500: /* module 41 call 4 */ - CHECK_ERROR(_readMethod_utility_force_batch_V4(c, &method->basic.utility_force_batch_V4)) + CHECK_ERROR(_readMethod_utility_force_batch_V7(c, &method->basic.utility_force_batch_V7)) break; case 10501: /* module 41 call 5 */ - CHECK_ERROR(_readMethod_utility_with_weight_V4(c, &method->basic.utility_with_weight_V4)) + CHECK_ERROR(_readMethod_utility_with_weight_V7(c, &method->basic.utility_with_weight_V7)) break; case 10502: /* module 41 call 6 */ - CHECK_ERROR(_readMethod_utility_batch_old_V4(c, &method->basic.utility_batch_old_V4)) - break; - case 10505: /* module 41 call 9 */ - CHECK_ERROR(_readMethod_utility_as_derivative_V4(c, &method->basic.utility_as_derivative_V4)) + CHECK_ERROR(_readMethod_utility_batch_old_V7(c, &method->basic.utility_batch_old_V7)) break; case 11008: /* module 43 call 0 */ - CHECK_ERROR(_readMethod_externalagents_create_group_V4(c, &method->basic.externalagents_create_group_V4)) + CHECK_ERROR(_readMethod_externalagents_create_group_V7(c, &method->basic.externalagents_create_group_V7)) break; case 11009: /* module 43 call 1 */ - CHECK_ERROR(_readMethod_externalagents_set_group_permissions_V4(c, &method->basic.externalagents_set_group_permissions_V4)) + CHECK_ERROR(_readMethod_externalagents_set_group_permissions_V7(c, &method->basic.externalagents_set_group_permissions_V7)) break; case 11010: /* module 43 call 2 */ - CHECK_ERROR(_readMethod_externalagents_remove_agent_V4(c, &method->basic.externalagents_remove_agent_V4)) + CHECK_ERROR(_readMethod_externalagents_remove_agent_V7(c, &method->basic.externalagents_remove_agent_V7)) break; case 11011: /* module 43 call 3 */ - CHECK_ERROR(_readMethod_externalagents_abdicate_V4(c, &method->basic.externalagents_abdicate_V4)) + CHECK_ERROR(_readMethod_externalagents_abdicate_V7(c, &method->basic.externalagents_abdicate_V7)) break; case 11012: /* module 43 call 4 */ - CHECK_ERROR(_readMethod_externalagents_change_group_V4(c, &method->basic.externalagents_change_group_V4)) + CHECK_ERROR(_readMethod_externalagents_change_group_V7(c, &method->basic.externalagents_change_group_V7)) break; case 11013: /* module 43 call 5 */ - CHECK_ERROR(_readMethod_externalagents_accept_become_agent_V4(c, &method->basic.externalagents_accept_become_agent_V4)) + CHECK_ERROR(_readMethod_externalagents_accept_become_agent_V7(c, &method->basic.externalagents_accept_become_agent_V7)) break; case 11014: /* module 43 call 6 */ - CHECK_ERROR(_readMethod_externalagents_create_group_and_add_auth_V4(c, &method->basic.externalagents_create_group_and_add_auth_V4)) + CHECK_ERROR(_readMethod_externalagents_create_group_and_add_auth_V7(c, &method->basic.externalagents_create_group_and_add_auth_V7)) break; case 11015: /* module 43 call 7 */ - CHECK_ERROR(_readMethod_externalagents_create_and_change_custom_group_V4(c, &method->basic.externalagents_create_and_change_custom_group_V4)) + CHECK_ERROR(_readMethod_externalagents_create_and_change_custom_group_V7(c, &method->basic.externalagents_create_and_change_custom_group_V7)) break; case 11264: /* module 44 call 0 */ - CHECK_ERROR(_readMethod_relayer_set_paying_key_V4(c, &method->basic.relayer_set_paying_key_V4)) + CHECK_ERROR(_readMethod_relayer_set_paying_key_V7(c, &method->basic.relayer_set_paying_key_V7)) break; case 11265: /* module 44 call 1 */ - CHECK_ERROR(_readMethod_relayer_accept_paying_key_V4(c, &method->basic.relayer_accept_paying_key_V4)) + CHECK_ERROR(_readMethod_relayer_accept_paying_key_V7(c, &method->basic.relayer_accept_paying_key_V7)) break; case 11266: /* module 44 call 2 */ - CHECK_ERROR(_readMethod_relayer_remove_paying_key_V4(c, &method->basic.relayer_remove_paying_key_V4)) + CHECK_ERROR(_readMethod_relayer_remove_paying_key_V7(c, &method->basic.relayer_remove_paying_key_V7)) break; case 11267: /* module 44 call 3 */ - CHECK_ERROR(_readMethod_relayer_update_polyx_limit_V4(c, &method->basic.relayer_update_polyx_limit_V4)) + CHECK_ERROR(_readMethod_relayer_update_polyx_limit_V7(c, &method->basic.relayer_update_polyx_limit_V7)) break; case 11268: /* module 44 call 4 */ - CHECK_ERROR(_readMethod_relayer_increase_polyx_limit_V4(c, &method->basic.relayer_increase_polyx_limit_V4)) + CHECK_ERROR(_readMethod_relayer_increase_polyx_limit_V7(c, &method->basic.relayer_increase_polyx_limit_V7)) break; case 11269: /* module 44 call 5 */ - CHECK_ERROR(_readMethod_relayer_decrease_polyx_limit_V4(c, &method->basic.relayer_decrease_polyx_limit_V4)) + CHECK_ERROR(_readMethod_relayer_decrease_polyx_limit_V7(c, &method->basic.relayer_decrease_polyx_limit_V7)) break; case 11776: /* module 46 call 0 */ - CHECK_ERROR(_readMethod_contracts_call_old_weight_V4(c, &method->basic.contracts_call_old_weight_V4)) + CHECK_ERROR(_readMethod_contracts_call_old_weight_V7(c, &method->basic.contracts_call_old_weight_V7)) break; case 11777: /* module 46 call 1 */ - CHECK_ERROR(_readMethod_contracts_instantiate_with_code_old_weight_V4(c, &method->basic.contracts_instantiate_with_code_old_weight_V4)) + CHECK_ERROR(_readMethod_contracts_instantiate_with_code_old_weight_V7(c, &method->basic.contracts_instantiate_with_code_old_weight_V7)) break; case 11778: /* module 46 call 2 */ - CHECK_ERROR(_readMethod_contracts_instantiate_old_weight_V4(c, &method->basic.contracts_instantiate_old_weight_V4)) + CHECK_ERROR(_readMethod_contracts_instantiate_old_weight_V7(c, &method->basic.contracts_instantiate_old_weight_V7)) break; case 11779: /* module 46 call 3 */ - CHECK_ERROR(_readMethod_contracts_upload_code_V4(c, &method->basic.contracts_upload_code_V4)) + CHECK_ERROR(_readMethod_contracts_upload_code_V7(c, &method->basic.contracts_upload_code_V7)) break; case 11780: /* module 46 call 4 */ - CHECK_ERROR(_readMethod_contracts_remove_code_V4(c, &method->basic.contracts_remove_code_V4)) + CHECK_ERROR(_readMethod_contracts_remove_code_V7(c, &method->basic.contracts_remove_code_V7)) break; case 11781: /* module 46 call 5 */ - CHECK_ERROR(_readMethod_contracts_set_code_V4(c, &method->basic.contracts_set_code_V4)) + CHECK_ERROR(_readMethod_contracts_set_code_V7(c, &method->basic.contracts_set_code_V7)) break; case 11782: /* module 46 call 6 */ - CHECK_ERROR(_readMethod_contracts_call_V4(c, &method->nested.contracts_call_V4)) + CHECK_ERROR(_readMethod_contracts_call_V7(c, &method->nested.contracts_call_V7)) break; case 11783: /* module 46 call 7 */ - CHECK_ERROR(_readMethod_contracts_instantiate_with_code_V4(c, &method->basic.contracts_instantiate_with_code_V4)) + CHECK_ERROR(_readMethod_contracts_instantiate_with_code_V7(c, &method->basic.contracts_instantiate_with_code_V7)) break; case 11784: /* module 46 call 8 */ - CHECK_ERROR(_readMethod_contracts_instantiate_V4(c, &method->nested.contracts_instantiate_V4)) + CHECK_ERROR(_readMethod_contracts_instantiate_V7(c, &method->nested.contracts_instantiate_V7)) break; case 12032: /* module 47 call 0 */ - CHECK_ERROR(_readMethod_polymeshcontracts_instantiate_with_code_perms_V4(c, &method->basic.polymeshcontracts_instantiate_with_code_perms_V4)) + CHECK_ERROR(_readMethod_polymeshcontracts_instantiate_with_code_perms_V7(c, &method->basic.polymeshcontracts_instantiate_with_code_perms_V7)) break; case 12033: /* module 47 call 1 */ - CHECK_ERROR(_readMethod_polymeshcontracts_instantiate_with_hash_perms_V4(c, &method->basic.polymeshcontracts_instantiate_with_hash_perms_V4)) + CHECK_ERROR(_readMethod_polymeshcontracts_instantiate_with_hash_perms_V7(c, &method->basic.polymeshcontracts_instantiate_with_hash_perms_V7)) break; case 12034: /* module 47 call 2 */ - CHECK_ERROR(_readMethod_polymeshcontracts_update_call_runtime_whitelist_V4(c, &method->basic.polymeshcontracts_update_call_runtime_whitelist_V4)) + CHECK_ERROR(_readMethod_polymeshcontracts_update_call_runtime_whitelist_V7(c, &method->basic.polymeshcontracts_update_call_runtime_whitelist_V7)) break; case 12035: /* module 47 call 3 */ - CHECK_ERROR(_readMethod_polymeshcontracts_instantiate_with_code_as_primary_key_V4(c, &method->basic.polymeshcontracts_instantiate_with_code_as_primary_key_V4)) + CHECK_ERROR(_readMethod_polymeshcontracts_instantiate_with_code_as_primary_key_V7(c, &method->basic.polymeshcontracts_instantiate_with_code_as_primary_key_V7)) break; case 12036: /* module 47 call 4 */ - CHECK_ERROR(_readMethod_polymeshcontracts_instantiate_with_hash_as_primary_key_V4(c, &method->basic.polymeshcontracts_instantiate_with_hash_as_primary_key_V4)) + CHECK_ERROR(_readMethod_polymeshcontracts_instantiate_with_hash_as_primary_key_V7(c, &method->basic.polymeshcontracts_instantiate_with_hash_as_primary_key_V7)) break; case 12037: /* module 47 call 5 */ - CHECK_ERROR(_readMethod_polymeshcontracts_upgrade_api_V4(c, &method->basic.polymeshcontracts_upgrade_api_V4)) + CHECK_ERROR(_readMethod_polymeshcontracts_upgrade_api_V7(c, &method->basic.polymeshcontracts_upgrade_api_V7)) break; case 12288: /* module 48 call 0 */ - CHECK_ERROR(_readMethod_preimage_note_preimage_V4(c, &method->basic.preimage_note_preimage_V4)) + CHECK_ERROR(_readMethod_preimage_note_preimage_V7(c, &method->basic.preimage_note_preimage_V7)) break; case 12289: /* module 48 call 1 */ - CHECK_ERROR(_readMethod_preimage_unnote_preimage_V4(c, &method->basic.preimage_unnote_preimage_V4)) + CHECK_ERROR(_readMethod_preimage_unnote_preimage_V7(c, &method->basic.preimage_unnote_preimage_V7)) break; case 12290: /* module 48 call 2 */ - CHECK_ERROR(_readMethod_preimage_request_preimage_V4(c, &method->basic.preimage_request_preimage_V4)) + CHECK_ERROR(_readMethod_preimage_request_preimage_V7(c, &method->basic.preimage_request_preimage_V7)) break; case 12291: /* module 48 call 3 */ - CHECK_ERROR(_readMethod_preimage_unrequest_preimage_V4(c, &method->basic.preimage_unrequest_preimage_V4)) + CHECK_ERROR(_readMethod_preimage_unrequest_preimage_V7(c, &method->basic.preimage_unrequest_preimage_V7)) break; case 12544: /* module 49 call 0 */ - CHECK_ERROR(_readMethod_nft_create_nft_collection_V4(c, &method->basic.nft_create_nft_collection_V4)) + CHECK_ERROR(_readMethod_nft_create_nft_collection_V7(c, &method->basic.nft_create_nft_collection_V7)) break; case 12545: /* module 49 call 1 */ - CHECK_ERROR(_readMethod_nft_issue_nft_V4(c, &method->basic.nft_issue_nft_V4)) + CHECK_ERROR(_readMethod_nft_issue_nft_V7(c, &method->basic.nft_issue_nft_V7)) break; case 12546: /* module 49 call 2 */ - CHECK_ERROR(_readMethod_nft_redeem_nft_V4(c, &method->basic.nft_redeem_nft_V4)) + CHECK_ERROR(_readMethod_nft_redeem_nft_V7(c, &method->basic.nft_redeem_nft_V7)) + break; + case 12800: /* module 50 call 0 */ + CHECK_ERROR(_readMethod_electionprovidermultiphase_submit_unsigned_V7(c, &method->basic.electionprovidermultiphase_submit_unsigned_V7)) + break; + case 12801: /* module 50 call 1 */ + CHECK_ERROR(_readMethod_electionprovidermultiphase_set_minimum_untrusted_score_V7(c, &method->basic.electionprovidermultiphase_set_minimum_untrusted_score_V7)) + break; + case 12802: /* module 50 call 2 */ + CHECK_ERROR(_readMethod_electionprovidermultiphase_set_emergency_election_result_V7(c, &method->basic.electionprovidermultiphase_set_emergency_election_result_V7)) + break; + case 12803: /* module 50 call 3 */ + CHECK_ERROR(_readMethod_electionprovidermultiphase_submit_V7(c, &method->basic.electionprovidermultiphase_submit_V7)) + break; + case 12804: /* module 50 call 4 */ + CHECK_ERROR(_readMethod_electionprovidermultiphase_governance_fallback_V7(c, &method->basic.electionprovidermultiphase_governance_fallback_V7)) break; #endif default: @@ -3663,7 +3553,7 @@ parser_error_t _readMethod_V4( ///////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////// -const char* _getMethod_ModuleName_V4(uint8_t moduleIdx) +const char* _getMethod_ModuleName_V7(uint8_t moduleIdx) { switch (moduleIdx) { case 5: @@ -3705,10 +3595,10 @@ const char* _getMethod_ModuleName_V4(uint8_t moduleIdx) return STR_MO_UPGRADECOMMITTEE; case 14: return STR_MO_UPGRADECOMMITTEEMEMBERSHIP; - case 16: - return STR_MO_BRIDGE; case 19: return STR_MO_SESSION; + case 25: + return STR_MO_SUDO; case 26: return STR_MO_ASSET; case 27: @@ -3739,6 +3629,8 @@ const char* _getMethod_ModuleName_V4(uint8_t moduleIdx) return STR_MO_PREIMAGE; case 49: return STR_MO_NFT; + case 50: + return STR_MO_ELECTIONPROVIDERMULTIPHASE; #endif default: return NULL; @@ -3747,7 +3639,7 @@ const char* _getMethod_ModuleName_V4(uint8_t moduleIdx) return NULL; } -const char* _getMethod_Name_V4(uint8_t moduleIdx, uint8_t callIdx) +const char* _getMethod_Name_V7(uint8_t moduleIdx, uint8_t callIdx) { uint16_t callPrivIdx = ((uint16_t)moduleIdx << 8u) + callIdx; @@ -3780,28 +3672,8 @@ const char* _getMethod_Name_V4(uint8_t moduleIdx, uint8_t callIdx) return STR_ME_REMOVE_SECONDARY_KEYS; case 3840: /* module 15 call 0 */ return STR_ME_CREATE_MULTISIG; - case 3842: /* module 15 call 2 */ - return STR_ME_CREATE_OR_APPROVE_PROPOSAL_AS_KEY; - case 3844: /* module 15 call 4 */ - return STR_ME_CREATE_PROPOSAL_AS_KEY; - case 3846: /* module 15 call 6 */ - return STR_ME_APPROVE_AS_KEY; - case 3848: /* module 15 call 8 */ - return STR_ME_REJECT_AS_KEY; - case 3850: /* module 15 call 10 */ - return STR_ME_ACCEPT_MULTISIG_SIGNER_AS_KEY; - case 3851: /* module 15 call 11 */ - return STR_ME_ADD_MULTISIG_SIGNER; - case 3852: /* module 15 call 12 */ - return STR_ME_REMOVE_MULTISIG_SIGNER; - case 3853: /* module 15 call 13 */ - return STR_ME_ADD_MULTISIG_SIGNERS_VIA_CREATOR; - case 3854: /* module 15 call 14 */ - return STR_ME_REMOVE_MULTISIG_SIGNERS_VIA_CREATOR; - case 3855: /* module 15 call 15 */ + case 3849: /* module 15 call 9 */ return STR_ME_CHANGE_SIGS_REQUIRED; - case 3857: /* module 15 call 17 */ - return STR_ME_MAKE_MULTISIG_PRIMARY; case 4352: /* module 17 call 0 */ return STR_ME_BOND; case 4353: /* module 17 call 1 */ @@ -3820,7 +3692,7 @@ const char* _getMethod_Name_V4(uint8_t moduleIdx, uint8_t callIdx) return STR_ME_SET_PAYEE; case 4360: /* module 17 call 8 */ return STR_ME_SET_CONTROLLER; - case 4376: /* module 17 call 24 */ + case 4371: /* module 17 call 19 */ return STR_ME_REBOND; case 8454: /* module 33 call 6 */ return STR_ME_PROPOSE; @@ -3833,20 +3705,20 @@ const char* _getMethod_Name_V4(uint8_t moduleIdx, uint8_t callIdx) case 10504: /* module 41 call 8 */ return STR_ME_BATCH_OPTIMISTIC; default: - return _getMethod_Name_V4_ParserFull(callPrivIdx); + return _getMethod_Name_V7_ParserFull(callPrivIdx); } return NULL; } -const char* _getMethod_Name_V4_ParserFull(uint16_t callPrivIdx) +const char* _getMethod_Name_V7_ParserFull(uint16_t callPrivIdx) { switch (callPrivIdx) { #ifdef SUBSTRATE_PARSER_FULL #ifndef TARGET_NANOS - case 6686: /* module 26 call 30 */ + case 6685: /* module 26 call 29 */ return STR_ME_ADD_MANDATORY_MEDIATORS; - case 6687: /* module 26 call 31 */ + case 6686: /* module 26 call 30 */ return STR_ME_REMOVE_MANDATORY_MEDIATORS; case 7680: /* module 30 call 0 */ return STR_ME_SET_MAX_DETAILS_LENGTH; @@ -4050,57 +3922,35 @@ const char* _getMethod_Name_V4_ParserFull(uint16_t callPrivIdx) case 3590: /* module 14 call 6 */ return STR_ME_ABDICATE_MEMBERSHIP; case 3841: /* module 15 call 1 */ - return STR_ME_CREATE_OR_APPROVE_PROPOSAL_AS_IDENTITY; + return STR_ME_CREATE_PROPOSAL; + case 3842: /* module 15 call 2 */ + return STR_ME_APPROVE; case 3843: /* module 15 call 3 */ - return STR_ME_CREATE_PROPOSAL_AS_IDENTITY; + return STR_ME_REJECT; + case 3844: /* module 15 call 4 */ + return STR_ME_ACCEPT_MULTISIG_SIGNER; case 3845: /* module 15 call 5 */ - return STR_ME_APPROVE_AS_IDENTITY; + return STR_ME_ADD_MULTISIG_SIGNERS; + case 3846: /* module 15 call 6 */ + return STR_ME_REMOVE_MULTISIG_SIGNERS; case 3847: /* module 15 call 7 */ - return STR_ME_REJECT_AS_IDENTITY; - case 3849: /* module 15 call 9 */ - return STR_ME_ACCEPT_MULTISIG_SIGNER_AS_IDENTITY; + return STR_ME_ADD_MULTISIG_SIGNERS_VIA_ADMIN; + case 3848: /* module 15 call 8 */ + return STR_ME_REMOVE_MULTISIG_SIGNERS_VIA_ADMIN; + case 3850: /* module 15 call 10 */ + return STR_ME_CHANGE_SIGS_REQUIRED_VIA_ADMIN; + case 3851: /* module 15 call 11 */ + return STR_ME_ADD_ADMIN; + case 3852: /* module 15 call 12 */ + return STR_ME_REMOVE_ADMIN_VIA_ADMIN; + case 3853: /* module 15 call 13 */ + return STR_ME_REMOVE_PAYER; + case 3854: /* module 15 call 14 */ + return STR_ME_REMOVE_PAYER_VIA_PAYER; + case 3855: /* module 15 call 15 */ + return STR_ME_APPROVE_JOIN_IDENTITY; case 3856: /* module 15 call 16 */ - return STR_ME_MAKE_MULTISIG_SECONDARY; - case 3858: /* module 15 call 18 */ - return STR_ME_EXECUTE_SCHEDULED_PROPOSAL; - case 3859: /* module 15 call 19 */ - return STR_ME_CHANGE_SIGS_REQUIRED_VIA_CREATOR; - case 3860: /* module 15 call 20 */ - return STR_ME_REMOVE_CREATOR_CONTROLS; - case 4096: /* module 16 call 0 */ - return STR_ME_CHANGE_CONTROLLER; - case 4097: /* module 16 call 1 */ - return STR_ME_CHANGE_ADMIN; - case 4098: /* module 16 call 2 */ - return STR_ME_CHANGE_TIMELOCK; - case 4099: /* module 16 call 3 */ - return STR_ME_FREEZE; - case 4100: /* module 16 call 4 */ - return STR_ME_UNFREEZE; - case 4101: /* module 16 call 5 */ - return STR_ME_CHANGE_BRIDGE_LIMIT; - case 4102: /* module 16 call 6 */ - return STR_ME_CHANGE_BRIDGE_EXEMPTED; - case 4103: /* module 16 call 7 */ - return STR_ME_FORCE_HANDLE_BRIDGE_TX; - case 4104: /* module 16 call 8 */ - return STR_ME_BATCH_PROPOSE_BRIDGE_TX; - case 4105: /* module 16 call 9 */ - return STR_ME_PROPOSE_BRIDGE_TX; - case 4106: /* module 16 call 10 */ - return STR_ME_HANDLE_BRIDGE_TX; - case 4107: /* module 16 call 11 */ - return STR_ME_FREEZE_TXS; - case 4108: /* module 16 call 12 */ - return STR_ME_UNFREEZE_TXS; - case 4109: /* module 16 call 13 */ - return STR_ME_HANDLE_SCHEDULED_BRIDGE_TX; - case 4110: /* module 16 call 14 */ - return STR_ME_ADD_FREEZE_ADMIN; - case 4111: /* module 16 call 15 */ - return STR_ME_REMOVE_FREEZE_ADMIN; - case 4112: /* module 16 call 16 */ - return STR_ME_REMOVE_TXS; + return STR_ME_JOIN_IDENTITY; case 4361: /* module 17 call 9 */ return STR_ME_SET_VALIDATOR_COUNT; case 4362: /* module 17 call 10 */ @@ -4108,33 +3958,37 @@ const char* _getMethod_Name_V4_ParserFull(uint16_t callPrivIdx) case 4363: /* module 17 call 11 */ return STR_ME_SCALE_VALIDATOR_COUNT; case 4364: /* module 17 call 12 */ - return STR_ME_ADD_PERMISSIONED_VALIDATOR; + return STR_ME_FORCE_NO_ERAS; case 4365: /* module 17 call 13 */ - return STR_ME_REMOVE_PERMISSIONED_VALIDATOR; + return STR_ME_FORCE_NEW_ERA; case 4366: /* module 17 call 14 */ - return STR_ME_VALIDATE_CDD_EXPIRY_NOMINATORS; + return STR_ME_SET_INVULNERABLES; case 4367: /* module 17 call 15 */ - return STR_ME_SET_COMMISSION_CAP; + return STR_ME_FORCE_UNSTAKE; case 4368: /* module 17 call 16 */ - return STR_ME_SET_MIN_BOND_THRESHOLD; + return STR_ME_FORCE_NEW_ERA_ALWAYS; case 4369: /* module 17 call 17 */ - return STR_ME_FORCE_NO_ERAS; + return STR_ME_CANCEL_DEFERRED_SLASH; case 4370: /* module 17 call 18 */ - return STR_ME_FORCE_NEW_ERA; - case 4371: /* module 17 call 19 */ - return STR_ME_SET_INVULNERABLES; + return STR_ME_PAYOUT_STAKERS; case 4372: /* module 17 call 20 */ - return STR_ME_FORCE_UNSTAKE; + return STR_ME_REAP_STASH; case 4373: /* module 17 call 21 */ - return STR_ME_FORCE_NEW_ERA_ALWAYS; + return STR_ME_KICK; case 4374: /* module 17 call 22 */ - return STR_ME_CANCEL_DEFERRED_SLASH; + return STR_ME_SET_STAKING_CONFIGS; case 4375: /* module 17 call 23 */ - return STR_ME_PAYOUT_STAKERS; + return STR_ME_CHILL_OTHER; + case 4376: /* module 17 call 24 */ + return STR_ME_FORCE_APPLY_MIN_COMMISSION; case 4377: /* module 17 call 25 */ - return STR_ME_SET_HISTORY_DEPTH; + return STR_ME_SET_MIN_COMMISSION; case 4378: /* module 17 call 26 */ - return STR_ME_REAP_STASH; + return STR_ME_ADD_PERMISSIONED_VALIDATOR; + case 4379: /* module 17 call 27 */ + return STR_ME_REMOVE_PERMISSIONED_VALIDATOR; + case 4380: /* module 17 call 28 */ + return STR_ME_VALIDATE_CDD_EXPIRY_NOMINATORS; case 4381: /* module 17 call 29 */ return STR_ME_PAYOUT_STAKERS_BY_SYSTEM; case 4382: /* module 17 call 30 */ @@ -4143,12 +3997,22 @@ const char* _getMethod_Name_V4_ParserFull(uint16_t callPrivIdx) return STR_ME_UPDATE_PERMISSIONED_VALIDATOR_INTENDED_COUNT; case 4384: /* module 17 call 32 */ return STR_ME_CHILL_FROM_GOVERNANCE; + case 4385: /* module 17 call 33 */ + return STR_ME_SET_COMMISSION_CAP; case 4864: /* module 19 call 0 */ return STR_ME_SET_KEYS; case 4865: /* module 19 call 1 */ return STR_ME_PURGE_KEYS; + case 6400: /* module 25 call 0 */ + return STR_ME_SUDO; + case 6401: /* module 25 call 1 */ + return STR_ME_SUDO_UNCHECKED_WEIGHT; + case 6402: /* module 25 call 2 */ + return STR_ME_SET_KEY; + case 6403: /* module 25 call 3 */ + return STR_ME_SUDO_AS; case 6656: /* module 26 call 0 */ - return STR_ME_REGISTER_TICKER; + return STR_ME_REGISTER_UNIQUE_TICKER; case 6657: /* module 26 call 1 */ return STR_ME_ACCEPT_TICKER_TRANSFER; case 6658: /* module 26 call 2 */ @@ -4192,21 +4056,21 @@ const char* _getMethod_Name_V4_ParserFull(uint16_t callPrivIdx) case 6677: /* module 26 call 21 */ return STR_ME_REGISTER_ASSET_METADATA_GLOBAL_TYPE; case 6678: /* module 26 call 22 */ - return STR_ME_REDEEM_FROM_PORTFOLIO; - case 6679: /* module 26 call 23 */ return STR_ME_UPDATE_ASSET_TYPE; - case 6680: /* module 26 call 24 */ + case 6679: /* module 26 call 23 */ return STR_ME_REMOVE_LOCAL_METADATA_KEY; - case 6681: /* module 26 call 25 */ + case 6680: /* module 26 call 24 */ return STR_ME_REMOVE_METADATA_VALUE; + case 6681: /* module 26 call 25 */ + return STR_ME_EXEMPT_ASSET_AFFIRMATION; case 6682: /* module 26 call 26 */ - return STR_ME_EXEMPT_TICKER_AFFIRMATION; + return STR_ME_REMOVE_ASSET_AFFIRMATION_EXEMPTION; case 6683: /* module 26 call 27 */ - return STR_ME_REMOVE_TICKER_AFFIRMATION_EXEMPTION; + return STR_ME_PRE_APPROVE_ASSET; case 6684: /* module 26 call 28 */ - return STR_ME_PRE_APPROVE_TICKER; - case 6685: /* module 26 call 29 */ - return STR_ME_REMOVE_TICKER_PRE_APPROVAL; + return STR_ME_REMOVE_ASSET_PRE_APPROVAL; + case 6687: /* module 26 call 31 */ + return STR_ME_LINK_TICKER_TO_ASSET_ID; case 6912: /* module 27 call 0 */ return STR_ME_DISTRIBUTE; case 6913: /* module 27 call 1 */ @@ -4347,8 +4211,6 @@ const char* _getMethod_Name_V4_ParserFull(uint16_t callPrivIdx) return STR_ME_WITH_WEIGHT; case 10502: /* module 41 call 6 */ return STR_ME_BATCH_OLD; - case 10505: /* module 41 call 9 */ - return STR_ME_AS_DERIVATIVE; case 11008: /* module 43 call 0 */ return STR_ME_CREATE_GROUP; case 11009: /* module 43 call 1 */ @@ -4421,6 +4283,16 @@ const char* _getMethod_Name_V4_ParserFull(uint16_t callPrivIdx) return STR_ME_ISSUE_NFT; case 12546: /* module 49 call 2 */ return STR_ME_REDEEM_NFT; + case 12800: /* module 50 call 0 */ + return STR_ME_SUBMIT_UNSIGNED; + case 12801: /* module 50 call 1 */ + return STR_ME_SET_MINIMUM_UNTRUSTED_SCORE; + case 12802: /* module 50 call 2 */ + return STR_ME_SET_EMERGENCY_ELECTION_RESULT; + case 12803: /* module 50 call 3 */ + return STR_ME_SUBMIT; + case 12804: /* module 50 call 4 */ + return STR_ME_GOVERNANCE_FALLBACK; #endif default: return NULL; @@ -4429,7 +4301,7 @@ const char* _getMethod_Name_V4_ParserFull(uint16_t callPrivIdx) return NULL; } -uint8_t _getMethod_NumItems_V4(uint8_t moduleIdx, uint8_t callIdx) +uint8_t _getMethod_NumItems_V7(uint8_t moduleIdx, uint8_t callIdx) { uint16_t callPrivIdx = ((uint16_t)moduleIdx << 8u) + callIdx; @@ -4461,29 +4333,9 @@ uint8_t _getMethod_NumItems_V4(uint8_t moduleIdx, uint8_t callIdx) case 1810: /* module 7 call 18 */ return 1; case 3840: /* module 15 call 0 */ - return 2; - case 3842: /* module 15 call 2 */ - return 4; - case 3844: /* module 15 call 4 */ - return 4; - case 3846: /* module 15 call 6 */ - return 2; - case 3848: /* module 15 call 8 */ - return 2; - case 3850: /* module 15 call 10 */ - return 1; - case 3851: /* module 15 call 11 */ - return 1; - case 3852: /* module 15 call 12 */ - return 1; - case 3853: /* module 15 call 13 */ - return 2; - case 3854: /* module 15 call 14 */ - return 2; - case 3855: /* module 15 call 15 */ + return 3; + case 3849: /* module 15 call 9 */ return 1; - case 3857: /* module 15 call 17 */ - return 2; case 4352: /* module 17 call 0 */ return 3; case 4353: /* module 17 call 1 */ @@ -4502,7 +4354,7 @@ uint8_t _getMethod_NumItems_V4(uint8_t moduleIdx, uint8_t callIdx) return 1; case 4360: /* module 17 call 8 */ return 1; - case 4376: /* module 17 call 24 */ + case 4371: /* module 17 call 19 */ return 1; case 8454: /* module 33 call 6 */ return 4; @@ -4516,9 +4368,9 @@ uint8_t _getMethod_NumItems_V4(uint8_t moduleIdx, uint8_t callIdx) return 1; #ifdef SUBSTRATE_PARSER_FULL #ifndef TARGET_NANOS - case 6686: /* module 26 call 30 */ + case 6685: /* module 26 call 29 */ return 2; - case 6687: /* module 26 call 31 */ + case 6686: /* module 26 call 30 */ return 2; case 7680: /* module 30 call 0 */ return 1; @@ -4577,7 +4429,7 @@ uint8_t _getMethod_NumItems_V4(uint8_t moduleIdx, uint8_t callIdx) case 9495: /* module 37 call 23 */ return 2; case 12547: /* module 49 call 3 */ - return 4; + return 3; #endif case 0: /* module 0 call 0 */ return 1; @@ -4722,56 +4574,34 @@ uint8_t _getMethod_NumItems_V4(uint8_t moduleIdx, uint8_t callIdx) case 3590: /* module 14 call 6 */ return 0; case 3841: /* module 15 call 1 */ - return 4; + return 3; + case 3842: /* module 15 call 2 */ + return 3; case 3843: /* module 15 call 3 */ - return 4; - case 3845: /* module 15 call 5 */ - return 2; - case 3847: /* module 15 call 7 */ return 2; - case 3849: /* module 15 call 9 */ - return 1; - case 3856: /* module 15 call 16 */ - return 1; - case 3858: /* module 15 call 18 */ - return 4; - case 3859: /* module 15 call 19 */ - return 2; - case 3860: /* module 15 call 20 */ - return 1; - case 4096: /* module 16 call 0 */ + case 3844: /* module 15 call 4 */ return 1; - case 4097: /* module 16 call 1 */ + case 3845: /* module 15 call 5 */ return 1; - case 4098: /* module 16 call 2 */ + case 3846: /* module 15 call 6 */ return 1; - case 4099: /* module 16 call 3 */ - return 0; - case 4100: /* module 16 call 4 */ - return 0; - case 4101: /* module 16 call 5 */ + case 3847: /* module 15 call 7 */ return 2; - case 4102: /* module 16 call 6 */ - return 1; - case 4103: /* module 16 call 7 */ - return 1; - case 4104: /* module 16 call 8 */ - return 1; - case 4105: /* module 16 call 9 */ - return 1; - case 4106: /* module 16 call 10 */ - return 1; - case 4107: /* module 16 call 11 */ - return 1; - case 4108: /* module 16 call 12 */ - return 1; - case 4109: /* module 16 call 13 */ + case 3848: /* module 15 call 8 */ + return 2; + case 3850: /* module 15 call 10 */ + return 2; + case 3851: /* module 15 call 11 */ return 1; - case 4110: /* module 16 call 14 */ + case 3852: /* module 15 call 12 */ return 1; - case 4111: /* module 16 call 15 */ + case 3853: /* module 15 call 13 */ + return 0; + case 3854: /* module 15 call 14 */ return 1; - case 4112: /* module 16 call 16 */ + case 3855: /* module 15 call 15 */ + return 2; + case 3856: /* module 15 call 16 */ return 1; case 4361: /* module 17 call 9 */ return 1; @@ -4780,33 +4610,37 @@ uint8_t _getMethod_NumItems_V4(uint8_t moduleIdx, uint8_t callIdx) case 4363: /* module 17 call 11 */ return 1; case 4364: /* module 17 call 12 */ - return 2; + return 0; case 4365: /* module 17 call 13 */ - return 1; + return 0; case 4366: /* module 17 call 14 */ return 1; case 4367: /* module 17 call 15 */ - return 1; + return 2; case 4368: /* module 17 call 16 */ - return 1; - case 4369: /* module 17 call 17 */ return 0; + case 4369: /* module 17 call 17 */ + return 2; case 4370: /* module 17 call 18 */ - return 0; - case 4371: /* module 17 call 19 */ - return 1; + return 2; case 4372: /* module 17 call 20 */ return 2; case 4373: /* module 17 call 21 */ - return 0; + return 1; case 4374: /* module 17 call 22 */ - return 2; + return 6; case 4375: /* module 17 call 23 */ - return 2; + return 1; + case 4376: /* module 17 call 24 */ + return 1; case 4377: /* module 17 call 25 */ - return 2; + return 1; case 4378: /* module 17 call 26 */ return 2; + case 4379: /* module 17 call 27 */ + return 1; + case 4380: /* module 17 call 28 */ + return 1; case 4381: /* module 17 call 29 */ return 2; case 4382: /* module 17 call 30 */ @@ -4815,10 +4649,20 @@ uint8_t _getMethod_NumItems_V4(uint8_t moduleIdx, uint8_t callIdx) return 2; case 4384: /* module 17 call 32 */ return 2; + case 4385: /* module 17 call 33 */ + return 1; case 4864: /* module 19 call 0 */ return 2; case 4865: /* module 19 call 1 */ return 0; + case 6400: /* module 25 call 0 */ + return 1; + case 6401: /* module 25 call 1 */ + return 2; + case 6402: /* module 25 call 2 */ + return 1; + case 6403: /* module 25 call 3 */ + return 2; case 6656: /* module 26 call 0 */ return 1; case 6657: /* module 26 call 1 */ @@ -4826,7 +4670,7 @@ uint8_t _getMethod_NumItems_V4(uint8_t moduleIdx, uint8_t callIdx) case 6658: /* module 26 call 2 */ return 1; case 6659: /* module 26 call 3 */ - return 6; + return 5; case 6660: /* module 26 call 4 */ return 1; case 6661: /* module 26 call 5 */ @@ -4836,7 +4680,7 @@ uint8_t _getMethod_NumItems_V4(uint8_t moduleIdx, uint8_t callIdx) case 6663: /* module 26 call 7 */ return 3; case 6664: /* module 26 call 8 */ - return 2; + return 3; case 6665: /* module 26 call 9 */ return 1; case 6666: /* module 26 call 10 */ @@ -4852,7 +4696,7 @@ uint8_t _getMethod_NumItems_V4(uint8_t moduleIdx, uint8_t callIdx) case 6671: /* module 26 call 15 */ return 1; case 6672: /* module 26 call 16 */ - return 6; + return 5; case 6673: /* module 26 call 17 */ return 4; case 6674: /* module 26 call 18 */ @@ -4864,21 +4708,21 @@ uint8_t _getMethod_NumItems_V4(uint8_t moduleIdx, uint8_t callIdx) case 6677: /* module 26 call 21 */ return 2; case 6678: /* module 26 call 22 */ - return 3; + return 2; case 6679: /* module 26 call 23 */ return 2; case 6680: /* module 26 call 24 */ return 2; case 6681: /* module 26 call 25 */ - return 2; + return 1; case 6682: /* module 26 call 26 */ return 1; case 6683: /* module 26 call 27 */ return 1; case 6684: /* module 26 call 28 */ return 1; - case 6685: /* module 26 call 29 */ - return 1; + case 6687: /* module 26 call 31 */ + return 2; case 6912: /* module 27 call 0 */ return 7; case 6913: /* module 27 call 1 */ @@ -5019,8 +4863,6 @@ uint8_t _getMethod_NumItems_V4(uint8_t moduleIdx, uint8_t callIdx) return 2; case 10502: /* module 41 call 6 */ return 1; - case 10505: /* module 41 call 9 */ - return 2; case 11008: /* module 43 call 0 */ return 2; case 11009: /* module 43 call 1 */ @@ -5092,7 +4934,17 @@ uint8_t _getMethod_NumItems_V4(uint8_t moduleIdx, uint8_t callIdx) case 12545: /* module 49 call 1 */ return 3; case 12546: /* module 49 call 2 */ - return 3; + return 4; + case 12800: /* module 50 call 0 */ + return 2; + case 12801: /* module 50 call 1 */ + return 1; + case 12802: /* module 50 call 2 */ + return 1; + case 12803: /* module 50 call 3 */ + return 1; + case 12804: /* module 50 call 4 */ + return 2; #endif default: return 0; @@ -5101,7 +4953,7 @@ uint8_t _getMethod_NumItems_V4(uint8_t moduleIdx, uint8_t callIdx) return 0; } -const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t itemIdx) +const char* _getMethod_ItemName_V7(uint8_t moduleIdx, uint8_t callIdx, uint8_t itemIdx) { uint16_t callPrivIdx = ((uint16_t)moduleIdx << 8u) + callIdx; @@ -5221,108 +5073,18 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i return STR_IT_signers; case 1: return STR_IT_sigs_required; - default: - return NULL; - } - case 3842: /* module 15 call 2 */ - switch (itemIdx) { - case 0: - return STR_IT_multisig; - case 1: - return STR_IT_proposal; - case 2: - return STR_IT_expiry; - case 3: - return STR_IT_auto_close; - default: - return NULL; - } - case 3844: /* module 15 call 4 */ - switch (itemIdx) { - case 0: - return STR_IT_multisig; - case 1: - return STR_IT_proposal; case 2: - return STR_IT_expiry; - case 3: - return STR_IT_auto_close; - default: - return NULL; - } - case 3846: /* module 15 call 6 */ - switch (itemIdx) { - case 0: - return STR_IT_multisig; - case 1: - return STR_IT_proposal_id; - default: - return NULL; - } - case 3848: /* module 15 call 8 */ - switch (itemIdx) { - case 0: - return STR_IT_multisig; - case 1: - return STR_IT_proposal_id; - default: - return NULL; - } - case 3850: /* module 15 call 10 */ - switch (itemIdx) { - case 0: - return STR_IT_auth_id; - default: - return NULL; - } - case 3851: /* module 15 call 11 */ - switch (itemIdx) { - case 0: - return STR_IT_signer; - default: - return NULL; - } - case 3852: /* module 15 call 12 */ - switch (itemIdx) { - case 0: - return STR_IT_signer; - default: - return NULL; - } - case 3853: /* module 15 call 13 */ - switch (itemIdx) { - case 0: - return STR_IT_multisig; - case 1: - return STR_IT_signers; - default: - return NULL; - } - case 3854: /* module 15 call 14 */ - switch (itemIdx) { - case 0: - return STR_IT_multisig; - case 1: - return STR_IT_signers; + return STR_IT_permissions; default: return NULL; } - case 3855: /* module 15 call 15 */ + case 3849: /* module 15 call 9 */ switch (itemIdx) { case 0: return STR_IT_sigs_required; default: return NULL; } - case 3857: /* module 15 call 17 */ - switch (itemIdx) { - case 0: - return STR_IT_multisig; - case 1: - return STR_IT_optional_cdd_auth_id; - default: - return NULL; - } case 4352: /* module 17 call 0 */ switch (itemIdx) { case 0: @@ -5388,7 +5150,7 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i default: return NULL; } - case 4376: /* module 17 call 24 */ + case 4371: /* module 17 call 19 */ switch (itemIdx) { case 0: return STR_IT_amount; @@ -5442,19 +5204,19 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i } #ifdef SUBSTRATE_PARSER_FULL #ifndef TARGET_NANOS - case 6686: /* module 26 call 30 */ + case 6685: /* module 26 call 29 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_mediators; default: return NULL; } - case 6687: /* module 26 call 31 */ + case 6686: /* module 26 call 30 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_mediators; default: @@ -5470,7 +5232,7 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 7681: /* module 30 call 1 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_targets; default: @@ -5479,7 +5241,7 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 7682: /* module 30 call 2 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_tax; default: @@ -5488,7 +5250,7 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 7683: /* module 30 call 3 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_taxed_did; case 2: @@ -5499,7 +5261,7 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 7684: /* module 30 call 4 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_kind; case 2: @@ -5761,12 +5523,10 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 12547: /* module 49 call 3 */ switch (itemIdx) { case 0: - return STR_IT_ticker; - case 1: return STR_IT_nfts; - case 2: + case 1: return STR_IT_source_portfolio; - case 3: + case 2: return STR_IT_callers_portfolio_kind; default: return NULL; @@ -6351,25 +6111,21 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i return STR_IT_proposal; case 2: return STR_IT_expiry; - case 3: - return STR_IT_auto_close; default: return NULL; } - case 3843: /* module 15 call 3 */ + case 3842: /* module 15 call 2 */ switch (itemIdx) { case 0: return STR_IT_multisig; case 1: - return STR_IT_proposal; + return STR_IT_proposal_id; case 2: - return STR_IT_expiry; - case 3: - return STR_IT_auto_close; + return STR_IT_max_weight; default: return NULL; } - case 3845: /* module 15 call 5 */ + case 3843: /* module 15 call 3 */ switch (itemIdx) { case 0: return STR_IT_multisig; @@ -6378,197 +6134,221 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i default: return NULL; } - case 3847: /* module 15 call 7 */ + case 3844: /* module 15 call 4 */ switch (itemIdx) { case 0: - return STR_IT_multisig; - case 1: - return STR_IT_proposal_id; + return STR_IT_auth_id; default: return NULL; } - case 3849: /* module 15 call 9 */ + case 3845: /* module 15 call 5 */ switch (itemIdx) { case 0: - return STR_IT__auth_id; + return STR_IT_signers; default: return NULL; } - case 3856: /* module 15 call 16 */ + case 3846: /* module 15 call 6 */ + switch (itemIdx) { + case 0: + return STR_IT_signers; + default: + return NULL; + } + case 3847: /* module 15 call 7 */ switch (itemIdx) { case 0: return STR_IT_multisig; + case 1: + return STR_IT_signers; default: return NULL; } - case 3858: /* module 15 call 18 */ + case 3848: /* module 15 call 8 */ switch (itemIdx) { case 0: return STR_IT_multisig; case 1: - return STR_IT_proposal_id; - case 2: - return STR_IT_multisig_did; - case 3: - return STR_IT__proposal_weight; + return STR_IT_signers; default: return NULL; } - case 3859: /* module 15 call 19 */ + case 3850: /* module 15 call 10 */ switch (itemIdx) { case 0: - return STR_IT_multisig_account; + return STR_IT_multisig; case 1: return STR_IT_signatures_required; default: return NULL; } - case 3860: /* module 15 call 20 */ + case 3851: /* module 15 call 11 */ switch (itemIdx) { case 0: - return STR_IT_multisig_account; + return STR_IT_admin_did; default: return NULL; } - case 4096: /* module 16 call 0 */ + case 3852: /* module 15 call 12 */ switch (itemIdx) { case 0: - return STR_IT_controller; + return STR_IT_multisig; default: return NULL; } - case 4097: /* module 16 call 1 */ + case 3853: /* module 15 call 13 */ switch (itemIdx) { - case 0: - return STR_IT_admin; default: return NULL; } - case 4098: /* module 16 call 2 */ + case 3854: /* module 15 call 14 */ switch (itemIdx) { case 0: - return STR_IT_timelock; + return STR_IT_multisig; default: return NULL; } - case 4099: /* module 16 call 3 */ + case 3855: /* module 15 call 15 */ switch (itemIdx) { + case 0: + return STR_IT_multisig; + case 1: + return STR_IT_auth_id; default: return NULL; } - case 4100: /* module 16 call 4 */ + case 3856: /* module 15 call 16 */ switch (itemIdx) { + case 0: + return STR_IT_auth_id; default: return NULL; } - case 4101: /* module 16 call 5 */ + case 4361: /* module 17 call 9 */ switch (itemIdx) { case 0: - return STR_IT_amount; - case 1: - return STR_IT_duration; + return STR_IT_new_; default: return NULL; } - case 4102: /* module 16 call 6 */ + case 4362: /* module 17 call 10 */ switch (itemIdx) { case 0: - return STR_IT_exempted; + return STR_IT_additional; default: return NULL; } - case 4103: /* module 16 call 7 */ + case 4363: /* module 17 call 11 */ switch (itemIdx) { case 0: - return STR_IT_bridge_tx; + return STR_IT_factor; default: return NULL; } - case 4104: /* module 16 call 8 */ + case 4364: /* module 17 call 12 */ switch (itemIdx) { - case 0: - return STR_IT_bridge_txs; default: return NULL; } - case 4105: /* module 16 call 9 */ + case 4365: /* module 17 call 13 */ switch (itemIdx) { - case 0: - return STR_IT_bridge_tx; default: return NULL; } - case 4106: /* module 16 call 10 */ + case 4366: /* module 17 call 14 */ switch (itemIdx) { case 0: - return STR_IT_bridge_tx; + return STR_IT_invulnerables; default: return NULL; } - case 4107: /* module 16 call 11 */ + case 4367: /* module 17 call 15 */ switch (itemIdx) { case 0: - return STR_IT_bridge_txs; + return STR_IT_stash; + case 1: + return STR_IT_num_slashing_spans; + default: + return NULL; + } + case 4368: /* module 17 call 16 */ + switch (itemIdx) { default: return NULL; } - case 4108: /* module 16 call 12 */ + case 4369: /* module 17 call 17 */ switch (itemIdx) { case 0: - return STR_IT_bridge_txs; + return STR_IT_era; + case 1: + return STR_IT_slash_indices; default: return NULL; } - case 4109: /* module 16 call 13 */ + case 4370: /* module 17 call 18 */ switch (itemIdx) { case 0: - return STR_IT_bridge_tx; + return STR_IT_validator_stash; + case 1: + return STR_IT_era; default: return NULL; } - case 4110: /* module 16 call 14 */ + case 4372: /* module 17 call 20 */ switch (itemIdx) { case 0: - return STR_IT_freeze_admin; + return STR_IT_stash; + case 1: + return STR_IT_num_slashing_spans; default: return NULL; } - case 4111: /* module 16 call 15 */ + case 4373: /* module 17 call 21 */ switch (itemIdx) { case 0: - return STR_IT_freeze_admin; + return STR_IT_who; default: return NULL; } - case 4112: /* module 16 call 16 */ + case 4374: /* module 17 call 22 */ switch (itemIdx) { case 0: - return STR_IT_bridge_txs; + return STR_IT_min_nominator_bond; + case 1: + return STR_IT_min_validator_bond; + case 2: + return STR_IT_max_nominator_count; + case 3: + return STR_IT_max_validator_count; + case 4: + return STR_IT_chill_threshold; + case 5: + return STR_IT_min_commission; default: return NULL; } - case 4361: /* module 17 call 9 */ + case 4375: /* module 17 call 23 */ switch (itemIdx) { case 0: - return STR_IT_new_; + return STR_IT_controller; default: return NULL; } - case 4362: /* module 17 call 10 */ + case 4376: /* module 17 call 24 */ switch (itemIdx) { case 0: - return STR_IT_additional; + return STR_IT_validator_stash; default: return NULL; } - case 4363: /* module 17 call 11 */ + case 4377: /* module 17 call 25 */ switch (itemIdx) { case 0: - return STR_IT_factor; + return STR_IT_new_; default: return NULL; } - case 4364: /* module 17 call 12 */ + case 4378: /* module 17 call 26 */ switch (itemIdx) { case 0: return STR_IT_identity; @@ -6577,146 +6357,104 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i default: return NULL; } - case 4365: /* module 17 call 13 */ + case 4379: /* module 17 call 27 */ switch (itemIdx) { case 0: return STR_IT_identity; default: return NULL; } - case 4366: /* module 17 call 14 */ + case 4380: /* module 17 call 28 */ switch (itemIdx) { case 0: return STR_IT_targets; default: return NULL; } - case 4367: /* module 17 call 15 */ + case 4381: /* module 17 call 29 */ switch (itemIdx) { case 0: - return STR_IT_new_cap; + return STR_IT_validator_stash; + case 1: + return STR_IT_era; default: return NULL; } - case 4368: /* module 17 call 16 */ + case 4382: /* module 17 call 30 */ switch (itemIdx) { case 0: - return STR_IT_new_value; + return STR_IT_slashing_switch; default: return NULL; } - case 4369: /* module 17 call 17 */ - switch (itemIdx) { - default: - return NULL; - } - case 4370: /* module 17 call 18 */ - switch (itemIdx) { - default: - return NULL; - } - case 4371: /* module 17 call 19 */ - switch (itemIdx) { - case 0: - return STR_IT_invulnerables; - default: - return NULL; - } - case 4372: /* module 17 call 20 */ + case 4383: /* module 17 call 31 */ switch (itemIdx) { case 0: - return STR_IT_stash; + return STR_IT_identity; case 1: - return STR_IT_num_slashing_spans; - default: - return NULL; - } - case 4373: /* module 17 call 21 */ - switch (itemIdx) { + return STR_IT_new_intended_count; default: return NULL; } - case 4374: /* module 17 call 22 */ + case 4384: /* module 17 call 32 */ switch (itemIdx) { case 0: - return STR_IT_era; + return STR_IT_identity; case 1: - return STR_IT_slash_indices; + return STR_IT_stash_keys; default: return NULL; } - case 4375: /* module 17 call 23 */ + case 4385: /* module 17 call 33 */ switch (itemIdx) { case 0: - return STR_IT_validator_stash; - case 1: - return STR_IT_era; + return STR_IT_new_cap; default: return NULL; } - case 4377: /* module 17 call 25 */ + case 4864: /* module 19 call 0 */ switch (itemIdx) { case 0: - return STR_IT_new_history_depth; + return STR_IT_keys; case 1: - return STR_IT_era_items_deleted; + return STR_IT_proof; default: return NULL; } - case 4378: /* module 17 call 26 */ + case 4865: /* module 19 call 1 */ switch (itemIdx) { - case 0: - return STR_IT_stash; - case 1: - return STR_IT_num_slashing_spans; default: return NULL; } - case 4381: /* module 17 call 29 */ + case 6400: /* module 25 call 0 */ switch (itemIdx) { case 0: - return STR_IT_validator_stash; - case 1: - return STR_IT_era; - default: - return NULL; - } - case 4382: /* module 17 call 30 */ - switch (itemIdx) { - case 0: - return STR_IT_slashing_switch; + return STR_IT_call; default: return NULL; } - case 4383: /* module 17 call 31 */ + case 6401: /* module 25 call 1 */ switch (itemIdx) { case 0: - return STR_IT_identity; + return STR_IT_call; case 1: - return STR_IT_new_intended_count; + return STR_IT__weight; default: return NULL; } - case 4384: /* module 17 call 32 */ + case 6402: /* module 25 call 2 */ switch (itemIdx) { case 0: - return STR_IT_identity; - case 1: - return STR_IT_stash_keys; + return STR_IT_new_; default: return NULL; } - case 4864: /* module 19 call 0 */ + case 6403: /* module 25 call 3 */ switch (itemIdx) { case 0: - return STR_IT_keys; + return STR_IT_who; case 1: - return STR_IT_proof; - default: - return NULL; - } - case 4865: /* module 19 call 1 */ - switch (itemIdx) { + return STR_IT_call; default: return NULL; } @@ -6744,47 +6482,45 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 6659: /* module 26 call 3 */ switch (itemIdx) { case 0: - return STR_IT_name; + return STR_IT_asset_name; case 1: - return STR_IT_ticker; - case 2: return STR_IT_divisible; - case 3: + case 2: return STR_IT_asset_type; + case 3: + return STR_IT_asset_identifiers; case 4: - return STR_IT_identifiers; - case 5: - return STR_IT_funding_round; + return STR_IT_funding_round_name; default: return NULL; } case 6660: /* module 26 call 4 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; default: return NULL; } case 6661: /* module 26 call 5 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; default: return NULL; } case 6662: /* module 26 call 6 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: - return STR_IT_name; + return STR_IT_asset_name; default: return NULL; } case 6663: /* module 26 call 7 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_amount; case 2: @@ -6795,16 +6531,18 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 6664: /* module 26 call 8 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_amount; + case 2: + return STR_IT_portfolio_kind; default: return NULL; } case 6665: /* module 26 call 9 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; default: return NULL; } @@ -6813,32 +6551,32 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 0: return STR_IT_docs; case 1: - return STR_IT_ticker; + return STR_IT_asset_id; default: return NULL; } case 6667: /* module 26 call 11 */ switch (itemIdx) { case 0: - return STR_IT_ids; + return STR_IT_docs_id; case 1: - return STR_IT_ticker; + return STR_IT_asset_id; default: return NULL; } case 6668: /* module 26 call 12 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: - return STR_IT_name; + return STR_IT_founding_round_name; default: return NULL; } case 6669: /* module 26 call 13 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_asset_identifiers; default: @@ -6847,7 +6585,7 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 6670: /* module 26 call 14 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_amount; case 2: @@ -6865,24 +6603,22 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 6672: /* module 26 call 16 */ switch (itemIdx) { case 0: - return STR_IT_name; + return STR_IT_asset_name; case 1: - return STR_IT_ticker; - case 2: return STR_IT_divisible; - case 3: + case 2: return STR_IT_custom_asset_type; + case 3: + return STR_IT_asset_identifiers; case 4: - return STR_IT_identifiers; - case 5: - return STR_IT_funding_round; + return STR_IT_funding_round_name; default: return NULL; } case 6673: /* module 26 call 17 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_key; case 2: @@ -6895,7 +6631,7 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 6674: /* module 26 call 18 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_key; case 2: @@ -6906,7 +6642,7 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 6675: /* module 26 call 19 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_name; case 2: @@ -6921,7 +6657,7 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 6676: /* module 26 call 20 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_name; case 2: @@ -6941,66 +6677,64 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 6678: /* module 26 call 22 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: - return STR_IT_amount; - case 2: - return STR_IT_portfolio; + return STR_IT_asset_type; default: return NULL; } case 6679: /* module 26 call 23 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: - return STR_IT_asset_type; + return STR_IT_local_key; default: return NULL; } case 6680: /* module 26 call 24 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: - return STR_IT_local_key; + return STR_IT_metadata_key; default: return NULL; } case 6681: /* module 26 call 25 */ switch (itemIdx) { case 0: - return STR_IT_ticker; - case 1: - return STR_IT_metadata_key; + return STR_IT_asset_id; default: return NULL; } case 6682: /* module 26 call 26 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; default: return NULL; } case 6683: /* module 26 call 27 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; default: return NULL; } case 6684: /* module 26 call 28 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; default: return NULL; } - case 6685: /* module 26 call 29 */ + case 6687: /* module 26 call 31 */ switch (itemIdx) { case 0: return STR_IT_ticker; + case 1: + return STR_IT_asset_id; default: return NULL; } @@ -7056,7 +6790,7 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 7168: /* module 28 call 0 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; default: return NULL; } @@ -7070,7 +6804,7 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 7170: /* module 28 call 2 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_schedule; default: @@ -7079,7 +6813,7 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 7171: /* module 28 call 3 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_id; default: @@ -7088,7 +6822,7 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 7424: /* module 29 call 0 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_sender_conditions; case 2: @@ -7099,7 +6833,7 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 7425: /* module 29 call 1 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_id; default: @@ -7108,7 +6842,7 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 7426: /* module 29 call 2 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_asset_compliance; default: @@ -7117,28 +6851,28 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 7427: /* module 29 call 3 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; default: return NULL; } case 7428: /* module 29 call 4 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; default: return NULL; } case 7429: /* module 29 call 5 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; default: return NULL; } case 7430: /* module 29 call 6 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_issuer; default: @@ -7147,7 +6881,7 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 7431: /* module 29 call 7 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_issuer; default: @@ -7156,7 +6890,7 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 7432: /* module 29 call 8 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_new_req; default: @@ -7311,7 +7045,7 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 8710: /* module 34 call 6 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_portfolio_id; default: @@ -7320,7 +7054,7 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 8711: /* module 34 call 7 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_portfolio_id; default: @@ -7376,7 +7110,7 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 9476: /* module 37 call 4 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_enabled; default: @@ -7385,7 +7119,7 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 9477: /* module 37 call 5 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_venues; default: @@ -7394,7 +7128,7 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 9478: /* module 37 call 6 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_venues; default: @@ -7648,19 +7382,10 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i default: return NULL; } - case 10505: /* module 41 call 9 */ - switch (itemIdx) { - case 0: - return STR_IT_index; - case 1: - return STR_IT_call; - default: - return NULL; - } case 11008: /* module 43 call 0 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_perms; default: @@ -7669,7 +7394,7 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 11009: /* module 43 call 1 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_id; case 2: @@ -7680,7 +7405,7 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 11010: /* module 43 call 2 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_agent; default: @@ -7689,14 +7414,14 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 11011: /* module 43 call 3 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; default: return NULL; } case 11012: /* module 43 call 4 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_agent; case 2: @@ -7714,7 +7439,7 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 11014: /* module 43 call 6 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_perms; case 2: @@ -7727,7 +7452,7 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 11015: /* module 43 call 7 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_perms; case 2: @@ -8031,7 +7756,7 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 12544: /* module 49 call 0 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_nft_type; case 2: @@ -8042,7 +7767,7 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 12545: /* module 49 call 1 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_nft_metadata_attributes; case 2: @@ -8053,11 +7778,52 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i case 12546: /* module 49 call 2 */ switch (itemIdx) { case 0: - return STR_IT_ticker; + return STR_IT_asset_id; case 1: return STR_IT_nft_id; case 2: return STR_IT_portfolio_kind; + case 3: + return STR_IT_number_of_keys; + default: + return NULL; + } + case 12800: /* module 50 call 0 */ + switch (itemIdx) { + case 0: + return STR_IT_raw_solution; + case 1: + return STR_IT_witness; + default: + return NULL; + } + case 12801: /* module 50 call 1 */ + switch (itemIdx) { + case 0: + return STR_IT_maybe_next_score; + default: + return NULL; + } + case 12802: /* module 50 call 2 */ + switch (itemIdx) { + case 0: + return STR_IT_supports; + default: + return NULL; + } + case 12803: /* module 50 call 3 */ + switch (itemIdx) { + case 0: + return STR_IT_raw_solution; + default: + return NULL; + } + case 12804: /* module 50 call 4 */ + switch (itemIdx) { + case 0: + return STR_IT_maybe_max_voters; + case 1: + return STR_IT_maybe_max_targets; default: return NULL; } @@ -8069,8 +7835,8 @@ const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t i return NULL; } -parser_error_t _getMethod_ItemValue_V4( - pd_Method_V4_t* m, +parser_error_t _getMethod_ItemValue_V7( + pd_Method_V7_t* m, uint8_t moduleIdx, uint8_t callIdx, uint8_t itemIdx, char* outValue, uint16_t outValueLen, uint8_t pageIdx, uint8_t* pageCount) @@ -8080,14 +7846,14 @@ parser_error_t _getMethod_ItemValue_V4( switch (callPrivIdx) { case 1280: /* module 5 call 0 */ switch (itemIdx) { - case 0: /* balances_transfer_V4 - dest */; + case 0: /* balances_transfer_V7 - dest */; return _toStringLookupasStaticLookupSource( - &m->nested.balances_transfer_V4.dest, + &m->nested.balances_transfer_V7.dest, outValue, outValueLen, pageIdx, pageCount); - case 1: /* balances_transfer_V4 - amount */; + case 1: /* balances_transfer_V7 - amount */; return _toStringCompactBalance( - &m->nested.balances_transfer_V4.amount, + &m->nested.balances_transfer_V7.amount, outValue, outValueLen, pageIdx, pageCount); default: @@ -8095,19 +7861,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 1281: /* module 5 call 1 */ switch (itemIdx) { - case 0: /* balances_transfer_with_memo_V4 - dest */; + case 0: /* balances_transfer_with_memo_V7 - dest */; return _toStringLookupasStaticLookupSource( - &m->nested.balances_transfer_with_memo_V4.dest, + &m->nested.balances_transfer_with_memo_V7.dest, outValue, outValueLen, pageIdx, pageCount); - case 1: /* balances_transfer_with_memo_V4 - amount */; + case 1: /* balances_transfer_with_memo_V7 - amount */; return _toStringCompactBalance( - &m->nested.balances_transfer_with_memo_V4.amount, + &m->nested.balances_transfer_with_memo_V7.amount, outValue, outValueLen, pageIdx, pageCount); - case 2: /* balances_transfer_with_memo_V4 - memo */; + case 2: /* balances_transfer_with_memo_V7 - memo */; return _toStringOptionMemo( - &m->nested.balances_transfer_with_memo_V4.memo, + &m->nested.balances_transfer_with_memo_V7.memo, outValue, outValueLen, pageIdx, pageCount); default: @@ -8115,14 +7881,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 1794: /* module 7 call 2 */ switch (itemIdx) { - case 0: /* identity_accept_primary_key_V4 - rotation_auth_id */; + case 0: /* identity_accept_primary_key_V7 - rotation_auth_id */; return _toStringu64( - &m->nested.identity_accept_primary_key_V4.rotation_auth_id, + &m->nested.identity_accept_primary_key_V7.rotation_auth_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* identity_accept_primary_key_V4 - optional_cdd_auth_id */; + case 1: /* identity_accept_primary_key_V7 - optional_cdd_auth_id */; return _toStringOptionu64( - &m->nested.identity_accept_primary_key_V4.optional_cdd_auth_id, + &m->nested.identity_accept_primary_key_V7.optional_cdd_auth_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -8130,9 +7896,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 1796: /* module 7 call 4 */ switch (itemIdx) { - case 0: /* identity_join_identity_as_key_V4 - auth_id */; + case 0: /* identity_join_identity_as_key_V7 - auth_id */; return _toStringu64( - &m->nested.identity_join_identity_as_key_V4.auth_id, + &m->nested.identity_join_identity_as_key_V7.auth_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -8145,19 +7911,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 1798: /* module 7 call 6 */ switch (itemIdx) { - case 0: /* identity_add_claim_V4 - target */; + case 0: /* identity_add_claim_V7 - target */; return _toStringIdentityId( - &m->nested.identity_add_claim_V4.target, + &m->nested.identity_add_claim_V7.target, outValue, outValueLen, pageIdx, pageCount); - case 1: /* identity_add_claim_V4 - claim */; + case 1: /* identity_add_claim_V7 - claim */; return _toStringClaim( - &m->nested.identity_add_claim_V4.claim, + &m->nested.identity_add_claim_V7.claim, outValue, outValueLen, pageIdx, pageCount); - case 2: /* identity_add_claim_V4 - expiry */; + case 2: /* identity_add_claim_V7 - expiry */; return _toStringOptionMoment( - &m->nested.identity_add_claim_V4.expiry, + &m->nested.identity_add_claim_V7.expiry, outValue, outValueLen, pageIdx, pageCount); default: @@ -8165,14 +7931,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 1799: /* module 7 call 7 */ switch (itemIdx) { - case 0: /* identity_revoke_claim_V4 - target */; + case 0: /* identity_revoke_claim_V7 - target */; return _toStringIdentityId( - &m->nested.identity_revoke_claim_V4.target, + &m->nested.identity_revoke_claim_V7.target, outValue, outValueLen, pageIdx, pageCount); - case 1: /* identity_revoke_claim_V4 - claim */; + case 1: /* identity_revoke_claim_V7 - claim */; return _toStringClaim( - &m->nested.identity_revoke_claim_V4.claim, + &m->nested.identity_revoke_claim_V7.claim, outValue, outValueLen, pageIdx, pageCount); default: @@ -8190,19 +7956,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 1802: /* module 7 call 10 */ switch (itemIdx) { - case 0: /* identity_add_authorization_V4 - target */; + case 0: /* identity_add_authorization_V7 - target */; return _toStringSignatoryAccountId( - &m->nested.identity_add_authorization_V4.target, + &m->nested.identity_add_authorization_V7.target, outValue, outValueLen, pageIdx, pageCount); - case 1: /* identity_add_authorization_V4 - data */; + case 1: /* identity_add_authorization_V7 - data */; return _toStringAuthorizationDataAccountId( - &m->nested.identity_add_authorization_V4.data, + &m->nested.identity_add_authorization_V7.data, outValue, outValueLen, pageIdx, pageCount); - case 2: /* identity_add_authorization_V4 - expiry */; + case 2: /* identity_add_authorization_V7 - expiry */; return _toStringOptionMoment( - &m->nested.identity_add_authorization_V4.expiry, + &m->nested.identity_add_authorization_V7.expiry, outValue, outValueLen, pageIdx, pageCount); default: @@ -8210,19 +7976,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 1803: /* module 7 call 11 */ switch (itemIdx) { - case 0: /* identity_remove_authorization_V4 - target */; + case 0: /* identity_remove_authorization_V7 - target */; return _toStringSignatoryAccountId( - &m->nested.identity_remove_authorization_V4.target, + &m->nested.identity_remove_authorization_V7.target, outValue, outValueLen, pageIdx, pageCount); - case 1: /* identity_remove_authorization_V4 - auth_id */; + case 1: /* identity_remove_authorization_V7 - auth_id */; return _toStringu64( - &m->nested.identity_remove_authorization_V4.auth_id, + &m->nested.identity_remove_authorization_V7.auth_id, outValue, outValueLen, pageIdx, pageCount); - case 2: /* identity_remove_authorization_V4 - _auth_issuer_pays */; + case 2: /* identity_remove_authorization_V7 - _auth_issuer_pays */; return _toStringbool( - &m->nested.identity_remove_authorization_V4._auth_issuer_pays, + &m->nested.identity_remove_authorization_V7._auth_issuer_pays, outValue, outValueLen, pageIdx, pageCount); default: @@ -8230,14 +7996,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 1808: /* module 7 call 16 */ switch (itemIdx) { - case 0: /* identity_add_secondary_keys_with_authorization_V4 - additional_keys */; + case 0: /* identity_add_secondary_keys_with_authorization_V7 - additional_keys */; return _toStringVecSecondaryKeyWithAuthAccountId( - &m->nested.identity_add_secondary_keys_with_authorization_V4.additional_keys, + &m->nested.identity_add_secondary_keys_with_authorization_V7.additional_keys, outValue, outValueLen, pageIdx, pageCount); - case 1: /* identity_add_secondary_keys_with_authorization_V4 - expires_at */; + case 1: /* identity_add_secondary_keys_with_authorization_V7 - expires_at */; return _toStringMoment( - &m->nested.identity_add_secondary_keys_with_authorization_V4.expires_at, + &m->nested.identity_add_secondary_keys_with_authorization_V7.expires_at, outValue, outValueLen, pageIdx, pageCount); default: @@ -8245,9 +8011,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 1810: /* module 7 call 18 */ switch (itemIdx) { - case 0: /* identity_remove_secondary_keys_V4 - keys_to_remove */; + case 0: /* identity_remove_secondary_keys_V7 - keys_to_remove */; return _toStringVecAccountId( - &m->nested.identity_remove_secondary_keys_V4.keys_to_remove, + &m->nested.identity_remove_secondary_keys_V7.keys_to_remove, outValue, outValueLen, pageIdx, pageCount); default: @@ -8255,179 +8021,29 @@ parser_error_t _getMethod_ItemValue_V4( } case 3840: /* module 15 call 0 */ switch (itemIdx) { - case 0: /* multisig_create_multisig_V4 - signers */; - return _toStringVecSignatoryAccountId( - &m->nested.multisig_create_multisig_V4.signers, + case 0: /* multisig_create_multisig_V7 - signers */; + return _toStringBoundedVecAccountIdMaxSigners( + &m->nested.multisig_create_multisig_V7.signers, outValue, outValueLen, pageIdx, pageCount); - case 1: /* multisig_create_multisig_V4 - sigs_required */; + case 1: /* multisig_create_multisig_V7 - sigs_required */; return _toStringu64( - &m->nested.multisig_create_multisig_V4.sigs_required, + &m->nested.multisig_create_multisig_V7.sigs_required, outValue, outValueLen, pageIdx, pageCount); - default: - return parser_no_data; - } - case 3842: /* module 15 call 2 */ - switch (itemIdx) { - case 0: /* multisig_create_or_approve_proposal_as_key_V4 - multisig */; - return _toStringAccountId( - &m->nested.multisig_create_or_approve_proposal_as_key_V4.multisig, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* multisig_create_or_approve_proposal_as_key_V4 - proposal */; - return _toStringProposal( - &m->nested.multisig_create_or_approve_proposal_as_key_V4.proposal, - outValue, outValueLen, - pageIdx, pageCount); - case 2: /* multisig_create_or_approve_proposal_as_key_V4 - expiry */; - return _toStringOptionMoment( - &m->nested.multisig_create_or_approve_proposal_as_key_V4.expiry, - outValue, outValueLen, - pageIdx, pageCount); - case 3: /* multisig_create_or_approve_proposal_as_key_V4 - auto_close */; - return _toStringbool( - &m->nested.multisig_create_or_approve_proposal_as_key_V4.auto_close, + case 2: /* multisig_create_multisig_V7 - permissions */; + return _toStringOptionPermissions( + &m->nested.multisig_create_multisig_V7.permissions, outValue, outValueLen, pageIdx, pageCount); default: return parser_no_data; } - case 3844: /* module 15 call 4 */ - switch (itemIdx) { - case 0: /* multisig_create_proposal_as_key_V4 - multisig */; - return _toStringAccountId( - &m->nested.multisig_create_proposal_as_key_V4.multisig, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* multisig_create_proposal_as_key_V4 - proposal */; - return _toStringProposal( - &m->nested.multisig_create_proposal_as_key_V4.proposal, - outValue, outValueLen, - pageIdx, pageCount); - case 2: /* multisig_create_proposal_as_key_V4 - expiry */; - return _toStringOptionMoment( - &m->nested.multisig_create_proposal_as_key_V4.expiry, - outValue, outValueLen, - pageIdx, pageCount); - case 3: /* multisig_create_proposal_as_key_V4 - auto_close */; - return _toStringbool( - &m->nested.multisig_create_proposal_as_key_V4.auto_close, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 3846: /* module 15 call 6 */ - switch (itemIdx) { - case 0: /* multisig_approve_as_key_V4 - multisig */; - return _toStringAccountId( - &m->nested.multisig_approve_as_key_V4.multisig, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* multisig_approve_as_key_V4 - proposal_id */; - return _toStringu64( - &m->nested.multisig_approve_as_key_V4.proposal_id, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 3848: /* module 15 call 8 */ - switch (itemIdx) { - case 0: /* multisig_reject_as_key_V4 - multisig */; - return _toStringAccountId( - &m->nested.multisig_reject_as_key_V4.multisig, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* multisig_reject_as_key_V4 - proposal_id */; - return _toStringu64( - &m->nested.multisig_reject_as_key_V4.proposal_id, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 3850: /* module 15 call 10 */ - switch (itemIdx) { - case 0: /* multisig_accept_multisig_signer_as_key_V4 - auth_id */; - return _toStringu64( - &m->nested.multisig_accept_multisig_signer_as_key_V4.auth_id, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 3851: /* module 15 call 11 */ - switch (itemIdx) { - case 0: /* multisig_add_multisig_signer_V4 - signer */; - return _toStringSignatoryAccountId( - &m->nested.multisig_add_multisig_signer_V4.signer, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 3852: /* module 15 call 12 */ - switch (itemIdx) { - case 0: /* multisig_remove_multisig_signer_V4 - signer */; - return _toStringSignatoryAccountId( - &m->nested.multisig_remove_multisig_signer_V4.signer, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 3853: /* module 15 call 13 */ - switch (itemIdx) { - case 0: /* multisig_add_multisig_signers_via_creator_V4 - multisig */; - return _toStringAccountId( - &m->nested.multisig_add_multisig_signers_via_creator_V4.multisig, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* multisig_add_multisig_signers_via_creator_V4 - signers */; - return _toStringVecSignatoryAccountId( - &m->nested.multisig_add_multisig_signers_via_creator_V4.signers, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 3854: /* module 15 call 14 */ - switch (itemIdx) { - case 0: /* multisig_remove_multisig_signers_via_creator_V4 - multisig */; - return _toStringAccountId( - &m->nested.multisig_remove_multisig_signers_via_creator_V4.multisig, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* multisig_remove_multisig_signers_via_creator_V4 - signers */; - return _toStringVecSignatoryAccountId( - &m->nested.multisig_remove_multisig_signers_via_creator_V4.signers, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 3855: /* module 15 call 15 */ + case 3849: /* module 15 call 9 */ switch (itemIdx) { - case 0: /* multisig_change_sigs_required_V4 - sigs_required */; + case 0: /* multisig_change_sigs_required_V7 - sigs_required */; return _toStringu64( - &m->nested.multisig_change_sigs_required_V4.sigs_required, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 3857: /* module 15 call 17 */ - switch (itemIdx) { - case 0: /* multisig_make_multisig_primary_V4 - multisig */; - return _toStringAccountId( - &m->nested.multisig_make_multisig_primary_V4.multisig, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* multisig_make_multisig_primary_V4 - optional_cdd_auth_id */; - return _toStringOptionu64( - &m->nested.multisig_make_multisig_primary_V4.optional_cdd_auth_id, + &m->nested.multisig_change_sigs_required_V7.sigs_required, outValue, outValueLen, pageIdx, pageCount); default: @@ -8435,19 +8051,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 4352: /* module 17 call 0 */ switch (itemIdx) { - case 0: /* staking_bond_V4 - controller */; + case 0: /* staking_bond_V7 - controller */; return _toStringAccountIdLookupOfT( - &m->nested.staking_bond_V4.controller, + &m->nested.staking_bond_V7.controller, outValue, outValueLen, pageIdx, pageCount); - case 1: /* staking_bond_V4 - amount */; + case 1: /* staking_bond_V7 - amount */; return _toStringCompactBalance( - &m->nested.staking_bond_V4.amount, + &m->nested.staking_bond_V7.amount, outValue, outValueLen, pageIdx, pageCount); - case 2: /* staking_bond_V4 - payee */; + case 2: /* staking_bond_V7 - payee */; return _toStringRewardDestination( - &m->nested.staking_bond_V4.payee, + &m->nested.staking_bond_V7.payee, outValue, outValueLen, pageIdx, pageCount); default: @@ -8455,9 +8071,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 4353: /* module 17 call 1 */ switch (itemIdx) { - case 0: /* staking_bond_extra_V4 - amount */; + case 0: /* staking_bond_extra_V7 - amount */; return _toStringCompactBalance( - &m->nested.staking_bond_extra_V4.amount, + &m->nested.staking_bond_extra_V7.amount, outValue, outValueLen, pageIdx, pageCount); default: @@ -8465,9 +8081,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 4354: /* module 17 call 2 */ switch (itemIdx) { - case 0: /* staking_unbond_V4 - amount */; + case 0: /* staking_unbond_V7 - amount */; return _toStringCompactBalance( - &m->nested.staking_unbond_V4.amount, + &m->nested.staking_unbond_V7.amount, outValue, outValueLen, pageIdx, pageCount); default: @@ -8475,9 +8091,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 4355: /* module 17 call 3 */ switch (itemIdx) { - case 0: /* staking_withdraw_unbonded_V4 - num_slashing_spans */; + case 0: /* staking_withdraw_unbonded_V7 - num_slashing_spans */; return _toStringu32( - &m->nested.staking_withdraw_unbonded_V4.num_slashing_spans, + &m->nested.staking_withdraw_unbonded_V7.num_slashing_spans, outValue, outValueLen, pageIdx, pageCount); default: @@ -8485,9 +8101,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 4356: /* module 17 call 4 */ switch (itemIdx) { - case 0: /* staking_validate_V4 - prefs */; + case 0: /* staking_validate_V7 - prefs */; return _toStringValidatorPrefs( - &m->nested.staking_validate_V4.prefs, + &m->nested.staking_validate_V7.prefs, outValue, outValueLen, pageIdx, pageCount); default: @@ -8495,9 +8111,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 4357: /* module 17 call 5 */ switch (itemIdx) { - case 0: /* staking_nominate_V4 - targets */; + case 0: /* staking_nominate_V7 - targets */; return _toStringVecAccountIdLookupOfT( - &m->nested.staking_nominate_V4.targets, + &m->nested.staking_nominate_V7.targets, outValue, outValueLen, pageIdx, pageCount); default: @@ -8510,9 +8126,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 4359: /* module 17 call 7 */ switch (itemIdx) { - case 0: /* staking_set_payee_V4 - payee */; + case 0: /* staking_set_payee_V7 - payee */; return _toStringRewardDestination( - &m->nested.staking_set_payee_V4.payee, + &m->nested.staking_set_payee_V7.payee, outValue, outValueLen, pageIdx, pageCount); default: @@ -8520,19 +8136,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 4360: /* module 17 call 8 */ switch (itemIdx) { - case 0: /* staking_set_controller_V4 - controller */; + case 0: /* staking_set_controller_V7 - controller */; return _toStringAccountIdLookupOfT( - &m->nested.staking_set_controller_V4.controller, + &m->nested.staking_set_controller_V7.controller, outValue, outValueLen, pageIdx, pageCount); default: return parser_no_data; } - case 4376: /* module 17 call 24 */ + case 4371: /* module 17 call 19 */ switch (itemIdx) { - case 0: /* staking_rebond_V4 - amount */; + case 0: /* staking_rebond_V7 - amount */; return _toStringCompactBalance( - &m->nested.staking_rebond_V4.amount, + &m->nested.staking_rebond_V7.amount, outValue, outValueLen, pageIdx, pageCount); default: @@ -8540,24 +8156,24 @@ parser_error_t _getMethod_ItemValue_V4( } case 8454: /* module 33 call 6 */ switch (itemIdx) { - case 0: /* pips_propose_V4 - proposal */; + case 0: /* pips_propose_V7 - proposal */; return _toStringProposal( - &m->nested.pips_propose_V4.proposal, + &m->nested.pips_propose_V7.proposal, outValue, outValueLen, pageIdx, pageCount); - case 1: /* pips_propose_V4 - deposit */; + case 1: /* pips_propose_V7 - deposit */; return _toStringBalance( - &m->nested.pips_propose_V4.deposit, + &m->nested.pips_propose_V7.deposit, outValue, outValueLen, pageIdx, pageCount); - case 2: /* pips_propose_V4 - url */; + case 2: /* pips_propose_V7 - url */; return _toStringOptionUrl( - &m->nested.pips_propose_V4.url, + &m->nested.pips_propose_V7.url, outValue, outValueLen, pageIdx, pageCount); - case 3: /* pips_propose_V4 - description */; + case 3: /* pips_propose_V7 - description */; return _toStringOptionPipDescription( - &m->nested.pips_propose_V4.description, + &m->nested.pips_propose_V7.description, outValue, outValueLen, pageIdx, pageCount); default: @@ -8565,19 +8181,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 8455: /* module 33 call 7 */ switch (itemIdx) { - case 0: /* pips_vote_V4 - id */; + case 0: /* pips_vote_V7 - id */; return _toStringPipId( - &m->nested.pips_vote_V4.id, + &m->nested.pips_vote_V7.id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* pips_vote_V4 - aye_or_nay */; + case 1: /* pips_vote_V7 - aye_or_nay */; return _toStringbool( - &m->nested.pips_vote_V4.aye_or_nay, + &m->nested.pips_vote_V7.aye_or_nay, outValue, outValueLen, pageIdx, pageCount); - case 2: /* pips_vote_V4 - deposit */; + case 2: /* pips_vote_V7 - deposit */; return _toStringBalance( - &m->nested.pips_vote_V4.deposit, + &m->nested.pips_vote_V7.deposit, outValue, outValueLen, pageIdx, pageCount); default: @@ -8585,9 +8201,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 10496: /* module 41 call 0 */ switch (itemIdx) { - case 0: /* utility_batch_V4 - calls */; + case 0: /* utility_batch_V7 - calls */; return _toStringVecCall( - &m->nested.utility_batch_V4.calls, + &m->nested.utility_batch_V7.calls, outValue, outValueLen, pageIdx, pageCount); default: @@ -8595,9 +8211,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 10503: /* module 41 call 7 */ switch (itemIdx) { - case 0: /* utility_batch_atomic_V4 - calls */; + case 0: /* utility_batch_atomic_V7 - calls */; return _toStringVecCall( - &m->nested.utility_batch_atomic_V4.calls, + &m->nested.utility_batch_atomic_V7.calls, outValue, outValueLen, pageIdx, pageCount); default: @@ -8605,9 +8221,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 10504: /* module 41 call 8 */ switch (itemIdx) { - case 0: /* utility_batch_optimistic_V4 - calls */; + case 0: /* utility_batch_optimistic_V7 - calls */; return _toStringVecCall( - &m->nested.utility_batch_optimistic_V4.calls, + &m->nested.utility_batch_optimistic_V7.calls, outValue, outValueLen, pageIdx, pageCount); default: @@ -8615,31 +8231,31 @@ parser_error_t _getMethod_ItemValue_V4( } #ifdef SUBSTRATE_PARSER_FULL #ifndef TARGET_NANOS - case 6686: /* module 26 call 30 */ + case 6685: /* module 26 call 29 */ switch (itemIdx) { - case 0: /* asset_add_mandatory_mediators_V4 - ticker */; - return _toStringTicker( - &m->basic.asset_add_mandatory_mediators_V4.ticker, + case 0: /* asset_add_mandatory_mediators_V7 - asset_id */; + return _toStringAssetID( + &m->basic.asset_add_mandatory_mediators_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* asset_add_mandatory_mediators_V4 - mediators */; + case 1: /* asset_add_mandatory_mediators_V7 - mediators */; return _toStringBoundedBTreeSetIdentityIdMaxAssetMediators( - &m->basic.asset_add_mandatory_mediators_V4.mediators, + &m->basic.asset_add_mandatory_mediators_V7.mediators, outValue, outValueLen, pageIdx, pageCount); default: return parser_no_data; } - case 6687: /* module 26 call 31 */ + case 6686: /* module 26 call 30 */ switch (itemIdx) { - case 0: /* asset_remove_mandatory_mediators_V4 - ticker */; - return _toStringTicker( - &m->basic.asset_remove_mandatory_mediators_V4.ticker, + case 0: /* asset_remove_mandatory_mediators_V7 - asset_id */; + return _toStringAssetID( + &m->basic.asset_remove_mandatory_mediators_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* asset_remove_mandatory_mediators_V4 - mediators */; + case 1: /* asset_remove_mandatory_mediators_V7 - mediators */; return _toStringBoundedBTreeSetIdentityIdMaxAssetMediators( - &m->basic.asset_remove_mandatory_mediators_V4.mediators, + &m->basic.asset_remove_mandatory_mediators_V7.mediators, outValue, outValueLen, pageIdx, pageCount); default: @@ -8647,9 +8263,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 7680: /* module 30 call 0 */ switch (itemIdx) { - case 0: /* corporateaction_set_max_details_length_V4 - length */; + case 0: /* corporateaction_set_max_details_length_V7 - length */; return _toStringu32( - &m->nested.corporateaction_set_max_details_length_V4.length, + &m->nested.corporateaction_set_max_details_length_V7.length, outValue, outValueLen, pageIdx, pageCount); default: @@ -8657,14 +8273,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 7681: /* module 30 call 1 */ switch (itemIdx) { - case 0: /* corporateaction_set_default_targets_V4 - ticker */; - return _toStringTicker( - &m->nested.corporateaction_set_default_targets_V4.ticker, + case 0: /* corporateaction_set_default_targets_V7 - asset_id */; + return _toStringAssetID( + &m->nested.corporateaction_set_default_targets_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* corporateaction_set_default_targets_V4 - targets */; + case 1: /* corporateaction_set_default_targets_V7 - targets */; return _toStringTargetIdentities( - &m->nested.corporateaction_set_default_targets_V4.targets, + &m->nested.corporateaction_set_default_targets_V7.targets, outValue, outValueLen, pageIdx, pageCount); default: @@ -8672,14 +8288,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 7682: /* module 30 call 2 */ switch (itemIdx) { - case 0: /* corporateaction_set_default_withholding_tax_V4 - ticker */; - return _toStringTicker( - &m->nested.corporateaction_set_default_withholding_tax_V4.ticker, + case 0: /* corporateaction_set_default_withholding_tax_V7 - asset_id */; + return _toStringAssetID( + &m->nested.corporateaction_set_default_withholding_tax_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* corporateaction_set_default_withholding_tax_V4 - tax */; + case 1: /* corporateaction_set_default_withholding_tax_V7 - tax */; return _toStringTax( - &m->nested.corporateaction_set_default_withholding_tax_V4.tax, + &m->nested.corporateaction_set_default_withholding_tax_V7.tax, outValue, outValueLen, pageIdx, pageCount); default: @@ -8687,19 +8303,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 7683: /* module 30 call 3 */ switch (itemIdx) { - case 0: /* corporateaction_set_did_withholding_tax_V4 - ticker */; - return _toStringTicker( - &m->nested.corporateaction_set_did_withholding_tax_V4.ticker, + case 0: /* corporateaction_set_did_withholding_tax_V7 - asset_id */; + return _toStringAssetID( + &m->nested.corporateaction_set_did_withholding_tax_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* corporateaction_set_did_withholding_tax_V4 - taxed_did */; + case 1: /* corporateaction_set_did_withholding_tax_V7 - taxed_did */; return _toStringIdentityId( - &m->nested.corporateaction_set_did_withholding_tax_V4.taxed_did, + &m->nested.corporateaction_set_did_withholding_tax_V7.taxed_did, outValue, outValueLen, pageIdx, pageCount); - case 2: /* corporateaction_set_did_withholding_tax_V4 - tax */; + case 2: /* corporateaction_set_did_withholding_tax_V7 - tax */; return _toStringOptionTax( - &m->nested.corporateaction_set_did_withholding_tax_V4.tax, + &m->nested.corporateaction_set_did_withholding_tax_V7.tax, outValue, outValueLen, pageIdx, pageCount); default: @@ -8707,44 +8323,44 @@ parser_error_t _getMethod_ItemValue_V4( } case 7684: /* module 30 call 4 */ switch (itemIdx) { - case 0: /* corporateaction_initiate_corporate_action_V4 - ticker */; - return _toStringTicker( - &m->nested.corporateaction_initiate_corporate_action_V4.ticker, + case 0: /* corporateaction_initiate_corporate_action_V7 - asset_id */; + return _toStringAssetID( + &m->nested.corporateaction_initiate_corporate_action_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* corporateaction_initiate_corporate_action_V4 - kind */; + case 1: /* corporateaction_initiate_corporate_action_V7 - kind */; return _toStringCAKind( - &m->nested.corporateaction_initiate_corporate_action_V4.kind, + &m->nested.corporateaction_initiate_corporate_action_V7.kind, outValue, outValueLen, pageIdx, pageCount); - case 2: /* corporateaction_initiate_corporate_action_V4 - decl_date */; + case 2: /* corporateaction_initiate_corporate_action_V7 - decl_date */; return _toStringMoment( - &m->nested.corporateaction_initiate_corporate_action_V4.decl_date, + &m->nested.corporateaction_initiate_corporate_action_V7.decl_date, outValue, outValueLen, pageIdx, pageCount); - case 3: /* corporateaction_initiate_corporate_action_V4 - record_date */; + case 3: /* corporateaction_initiate_corporate_action_V7 - record_date */; return _toStringOptionRecordDateSpec( - &m->nested.corporateaction_initiate_corporate_action_V4.record_date, + &m->nested.corporateaction_initiate_corporate_action_V7.record_date, outValue, outValueLen, pageIdx, pageCount); - case 4: /* corporateaction_initiate_corporate_action_V4 - details */; + case 4: /* corporateaction_initiate_corporate_action_V7 - details */; return _toStringCADetails( - &m->nested.corporateaction_initiate_corporate_action_V4.details, + &m->nested.corporateaction_initiate_corporate_action_V7.details, outValue, outValueLen, pageIdx, pageCount); - case 5: /* corporateaction_initiate_corporate_action_V4 - targets */; + case 5: /* corporateaction_initiate_corporate_action_V7 - targets */; return _toStringOptionTargetIdentities( - &m->nested.corporateaction_initiate_corporate_action_V4.targets, + &m->nested.corporateaction_initiate_corporate_action_V7.targets, outValue, outValueLen, pageIdx, pageCount); - case 6: /* corporateaction_initiate_corporate_action_V4 - default_withholding_tax */; + case 6: /* corporateaction_initiate_corporate_action_V7 - default_withholding_tax */; return _toStringOptionTax( - &m->nested.corporateaction_initiate_corporate_action_V4.default_withholding_tax, + &m->nested.corporateaction_initiate_corporate_action_V7.default_withholding_tax, outValue, outValueLen, pageIdx, pageCount); - case 7: /* corporateaction_initiate_corporate_action_V4 - withholding_tax */; + case 7: /* corporateaction_initiate_corporate_action_V7 - withholding_tax */; return _toStringOptionVecTupleIdentityIdTax( - &m->nested.corporateaction_initiate_corporate_action_V4.withholding_tax, + &m->nested.corporateaction_initiate_corporate_action_V7.withholding_tax, outValue, outValueLen, pageIdx, pageCount); default: @@ -8752,14 +8368,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 7685: /* module 30 call 5 */ switch (itemIdx) { - case 0: /* corporateaction_link_ca_doc_V4 - id */; + case 0: /* corporateaction_link_ca_doc_V7 - id */; return _toStringCAId( - &m->nested.corporateaction_link_ca_doc_V4.id, + &m->nested.corporateaction_link_ca_doc_V7.id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* corporateaction_link_ca_doc_V4 - docs */; + case 1: /* corporateaction_link_ca_doc_V7 - docs */; return _toStringVecDocumentId( - &m->nested.corporateaction_link_ca_doc_V4.docs, + &m->nested.corporateaction_link_ca_doc_V7.docs, outValue, outValueLen, pageIdx, pageCount); default: @@ -8767,9 +8383,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 7686: /* module 30 call 6 */ switch (itemIdx) { - case 0: /* corporateaction_remove_ca_V4 - ca_id */; + case 0: /* corporateaction_remove_ca_V7 - ca_id */; return _toStringCAId( - &m->nested.corporateaction_remove_ca_V4.ca_id, + &m->nested.corporateaction_remove_ca_V7.ca_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -8777,14 +8393,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 7687: /* module 30 call 7 */ switch (itemIdx) { - case 0: /* corporateaction_change_record_date_V4 - ca_id */; + case 0: /* corporateaction_change_record_date_V7 - ca_id */; return _toStringCAId( - &m->nested.corporateaction_change_record_date_V4.ca_id, + &m->nested.corporateaction_change_record_date_V7.ca_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* corporateaction_change_record_date_V4 - record_date */; + case 1: /* corporateaction_change_record_date_V7 - record_date */; return _toStringOptionRecordDateSpec( - &m->nested.corporateaction_change_record_date_V4.record_date, + &m->nested.corporateaction_change_record_date_V7.record_date, outValue, outValueLen, pageIdx, pageCount); default: @@ -8792,39 +8408,39 @@ parser_error_t _getMethod_ItemValue_V4( } case 7688: /* module 30 call 8 */ switch (itemIdx) { - case 0: /* corporateaction_initiate_corporate_action_and_distribute_V4 - ca_args */; + case 0: /* corporateaction_initiate_corporate_action_and_distribute_V7 - ca_args */; return _toStringInitiateCorporateActionArgs( - &m->nested.corporateaction_initiate_corporate_action_and_distribute_V4.ca_args, + &m->nested.corporateaction_initiate_corporate_action_and_distribute_V7.ca_args, outValue, outValueLen, pageIdx, pageCount); - case 1: /* corporateaction_initiate_corporate_action_and_distribute_V4 - portfolio */; + case 1: /* corporateaction_initiate_corporate_action_and_distribute_V7 - portfolio */; return _toStringOptionPortfolioNumber( - &m->nested.corporateaction_initiate_corporate_action_and_distribute_V4.portfolio, + &m->nested.corporateaction_initiate_corporate_action_and_distribute_V7.portfolio, outValue, outValueLen, pageIdx, pageCount); - case 2: /* corporateaction_initiate_corporate_action_and_distribute_V4 - currency */; - return _toStringTicker( - &m->nested.corporateaction_initiate_corporate_action_and_distribute_V4.currency, + case 2: /* corporateaction_initiate_corporate_action_and_distribute_V7 - currency */; + return _toStringAssetID( + &m->nested.corporateaction_initiate_corporate_action_and_distribute_V7.currency, outValue, outValueLen, pageIdx, pageCount); - case 3: /* corporateaction_initiate_corporate_action_and_distribute_V4 - per_share */; + case 3: /* corporateaction_initiate_corporate_action_and_distribute_V7 - per_share */; return _toStringBalance( - &m->nested.corporateaction_initiate_corporate_action_and_distribute_V4.per_share, + &m->nested.corporateaction_initiate_corporate_action_and_distribute_V7.per_share, outValue, outValueLen, pageIdx, pageCount); - case 4: /* corporateaction_initiate_corporate_action_and_distribute_V4 - amount */; + case 4: /* corporateaction_initiate_corporate_action_and_distribute_V7 - amount */; return _toStringBalance( - &m->nested.corporateaction_initiate_corporate_action_and_distribute_V4.amount, + &m->nested.corporateaction_initiate_corporate_action_and_distribute_V7.amount, outValue, outValueLen, pageIdx, pageCount); - case 5: /* corporateaction_initiate_corporate_action_and_distribute_V4 - payment_at */; + case 5: /* corporateaction_initiate_corporate_action_and_distribute_V7 - payment_at */; return _toStringMoment( - &m->nested.corporateaction_initiate_corporate_action_and_distribute_V4.payment_at, + &m->nested.corporateaction_initiate_corporate_action_and_distribute_V7.payment_at, outValue, outValueLen, pageIdx, pageCount); - case 6: /* corporateaction_initiate_corporate_action_and_distribute_V4 - expires_at */; + case 6: /* corporateaction_initiate_corporate_action_and_distribute_V7 - expires_at */; return _toStringOptionMoment( - &m->nested.corporateaction_initiate_corporate_action_and_distribute_V4.expires_at, + &m->nested.corporateaction_initiate_corporate_action_and_distribute_V7.expires_at, outValue, outValueLen, pageIdx, pageCount); default: @@ -8832,24 +8448,24 @@ parser_error_t _getMethod_ItemValue_V4( } case 7936: /* module 31 call 0 */ switch (itemIdx) { - case 0: /* corporateballot_attach_ballot_V4 - ca_id */; + case 0: /* corporateballot_attach_ballot_V7 - ca_id */; return _toStringCAId( - &m->nested.corporateballot_attach_ballot_V4.ca_id, + &m->nested.corporateballot_attach_ballot_V7.ca_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* corporateballot_attach_ballot_V4 - range */; + case 1: /* corporateballot_attach_ballot_V7 - range */; return _toStringBallotTimeRange( - &m->nested.corporateballot_attach_ballot_V4.range, + &m->nested.corporateballot_attach_ballot_V7.range, outValue, outValueLen, pageIdx, pageCount); - case 2: /* corporateballot_attach_ballot_V4 - meta */; + case 2: /* corporateballot_attach_ballot_V7 - meta */; return _toStringBallotMeta( - &m->nested.corporateballot_attach_ballot_V4.meta, + &m->nested.corporateballot_attach_ballot_V7.meta, outValue, outValueLen, pageIdx, pageCount); - case 3: /* corporateballot_attach_ballot_V4 - rcv */; + case 3: /* corporateballot_attach_ballot_V7 - rcv */; return _toStringbool( - &m->nested.corporateballot_attach_ballot_V4.rcv, + &m->nested.corporateballot_attach_ballot_V7.rcv, outValue, outValueLen, pageIdx, pageCount); default: @@ -8857,14 +8473,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 7937: /* module 31 call 1 */ switch (itemIdx) { - case 0: /* corporateballot_vote_V4 - ca_id */; + case 0: /* corporateballot_vote_V7 - ca_id */; return _toStringCAId( - &m->nested.corporateballot_vote_V4.ca_id, + &m->nested.corporateballot_vote_V7.ca_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* corporateballot_vote_V4 - votes */; + case 1: /* corporateballot_vote_V7 - votes */; return _toStringVecBallotVote( - &m->nested.corporateballot_vote_V4.votes, + &m->nested.corporateballot_vote_V7.votes, outValue, outValueLen, pageIdx, pageCount); default: @@ -8872,14 +8488,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 7938: /* module 31 call 2 */ switch (itemIdx) { - case 0: /* corporateballot_change_end_V4 - ca_id */; + case 0: /* corporateballot_change_end_V7 - ca_id */; return _toStringCAId( - &m->nested.corporateballot_change_end_V4.ca_id, + &m->nested.corporateballot_change_end_V7.ca_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* corporateballot_change_end_V4 - end */; + case 1: /* corporateballot_change_end_V7 - end */; return _toStringMoment( - &m->nested.corporateballot_change_end_V4.end, + &m->nested.corporateballot_change_end_V7.end, outValue, outValueLen, pageIdx, pageCount); default: @@ -8887,14 +8503,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 7939: /* module 31 call 3 */ switch (itemIdx) { - case 0: /* corporateballot_change_meta_V4 - ca_id */; + case 0: /* corporateballot_change_meta_V7 - ca_id */; return _toStringCAId( - &m->nested.corporateballot_change_meta_V4.ca_id, + &m->nested.corporateballot_change_meta_V7.ca_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* corporateballot_change_meta_V4 - meta */; + case 1: /* corporateballot_change_meta_V7 - meta */; return _toStringBallotMeta( - &m->nested.corporateballot_change_meta_V4.meta, + &m->nested.corporateballot_change_meta_V7.meta, outValue, outValueLen, pageIdx, pageCount); default: @@ -8902,14 +8518,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 7940: /* module 31 call 4 */ switch (itemIdx) { - case 0: /* corporateballot_change_rcv_V4 - ca_id */; + case 0: /* corporateballot_change_rcv_V7 - ca_id */; return _toStringCAId( - &m->nested.corporateballot_change_rcv_V4.ca_id, + &m->nested.corporateballot_change_rcv_V7.ca_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* corporateballot_change_rcv_V4 - rcv */; + case 1: /* corporateballot_change_rcv_V7 - rcv */; return _toStringbool( - &m->nested.corporateballot_change_rcv_V4.rcv, + &m->nested.corporateballot_change_rcv_V7.rcv, outValue, outValueLen, pageIdx, pageCount); default: @@ -8917,9 +8533,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 7941: /* module 31 call 5 */ switch (itemIdx) { - case 0: /* corporateballot_remove_ballot_V4 - ca_id */; + case 0: /* corporateballot_remove_ballot_V7 - ca_id */; return _toStringCAId( - &m->nested.corporateballot_remove_ballot_V4.ca_id, + &m->nested.corporateballot_remove_ballot_V7.ca_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -8927,9 +8543,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 8462: /* module 33 call 14 */ switch (itemIdx) { - case 0: /* pips_enact_snapshot_results_V4 - results */; + case 0: /* pips_enact_snapshot_results_V7 - results */; return _toStringVecTuplePipIdSnapshotResult( - &m->nested.pips_enact_snapshot_results_V4.results, + &m->nested.pips_enact_snapshot_results_V7.results, outValue, outValueLen, pageIdx, pageCount); default: @@ -8937,9 +8553,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 8712: /* module 34 call 8 */ switch (itemIdx) { - case 0: /* portfolio_allow_identity_to_create_portfolios_V4 - trusted_identity */; + case 0: /* portfolio_allow_identity_to_create_portfolios_V7 - trusted_identity */; return _toStringIdentityId( - &m->basic.portfolio_allow_identity_to_create_portfolios_V4.trusted_identity, + &m->basic.portfolio_allow_identity_to_create_portfolios_V7.trusted_identity, outValue, outValueLen, pageIdx, pageCount); default: @@ -8947,9 +8563,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 8713: /* module 34 call 9 */ switch (itemIdx) { - case 0: /* portfolio_revoke_create_portfolios_permission_V4 - identity */; + case 0: /* portfolio_revoke_create_portfolios_permission_V7 - identity */; return _toStringIdentityId( - &m->basic.portfolio_revoke_create_portfolios_permission_V4.identity, + &m->basic.portfolio_revoke_create_portfolios_permission_V7.identity, outValue, outValueLen, pageIdx, pageCount); default: @@ -8957,14 +8573,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 8714: /* module 34 call 10 */ switch (itemIdx) { - case 0: /* portfolio_create_custody_portfolio_V4 - portfolio_owner_id */; + case 0: /* portfolio_create_custody_portfolio_V7 - portfolio_owner_id */; return _toStringIdentityId( - &m->basic.portfolio_create_custody_portfolio_V4.portfolio_owner_id, + &m->basic.portfolio_create_custody_portfolio_V7.portfolio_owner_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* portfolio_create_custody_portfolio_V4 - portfolio_name */; + case 1: /* portfolio_create_custody_portfolio_V7 - portfolio_name */; return _toStringPortfolioName( - &m->basic.portfolio_create_custody_portfolio_V4.portfolio_name, + &m->basic.portfolio_create_custody_portfolio_V7.portfolio_name, outValue, outValueLen, pageIdx, pageCount); default: @@ -8972,24 +8588,24 @@ parser_error_t _getMethod_ItemValue_V4( } case 9487: /* module 37 call 15 */ switch (itemIdx) { - case 0: /* settlement_affirm_with_receipts_with_count_V4 - id */; + case 0: /* settlement_affirm_with_receipts_with_count_V7 - id */; return _toStringInstructionId( - &m->basic.settlement_affirm_with_receipts_with_count_V4.id, + &m->basic.settlement_affirm_with_receipts_with_count_V7.id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* settlement_affirm_with_receipts_with_count_V4 - receipt_details */; + case 1: /* settlement_affirm_with_receipts_with_count_V7 - receipt_details */; return _toStringVecReceiptDetails( - &m->basic.settlement_affirm_with_receipts_with_count_V4.receipt_details, + &m->basic.settlement_affirm_with_receipts_with_count_V7.receipt_details, outValue, outValueLen, pageIdx, pageCount); - case 2: /* settlement_affirm_with_receipts_with_count_V4 - portfolios */; + case 2: /* settlement_affirm_with_receipts_with_count_V7 - portfolios */; return _toStringVecPortfolioId( - &m->basic.settlement_affirm_with_receipts_with_count_V4.portfolios, + &m->basic.settlement_affirm_with_receipts_with_count_V7.portfolios, outValue, outValueLen, pageIdx, pageCount); - case 3: /* settlement_affirm_with_receipts_with_count_V4 - number_of_assets */; + case 3: /* settlement_affirm_with_receipts_with_count_V7 - number_of_assets */; return _toStringOptionAffirmationCount( - &m->basic.settlement_affirm_with_receipts_with_count_V4.number_of_assets, + &m->basic.settlement_affirm_with_receipts_with_count_V7.number_of_assets, outValue, outValueLen, pageIdx, pageCount); default: @@ -8997,19 +8613,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 9488: /* module 37 call 16 */ switch (itemIdx) { - case 0: /* settlement_affirm_instruction_with_count_V4 - id */; + case 0: /* settlement_affirm_instruction_with_count_V7 - id */; return _toStringInstructionId( - &m->basic.settlement_affirm_instruction_with_count_V4.id, + &m->basic.settlement_affirm_instruction_with_count_V7.id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* settlement_affirm_instruction_with_count_V4 - portfolios */; + case 1: /* settlement_affirm_instruction_with_count_V7 - portfolios */; return _toStringVecPortfolioId( - &m->basic.settlement_affirm_instruction_with_count_V4.portfolios, + &m->basic.settlement_affirm_instruction_with_count_V7.portfolios, outValue, outValueLen, pageIdx, pageCount); - case 2: /* settlement_affirm_instruction_with_count_V4 - number_of_assets */; + case 2: /* settlement_affirm_instruction_with_count_V7 - number_of_assets */; return _toStringOptionAffirmationCount( - &m->basic.settlement_affirm_instruction_with_count_V4.number_of_assets, + &m->basic.settlement_affirm_instruction_with_count_V7.number_of_assets, outValue, outValueLen, pageIdx, pageCount); default: @@ -9017,19 +8633,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 9489: /* module 37 call 17 */ switch (itemIdx) { - case 0: /* settlement_reject_instruction_with_count_V4 - id */; + case 0: /* settlement_reject_instruction_with_count_V7 - id */; return _toStringInstructionId( - &m->basic.settlement_reject_instruction_with_count_V4.id, + &m->basic.settlement_reject_instruction_with_count_V7.id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* settlement_reject_instruction_with_count_V4 - portfolio */; + case 1: /* settlement_reject_instruction_with_count_V7 - portfolio */; return _toStringPortfolioId( - &m->basic.settlement_reject_instruction_with_count_V4.portfolio, + &m->basic.settlement_reject_instruction_with_count_V7.portfolio, outValue, outValueLen, pageIdx, pageCount); - case 2: /* settlement_reject_instruction_with_count_V4 - number_of_assets */; + case 2: /* settlement_reject_instruction_with_count_V7 - number_of_assets */; return _toStringOptionAssetCount( - &m->basic.settlement_reject_instruction_with_count_V4.number_of_assets, + &m->basic.settlement_reject_instruction_with_count_V7.number_of_assets, outValue, outValueLen, pageIdx, pageCount); default: @@ -9037,19 +8653,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 9490: /* module 37 call 18 */ switch (itemIdx) { - case 0: /* settlement_withdraw_affirmation_with_count_V4 - id */; + case 0: /* settlement_withdraw_affirmation_with_count_V7 - id */; return _toStringInstructionId( - &m->basic.settlement_withdraw_affirmation_with_count_V4.id, + &m->basic.settlement_withdraw_affirmation_with_count_V7.id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* settlement_withdraw_affirmation_with_count_V4 - portfolios */; + case 1: /* settlement_withdraw_affirmation_with_count_V7 - portfolios */; return _toStringVecPortfolioId( - &m->basic.settlement_withdraw_affirmation_with_count_V4.portfolios, + &m->basic.settlement_withdraw_affirmation_with_count_V7.portfolios, outValue, outValueLen, pageIdx, pageCount); - case 2: /* settlement_withdraw_affirmation_with_count_V4 - number_of_assets */; + case 2: /* settlement_withdraw_affirmation_with_count_V7 - number_of_assets */; return _toStringOptionAffirmationCount( - &m->basic.settlement_withdraw_affirmation_with_count_V4.number_of_assets, + &m->basic.settlement_withdraw_affirmation_with_count_V7.number_of_assets, outValue, outValueLen, pageIdx, pageCount); default: @@ -9057,39 +8673,39 @@ parser_error_t _getMethod_ItemValue_V4( } case 9491: /* module 37 call 19 */ switch (itemIdx) { - case 0: /* settlement_add_instruction_with_mediators_V4 - venue_id */; - return _toStringVenueId( - &m->basic.settlement_add_instruction_with_mediators_V4.venue_id, + case 0: /* settlement_add_instruction_with_mediators_V7 - venue_id */; + return _toStringOptionVenueId( + &m->basic.settlement_add_instruction_with_mediators_V7.venue_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* settlement_add_instruction_with_mediators_V4 - settlement_type */; + case 1: /* settlement_add_instruction_with_mediators_V7 - settlement_type */; return _toStringSettlementTypeBlockNumber( - &m->basic.settlement_add_instruction_with_mediators_V4.settlement_type, + &m->basic.settlement_add_instruction_with_mediators_V7.settlement_type, outValue, outValueLen, pageIdx, pageCount); - case 2: /* settlement_add_instruction_with_mediators_V4 - trade_date */; + case 2: /* settlement_add_instruction_with_mediators_V7 - trade_date */; return _toStringOptionMoment( - &m->basic.settlement_add_instruction_with_mediators_V4.trade_date, + &m->basic.settlement_add_instruction_with_mediators_V7.trade_date, outValue, outValueLen, pageIdx, pageCount); - case 3: /* settlement_add_instruction_with_mediators_V4 - value_date */; + case 3: /* settlement_add_instruction_with_mediators_V7 - value_date */; return _toStringOptionMoment( - &m->basic.settlement_add_instruction_with_mediators_V4.value_date, + &m->basic.settlement_add_instruction_with_mediators_V7.value_date, outValue, outValueLen, pageIdx, pageCount); - case 4: /* settlement_add_instruction_with_mediators_V4 - legs */; + case 4: /* settlement_add_instruction_with_mediators_V7 - legs */; return _toStringVecLeg( - &m->basic.settlement_add_instruction_with_mediators_V4.legs, + &m->basic.settlement_add_instruction_with_mediators_V7.legs, outValue, outValueLen, pageIdx, pageCount); - case 5: /* settlement_add_instruction_with_mediators_V4 - instruction_memo */; + case 5: /* settlement_add_instruction_with_mediators_V7 - instruction_memo */; return _toStringOptionMemo( - &m->basic.settlement_add_instruction_with_mediators_V4.instruction_memo, + &m->basic.settlement_add_instruction_with_mediators_V7.instruction_memo, outValue, outValueLen, pageIdx, pageCount); - case 6: /* settlement_add_instruction_with_mediators_V4 - mediators */; + case 6: /* settlement_add_instruction_with_mediators_V7 - mediators */; return _toStringBoundedBTreeSetIdentityIdMaxInstructionMediators( - &m->basic.settlement_add_instruction_with_mediators_V4.mediators, + &m->basic.settlement_add_instruction_with_mediators_V7.mediators, outValue, outValueLen, pageIdx, pageCount); default: @@ -9097,44 +8713,44 @@ parser_error_t _getMethod_ItemValue_V4( } case 9492: /* module 37 call 20 */ switch (itemIdx) { - case 0: /* settlement_add_and_affirm_with_mediators_V4 - venue_id */; - return _toStringVenueId( - &m->basic.settlement_add_and_affirm_with_mediators_V4.venue_id, + case 0: /* settlement_add_and_affirm_with_mediators_V7 - venue_id */; + return _toStringOptionVenueId( + &m->basic.settlement_add_and_affirm_with_mediators_V7.venue_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* settlement_add_and_affirm_with_mediators_V4 - settlement_type */; + case 1: /* settlement_add_and_affirm_with_mediators_V7 - settlement_type */; return _toStringSettlementTypeBlockNumber( - &m->basic.settlement_add_and_affirm_with_mediators_V4.settlement_type, + &m->basic.settlement_add_and_affirm_with_mediators_V7.settlement_type, outValue, outValueLen, pageIdx, pageCount); - case 2: /* settlement_add_and_affirm_with_mediators_V4 - trade_date */; + case 2: /* settlement_add_and_affirm_with_mediators_V7 - trade_date */; return _toStringOptionMoment( - &m->basic.settlement_add_and_affirm_with_mediators_V4.trade_date, + &m->basic.settlement_add_and_affirm_with_mediators_V7.trade_date, outValue, outValueLen, pageIdx, pageCount); - case 3: /* settlement_add_and_affirm_with_mediators_V4 - value_date */; + case 3: /* settlement_add_and_affirm_with_mediators_V7 - value_date */; return _toStringOptionMoment( - &m->basic.settlement_add_and_affirm_with_mediators_V4.value_date, + &m->basic.settlement_add_and_affirm_with_mediators_V7.value_date, outValue, outValueLen, pageIdx, pageCount); - case 4: /* settlement_add_and_affirm_with_mediators_V4 - legs */; + case 4: /* settlement_add_and_affirm_with_mediators_V7 - legs */; return _toStringVecLeg( - &m->basic.settlement_add_and_affirm_with_mediators_V4.legs, + &m->basic.settlement_add_and_affirm_with_mediators_V7.legs, outValue, outValueLen, pageIdx, pageCount); - case 5: /* settlement_add_and_affirm_with_mediators_V4 - portfolios */; + case 5: /* settlement_add_and_affirm_with_mediators_V7 - portfolios */; return _toStringVecPortfolioId( - &m->basic.settlement_add_and_affirm_with_mediators_V4.portfolios, + &m->basic.settlement_add_and_affirm_with_mediators_V7.portfolios, outValue, outValueLen, pageIdx, pageCount); - case 6: /* settlement_add_and_affirm_with_mediators_V4 - instruction_memo */; + case 6: /* settlement_add_and_affirm_with_mediators_V7 - instruction_memo */; return _toStringOptionMemo( - &m->basic.settlement_add_and_affirm_with_mediators_V4.instruction_memo, + &m->basic.settlement_add_and_affirm_with_mediators_V7.instruction_memo, outValue, outValueLen, pageIdx, pageCount); - case 7: /* settlement_add_and_affirm_with_mediators_V4 - mediators */; + case 7: /* settlement_add_and_affirm_with_mediators_V7 - mediators */; return _toStringBoundedBTreeSetIdentityIdMaxInstructionMediators( - &m->basic.settlement_add_and_affirm_with_mediators_V4.mediators, + &m->basic.settlement_add_and_affirm_with_mediators_V7.mediators, outValue, outValueLen, pageIdx, pageCount); default: @@ -9142,14 +8758,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 9493: /* module 37 call 21 */ switch (itemIdx) { - case 0: /* settlement_affirm_instruction_as_mediator_V4 - instruction_id */; + case 0: /* settlement_affirm_instruction_as_mediator_V7 - instruction_id */; return _toStringInstructionId( - &m->basic.settlement_affirm_instruction_as_mediator_V4.instruction_id, + &m->basic.settlement_affirm_instruction_as_mediator_V7.instruction_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* settlement_affirm_instruction_as_mediator_V4 - expiry */; + case 1: /* settlement_affirm_instruction_as_mediator_V7 - expiry */; return _toStringOptionMoment( - &m->basic.settlement_affirm_instruction_as_mediator_V4.expiry, + &m->basic.settlement_affirm_instruction_as_mediator_V7.expiry, outValue, outValueLen, pageIdx, pageCount); default: @@ -9157,9 +8773,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 9494: /* module 37 call 22 */ switch (itemIdx) { - case 0: /* settlement_withdraw_affirmation_as_mediator_V4 - instruction_id */; + case 0: /* settlement_withdraw_affirmation_as_mediator_V7 - instruction_id */; return _toStringInstructionId( - &m->basic.settlement_withdraw_affirmation_as_mediator_V4.instruction_id, + &m->basic.settlement_withdraw_affirmation_as_mediator_V7.instruction_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -9167,14 +8783,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 9495: /* module 37 call 23 */ switch (itemIdx) { - case 0: /* settlement_reject_instruction_as_mediator_V4 - instruction_id */; + case 0: /* settlement_reject_instruction_as_mediator_V7 - instruction_id */; return _toStringInstructionId( - &m->basic.settlement_reject_instruction_as_mediator_V4.instruction_id, + &m->basic.settlement_reject_instruction_as_mediator_V7.instruction_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* settlement_reject_instruction_as_mediator_V4 - number_of_assets */; + case 1: /* settlement_reject_instruction_as_mediator_V7 - number_of_assets */; return _toStringOptionAssetCount( - &m->basic.settlement_reject_instruction_as_mediator_V4.number_of_assets, + &m->basic.settlement_reject_instruction_as_mediator_V7.number_of_assets, outValue, outValueLen, pageIdx, pageCount); default: @@ -9182,24 +8798,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 12547: /* module 49 call 3 */ switch (itemIdx) { - case 0: /* nft_controller_transfer_V4 - ticker */; - return _toStringTicker( - &m->basic.nft_controller_transfer_V4.ticker, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* nft_controller_transfer_V4 - nfts */; + case 0: /* nft_controller_transfer_V7 - nfts */; return _toStringNFTs( - &m->basic.nft_controller_transfer_V4.nfts, + &m->basic.nft_controller_transfer_V7.nfts, outValue, outValueLen, pageIdx, pageCount); - case 2: /* nft_controller_transfer_V4 - source_portfolio */; + case 1: /* nft_controller_transfer_V7 - source_portfolio */; return _toStringPortfolioId( - &m->basic.nft_controller_transfer_V4.source_portfolio, + &m->basic.nft_controller_transfer_V7.source_portfolio, outValue, outValueLen, pageIdx, pageCount); - case 3: /* nft_controller_transfer_V4 - callers_portfolio_kind */; + case 2: /* nft_controller_transfer_V7 - callers_portfolio_kind */; return _toStringPortfolioKind( - &m->basic.nft_controller_transfer_V4.callers_portfolio_kind, + &m->basic.nft_controller_transfer_V7.callers_portfolio_kind, outValue, outValueLen, pageIdx, pageCount); default: @@ -9208,9 +8819,9 @@ parser_error_t _getMethod_ItemValue_V4( #endif case 0: /* module 0 call 0 */ switch (itemIdx) { - case 0: /* system_remark_V4 - remark */; + case 0: /* system_remark_V7 - remark */; return _toStringBytes( - &m->nested.system_remark_V4.remark, + &m->nested.system_remark_V7.remark, outValue, outValueLen, pageIdx, pageCount); default: @@ -9218,9 +8829,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 1: /* module 0 call 1 */ switch (itemIdx) { - case 0: /* system_set_heap_pages_V4 - pages */; + case 0: /* system_set_heap_pages_V7 - pages */; return _toStringu64( - &m->nested.system_set_heap_pages_V4.pages, + &m->nested.system_set_heap_pages_V7.pages, outValue, outValueLen, pageIdx, pageCount); default: @@ -9228,9 +8839,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 2: /* module 0 call 2 */ switch (itemIdx) { - case 0: /* system_set_code_V4 - code */; + case 0: /* system_set_code_V7 - code */; return _toStringBytes( - &m->nested.system_set_code_V4.code, + &m->nested.system_set_code_V7.code, outValue, outValueLen, pageIdx, pageCount); default: @@ -9238,9 +8849,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 3: /* module 0 call 3 */ switch (itemIdx) { - case 0: /* system_set_code_without_checks_V4 - code */; + case 0: /* system_set_code_without_checks_V7 - code */; return _toStringVecu8( - &m->nested.system_set_code_without_checks_V4.code, + &m->nested.system_set_code_without_checks_V7.code, outValue, outValueLen, pageIdx, pageCount); default: @@ -9248,9 +8859,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 7: /* module 0 call 7 */ switch (itemIdx) { - case 0: /* system_remark_with_event_V4 - remark */; + case 0: /* system_remark_with_event_V7 - remark */; return _toStringBytes( - &m->nested.system_remark_with_event_V4.remark, + &m->nested.system_remark_with_event_V7.remark, outValue, outValueLen, pageIdx, pageCount); default: @@ -9258,9 +8869,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 512: /* module 2 call 0 */ switch (itemIdx) { - case 0: /* timestamp_set_V4 - now */; + case 0: /* timestamp_set_V7 - now */; return _toStringCompactu64( - &m->nested.timestamp_set_V4.now, + &m->nested.timestamp_set_V7.now, outValue, outValueLen, pageIdx, pageCount); default: @@ -9268,9 +8879,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 768: /* module 3 call 0 */ switch (itemIdx) { - case 0: /* indices_claim_V4 - index */; + case 0: /* indices_claim_V7 - index */; return _toStringAccountIndex( - &m->nested.indices_claim_V4.index, + &m->nested.indices_claim_V7.index, outValue, outValueLen, pageIdx, pageCount); default: @@ -9278,14 +8889,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 769: /* module 3 call 1 */ switch (itemIdx) { - case 0: /* indices_transfer_V4 - new_ */; + case 0: /* indices_transfer_V7 - new_ */; return _toStringAccountIdLookupOfT( - &m->nested.indices_transfer_V4.new_, + &m->nested.indices_transfer_V7.new_, outValue, outValueLen, pageIdx, pageCount); - case 1: /* indices_transfer_V4 - index */; + case 1: /* indices_transfer_V7 - index */; return _toStringAccountIndex( - &m->nested.indices_transfer_V4.index, + &m->nested.indices_transfer_V7.index, outValue, outValueLen, pageIdx, pageCount); default: @@ -9293,9 +8904,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 770: /* module 3 call 2 */ switch (itemIdx) { - case 0: /* indices_free_V4 - index */; + case 0: /* indices_free_V7 - index */; return _toStringAccountIndex( - &m->nested.indices_free_V4.index, + &m->nested.indices_free_V7.index, outValue, outValueLen, pageIdx, pageCount); default: @@ -9303,19 +8914,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 771: /* module 3 call 3 */ switch (itemIdx) { - case 0: /* indices_force_transfer_V4 - new_ */; + case 0: /* indices_force_transfer_V7 - new_ */; return _toStringAccountIdLookupOfT( - &m->nested.indices_force_transfer_V4.new_, + &m->nested.indices_force_transfer_V7.new_, outValue, outValueLen, pageIdx, pageCount); - case 1: /* indices_force_transfer_V4 - index */; + case 1: /* indices_force_transfer_V7 - index */; return _toStringAccountIndex( - &m->nested.indices_force_transfer_V4.index, + &m->nested.indices_force_transfer_V7.index, outValue, outValueLen, pageIdx, pageCount); - case 2: /* indices_force_transfer_V4 - freeze */; + case 2: /* indices_force_transfer_V7 - freeze */; return _toStringbool( - &m->nested.indices_force_transfer_V4.freeze, + &m->nested.indices_force_transfer_V7.freeze, outValue, outValueLen, pageIdx, pageCount); default: @@ -9323,9 +8934,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 772: /* module 3 call 4 */ switch (itemIdx) { - case 0: /* indices_freeze_V4 - index */; + case 0: /* indices_freeze_V7 - index */; return _toStringAccountIndex( - &m->nested.indices_freeze_V4.index, + &m->nested.indices_freeze_V7.index, outValue, outValueLen, pageIdx, pageCount); default: @@ -9333,9 +8944,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 1282: /* module 5 call 2 */ switch (itemIdx) { - case 0: /* balances_deposit_block_reward_reserve_balance_V4 - amount */; + case 0: /* balances_deposit_block_reward_reserve_balance_V7 - amount */; return _toStringCompactBalance( - &m->nested.balances_deposit_block_reward_reserve_balance_V4.amount, + &m->nested.balances_deposit_block_reward_reserve_balance_V7.amount, outValue, outValueLen, pageIdx, pageCount); default: @@ -9343,19 +8954,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 1283: /* module 5 call 3 */ switch (itemIdx) { - case 0: /* balances_set_balance_V4 - who */; + case 0: /* balances_set_balance_V7 - who */; return _toStringLookupasStaticLookupSource( - &m->nested.balances_set_balance_V4.who, + &m->nested.balances_set_balance_V7.who, outValue, outValueLen, pageIdx, pageCount); - case 1: /* balances_set_balance_V4 - new_free */; + case 1: /* balances_set_balance_V7 - new_free */; return _toStringCompactBalance( - &m->nested.balances_set_balance_V4.new_free, + &m->nested.balances_set_balance_V7.new_free, outValue, outValueLen, pageIdx, pageCount); - case 2: /* balances_set_balance_V4 - new_reserved */; + case 2: /* balances_set_balance_V7 - new_reserved */; return _toStringCompactBalance( - &m->nested.balances_set_balance_V4.new_reserved, + &m->nested.balances_set_balance_V7.new_reserved, outValue, outValueLen, pageIdx, pageCount); default: @@ -9363,19 +8974,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 1284: /* module 5 call 4 */ switch (itemIdx) { - case 0: /* balances_force_transfer_V4 - source */; + case 0: /* balances_force_transfer_V7 - source */; return _toStringLookupasStaticLookupSource( - &m->nested.balances_force_transfer_V4.source, + &m->nested.balances_force_transfer_V7.source, outValue, outValueLen, pageIdx, pageCount); - case 1: /* balances_force_transfer_V4 - dest */; + case 1: /* balances_force_transfer_V7 - dest */; return _toStringLookupasStaticLookupSource( - &m->nested.balances_force_transfer_V4.dest, + &m->nested.balances_force_transfer_V7.dest, outValue, outValueLen, pageIdx, pageCount); - case 2: /* balances_force_transfer_V4 - amount */; + case 2: /* balances_force_transfer_V7 - amount */; return _toStringCompactBalance( - &m->nested.balances_force_transfer_V4.amount, + &m->nested.balances_force_transfer_V7.amount, outValue, outValueLen, pageIdx, pageCount); default: @@ -9383,9 +8994,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 1285: /* module 5 call 5 */ switch (itemIdx) { - case 0: /* balances_burn_account_balance_V4 - amount */; + case 0: /* balances_burn_account_balance_V7 - amount */; return _toStringBalance( - &m->nested.balances_burn_account_balance_V4.amount, + &m->nested.balances_burn_account_balance_V7.amount, outValue, outValueLen, pageIdx, pageCount); default: @@ -9393,14 +9004,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 1792: /* module 7 call 0 */ switch (itemIdx) { - case 0: /* identity_cdd_register_did_V4 - target_account */; + case 0: /* identity_cdd_register_did_V7 - target_account */; return _toStringAccountId( - &m->nested.identity_cdd_register_did_V4.target_account, + &m->nested.identity_cdd_register_did_V7.target_account, outValue, outValueLen, pageIdx, pageCount); - case 1: /* identity_cdd_register_did_V4 - secondary_keys */; + case 1: /* identity_cdd_register_did_V7 - secondary_keys */; return _toStringVecSecondaryKeyAccountId( - &m->nested.identity_cdd_register_did_V4.secondary_keys, + &m->nested.identity_cdd_register_did_V7.secondary_keys, outValue, outValueLen, pageIdx, pageCount); default: @@ -9408,19 +9019,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 1793: /* module 7 call 1 */ switch (itemIdx) { - case 0: /* identity_invalidate_cdd_claims_V4 - cdd */; + case 0: /* identity_invalidate_cdd_claims_V7 - cdd */; return _toStringIdentityId( - &m->nested.identity_invalidate_cdd_claims_V4.cdd, + &m->nested.identity_invalidate_cdd_claims_V7.cdd, outValue, outValueLen, pageIdx, pageCount); - case 1: /* identity_invalidate_cdd_claims_V4 - disable_from */; + case 1: /* identity_invalidate_cdd_claims_V7 - disable_from */; return _toStringMoment( - &m->nested.identity_invalidate_cdd_claims_V4.disable_from, + &m->nested.identity_invalidate_cdd_claims_V7.disable_from, outValue, outValueLen, pageIdx, pageCount); - case 2: /* identity_invalidate_cdd_claims_V4 - expiry */; + case 2: /* identity_invalidate_cdd_claims_V7 - expiry */; return _toStringOptionMoment( - &m->nested.identity_invalidate_cdd_claims_V4.expiry, + &m->nested.identity_invalidate_cdd_claims_V7.expiry, outValue, outValueLen, pageIdx, pageCount); default: @@ -9428,9 +9039,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 1795: /* module 7 call 3 */ switch (itemIdx) { - case 0: /* identity_change_cdd_requirement_for_mk_rotation_V4 - auth_required */; + case 0: /* identity_change_cdd_requirement_for_mk_rotation_V7 - auth_required */; return _toStringbool( - &m->nested.identity_change_cdd_requirement_for_mk_rotation_V4.auth_required, + &m->nested.identity_change_cdd_requirement_for_mk_rotation_V7.auth_required, outValue, outValueLen, pageIdx, pageCount); default: @@ -9438,9 +9049,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 1804: /* module 7 call 12 */ switch (itemIdx) { - case 0: /* identity_gc_add_cdd_claim_V4 - target */; + case 0: /* identity_gc_add_cdd_claim_V7 - target */; return _toStringIdentityId( - &m->nested.identity_gc_add_cdd_claim_V4.target, + &m->nested.identity_gc_add_cdd_claim_V7.target, outValue, outValueLen, pageIdx, pageCount); default: @@ -9448,9 +9059,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 1805: /* module 7 call 13 */ switch (itemIdx) { - case 0: /* identity_gc_revoke_cdd_claim_V4 - target */; + case 0: /* identity_gc_revoke_cdd_claim_V7 - target */; return _toStringIdentityId( - &m->nested.identity_gc_revoke_cdd_claim_V4.target, + &m->nested.identity_gc_revoke_cdd_claim_V7.target, outValue, outValueLen, pageIdx, pageCount); default: @@ -9458,19 +9069,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 1806: /* module 7 call 14 */ switch (itemIdx) { - case 0: /* identity_revoke_claim_by_index_V4 - target */; + case 0: /* identity_revoke_claim_by_index_V7 - target */; return _toStringIdentityId( - &m->nested.identity_revoke_claim_by_index_V4.target, + &m->nested.identity_revoke_claim_by_index_V7.target, outValue, outValueLen, pageIdx, pageCount); - case 1: /* identity_revoke_claim_by_index_V4 - claim_type */; + case 1: /* identity_revoke_claim_by_index_V7 - claim_type */; return _toStringClaimType( - &m->nested.identity_revoke_claim_by_index_V4.claim_type, + &m->nested.identity_revoke_claim_by_index_V7.claim_type, outValue, outValueLen, pageIdx, pageCount); - case 2: /* identity_revoke_claim_by_index_V4 - scope */; + case 2: /* identity_revoke_claim_by_index_V7 - scope */; return _toStringOptionScope( - &m->nested.identity_revoke_claim_by_index_V4.scope, + &m->nested.identity_revoke_claim_by_index_V7.scope, outValue, outValueLen, pageIdx, pageCount); default: @@ -9478,14 +9089,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 1807: /* module 7 call 15 */ switch (itemIdx) { - case 0: /* identity_rotate_primary_key_to_secondary_V4 - auth_id */; + case 0: /* identity_rotate_primary_key_to_secondary_V7 - auth_id */; return _toStringu64( - &m->nested.identity_rotate_primary_key_to_secondary_V4.auth_id, + &m->nested.identity_rotate_primary_key_to_secondary_V7.auth_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* identity_rotate_primary_key_to_secondary_V4 - optional_cdd_auth_id */; + case 1: /* identity_rotate_primary_key_to_secondary_V7 - optional_cdd_auth_id */; return _toStringOptionu64( - &m->nested.identity_rotate_primary_key_to_secondary_V4.optional_cdd_auth_id, + &m->nested.identity_rotate_primary_key_to_secondary_V7.optional_cdd_auth_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -9493,14 +9104,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 1809: /* module 7 call 17 */ switch (itemIdx) { - case 0: /* identity_set_secondary_key_permissions_V4 - key */; + case 0: /* identity_set_secondary_key_permissions_V7 - key */; return _toStringAccountId( - &m->nested.identity_set_secondary_key_permissions_V4.key, + &m->nested.identity_set_secondary_key_permissions_V7.key, outValue, outValueLen, pageIdx, pageCount); - case 1: /* identity_set_secondary_key_permissions_V4 - perms */; + case 1: /* identity_set_secondary_key_permissions_V7 - perms */; return _toStringPermissions( - &m->nested.identity_set_secondary_key_permissions_V4.perms, + &m->nested.identity_set_secondary_key_permissions_V7.perms, outValue, outValueLen, pageIdx, pageCount); default: @@ -9508,9 +9119,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 1811: /* module 7 call 19 */ switch (itemIdx) { - case 0: /* identity_register_custom_claim_type_V4 - ty */; + case 0: /* identity_register_custom_claim_type_V7 - ty */; return _toStringVecu8( - &m->nested.identity_register_custom_claim_type_V4.ty, + &m->nested.identity_register_custom_claim_type_V7.ty, outValue, outValueLen, pageIdx, pageCount); default: @@ -9518,19 +9129,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 1812: /* module 7 call 20 */ switch (itemIdx) { - case 0: /* identity_cdd_register_did_with_cdd_V4 - target_account */; + case 0: /* identity_cdd_register_did_with_cdd_V7 - target_account */; return _toStringAccountId( - &m->nested.identity_cdd_register_did_with_cdd_V4.target_account, + &m->nested.identity_cdd_register_did_with_cdd_V7.target_account, outValue, outValueLen, pageIdx, pageCount); - case 1: /* identity_cdd_register_did_with_cdd_V4 - secondary_keys */; + case 1: /* identity_cdd_register_did_with_cdd_V7 - secondary_keys */; return _toStringVecSecondaryKeyAccountId( - &m->nested.identity_cdd_register_did_with_cdd_V4.secondary_keys, + &m->nested.identity_cdd_register_did_with_cdd_V7.secondary_keys, outValue, outValueLen, pageIdx, pageCount); - case 2: /* identity_cdd_register_did_with_cdd_V4 - expiry */; + case 2: /* identity_cdd_register_did_with_cdd_V7 - expiry */; return _toStringOptionMoment( - &m->nested.identity_cdd_register_did_with_cdd_V4.expiry, + &m->nested.identity_cdd_register_did_with_cdd_V7.expiry, outValue, outValueLen, pageIdx, pageCount); default: @@ -9538,9 +9149,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 1813: /* module 7 call 21 */ switch (itemIdx) { - case 0: /* identity_create_child_identity_V4 - secondary_key */; + case 0: /* identity_create_child_identity_V7 - secondary_key */; return _toStringAccountId( - &m->nested.identity_create_child_identity_V4.secondary_key, + &m->nested.identity_create_child_identity_V7.secondary_key, outValue, outValueLen, pageIdx, pageCount); default: @@ -9548,14 +9159,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 1814: /* module 7 call 22 */ switch (itemIdx) { - case 0: /* identity_create_child_identities_V4 - child_keys */; + case 0: /* identity_create_child_identities_V7 - child_keys */; return _toStringVecCreateChildIdentityWithAuthAccountId( - &m->nested.identity_create_child_identities_V4.child_keys, + &m->nested.identity_create_child_identities_V7.child_keys, outValue, outValueLen, pageIdx, pageCount); - case 1: /* identity_create_child_identities_V4 - expires_at */; + case 1: /* identity_create_child_identities_V7 - expires_at */; return _toStringMoment( - &m->nested.identity_create_child_identities_V4.expires_at, + &m->nested.identity_create_child_identities_V7.expires_at, outValue, outValueLen, pageIdx, pageCount); default: @@ -9563,9 +9174,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 1815: /* module 7 call 23 */ switch (itemIdx) { - case 0: /* identity_unlink_child_identity_V4 - child_did */; + case 0: /* identity_unlink_child_identity_V7 - child_did */; return _toStringIdentityId( - &m->nested.identity_unlink_child_identity_V4.child_did, + &m->nested.identity_unlink_child_identity_V7.child_did, outValue, outValueLen, pageIdx, pageCount); default: @@ -9573,9 +9184,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 2048: /* module 8 call 0 */ switch (itemIdx) { - case 0: /* cddserviceproviders_set_active_members_limit_V4 - limit */; + case 0: /* cddserviceproviders_set_active_members_limit_V7 - limit */; return _toStringMemberCount( - &m->nested.cddserviceproviders_set_active_members_limit_V4.limit, + &m->nested.cddserviceproviders_set_active_members_limit_V7.limit, outValue, outValueLen, pageIdx, pageCount); default: @@ -9583,19 +9194,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 2049: /* module 8 call 1 */ switch (itemIdx) { - case 0: /* cddserviceproviders_disable_member_V4 - who */; + case 0: /* cddserviceproviders_disable_member_V7 - who */; return _toStringIdentityId( - &m->nested.cddserviceproviders_disable_member_V4.who, + &m->nested.cddserviceproviders_disable_member_V7.who, outValue, outValueLen, pageIdx, pageCount); - case 1: /* cddserviceproviders_disable_member_V4 - expiry */; + case 1: /* cddserviceproviders_disable_member_V7 - expiry */; return _toStringOptionMoment( - &m->nested.cddserviceproviders_disable_member_V4.expiry, + &m->nested.cddserviceproviders_disable_member_V7.expiry, outValue, outValueLen, pageIdx, pageCount); - case 2: /* cddserviceproviders_disable_member_V4 - at */; + case 2: /* cddserviceproviders_disable_member_V7 - at */; return _toStringOptionMoment( - &m->nested.cddserviceproviders_disable_member_V4.at, + &m->nested.cddserviceproviders_disable_member_V7.at, outValue, outValueLen, pageIdx, pageCount); default: @@ -9603,9 +9214,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 2050: /* module 8 call 2 */ switch (itemIdx) { - case 0: /* cddserviceproviders_add_member_V4 - who */; + case 0: /* cddserviceproviders_add_member_V7 - who */; return _toStringIdentityId( - &m->nested.cddserviceproviders_add_member_V4.who, + &m->nested.cddserviceproviders_add_member_V7.who, outValue, outValueLen, pageIdx, pageCount); default: @@ -9613,9 +9224,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 2051: /* module 8 call 3 */ switch (itemIdx) { - case 0: /* cddserviceproviders_remove_member_V4 - who */; + case 0: /* cddserviceproviders_remove_member_V7 - who */; return _toStringIdentityId( - &m->nested.cddserviceproviders_remove_member_V4.who, + &m->nested.cddserviceproviders_remove_member_V7.who, outValue, outValueLen, pageIdx, pageCount); default: @@ -9623,14 +9234,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 2052: /* module 8 call 4 */ switch (itemIdx) { - case 0: /* cddserviceproviders_swap_member_V4 - remove */; + case 0: /* cddserviceproviders_swap_member_V7 - remove */; return _toStringIdentityId( - &m->nested.cddserviceproviders_swap_member_V4.remove, + &m->nested.cddserviceproviders_swap_member_V7.remove, outValue, outValueLen, pageIdx, pageCount); - case 1: /* cddserviceproviders_swap_member_V4 - add */; + case 1: /* cddserviceproviders_swap_member_V7 - add */; return _toStringIdentityId( - &m->nested.cddserviceproviders_swap_member_V4.add, + &m->nested.cddserviceproviders_swap_member_V7.add, outValue, outValueLen, pageIdx, pageCount); default: @@ -9638,9 +9249,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 2053: /* module 8 call 5 */ switch (itemIdx) { - case 0: /* cddserviceproviders_reset_members_V4 - members */; + case 0: /* cddserviceproviders_reset_members_V7 - members */; return _toStringVecIdentityId( - &m->nested.cddserviceproviders_reset_members_V4.members, + &m->nested.cddserviceproviders_reset_members_V7.members, outValue, outValueLen, pageIdx, pageCount); default: @@ -9653,14 +9264,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 2304: /* module 9 call 0 */ switch (itemIdx) { - case 0: /* polymeshcommittee_set_vote_threshold_V4 - n */; + case 0: /* polymeshcommittee_set_vote_threshold_V7 - n */; return _toStringu32( - &m->nested.polymeshcommittee_set_vote_threshold_V4.n, + &m->nested.polymeshcommittee_set_vote_threshold_V7.n, outValue, outValueLen, pageIdx, pageCount); - case 1: /* polymeshcommittee_set_vote_threshold_V4 - d */; + case 1: /* polymeshcommittee_set_vote_threshold_V7 - d */; return _toStringu32( - &m->nested.polymeshcommittee_set_vote_threshold_V4.d, + &m->nested.polymeshcommittee_set_vote_threshold_V7.d, outValue, outValueLen, pageIdx, pageCount); default: @@ -9668,9 +9279,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 2305: /* module 9 call 1 */ switch (itemIdx) { - case 0: /* polymeshcommittee_set_release_coordinator_V4 - id */; + case 0: /* polymeshcommittee_set_release_coordinator_V7 - id */; return _toStringIdentityId( - &m->nested.polymeshcommittee_set_release_coordinator_V4.id, + &m->nested.polymeshcommittee_set_release_coordinator_V7.id, outValue, outValueLen, pageIdx, pageCount); default: @@ -9678,9 +9289,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 2306: /* module 9 call 2 */ switch (itemIdx) { - case 0: /* polymeshcommittee_set_expires_after_V4 - expiry */; + case 0: /* polymeshcommittee_set_expires_after_V7 - expiry */; return _toStringMaybeBlockBlockNumber( - &m->nested.polymeshcommittee_set_expires_after_V4.expiry, + &m->nested.polymeshcommittee_set_expires_after_V7.expiry, outValue, outValueLen, pageIdx, pageCount); default: @@ -9688,14 +9299,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 2307: /* module 9 call 3 */ switch (itemIdx) { - case 0: /* polymeshcommittee_vote_or_propose_V4 - approve */; + case 0: /* polymeshcommittee_vote_or_propose_V7 - approve */; return _toStringbool( - &m->nested.polymeshcommittee_vote_or_propose_V4.approve, + &m->nested.polymeshcommittee_vote_or_propose_V7.approve, outValue, outValueLen, pageIdx, pageCount); - case 1: /* polymeshcommittee_vote_or_propose_V4 - call */; + case 1: /* polymeshcommittee_vote_or_propose_V7 - call */; return _toStringProposal( - &m->nested.polymeshcommittee_vote_or_propose_V4.call, + &m->nested.polymeshcommittee_vote_or_propose_V7.call, outValue, outValueLen, pageIdx, pageCount); default: @@ -9703,19 +9314,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 2308: /* module 9 call 4 */ switch (itemIdx) { - case 0: /* polymeshcommittee_vote_V4 - proposal */; + case 0: /* polymeshcommittee_vote_V7 - proposal */; return _toStringHash( - &m->nested.polymeshcommittee_vote_V4.proposal, + &m->nested.polymeshcommittee_vote_V7.proposal, outValue, outValueLen, pageIdx, pageCount); - case 1: /* polymeshcommittee_vote_V4 - index */; + case 1: /* polymeshcommittee_vote_V7 - index */; return _toStringProposalIndex( - &m->nested.polymeshcommittee_vote_V4.index, + &m->nested.polymeshcommittee_vote_V7.index, outValue, outValueLen, pageIdx, pageCount); - case 2: /* polymeshcommittee_vote_V4 - approve */; + case 2: /* polymeshcommittee_vote_V7 - approve */; return _toStringbool( - &m->nested.polymeshcommittee_vote_V4.approve, + &m->nested.polymeshcommittee_vote_V7.approve, outValue, outValueLen, pageIdx, pageCount); default: @@ -9723,9 +9334,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 2560: /* module 10 call 0 */ switch (itemIdx) { - case 0: /* committeemembership_set_active_members_limit_V4 - limit */; + case 0: /* committeemembership_set_active_members_limit_V7 - limit */; return _toStringMemberCount( - &m->nested.committeemembership_set_active_members_limit_V4.limit, + &m->nested.committeemembership_set_active_members_limit_V7.limit, outValue, outValueLen, pageIdx, pageCount); default: @@ -9733,19 +9344,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 2561: /* module 10 call 1 */ switch (itemIdx) { - case 0: /* committeemembership_disable_member_V4 - who */; + case 0: /* committeemembership_disable_member_V7 - who */; return _toStringIdentityId( - &m->nested.committeemembership_disable_member_V4.who, + &m->nested.committeemembership_disable_member_V7.who, outValue, outValueLen, pageIdx, pageCount); - case 1: /* committeemembership_disable_member_V4 - expiry */; + case 1: /* committeemembership_disable_member_V7 - expiry */; return _toStringOptionMoment( - &m->nested.committeemembership_disable_member_V4.expiry, + &m->nested.committeemembership_disable_member_V7.expiry, outValue, outValueLen, pageIdx, pageCount); - case 2: /* committeemembership_disable_member_V4 - at */; + case 2: /* committeemembership_disable_member_V7 - at */; return _toStringOptionMoment( - &m->nested.committeemembership_disable_member_V4.at, + &m->nested.committeemembership_disable_member_V7.at, outValue, outValueLen, pageIdx, pageCount); default: @@ -9753,9 +9364,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 2562: /* module 10 call 2 */ switch (itemIdx) { - case 0: /* committeemembership_add_member_V4 - who */; + case 0: /* committeemembership_add_member_V7 - who */; return _toStringIdentityId( - &m->nested.committeemembership_add_member_V4.who, + &m->nested.committeemembership_add_member_V7.who, outValue, outValueLen, pageIdx, pageCount); default: @@ -9763,9 +9374,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 2563: /* module 10 call 3 */ switch (itemIdx) { - case 0: /* committeemembership_remove_member_V4 - who */; + case 0: /* committeemembership_remove_member_V7 - who */; return _toStringIdentityId( - &m->nested.committeemembership_remove_member_V4.who, + &m->nested.committeemembership_remove_member_V7.who, outValue, outValueLen, pageIdx, pageCount); default: @@ -9773,14 +9384,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 2564: /* module 10 call 4 */ switch (itemIdx) { - case 0: /* committeemembership_swap_member_V4 - remove */; + case 0: /* committeemembership_swap_member_V7 - remove */; return _toStringIdentityId( - &m->nested.committeemembership_swap_member_V4.remove, + &m->nested.committeemembership_swap_member_V7.remove, outValue, outValueLen, pageIdx, pageCount); - case 1: /* committeemembership_swap_member_V4 - add */; + case 1: /* committeemembership_swap_member_V7 - add */; return _toStringIdentityId( - &m->nested.committeemembership_swap_member_V4.add, + &m->nested.committeemembership_swap_member_V7.add, outValue, outValueLen, pageIdx, pageCount); default: @@ -9788,9 +9399,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 2565: /* module 10 call 5 */ switch (itemIdx) { - case 0: /* committeemembership_reset_members_V4 - members */; + case 0: /* committeemembership_reset_members_V7 - members */; return _toStringVecIdentityId( - &m->nested.committeemembership_reset_members_V4.members, + &m->nested.committeemembership_reset_members_V7.members, outValue, outValueLen, pageIdx, pageCount); default: @@ -9803,14 +9414,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 2816: /* module 11 call 0 */ switch (itemIdx) { - case 0: /* technicalcommittee_set_vote_threshold_V4 - n */; + case 0: /* technicalcommittee_set_vote_threshold_V7 - n */; return _toStringu32( - &m->nested.technicalcommittee_set_vote_threshold_V4.n, + &m->nested.technicalcommittee_set_vote_threshold_V7.n, outValue, outValueLen, pageIdx, pageCount); - case 1: /* technicalcommittee_set_vote_threshold_V4 - d */; + case 1: /* technicalcommittee_set_vote_threshold_V7 - d */; return _toStringu32( - &m->nested.technicalcommittee_set_vote_threshold_V4.d, + &m->nested.technicalcommittee_set_vote_threshold_V7.d, outValue, outValueLen, pageIdx, pageCount); default: @@ -9818,9 +9429,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 2817: /* module 11 call 1 */ switch (itemIdx) { - case 0: /* technicalcommittee_set_release_coordinator_V4 - id */; + case 0: /* technicalcommittee_set_release_coordinator_V7 - id */; return _toStringIdentityId( - &m->nested.technicalcommittee_set_release_coordinator_V4.id, + &m->nested.technicalcommittee_set_release_coordinator_V7.id, outValue, outValueLen, pageIdx, pageCount); default: @@ -9828,9 +9439,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 2818: /* module 11 call 2 */ switch (itemIdx) { - case 0: /* technicalcommittee_set_expires_after_V4 - expiry */; + case 0: /* technicalcommittee_set_expires_after_V7 - expiry */; return _toStringMaybeBlockBlockNumber( - &m->nested.technicalcommittee_set_expires_after_V4.expiry, + &m->nested.technicalcommittee_set_expires_after_V7.expiry, outValue, outValueLen, pageIdx, pageCount); default: @@ -9838,14 +9449,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 2819: /* module 11 call 3 */ switch (itemIdx) { - case 0: /* technicalcommittee_vote_or_propose_V4 - approve */; + case 0: /* technicalcommittee_vote_or_propose_V7 - approve */; return _toStringbool( - &m->nested.technicalcommittee_vote_or_propose_V4.approve, + &m->nested.technicalcommittee_vote_or_propose_V7.approve, outValue, outValueLen, pageIdx, pageCount); - case 1: /* technicalcommittee_vote_or_propose_V4 - call */; + case 1: /* technicalcommittee_vote_or_propose_V7 - call */; return _toStringProposal( - &m->nested.technicalcommittee_vote_or_propose_V4.call, + &m->nested.technicalcommittee_vote_or_propose_V7.call, outValue, outValueLen, pageIdx, pageCount); default: @@ -9853,19 +9464,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 2820: /* module 11 call 4 */ switch (itemIdx) { - case 0: /* technicalcommittee_vote_V4 - proposal */; + case 0: /* technicalcommittee_vote_V7 - proposal */; return _toStringHash( - &m->nested.technicalcommittee_vote_V4.proposal, + &m->nested.technicalcommittee_vote_V7.proposal, outValue, outValueLen, pageIdx, pageCount); - case 1: /* technicalcommittee_vote_V4 - index */; + case 1: /* technicalcommittee_vote_V7 - index */; return _toStringProposalIndex( - &m->nested.technicalcommittee_vote_V4.index, + &m->nested.technicalcommittee_vote_V7.index, outValue, outValueLen, pageIdx, pageCount); - case 2: /* technicalcommittee_vote_V4 - approve */; + case 2: /* technicalcommittee_vote_V7 - approve */; return _toStringbool( - &m->nested.technicalcommittee_vote_V4.approve, + &m->nested.technicalcommittee_vote_V7.approve, outValue, outValueLen, pageIdx, pageCount); default: @@ -9873,9 +9484,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 3072: /* module 12 call 0 */ switch (itemIdx) { - case 0: /* technicalcommitteemembership_set_active_members_limit_V4 - limit */; + case 0: /* technicalcommitteemembership_set_active_members_limit_V7 - limit */; return _toStringMemberCount( - &m->nested.technicalcommitteemembership_set_active_members_limit_V4.limit, + &m->nested.technicalcommitteemembership_set_active_members_limit_V7.limit, outValue, outValueLen, pageIdx, pageCount); default: @@ -9883,19 +9494,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 3073: /* module 12 call 1 */ switch (itemIdx) { - case 0: /* technicalcommitteemembership_disable_member_V4 - who */; + case 0: /* technicalcommitteemembership_disable_member_V7 - who */; return _toStringIdentityId( - &m->nested.technicalcommitteemembership_disable_member_V4.who, + &m->nested.technicalcommitteemembership_disable_member_V7.who, outValue, outValueLen, pageIdx, pageCount); - case 1: /* technicalcommitteemembership_disable_member_V4 - expiry */; + case 1: /* technicalcommitteemembership_disable_member_V7 - expiry */; return _toStringOptionMoment( - &m->nested.technicalcommitteemembership_disable_member_V4.expiry, + &m->nested.technicalcommitteemembership_disable_member_V7.expiry, outValue, outValueLen, pageIdx, pageCount); - case 2: /* technicalcommitteemembership_disable_member_V4 - at */; + case 2: /* technicalcommitteemembership_disable_member_V7 - at */; return _toStringOptionMoment( - &m->nested.technicalcommitteemembership_disable_member_V4.at, + &m->nested.technicalcommitteemembership_disable_member_V7.at, outValue, outValueLen, pageIdx, pageCount); default: @@ -9903,9 +9514,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 3074: /* module 12 call 2 */ switch (itemIdx) { - case 0: /* technicalcommitteemembership_add_member_V4 - who */; + case 0: /* technicalcommitteemembership_add_member_V7 - who */; return _toStringIdentityId( - &m->nested.technicalcommitteemembership_add_member_V4.who, + &m->nested.technicalcommitteemembership_add_member_V7.who, outValue, outValueLen, pageIdx, pageCount); default: @@ -9913,9 +9524,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 3075: /* module 12 call 3 */ switch (itemIdx) { - case 0: /* technicalcommitteemembership_remove_member_V4 - who */; + case 0: /* technicalcommitteemembership_remove_member_V7 - who */; return _toStringIdentityId( - &m->nested.technicalcommitteemembership_remove_member_V4.who, + &m->nested.technicalcommitteemembership_remove_member_V7.who, outValue, outValueLen, pageIdx, pageCount); default: @@ -9923,14 +9534,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 3076: /* module 12 call 4 */ switch (itemIdx) { - case 0: /* technicalcommitteemembership_swap_member_V4 - remove */; + case 0: /* technicalcommitteemembership_swap_member_V7 - remove */; return _toStringIdentityId( - &m->nested.technicalcommitteemembership_swap_member_V4.remove, + &m->nested.technicalcommitteemembership_swap_member_V7.remove, outValue, outValueLen, pageIdx, pageCount); - case 1: /* technicalcommitteemembership_swap_member_V4 - add */; + case 1: /* technicalcommitteemembership_swap_member_V7 - add */; return _toStringIdentityId( - &m->nested.technicalcommitteemembership_swap_member_V4.add, + &m->nested.technicalcommitteemembership_swap_member_V7.add, outValue, outValueLen, pageIdx, pageCount); default: @@ -9938,9 +9549,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 3077: /* module 12 call 5 */ switch (itemIdx) { - case 0: /* technicalcommitteemembership_reset_members_V4 - members */; + case 0: /* technicalcommitteemembership_reset_members_V7 - members */; return _toStringVecIdentityId( - &m->nested.technicalcommitteemembership_reset_members_V4.members, + &m->nested.technicalcommitteemembership_reset_members_V7.members, outValue, outValueLen, pageIdx, pageCount); default: @@ -9953,14 +9564,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 3328: /* module 13 call 0 */ switch (itemIdx) { - case 0: /* upgradecommittee_set_vote_threshold_V4 - n */; + case 0: /* upgradecommittee_set_vote_threshold_V7 - n */; return _toStringu32( - &m->nested.upgradecommittee_set_vote_threshold_V4.n, + &m->nested.upgradecommittee_set_vote_threshold_V7.n, outValue, outValueLen, pageIdx, pageCount); - case 1: /* upgradecommittee_set_vote_threshold_V4 - d */; + case 1: /* upgradecommittee_set_vote_threshold_V7 - d */; return _toStringu32( - &m->nested.upgradecommittee_set_vote_threshold_V4.d, + &m->nested.upgradecommittee_set_vote_threshold_V7.d, outValue, outValueLen, pageIdx, pageCount); default: @@ -9968,9 +9579,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 3329: /* module 13 call 1 */ switch (itemIdx) { - case 0: /* upgradecommittee_set_release_coordinator_V4 - id */; + case 0: /* upgradecommittee_set_release_coordinator_V7 - id */; return _toStringIdentityId( - &m->nested.upgradecommittee_set_release_coordinator_V4.id, + &m->nested.upgradecommittee_set_release_coordinator_V7.id, outValue, outValueLen, pageIdx, pageCount); default: @@ -9978,9 +9589,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 3330: /* module 13 call 2 */ switch (itemIdx) { - case 0: /* upgradecommittee_set_expires_after_V4 - expiry */; + case 0: /* upgradecommittee_set_expires_after_V7 - expiry */; return _toStringMaybeBlockBlockNumber( - &m->nested.upgradecommittee_set_expires_after_V4.expiry, + &m->nested.upgradecommittee_set_expires_after_V7.expiry, outValue, outValueLen, pageIdx, pageCount); default: @@ -9988,14 +9599,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 3331: /* module 13 call 3 */ switch (itemIdx) { - case 0: /* upgradecommittee_vote_or_propose_V4 - approve */; + case 0: /* upgradecommittee_vote_or_propose_V7 - approve */; return _toStringbool( - &m->nested.upgradecommittee_vote_or_propose_V4.approve, + &m->nested.upgradecommittee_vote_or_propose_V7.approve, outValue, outValueLen, pageIdx, pageCount); - case 1: /* upgradecommittee_vote_or_propose_V4 - call */; + case 1: /* upgradecommittee_vote_or_propose_V7 - call */; return _toStringProposal( - &m->nested.upgradecommittee_vote_or_propose_V4.call, + &m->nested.upgradecommittee_vote_or_propose_V7.call, outValue, outValueLen, pageIdx, pageCount); default: @@ -10003,19 +9614,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 3332: /* module 13 call 4 */ switch (itemIdx) { - case 0: /* upgradecommittee_vote_V4 - proposal */; + case 0: /* upgradecommittee_vote_V7 - proposal */; return _toStringHash( - &m->nested.upgradecommittee_vote_V4.proposal, + &m->nested.upgradecommittee_vote_V7.proposal, outValue, outValueLen, pageIdx, pageCount); - case 1: /* upgradecommittee_vote_V4 - index */; + case 1: /* upgradecommittee_vote_V7 - index */; return _toStringProposalIndex( - &m->nested.upgradecommittee_vote_V4.index, + &m->nested.upgradecommittee_vote_V7.index, outValue, outValueLen, pageIdx, pageCount); - case 2: /* upgradecommittee_vote_V4 - approve */; + case 2: /* upgradecommittee_vote_V7 - approve */; return _toStringbool( - &m->nested.upgradecommittee_vote_V4.approve, + &m->nested.upgradecommittee_vote_V7.approve, outValue, outValueLen, pageIdx, pageCount); default: @@ -10023,9 +9634,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 3584: /* module 14 call 0 */ switch (itemIdx) { - case 0: /* upgradecommitteemembership_set_active_members_limit_V4 - limit */; + case 0: /* upgradecommitteemembership_set_active_members_limit_V7 - limit */; return _toStringMemberCount( - &m->nested.upgradecommitteemembership_set_active_members_limit_V4.limit, + &m->nested.upgradecommitteemembership_set_active_members_limit_V7.limit, outValue, outValueLen, pageIdx, pageCount); default: @@ -10033,19 +9644,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 3585: /* module 14 call 1 */ switch (itemIdx) { - case 0: /* upgradecommitteemembership_disable_member_V4 - who */; + case 0: /* upgradecommitteemembership_disable_member_V7 - who */; return _toStringIdentityId( - &m->nested.upgradecommitteemembership_disable_member_V4.who, + &m->nested.upgradecommitteemembership_disable_member_V7.who, outValue, outValueLen, pageIdx, pageCount); - case 1: /* upgradecommitteemembership_disable_member_V4 - expiry */; + case 1: /* upgradecommitteemembership_disable_member_V7 - expiry */; return _toStringOptionMoment( - &m->nested.upgradecommitteemembership_disable_member_V4.expiry, + &m->nested.upgradecommitteemembership_disable_member_V7.expiry, outValue, outValueLen, pageIdx, pageCount); - case 2: /* upgradecommitteemembership_disable_member_V4 - at */; + case 2: /* upgradecommitteemembership_disable_member_V7 - at */; return _toStringOptionMoment( - &m->nested.upgradecommitteemembership_disable_member_V4.at, + &m->nested.upgradecommitteemembership_disable_member_V7.at, outValue, outValueLen, pageIdx, pageCount); default: @@ -10053,9 +9664,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 3586: /* module 14 call 2 */ switch (itemIdx) { - case 0: /* upgradecommitteemembership_add_member_V4 - who */; + case 0: /* upgradecommitteemembership_add_member_V7 - who */; return _toStringIdentityId( - &m->nested.upgradecommitteemembership_add_member_V4.who, + &m->nested.upgradecommitteemembership_add_member_V7.who, outValue, outValueLen, pageIdx, pageCount); default: @@ -10063,9 +9674,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 3587: /* module 14 call 3 */ switch (itemIdx) { - case 0: /* upgradecommitteemembership_remove_member_V4 - who */; + case 0: /* upgradecommitteemembership_remove_member_V7 - who */; return _toStringIdentityId( - &m->nested.upgradecommitteemembership_remove_member_V4.who, + &m->nested.upgradecommitteemembership_remove_member_V7.who, outValue, outValueLen, pageIdx, pageCount); default: @@ -10073,14 +9684,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 3588: /* module 14 call 4 */ switch (itemIdx) { - case 0: /* upgradecommitteemembership_swap_member_V4 - remove */; + case 0: /* upgradecommitteemembership_swap_member_V7 - remove */; return _toStringIdentityId( - &m->nested.upgradecommitteemembership_swap_member_V4.remove, + &m->nested.upgradecommitteemembership_swap_member_V7.remove, outValue, outValueLen, pageIdx, pageCount); - case 1: /* upgradecommitteemembership_swap_member_V4 - add */; + case 1: /* upgradecommitteemembership_swap_member_V7 - add */; return _toStringIdentityId( - &m->nested.upgradecommitteemembership_swap_member_V4.add, + &m->nested.upgradecommitteemembership_swap_member_V7.add, outValue, outValueLen, pageIdx, pageCount); default: @@ -10088,9 +9699,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 3589: /* module 14 call 5 */ switch (itemIdx) { - case 0: /* upgradecommitteemembership_reset_members_V4 - members */; + case 0: /* upgradecommitteemembership_reset_members_V7 - members */; return _toStringVecIdentityId( - &m->nested.upgradecommitteemembership_reset_members_V4.members, + &m->nested.upgradecommitteemembership_reset_members_V7.members, outValue, outValueLen, pageIdx, pageCount); default: @@ -10103,314 +9714,189 @@ parser_error_t _getMethod_ItemValue_V4( } case 3841: /* module 15 call 1 */ switch (itemIdx) { - case 0: /* multisig_create_or_approve_proposal_as_identity_V4 - multisig */; + case 0: /* multisig_create_proposal_V7 - multisig */; return _toStringAccountId( - &m->nested.multisig_create_or_approve_proposal_as_identity_V4.multisig, + &m->nested.multisig_create_proposal_V7.multisig, outValue, outValueLen, pageIdx, pageCount); - case 1: /* multisig_create_or_approve_proposal_as_identity_V4 - proposal */; - return _toStringProposal( - &m->nested.multisig_create_or_approve_proposal_as_identity_V4.proposal, + case 1: /* multisig_create_proposal_V7 - proposal */; + return _toStringBoxTasConfigProposal( + &m->nested.multisig_create_proposal_V7.proposal, outValue, outValueLen, pageIdx, pageCount); - case 2: /* multisig_create_or_approve_proposal_as_identity_V4 - expiry */; + case 2: /* multisig_create_proposal_V7 - expiry */; return _toStringOptionMoment( - &m->nested.multisig_create_or_approve_proposal_as_identity_V4.expiry, - outValue, outValueLen, - pageIdx, pageCount); - case 3: /* multisig_create_or_approve_proposal_as_identity_V4 - auto_close */; - return _toStringbool( - &m->nested.multisig_create_or_approve_proposal_as_identity_V4.auto_close, + &m->nested.multisig_create_proposal_V7.expiry, outValue, outValueLen, pageIdx, pageCount); default: return parser_no_data; } - case 3843: /* module 15 call 3 */ + case 3842: /* module 15 call 2 */ switch (itemIdx) { - case 0: /* multisig_create_proposal_as_identity_V4 - multisig */; + case 0: /* multisig_approve_V7 - multisig */; return _toStringAccountId( - &m->nested.multisig_create_proposal_as_identity_V4.multisig, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* multisig_create_proposal_as_identity_V4 - proposal */; - return _toStringProposal( - &m->nested.multisig_create_proposal_as_identity_V4.proposal, - outValue, outValueLen, - pageIdx, pageCount); - case 2: /* multisig_create_proposal_as_identity_V4 - expiry */; - return _toStringOptionMoment( - &m->nested.multisig_create_proposal_as_identity_V4.expiry, - outValue, outValueLen, - pageIdx, pageCount); - case 3: /* multisig_create_proposal_as_identity_V4 - auto_close */; - return _toStringbool( - &m->nested.multisig_create_proposal_as_identity_V4.auto_close, + &m->nested.multisig_approve_V7.multisig, outValue, outValueLen, pageIdx, pageCount); - default: - return parser_no_data; - } - case 3845: /* module 15 call 5 */ - switch (itemIdx) { - case 0: /* multisig_approve_as_identity_V4 - multisig */; - return _toStringAccountId( - &m->nested.multisig_approve_as_identity_V4.multisig, + case 1: /* multisig_approve_V7 - proposal_id */; + return _toStringu64( + &m->nested.multisig_approve_V7.proposal_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* multisig_approve_as_identity_V4 - proposal_id */; - return _toStringu64( - &m->nested.multisig_approve_as_identity_V4.proposal_id, + case 2: /* multisig_approve_V7 - max_weight */; + return _toStringOptionWeight( + &m->nested.multisig_approve_V7.max_weight, outValue, outValueLen, pageIdx, pageCount); default: return parser_no_data; } - case 3847: /* module 15 call 7 */ + case 3843: /* module 15 call 3 */ switch (itemIdx) { - case 0: /* multisig_reject_as_identity_V4 - multisig */; + case 0: /* multisig_reject_V7 - multisig */; return _toStringAccountId( - &m->nested.multisig_reject_as_identity_V4.multisig, + &m->nested.multisig_reject_V7.multisig, outValue, outValueLen, pageIdx, pageCount); - case 1: /* multisig_reject_as_identity_V4 - proposal_id */; + case 1: /* multisig_reject_V7 - proposal_id */; return _toStringu64( - &m->nested.multisig_reject_as_identity_V4.proposal_id, + &m->nested.multisig_reject_V7.proposal_id, outValue, outValueLen, pageIdx, pageCount); default: return parser_no_data; } - case 3849: /* module 15 call 9 */ + case 3844: /* module 15 call 4 */ switch (itemIdx) { - case 0: /* multisig_accept_multisig_signer_as_identity_V4 - _auth_id */; + case 0: /* multisig_accept_multisig_signer_V7 - auth_id */; return _toStringu64( - &m->nested.multisig_accept_multisig_signer_as_identity_V4._auth_id, + &m->nested.multisig_accept_multisig_signer_V7.auth_id, outValue, outValueLen, pageIdx, pageCount); default: return parser_no_data; } - case 3856: /* module 15 call 16 */ + case 3845: /* module 15 call 5 */ switch (itemIdx) { - case 0: /* multisig_make_multisig_secondary_V4 - multisig */; - return _toStringAccountId( - &m->nested.multisig_make_multisig_secondary_V4.multisig, + case 0: /* multisig_add_multisig_signers_V7 - signers */; + return _toStringBoundedVecAccountIdMaxSigners( + &m->nested.multisig_add_multisig_signers_V7.signers, outValue, outValueLen, pageIdx, pageCount); default: return parser_no_data; } - case 3858: /* module 15 call 18 */ + case 3846: /* module 15 call 6 */ switch (itemIdx) { - case 0: /* multisig_execute_scheduled_proposal_V4 - multisig */; - return _toStringAccountId( - &m->nested.multisig_execute_scheduled_proposal_V4.multisig, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* multisig_execute_scheduled_proposal_V4 - proposal_id */; - return _toStringu64( - &m->nested.multisig_execute_scheduled_proposal_V4.proposal_id, - outValue, outValueLen, - pageIdx, pageCount); - case 2: /* multisig_execute_scheduled_proposal_V4 - multisig_did */; - return _toStringIdentityId( - &m->nested.multisig_execute_scheduled_proposal_V4.multisig_did, - outValue, outValueLen, - pageIdx, pageCount); - case 3: /* multisig_execute_scheduled_proposal_V4 - _proposal_weight */; - return _toStringWeight( - &m->nested.multisig_execute_scheduled_proposal_V4._proposal_weight, + case 0: /* multisig_remove_multisig_signers_V7 - signers */; + return _toStringBoundedVecAccountIdMaxSigners( + &m->nested.multisig_remove_multisig_signers_V7.signers, outValue, outValueLen, pageIdx, pageCount); default: return parser_no_data; } - case 3859: /* module 15 call 19 */ + case 3847: /* module 15 call 7 */ switch (itemIdx) { - case 0: /* multisig_change_sigs_required_via_creator_V4 - multisig_account */; + case 0: /* multisig_add_multisig_signers_via_admin_V7 - multisig */; return _toStringAccountId( - &m->nested.multisig_change_sigs_required_via_creator_V4.multisig_account, + &m->nested.multisig_add_multisig_signers_via_admin_V7.multisig, outValue, outValueLen, pageIdx, pageCount); - case 1: /* multisig_change_sigs_required_via_creator_V4 - signatures_required */; - return _toStringu64( - &m->nested.multisig_change_sigs_required_via_creator_V4.signatures_required, + case 1: /* multisig_add_multisig_signers_via_admin_V7 - signers */; + return _toStringBoundedVecAccountIdMaxSigners( + &m->nested.multisig_add_multisig_signers_via_admin_V7.signers, outValue, outValueLen, pageIdx, pageCount); default: return parser_no_data; } - case 3860: /* module 15 call 20 */ + case 3848: /* module 15 call 8 */ switch (itemIdx) { - case 0: /* multisig_remove_creator_controls_V4 - multisig_account */; + case 0: /* multisig_remove_multisig_signers_via_admin_V7 - multisig */; return _toStringAccountId( - &m->nested.multisig_remove_creator_controls_V4.multisig_account, + &m->nested.multisig_remove_multisig_signers_via_admin_V7.multisig, outValue, outValueLen, pageIdx, pageCount); - default: - return parser_no_data; - } - case 4096: /* module 16 call 0 */ - switch (itemIdx) { - case 0: /* bridge_change_controller_V4 - controller */; - return _toStringAccountId( - &m->nested.bridge_change_controller_V4.controller, + case 1: /* multisig_remove_multisig_signers_via_admin_V7 - signers */; + return _toStringBoundedVecAccountIdMaxSigners( + &m->nested.multisig_remove_multisig_signers_via_admin_V7.signers, outValue, outValueLen, pageIdx, pageCount); default: return parser_no_data; } - case 4097: /* module 16 call 1 */ + case 3850: /* module 15 call 10 */ switch (itemIdx) { - case 0: /* bridge_change_admin_V4 - admin */; + case 0: /* multisig_change_sigs_required_via_admin_V7 - multisig */; return _toStringAccountId( - &m->nested.bridge_change_admin_V4.admin, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 4098: /* module 16 call 2 */ - switch (itemIdx) { - case 0: /* bridge_change_timelock_V4 - timelock */; - return _toStringBlockNumber( - &m->nested.bridge_change_timelock_V4.timelock, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 4099: /* module 16 call 3 */ - switch (itemIdx) { - default: - return parser_no_data; - } - case 4100: /* module 16 call 4 */ - switch (itemIdx) { - default: - return parser_no_data; - } - case 4101: /* module 16 call 5 */ - switch (itemIdx) { - case 0: /* bridge_change_bridge_limit_V4 - amount */; - return _toStringBalance( - &m->nested.bridge_change_bridge_limit_V4.amount, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* bridge_change_bridge_limit_V4 - duration */; - return _toStringBlockNumber( - &m->nested.bridge_change_bridge_limit_V4.duration, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 4102: /* module 16 call 6 */ - switch (itemIdx) { - case 0: /* bridge_change_bridge_exempted_V4 - exempted */; - return _toStringVecTupleIdentityIdbool( - &m->nested.bridge_change_bridge_exempted_V4.exempted, + &m->nested.multisig_change_sigs_required_via_admin_V7.multisig, outValue, outValueLen, pageIdx, pageCount); - default: - return parser_no_data; - } - case 4103: /* module 16 call 7 */ - switch (itemIdx) { - case 0: /* bridge_force_handle_bridge_tx_V4 - bridge_tx */; - return _toStringBridgeTxAccountId( - &m->nested.bridge_force_handle_bridge_tx_V4.bridge_tx, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 4104: /* module 16 call 8 */ - switch (itemIdx) { - case 0: /* bridge_batch_propose_bridge_tx_V4 - bridge_txs */; - return _toStringVecBridgeTxAccountId( - &m->basic.bridge_batch_propose_bridge_tx_V4.bridge_txs, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 4105: /* module 16 call 9 */ - switch (itemIdx) { - case 0: /* bridge_propose_bridge_tx_V4 - bridge_tx */; - return _toStringBridgeTxAccountId( - &m->basic.bridge_propose_bridge_tx_V4.bridge_tx, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 4106: /* module 16 call 10 */ - switch (itemIdx) { - case 0: /* bridge_handle_bridge_tx_V4 - bridge_tx */; - return _toStringBridgeTxAccountId( - &m->basic.bridge_handle_bridge_tx_V4.bridge_tx, + case 1: /* multisig_change_sigs_required_via_admin_V7 - signatures_required */; + return _toStringu64( + &m->nested.multisig_change_sigs_required_via_admin_V7.signatures_required, outValue, outValueLen, pageIdx, pageCount); default: return parser_no_data; } - case 4107: /* module 16 call 11 */ + case 3851: /* module 15 call 11 */ switch (itemIdx) { - case 0: /* bridge_freeze_txs_V4 - bridge_txs */; - return _toStringVecBridgeTxAccountId( - &m->basic.bridge_freeze_txs_V4.bridge_txs, + case 0: /* multisig_add_admin_V7 - admin_did */; + return _toStringIdentityId( + &m->nested.multisig_add_admin_V7.admin_did, outValue, outValueLen, pageIdx, pageCount); default: return parser_no_data; } - case 4108: /* module 16 call 12 */ + case 3852: /* module 15 call 12 */ switch (itemIdx) { - case 0: /* bridge_unfreeze_txs_V4 - bridge_txs */; - return _toStringVecBridgeTxAccountId( - &m->basic.bridge_unfreeze_txs_V4.bridge_txs, + case 0: /* multisig_remove_admin_via_admin_V7 - multisig */; + return _toStringAccountId( + &m->nested.multisig_remove_admin_via_admin_V7.multisig, outValue, outValueLen, pageIdx, pageCount); default: return parser_no_data; } - case 4109: /* module 16 call 13 */ + case 3853: /* module 15 call 13 */ switch (itemIdx) { - case 0: /* bridge_handle_scheduled_bridge_tx_V4 - bridge_tx */; - return _toStringBridgeTxAccountId( - &m->basic.bridge_handle_scheduled_bridge_tx_V4.bridge_tx, - outValue, outValueLen, - pageIdx, pageCount); default: return parser_no_data; } - case 4110: /* module 16 call 14 */ + case 3854: /* module 15 call 14 */ switch (itemIdx) { - case 0: /* bridge_add_freeze_admin_V4 - freeze_admin */; + case 0: /* multisig_remove_payer_via_payer_V7 - multisig */; return _toStringAccountId( - &m->basic.bridge_add_freeze_admin_V4.freeze_admin, + &m->nested.multisig_remove_payer_via_payer_V7.multisig, outValue, outValueLen, pageIdx, pageCount); default: return parser_no_data; } - case 4111: /* module 16 call 15 */ + case 3855: /* module 15 call 15 */ switch (itemIdx) { - case 0: /* bridge_remove_freeze_admin_V4 - freeze_admin */; + case 0: /* multisig_approve_join_identity_V7 - multisig */; return _toStringAccountId( - &m->basic.bridge_remove_freeze_admin_V4.freeze_admin, + &m->nested.multisig_approve_join_identity_V7.multisig, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* multisig_approve_join_identity_V7 - auth_id */; + return _toStringu64( + &m->nested.multisig_approve_join_identity_V7.auth_id, outValue, outValueLen, pageIdx, pageCount); default: return parser_no_data; } - case 4112: /* module 16 call 16 */ + case 3856: /* module 15 call 16 */ switch (itemIdx) { - case 0: /* bridge_remove_txs_V4 - bridge_txs */; - return _toStringVecBridgeTxAccountId( - &m->basic.bridge_remove_txs_V4.bridge_txs, + case 0: /* multisig_join_identity_V7 - auth_id */; + return _toStringu64( + &m->nested.multisig_join_identity_V7.auth_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -10418,9 +9904,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 4361: /* module 17 call 9 */ switch (itemIdx) { - case 0: /* staking_set_validator_count_V4 - new_ */; + case 0: /* staking_set_validator_count_V7 - new_ */; return _toStringCompactu32( - &m->nested.staking_set_validator_count_V4.new_, + &m->nested.staking_set_validator_count_V7.new_, outValue, outValueLen, pageIdx, pageCount); default: @@ -10428,9 +9914,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 4362: /* module 17 call 10 */ switch (itemIdx) { - case 0: /* staking_increase_validator_count_V4 - additional */; + case 0: /* staking_increase_validator_count_V7 - additional */; return _toStringCompactu32( - &m->nested.staking_increase_validator_count_V4.additional, + &m->nested.staking_increase_validator_count_V7.additional, outValue, outValueLen, pageIdx, pageCount); default: @@ -10438,9 +9924,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 4363: /* module 17 call 11 */ switch (itemIdx) { - case 0: /* staking_scale_validator_count_V4 - factor */; + case 0: /* staking_scale_validator_count_V7 - factor */; return _toStringPercent( - &m->nested.staking_scale_validator_count_V4.factor, + &m->nested.staking_scale_validator_count_V7.factor, outValue, outValueLen, pageIdx, pageCount); default: @@ -10448,34 +9934,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 4364: /* module 17 call 12 */ switch (itemIdx) { - case 0: /* staking_add_permissioned_validator_V4 - identity */; - return _toStringIdentityId( - &m->nested.staking_add_permissioned_validator_V4.identity, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* staking_add_permissioned_validator_V4 - intended_count */; - return _toStringOptionu32( - &m->nested.staking_add_permissioned_validator_V4.intended_count, - outValue, outValueLen, - pageIdx, pageCount); default: return parser_no_data; } case 4365: /* module 17 call 13 */ switch (itemIdx) { - case 0: /* staking_remove_permissioned_validator_V4 - identity */; - return _toStringIdentityId( - &m->nested.staking_remove_permissioned_validator_V4.identity, - outValue, outValueLen, - pageIdx, pageCount); default: return parser_no_data; } case 4366: /* module 17 call 14 */ switch (itemIdx) { - case 0: /* staking_validate_cdd_expiry_nominators_V4 - targets */; + case 0: /* staking_set_invulnerables_V7 - invulnerables */; return _toStringVecAccountId( - &m->nested.staking_validate_cdd_expiry_nominators_V4.targets, + &m->nested.staking_set_invulnerables_V7.invulnerables, outValue, outValueLen, pageIdx, pageCount); default: @@ -10483,9 +9954,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 4367: /* module 17 call 15 */ switch (itemIdx) { - case 0: /* staking_set_commission_cap_V4 - new_cap */; - return _toStringPerbill( - &m->nested.staking_set_commission_cap_V4.new_cap, + case 0: /* staking_force_unstake_V7 - stash */; + return _toStringAccountId( + &m->nested.staking_force_unstake_V7.stash, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* staking_force_unstake_V7 - num_slashing_spans */; + return _toStringu32( + &m->nested.staking_force_unstake_V7.num_slashing_spans, outValue, outValueLen, pageIdx, pageCount); default: @@ -10493,29 +9969,34 @@ parser_error_t _getMethod_ItemValue_V4( } case 4368: /* module 17 call 16 */ switch (itemIdx) { - case 0: /* staking_set_min_bond_threshold_V4 - new_value */; - return _toStringBalance( - &m->nested.staking_set_min_bond_threshold_V4.new_value, - outValue, outValueLen, - pageIdx, pageCount); default: return parser_no_data; } case 4369: /* module 17 call 17 */ switch (itemIdx) { + case 0: /* staking_cancel_deferred_slash_V7 - era */; + return _toStringEraIndex( + &m->nested.staking_cancel_deferred_slash_V7.era, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* staking_cancel_deferred_slash_V7 - slash_indices */; + return _toStringVecu32( + &m->nested.staking_cancel_deferred_slash_V7.slash_indices, + outValue, outValueLen, + pageIdx, pageCount); default: return parser_no_data; } case 4370: /* module 17 call 18 */ switch (itemIdx) { - default: - return parser_no_data; - } - case 4371: /* module 17 call 19 */ - switch (itemIdx) { - case 0: /* staking_set_invulnerables_V4 - invulnerables */; - return _toStringVecAccountId( - &m->nested.staking_set_invulnerables_V4.invulnerables, + case 0: /* staking_payout_stakers_V7 - validator_stash */; + return _toStringAccountId( + &m->nested.staking_payout_stakers_V7.validator_stash, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* staking_payout_stakers_V7 - era */; + return _toStringEraIndex( + &m->nested.staking_payout_stakers_V7.era, outValue, outValueLen, pageIdx, pageCount); default: @@ -10523,14 +10004,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 4372: /* module 17 call 20 */ switch (itemIdx) { - case 0: /* staking_force_unstake_V4 - stash */; + case 0: /* staking_reap_stash_V7 - stash */; return _toStringAccountId( - &m->nested.staking_force_unstake_V4.stash, + &m->nested.staking_reap_stash_V7.stash, outValue, outValueLen, pageIdx, pageCount); - case 1: /* staking_force_unstake_V4 - num_slashing_spans */; + case 1: /* staking_reap_stash_V7 - num_slashing_spans */; return _toStringu32( - &m->nested.staking_force_unstake_V4.num_slashing_spans, + &m->nested.staking_reap_stash_V7.num_slashing_spans, outValue, outValueLen, pageIdx, pageCount); default: @@ -10538,19 +10019,44 @@ parser_error_t _getMethod_ItemValue_V4( } case 4373: /* module 17 call 21 */ switch (itemIdx) { + case 0: /* staking_kick_V7 - who */; + return _toStringVecAccountIdLookupOfT( + &m->nested.staking_kick_V7.who, + outValue, outValueLen, + pageIdx, pageCount); default: return parser_no_data; } case 4374: /* module 17 call 22 */ switch (itemIdx) { - case 0: /* staking_cancel_deferred_slash_V4 - era */; - return _toStringEraIndex( - &m->nested.staking_cancel_deferred_slash_V4.era, + case 0: /* staking_set_staking_configs_V7 - min_nominator_bond */; + return _toStringConfigOpBalanceOfT( + &m->nested.staking_set_staking_configs_V7.min_nominator_bond, outValue, outValueLen, pageIdx, pageCount); - case 1: /* staking_cancel_deferred_slash_V4 - slash_indices */; - return _toStringVecu32( - &m->nested.staking_cancel_deferred_slash_V4.slash_indices, + case 1: /* staking_set_staking_configs_V7 - min_validator_bond */; + return _toStringConfigOpBalanceOfT( + &m->nested.staking_set_staking_configs_V7.min_validator_bond, + outValue, outValueLen, + pageIdx, pageCount); + case 2: /* staking_set_staking_configs_V7 - max_nominator_count */; + return _toStringConfigOpu32( + &m->nested.staking_set_staking_configs_V7.max_nominator_count, + outValue, outValueLen, + pageIdx, pageCount); + case 3: /* staking_set_staking_configs_V7 - max_validator_count */; + return _toStringConfigOpu32( + &m->nested.staking_set_staking_configs_V7.max_validator_count, + outValue, outValueLen, + pageIdx, pageCount); + case 4: /* staking_set_staking_configs_V7 - chill_threshold */; + return _toStringConfigOpPercent( + &m->nested.staking_set_staking_configs_V7.chill_threshold, + outValue, outValueLen, + pageIdx, pageCount); + case 5: /* staking_set_staking_configs_V7 - min_commission */; + return _toStringConfigOpPerbill( + &m->nested.staking_set_staking_configs_V7.min_commission, outValue, outValueLen, pageIdx, pageCount); default: @@ -10558,14 +10064,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 4375: /* module 17 call 23 */ switch (itemIdx) { - case 0: /* staking_payout_stakers_V4 - validator_stash */; + case 0: /* staking_chill_other_V7 - controller */; return _toStringAccountId( - &m->nested.staking_payout_stakers_V4.validator_stash, + &m->nested.staking_chill_other_V7.controller, outValue, outValueLen, pageIdx, pageCount); - case 1: /* staking_payout_stakers_V4 - era */; - return _toStringEraIndex( - &m->nested.staking_payout_stakers_V4.era, + default: + return parser_no_data; + } + case 4376: /* module 17 call 24 */ + switch (itemIdx) { + case 0: /* staking_force_apply_min_commission_V7 - validator_stash */; + return _toStringAccountId( + &m->nested.staking_force_apply_min_commission_V7.validator_stash, outValue, outValueLen, pageIdx, pageCount); default: @@ -10573,29 +10084,44 @@ parser_error_t _getMethod_ItemValue_V4( } case 4377: /* module 17 call 25 */ switch (itemIdx) { - case 0: /* staking_set_history_depth_V4 - new_history_depth */; - return _toStringCompactu32( - &m->nested.staking_set_history_depth_V4.new_history_depth, + case 0: /* staking_set_min_commission_V7 - new_ */; + return _toStringPerbill( + &m->nested.staking_set_min_commission_V7.new_, outValue, outValueLen, pageIdx, pageCount); - case 1: /* staking_set_history_depth_V4 - era_items_deleted */; - return _toStringCompactu32( - &m->nested.staking_set_history_depth_V4.era_items_deleted, + default: + return parser_no_data; + } + case 4378: /* module 17 call 26 */ + switch (itemIdx) { + case 0: /* staking_add_permissioned_validator_V7 - identity */; + return _toStringIdentityId( + &m->nested.staking_add_permissioned_validator_V7.identity, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* staking_add_permissioned_validator_V7 - intended_count */; + return _toStringOptionu32( + &m->nested.staking_add_permissioned_validator_V7.intended_count, outValue, outValueLen, pageIdx, pageCount); default: return parser_no_data; } - case 4378: /* module 17 call 26 */ + case 4379: /* module 17 call 27 */ switch (itemIdx) { - case 0: /* staking_reap_stash_V4 - stash */; - return _toStringAccountId( - &m->nested.staking_reap_stash_V4.stash, + case 0: /* staking_remove_permissioned_validator_V7 - identity */; + return _toStringIdentityId( + &m->nested.staking_remove_permissioned_validator_V7.identity, outValue, outValueLen, pageIdx, pageCount); - case 1: /* staking_reap_stash_V4 - num_slashing_spans */; - return _toStringu32( - &m->nested.staking_reap_stash_V4.num_slashing_spans, + default: + return parser_no_data; + } + case 4380: /* module 17 call 28 */ + switch (itemIdx) { + case 0: /* staking_validate_cdd_expiry_nominators_V7 - targets */; + return _toStringVecAccountId( + &m->nested.staking_validate_cdd_expiry_nominators_V7.targets, outValue, outValueLen, pageIdx, pageCount); default: @@ -10603,14 +10129,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 4381: /* module 17 call 29 */ switch (itemIdx) { - case 0: /* staking_payout_stakers_by_system_V4 - validator_stash */; + case 0: /* staking_payout_stakers_by_system_V7 - validator_stash */; return _toStringAccountId( - &m->nested.staking_payout_stakers_by_system_V4.validator_stash, + &m->nested.staking_payout_stakers_by_system_V7.validator_stash, outValue, outValueLen, pageIdx, pageCount); - case 1: /* staking_payout_stakers_by_system_V4 - era */; + case 1: /* staking_payout_stakers_by_system_V7 - era */; return _toStringEraIndex( - &m->nested.staking_payout_stakers_by_system_V4.era, + &m->nested.staking_payout_stakers_by_system_V7.era, outValue, outValueLen, pageIdx, pageCount); default: @@ -10618,9 +10144,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 4382: /* module 17 call 30 */ switch (itemIdx) { - case 0: /* staking_change_slashing_allowed_for_V4 - slashing_switch */; + case 0: /* staking_change_slashing_allowed_for_V7 - slashing_switch */; return _toStringSlashingSwitch( - &m->nested.staking_change_slashing_allowed_for_V4.slashing_switch, + &m->nested.staking_change_slashing_allowed_for_V7.slashing_switch, outValue, outValueLen, pageIdx, pageCount); default: @@ -10628,14 +10154,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 4383: /* module 17 call 31 */ switch (itemIdx) { - case 0: /* staking_update_permissioned_validator_intended_count_V4 - identity */; + case 0: /* staking_update_permissioned_validator_intended_count_V7 - identity */; return _toStringIdentityId( - &m->nested.staking_update_permissioned_validator_intended_count_V4.identity, + &m->nested.staking_update_permissioned_validator_intended_count_V7.identity, outValue, outValueLen, pageIdx, pageCount); - case 1: /* staking_update_permissioned_validator_intended_count_V4 - new_intended_count */; + case 1: /* staking_update_permissioned_validator_intended_count_V7 - new_intended_count */; return _toStringu32( - &m->nested.staking_update_permissioned_validator_intended_count_V4.new_intended_count, + &m->nested.staking_update_permissioned_validator_intended_count_V7.new_intended_count, outValue, outValueLen, pageIdx, pageCount); default: @@ -10643,14 +10169,24 @@ parser_error_t _getMethod_ItemValue_V4( } case 4384: /* module 17 call 32 */ switch (itemIdx) { - case 0: /* staking_chill_from_governance_V4 - identity */; + case 0: /* staking_chill_from_governance_V7 - identity */; return _toStringIdentityId( - &m->nested.staking_chill_from_governance_V4.identity, + &m->nested.staking_chill_from_governance_V7.identity, outValue, outValueLen, pageIdx, pageCount); - case 1: /* staking_chill_from_governance_V4 - stash_keys */; + case 1: /* staking_chill_from_governance_V7 - stash_keys */; return _toStringVecAccountId( - &m->nested.staking_chill_from_governance_V4.stash_keys, + &m->nested.staking_chill_from_governance_V7.stash_keys, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 4385: /* module 17 call 33 */ + switch (itemIdx) { + case 0: /* staking_set_commission_cap_V7 - new_cap */; + return _toStringPerbill( + &m->nested.staking_set_commission_cap_V7.new_cap, outValue, outValueLen, pageIdx, pageCount); default: @@ -10658,14 +10194,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 4864: /* module 19 call 0 */ switch (itemIdx) { - case 0: /* session_set_keys_V4 - keys */; + case 0: /* session_set_keys_V7 - keys */; return _toStringKeys( - &m->nested.session_set_keys_V4.keys, + &m->nested.session_set_keys_V7.keys, outValue, outValueLen, pageIdx, pageCount); - case 1: /* session_set_keys_V4 - proof */; + case 1: /* session_set_keys_V7 - proof */; return _toStringBytes( - &m->nested.session_set_keys_V4.proof, + &m->nested.session_set_keys_V7.proof, outValue, outValueLen, pageIdx, pageCount); default: @@ -10676,11 +10212,61 @@ parser_error_t _getMethod_ItemValue_V4( default: return parser_no_data; } + case 6400: /* module 25 call 0 */ + switch (itemIdx) { + case 0: /* sudo_sudo_V7 - call */; + return _toStringCall( + &m->basic.sudo_sudo_V7.call, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 6401: /* module 25 call 1 */ + switch (itemIdx) { + case 0: /* sudo_sudo_unchecked_weight_V7 - call */; + return _toStringCall( + &m->basic.sudo_sudo_unchecked_weight_V7.call, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* sudo_sudo_unchecked_weight_V7 - _weight */; + return _toStringWeight( + &m->basic.sudo_sudo_unchecked_weight_V7._weight, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 6402: /* module 25 call 2 */ + switch (itemIdx) { + case 0: /* sudo_set_key_V7 - new_ */; + return _toStringLookupasStaticLookupSource( + &m->basic.sudo_set_key_V7.new_, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 6403: /* module 25 call 3 */ + switch (itemIdx) { + case 0: /* sudo_sudo_as_V7 - who */; + return _toStringLookupasStaticLookupSource( + &m->basic.sudo_sudo_as_V7.who, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* sudo_sudo_as_V7 - call */; + return _toStringCall( + &m->basic.sudo_sudo_as_V7.call, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } case 6656: /* module 26 call 0 */ switch (itemIdx) { - case 0: /* asset_register_ticker_V4 - ticker */; + case 0: /* asset_register_unique_ticker_V7 - ticker */; return _toStringTicker( - &m->nested.asset_register_ticker_V4.ticker, + &m->basic.asset_register_unique_ticker_V7.ticker, outValue, outValueLen, pageIdx, pageCount); default: @@ -10688,9 +10274,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 6657: /* module 26 call 1 */ switch (itemIdx) { - case 0: /* asset_accept_ticker_transfer_V4 - auth_id */; + case 0: /* asset_accept_ticker_transfer_V7 - auth_id */; return _toStringu64( - &m->nested.asset_accept_ticker_transfer_V4.auth_id, + &m->nested.asset_accept_ticker_transfer_V7.auth_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -10698,9 +10284,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 6658: /* module 26 call 2 */ switch (itemIdx) { - case 0: /* asset_accept_asset_ownership_transfer_V4 - auth_id */; + case 0: /* asset_accept_asset_ownership_transfer_V7 - auth_id */; return _toStringu64( - &m->nested.asset_accept_asset_ownership_transfer_V4.auth_id, + &m->nested.asset_accept_asset_ownership_transfer_V7.auth_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -10708,34 +10294,29 @@ parser_error_t _getMethod_ItemValue_V4( } case 6659: /* module 26 call 3 */ switch (itemIdx) { - case 0: /* asset_create_asset_V4 - name */; + case 0: /* asset_create_asset_V7 - asset_name */; return _toStringAssetName( - &m->nested.asset_create_asset_V4.name, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* asset_create_asset_V4 - ticker */; - return _toStringTicker( - &m->nested.asset_create_asset_V4.ticker, + &m->nested.asset_create_asset_V7.asset_name, outValue, outValueLen, pageIdx, pageCount); - case 2: /* asset_create_asset_V4 - divisible */; + case 1: /* asset_create_asset_V7 - divisible */; return _toStringbool( - &m->nested.asset_create_asset_V4.divisible, + &m->nested.asset_create_asset_V7.divisible, outValue, outValueLen, pageIdx, pageCount); - case 3: /* asset_create_asset_V4 - asset_type */; + case 2: /* asset_create_asset_V7 - asset_type */; return _toStringAssetType( - &m->nested.asset_create_asset_V4.asset_type, + &m->nested.asset_create_asset_V7.asset_type, outValue, outValueLen, pageIdx, pageCount); - case 4: /* asset_create_asset_V4 - identifiers */; + case 3: /* asset_create_asset_V7 - asset_identifiers */; return _toStringVecAssetIdentifier( - &m->nested.asset_create_asset_V4.identifiers, + &m->nested.asset_create_asset_V7.asset_identifiers, outValue, outValueLen, pageIdx, pageCount); - case 5: /* asset_create_asset_V4 - funding_round */; + case 4: /* asset_create_asset_V7 - funding_round_name */; return _toStringOptionFundingRoundName( - &m->nested.asset_create_asset_V4.funding_round, + &m->nested.asset_create_asset_V7.funding_round_name, outValue, outValueLen, pageIdx, pageCount); default: @@ -10743,9 +10324,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 6660: /* module 26 call 4 */ switch (itemIdx) { - case 0: /* asset_freeze_V4 - ticker */; - return _toStringTicker( - &m->nested.asset_freeze_V4.ticker, + case 0: /* asset_freeze_V7 - asset_id */; + return _toStringAssetID( + &m->nested.asset_freeze_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -10753,9 +10334,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 6661: /* module 26 call 5 */ switch (itemIdx) { - case 0: /* asset_unfreeze_V4 - ticker */; - return _toStringTicker( - &m->nested.asset_unfreeze_V4.ticker, + case 0: /* asset_unfreeze_V7 - asset_id */; + return _toStringAssetID( + &m->nested.asset_unfreeze_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -10763,14 +10344,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 6662: /* module 26 call 6 */ switch (itemIdx) { - case 0: /* asset_rename_asset_V4 - ticker */; - return _toStringTicker( - &m->nested.asset_rename_asset_V4.ticker, + case 0: /* asset_rename_asset_V7 - asset_id */; + return _toStringAssetID( + &m->nested.asset_rename_asset_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* asset_rename_asset_V4 - name */; + case 1: /* asset_rename_asset_V7 - asset_name */; return _toStringAssetName( - &m->nested.asset_rename_asset_V4.name, + &m->nested.asset_rename_asset_V7.asset_name, outValue, outValueLen, pageIdx, pageCount); default: @@ -10778,19 +10359,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 6663: /* module 26 call 7 */ switch (itemIdx) { - case 0: /* asset_issue_V4 - ticker */; - return _toStringTicker( - &m->nested.asset_issue_V4.ticker, + case 0: /* asset_issue_V7 - asset_id */; + return _toStringAssetID( + &m->nested.asset_issue_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* asset_issue_V4 - amount */; + case 1: /* asset_issue_V7 - amount */; return _toStringBalanceNoSymbol( - &m->nested.asset_issue_V4.amount, + &m->nested.asset_issue_V7.amount, outValue, outValueLen, pageIdx, pageCount); - case 2: /* asset_issue_V4 - portfolio_kind */; + case 2: /* asset_issue_V7 - portfolio_kind */; return _toStringPortfolioKind( - &m->nested.asset_issue_V4.portfolio_kind, + &m->nested.asset_issue_V7.portfolio_kind, outValue, outValueLen, pageIdx, pageCount); default: @@ -10798,14 +10379,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 6664: /* module 26 call 8 */ switch (itemIdx) { - case 0: /* asset_redeem_V4 - ticker */; - return _toStringTicker( - &m->nested.asset_redeem_V4.ticker, + case 0: /* asset_redeem_V7 - asset_id */; + return _toStringAssetID( + &m->nested.asset_redeem_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* asset_redeem_V4 - amount */; + case 1: /* asset_redeem_V7 - amount */; return _toStringBalanceNoSymbol( - &m->nested.asset_redeem_V4.amount, + &m->nested.asset_redeem_V7.amount, + outValue, outValueLen, + pageIdx, pageCount); + case 2: /* asset_redeem_V7 - portfolio_kind */; + return _toStringPortfolioKind( + &m->nested.asset_redeem_V7.portfolio_kind, outValue, outValueLen, pageIdx, pageCount); default: @@ -10813,9 +10399,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 6665: /* module 26 call 9 */ switch (itemIdx) { - case 0: /* asset_make_divisible_V4 - ticker */; - return _toStringTicker( - &m->nested.asset_make_divisible_V4.ticker, + case 0: /* asset_make_divisible_V7 - asset_id */; + return _toStringAssetID( + &m->nested.asset_make_divisible_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -10823,14 +10409,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 6666: /* module 26 call 10 */ switch (itemIdx) { - case 0: /* asset_add_documents_V4 - docs */; + case 0: /* asset_add_documents_V7 - docs */; return _toStringVecDocument( - &m->nested.asset_add_documents_V4.docs, + &m->nested.asset_add_documents_V7.docs, outValue, outValueLen, pageIdx, pageCount); - case 1: /* asset_add_documents_V4 - ticker */; - return _toStringTicker( - &m->nested.asset_add_documents_V4.ticker, + case 1: /* asset_add_documents_V7 - asset_id */; + return _toStringAssetID( + &m->nested.asset_add_documents_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -10838,14 +10424,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 6667: /* module 26 call 11 */ switch (itemIdx) { - case 0: /* asset_remove_documents_V4 - ids */; + case 0: /* asset_remove_documents_V7 - docs_id */; return _toStringVecDocumentId( - &m->nested.asset_remove_documents_V4.ids, + &m->nested.asset_remove_documents_V7.docs_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* asset_remove_documents_V4 - ticker */; - return _toStringTicker( - &m->nested.asset_remove_documents_V4.ticker, + case 1: /* asset_remove_documents_V7 - asset_id */; + return _toStringAssetID( + &m->nested.asset_remove_documents_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -10853,14 +10439,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 6668: /* module 26 call 12 */ switch (itemIdx) { - case 0: /* asset_set_funding_round_V4 - ticker */; - return _toStringTicker( - &m->nested.asset_set_funding_round_V4.ticker, + case 0: /* asset_set_funding_round_V7 - asset_id */; + return _toStringAssetID( + &m->nested.asset_set_funding_round_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* asset_set_funding_round_V4 - name */; + case 1: /* asset_set_funding_round_V7 - founding_round_name */; return _toStringFundingRoundName( - &m->nested.asset_set_funding_round_V4.name, + &m->nested.asset_set_funding_round_V7.founding_round_name, outValue, outValueLen, pageIdx, pageCount); default: @@ -10868,14 +10454,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 6669: /* module 26 call 13 */ switch (itemIdx) { - case 0: /* asset_update_identifiers_V4 - ticker */; - return _toStringTicker( - &m->nested.asset_update_identifiers_V4.ticker, + case 0: /* asset_update_identifiers_V7 - asset_id */; + return _toStringAssetID( + &m->nested.asset_update_identifiers_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* asset_update_identifiers_V4 - asset_identifiers */; + case 1: /* asset_update_identifiers_V7 - asset_identifiers */; return _toStringVecAssetIdentifier( - &m->nested.asset_update_identifiers_V4.asset_identifiers, + &m->nested.asset_update_identifiers_V7.asset_identifiers, outValue, outValueLen, pageIdx, pageCount); default: @@ -10883,19 +10469,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 6670: /* module 26 call 14 */ switch (itemIdx) { - case 0: /* asset_controller_transfer_V4 - ticker */; - return _toStringTicker( - &m->basic.asset_controller_transfer_V4.ticker, + case 0: /* asset_controller_transfer_V7 - asset_id */; + return _toStringAssetID( + &m->basic.asset_controller_transfer_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* asset_controller_transfer_V4 - amount */; + case 1: /* asset_controller_transfer_V7 - amount */; return _toStringBalanceNoSymbol( - &m->basic.asset_controller_transfer_V4.amount, + &m->basic.asset_controller_transfer_V7.amount, outValue, outValueLen, pageIdx, pageCount); - case 2: /* asset_controller_transfer_V4 - from_portfolio */; + case 2: /* asset_controller_transfer_V7 - from_portfolio */; return _toStringPortfolioId( - &m->basic.asset_controller_transfer_V4.from_portfolio, + &m->basic.asset_controller_transfer_V7.from_portfolio, outValue, outValueLen, pageIdx, pageCount); default: @@ -10903,9 +10489,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 6671: /* module 26 call 15 */ switch (itemIdx) { - case 0: /* asset_register_custom_asset_type_V4 - ty */; + case 0: /* asset_register_custom_asset_type_V7 - ty */; return _toStringVecu8( - &m->basic.asset_register_custom_asset_type_V4.ty, + &m->basic.asset_register_custom_asset_type_V7.ty, outValue, outValueLen, pageIdx, pageCount); default: @@ -10913,34 +10499,29 @@ parser_error_t _getMethod_ItemValue_V4( } case 6672: /* module 26 call 16 */ switch (itemIdx) { - case 0: /* asset_create_asset_with_custom_type_V4 - name */; + case 0: /* asset_create_asset_with_custom_type_V7 - asset_name */; return _toStringAssetName( - &m->basic.asset_create_asset_with_custom_type_V4.name, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* asset_create_asset_with_custom_type_V4 - ticker */; - return _toStringTicker( - &m->basic.asset_create_asset_with_custom_type_V4.ticker, + &m->basic.asset_create_asset_with_custom_type_V7.asset_name, outValue, outValueLen, pageIdx, pageCount); - case 2: /* asset_create_asset_with_custom_type_V4 - divisible */; + case 1: /* asset_create_asset_with_custom_type_V7 - divisible */; return _toStringbool( - &m->basic.asset_create_asset_with_custom_type_V4.divisible, + &m->basic.asset_create_asset_with_custom_type_V7.divisible, outValue, outValueLen, pageIdx, pageCount); - case 3: /* asset_create_asset_with_custom_type_V4 - custom_asset_type */; + case 2: /* asset_create_asset_with_custom_type_V7 - custom_asset_type */; return _toStringVecu8( - &m->basic.asset_create_asset_with_custom_type_V4.custom_asset_type, + &m->basic.asset_create_asset_with_custom_type_V7.custom_asset_type, outValue, outValueLen, pageIdx, pageCount); - case 4: /* asset_create_asset_with_custom_type_V4 - identifiers */; + case 3: /* asset_create_asset_with_custom_type_V7 - asset_identifiers */; return _toStringVecAssetIdentifier( - &m->basic.asset_create_asset_with_custom_type_V4.identifiers, + &m->basic.asset_create_asset_with_custom_type_V7.asset_identifiers, outValue, outValueLen, pageIdx, pageCount); - case 5: /* asset_create_asset_with_custom_type_V4 - funding_round */; + case 4: /* asset_create_asset_with_custom_type_V7 - funding_round_name */; return _toStringOptionFundingRoundName( - &m->basic.asset_create_asset_with_custom_type_V4.funding_round, + &m->basic.asset_create_asset_with_custom_type_V7.funding_round_name, outValue, outValueLen, pageIdx, pageCount); default: @@ -10948,24 +10529,24 @@ parser_error_t _getMethod_ItemValue_V4( } case 6673: /* module 26 call 17 */ switch (itemIdx) { - case 0: /* asset_set_asset_metadata_V4 - ticker */; - return _toStringTicker( - &m->basic.asset_set_asset_metadata_V4.ticker, + case 0: /* asset_set_asset_metadata_V7 - asset_id */; + return _toStringAssetID( + &m->basic.asset_set_asset_metadata_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* asset_set_asset_metadata_V4 - key */; + case 1: /* asset_set_asset_metadata_V7 - key */; return _toStringAssetMetadataKey( - &m->basic.asset_set_asset_metadata_V4.key, + &m->basic.asset_set_asset_metadata_V7.key, outValue, outValueLen, pageIdx, pageCount); - case 2: /* asset_set_asset_metadata_V4 - value */; + case 2: /* asset_set_asset_metadata_V7 - value */; return _toStringAssetMetadataValue( - &m->basic.asset_set_asset_metadata_V4.value, + &m->basic.asset_set_asset_metadata_V7.value, outValue, outValueLen, pageIdx, pageCount); - case 3: /* asset_set_asset_metadata_V4 - detail */; + case 3: /* asset_set_asset_metadata_V7 - detail */; return _toStringOptionAssetMetadataValueDetailMoment( - &m->basic.asset_set_asset_metadata_V4.detail, + &m->basic.asset_set_asset_metadata_V7.detail, outValue, outValueLen, pageIdx, pageCount); default: @@ -10973,19 +10554,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 6674: /* module 26 call 18 */ switch (itemIdx) { - case 0: /* asset_set_asset_metadata_details_V4 - ticker */; - return _toStringTicker( - &m->basic.asset_set_asset_metadata_details_V4.ticker, + case 0: /* asset_set_asset_metadata_details_V7 - asset_id */; + return _toStringAssetID( + &m->basic.asset_set_asset_metadata_details_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* asset_set_asset_metadata_details_V4 - key */; + case 1: /* asset_set_asset_metadata_details_V7 - key */; return _toStringAssetMetadataKey( - &m->basic.asset_set_asset_metadata_details_V4.key, + &m->basic.asset_set_asset_metadata_details_V7.key, outValue, outValueLen, pageIdx, pageCount); - case 2: /* asset_set_asset_metadata_details_V4 - detail */; + case 2: /* asset_set_asset_metadata_details_V7 - detail */; return _toStringAssetMetadataValueDetailMoment( - &m->basic.asset_set_asset_metadata_details_V4.detail, + &m->basic.asset_set_asset_metadata_details_V7.detail, outValue, outValueLen, pageIdx, pageCount); default: @@ -10993,29 +10574,29 @@ parser_error_t _getMethod_ItemValue_V4( } case 6675: /* module 26 call 19 */ switch (itemIdx) { - case 0: /* asset_register_and_set_local_asset_metadata_V4 - ticker */; - return _toStringTicker( - &m->basic.asset_register_and_set_local_asset_metadata_V4.ticker, + case 0: /* asset_register_and_set_local_asset_metadata_V7 - asset_id */; + return _toStringAssetID( + &m->basic.asset_register_and_set_local_asset_metadata_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* asset_register_and_set_local_asset_metadata_V4 - name */; + case 1: /* asset_register_and_set_local_asset_metadata_V7 - name */; return _toStringAssetMetadataName( - &m->basic.asset_register_and_set_local_asset_metadata_V4.name, + &m->basic.asset_register_and_set_local_asset_metadata_V7.name, outValue, outValueLen, pageIdx, pageCount); - case 2: /* asset_register_and_set_local_asset_metadata_V4 - spec */; + case 2: /* asset_register_and_set_local_asset_metadata_V7 - spec */; return _toStringAssetMetadataSpec( - &m->basic.asset_register_and_set_local_asset_metadata_V4.spec, + &m->basic.asset_register_and_set_local_asset_metadata_V7.spec, outValue, outValueLen, pageIdx, pageCount); - case 3: /* asset_register_and_set_local_asset_metadata_V4 - value */; + case 3: /* asset_register_and_set_local_asset_metadata_V7 - value */; return _toStringAssetMetadataValue( - &m->basic.asset_register_and_set_local_asset_metadata_V4.value, + &m->basic.asset_register_and_set_local_asset_metadata_V7.value, outValue, outValueLen, pageIdx, pageCount); - case 4: /* asset_register_and_set_local_asset_metadata_V4 - detail */; + case 4: /* asset_register_and_set_local_asset_metadata_V7 - detail */; return _toStringOptionAssetMetadataValueDetailMoment( - &m->basic.asset_register_and_set_local_asset_metadata_V4.detail, + &m->basic.asset_register_and_set_local_asset_metadata_V7.detail, outValue, outValueLen, pageIdx, pageCount); default: @@ -11023,19 +10604,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 6676: /* module 26 call 20 */ switch (itemIdx) { - case 0: /* asset_register_asset_metadata_local_type_V4 - ticker */; - return _toStringTicker( - &m->basic.asset_register_asset_metadata_local_type_V4.ticker, + case 0: /* asset_register_asset_metadata_local_type_V7 - asset_id */; + return _toStringAssetID( + &m->basic.asset_register_asset_metadata_local_type_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* asset_register_asset_metadata_local_type_V4 - name */; + case 1: /* asset_register_asset_metadata_local_type_V7 - name */; return _toStringAssetMetadataName( - &m->basic.asset_register_asset_metadata_local_type_V4.name, + &m->basic.asset_register_asset_metadata_local_type_V7.name, outValue, outValueLen, pageIdx, pageCount); - case 2: /* asset_register_asset_metadata_local_type_V4 - spec */; + case 2: /* asset_register_asset_metadata_local_type_V7 - spec */; return _toStringAssetMetadataSpec( - &m->basic.asset_register_asset_metadata_local_type_V4.spec, + &m->basic.asset_register_asset_metadata_local_type_V7.spec, outValue, outValueLen, pageIdx, pageCount); default: @@ -11043,14 +10624,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 6677: /* module 26 call 21 */ switch (itemIdx) { - case 0: /* asset_register_asset_metadata_global_type_V4 - name */; + case 0: /* asset_register_asset_metadata_global_type_V7 - name */; return _toStringAssetMetadataName( - &m->basic.asset_register_asset_metadata_global_type_V4.name, + &m->basic.asset_register_asset_metadata_global_type_V7.name, outValue, outValueLen, pageIdx, pageCount); - case 1: /* asset_register_asset_metadata_global_type_V4 - spec */; + case 1: /* asset_register_asset_metadata_global_type_V7 - spec */; return _toStringAssetMetadataSpec( - &m->basic.asset_register_asset_metadata_global_type_V4.spec, + &m->basic.asset_register_asset_metadata_global_type_V7.spec, outValue, outValueLen, pageIdx, pageCount); default: @@ -11058,19 +10639,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 6678: /* module 26 call 22 */ switch (itemIdx) { - case 0: /* asset_redeem_from_portfolio_V4 - ticker */; - return _toStringTicker( - &m->basic.asset_redeem_from_portfolio_V4.ticker, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* asset_redeem_from_portfolio_V4 - amount */; - return _toStringBalanceNoSymbol( - &m->basic.asset_redeem_from_portfolio_V4.amount, + case 0: /* asset_update_asset_type_V7 - asset_id */; + return _toStringAssetID( + &m->basic.asset_update_asset_type_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 2: /* asset_redeem_from_portfolio_V4 - portfolio */; - return _toStringPortfolioKind( - &m->basic.asset_redeem_from_portfolio_V4.portfolio, + case 1: /* asset_update_asset_type_V7 - asset_type */; + return _toStringAssetType( + &m->basic.asset_update_asset_type_V7.asset_type, outValue, outValueLen, pageIdx, pageCount); default: @@ -11078,14 +10654,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 6679: /* module 26 call 23 */ switch (itemIdx) { - case 0: /* asset_update_asset_type_V4 - ticker */; - return _toStringTicker( - &m->basic.asset_update_asset_type_V4.ticker, + case 0: /* asset_remove_local_metadata_key_V7 - asset_id */; + return _toStringAssetID( + &m->basic.asset_remove_local_metadata_key_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* asset_update_asset_type_V4 - asset_type */; - return _toStringAssetType( - &m->basic.asset_update_asset_type_V4.asset_type, + case 1: /* asset_remove_local_metadata_key_V7 - local_key */; + return _toStringAssetMetadataLocalKey( + &m->basic.asset_remove_local_metadata_key_V7.local_key, outValue, outValueLen, pageIdx, pageCount); default: @@ -11093,14 +10669,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 6680: /* module 26 call 24 */ switch (itemIdx) { - case 0: /* asset_remove_local_metadata_key_V4 - ticker */; - return _toStringTicker( - &m->basic.asset_remove_local_metadata_key_V4.ticker, + case 0: /* asset_remove_metadata_value_V7 - asset_id */; + return _toStringAssetID( + &m->basic.asset_remove_metadata_value_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* asset_remove_local_metadata_key_V4 - local_key */; - return _toStringAssetMetadataLocalKey( - &m->basic.asset_remove_local_metadata_key_V4.local_key, + case 1: /* asset_remove_metadata_value_V7 - metadata_key */; + return _toStringAssetMetadataKey( + &m->basic.asset_remove_metadata_value_V7.metadata_key, outValue, outValueLen, pageIdx, pageCount); default: @@ -11108,14 +10684,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 6681: /* module 26 call 25 */ switch (itemIdx) { - case 0: /* asset_remove_metadata_value_V4 - ticker */; - return _toStringTicker( - &m->basic.asset_remove_metadata_value_V4.ticker, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* asset_remove_metadata_value_V4 - metadata_key */; - return _toStringAssetMetadataKey( - &m->basic.asset_remove_metadata_value_V4.metadata_key, + case 0: /* asset_exempt_asset_affirmation_V7 - asset_id */; + return _toStringAssetID( + &m->basic.asset_exempt_asset_affirmation_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -11123,9 +10694,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 6682: /* module 26 call 26 */ switch (itemIdx) { - case 0: /* asset_exempt_ticker_affirmation_V4 - ticker */; - return _toStringTicker( - &m->basic.asset_exempt_ticker_affirmation_V4.ticker, + case 0: /* asset_remove_asset_affirmation_exemption_V7 - asset_id */; + return _toStringAssetID( + &m->basic.asset_remove_asset_affirmation_exemption_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -11133,9 +10704,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 6683: /* module 26 call 27 */ switch (itemIdx) { - case 0: /* asset_remove_ticker_affirmation_exemption_V4 - ticker */; - return _toStringTicker( - &m->basic.asset_remove_ticker_affirmation_exemption_V4.ticker, + case 0: /* asset_pre_approve_asset_V7 - asset_id */; + return _toStringAssetID( + &m->basic.asset_pre_approve_asset_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -11143,19 +10714,24 @@ parser_error_t _getMethod_ItemValue_V4( } case 6684: /* module 26 call 28 */ switch (itemIdx) { - case 0: /* asset_pre_approve_ticker_V4 - ticker */; - return _toStringTicker( - &m->basic.asset_pre_approve_ticker_V4.ticker, + case 0: /* asset_remove_asset_pre_approval_V7 - asset_id */; + return _toStringAssetID( + &m->basic.asset_remove_asset_pre_approval_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); default: return parser_no_data; } - case 6685: /* module 26 call 29 */ + case 6687: /* module 26 call 31 */ switch (itemIdx) { - case 0: /* asset_remove_ticker_pre_approval_V4 - ticker */; + case 0: /* asset_link_ticker_to_asset_id_V7 - ticker */; return _toStringTicker( - &m->basic.asset_remove_ticker_pre_approval_V4.ticker, + &m->basic.asset_link_ticker_to_asset_id_V7.ticker, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* asset_link_ticker_to_asset_id_V7 - asset_id */; + return _toStringAssetID( + &m->basic.asset_link_ticker_to_asset_id_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -11163,39 +10739,39 @@ parser_error_t _getMethod_ItemValue_V4( } case 6912: /* module 27 call 0 */ switch (itemIdx) { - case 0: /* capitaldistribution_distribute_V4 - ca_id */; + case 0: /* capitaldistribution_distribute_V7 - ca_id */; return _toStringCAId( - &m->nested.capitaldistribution_distribute_V4.ca_id, + &m->nested.capitaldistribution_distribute_V7.ca_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* capitaldistribution_distribute_V4 - portfolio */; + case 1: /* capitaldistribution_distribute_V7 - portfolio */; return _toStringOptionPortfolioNumber( - &m->nested.capitaldistribution_distribute_V4.portfolio, + &m->nested.capitaldistribution_distribute_V7.portfolio, outValue, outValueLen, pageIdx, pageCount); - case 2: /* capitaldistribution_distribute_V4 - currency */; - return _toStringTicker( - &m->nested.capitaldistribution_distribute_V4.currency, + case 2: /* capitaldistribution_distribute_V7 - currency */; + return _toStringAssetID( + &m->nested.capitaldistribution_distribute_V7.currency, outValue, outValueLen, pageIdx, pageCount); - case 3: /* capitaldistribution_distribute_V4 - per_share */; + case 3: /* capitaldistribution_distribute_V7 - per_share */; return _toStringBalance( - &m->nested.capitaldistribution_distribute_V4.per_share, + &m->nested.capitaldistribution_distribute_V7.per_share, outValue, outValueLen, pageIdx, pageCount); - case 4: /* capitaldistribution_distribute_V4 - amount */; + case 4: /* capitaldistribution_distribute_V7 - amount */; return _toStringBalance( - &m->nested.capitaldistribution_distribute_V4.amount, + &m->nested.capitaldistribution_distribute_V7.amount, outValue, outValueLen, pageIdx, pageCount); - case 5: /* capitaldistribution_distribute_V4 - payment_at */; + case 5: /* capitaldistribution_distribute_V7 - payment_at */; return _toStringMoment( - &m->nested.capitaldistribution_distribute_V4.payment_at, + &m->nested.capitaldistribution_distribute_V7.payment_at, outValue, outValueLen, pageIdx, pageCount); - case 6: /* capitaldistribution_distribute_V4 - expires_at */; + case 6: /* capitaldistribution_distribute_V7 - expires_at */; return _toStringOptionMoment( - &m->nested.capitaldistribution_distribute_V4.expires_at, + &m->nested.capitaldistribution_distribute_V7.expires_at, outValue, outValueLen, pageIdx, pageCount); default: @@ -11203,9 +10779,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 6913: /* module 27 call 1 */ switch (itemIdx) { - case 0: /* capitaldistribution_claim_V4 - ca_id */; + case 0: /* capitaldistribution_claim_V7 - ca_id */; return _toStringCAId( - &m->nested.capitaldistribution_claim_V4.ca_id, + &m->nested.capitaldistribution_claim_V7.ca_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -11213,14 +10789,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 6914: /* module 27 call 2 */ switch (itemIdx) { - case 0: /* capitaldistribution_push_benefit_V4 - ca_id */; + case 0: /* capitaldistribution_push_benefit_V7 - ca_id */; return _toStringCAId( - &m->nested.capitaldistribution_push_benefit_V4.ca_id, + &m->nested.capitaldistribution_push_benefit_V7.ca_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* capitaldistribution_push_benefit_V4 - holder */; + case 1: /* capitaldistribution_push_benefit_V7 - holder */; return _toStringIdentityId( - &m->nested.capitaldistribution_push_benefit_V4.holder, + &m->nested.capitaldistribution_push_benefit_V7.holder, outValue, outValueLen, pageIdx, pageCount); default: @@ -11228,9 +10804,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 6915: /* module 27 call 3 */ switch (itemIdx) { - case 0: /* capitaldistribution_reclaim_V4 - ca_id */; + case 0: /* capitaldistribution_reclaim_V7 - ca_id */; return _toStringCAId( - &m->nested.capitaldistribution_reclaim_V4.ca_id, + &m->nested.capitaldistribution_reclaim_V7.ca_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -11238,9 +10814,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 6916: /* module 27 call 4 */ switch (itemIdx) { - case 0: /* capitaldistribution_remove_distribution_V4 - ca_id */; + case 0: /* capitaldistribution_remove_distribution_V7 - ca_id */; return _toStringCAId( - &m->nested.capitaldistribution_remove_distribution_V4.ca_id, + &m->nested.capitaldistribution_remove_distribution_V7.ca_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -11248,9 +10824,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 7168: /* module 28 call 0 */ switch (itemIdx) { - case 0: /* checkpoint_create_checkpoint_V4 - ticker */; - return _toStringTicker( - &m->nested.checkpoint_create_checkpoint_V4.ticker, + case 0: /* checkpoint_create_checkpoint_V7 - asset_id */; + return _toStringAssetID( + &m->nested.checkpoint_create_checkpoint_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -11258,9 +10834,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 7169: /* module 28 call 1 */ switch (itemIdx) { - case 0: /* checkpoint_set_schedules_max_complexity_V4 - max_complexity */; + case 0: /* checkpoint_set_schedules_max_complexity_V7 - max_complexity */; return _toStringu64( - &m->nested.checkpoint_set_schedules_max_complexity_V4.max_complexity, + &m->nested.checkpoint_set_schedules_max_complexity_V7.max_complexity, outValue, outValueLen, pageIdx, pageCount); default: @@ -11268,14 +10844,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 7170: /* module 28 call 2 */ switch (itemIdx) { - case 0: /* checkpoint_create_schedule_V4 - ticker */; - return _toStringTicker( - &m->nested.checkpoint_create_schedule_V4.ticker, + case 0: /* checkpoint_create_schedule_V7 - asset_id */; + return _toStringAssetID( + &m->nested.checkpoint_create_schedule_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* checkpoint_create_schedule_V4 - schedule */; + case 1: /* checkpoint_create_schedule_V7 - schedule */; return _toStringScheduleCheckpoints( - &m->nested.checkpoint_create_schedule_V4.schedule, + &m->nested.checkpoint_create_schedule_V7.schedule, outValue, outValueLen, pageIdx, pageCount); default: @@ -11283,14 +10859,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 7171: /* module 28 call 3 */ switch (itemIdx) { - case 0: /* checkpoint_remove_schedule_V4 - ticker */; - return _toStringTicker( - &m->nested.checkpoint_remove_schedule_V4.ticker, + case 0: /* checkpoint_remove_schedule_V7 - asset_id */; + return _toStringAssetID( + &m->nested.checkpoint_remove_schedule_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* checkpoint_remove_schedule_V4 - id */; + case 1: /* checkpoint_remove_schedule_V7 - id */; return _toStringScheduleId( - &m->nested.checkpoint_remove_schedule_V4.id, + &m->nested.checkpoint_remove_schedule_V7.id, outValue, outValueLen, pageIdx, pageCount); default: @@ -11298,19 +10874,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 7424: /* module 29 call 0 */ switch (itemIdx) { - case 0: /* compliancemanager_add_compliance_requirement_V4 - ticker */; - return _toStringTicker( - &m->nested.compliancemanager_add_compliance_requirement_V4.ticker, + case 0: /* compliancemanager_add_compliance_requirement_V7 - asset_id */; + return _toStringAssetID( + &m->nested.compliancemanager_add_compliance_requirement_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* compliancemanager_add_compliance_requirement_V4 - sender_conditions */; + case 1: /* compliancemanager_add_compliance_requirement_V7 - sender_conditions */; return _toStringVecCondition( - &m->nested.compliancemanager_add_compliance_requirement_V4.sender_conditions, + &m->nested.compliancemanager_add_compliance_requirement_V7.sender_conditions, outValue, outValueLen, pageIdx, pageCount); - case 2: /* compliancemanager_add_compliance_requirement_V4 - receiver_conditions */; + case 2: /* compliancemanager_add_compliance_requirement_V7 - receiver_conditions */; return _toStringVecCondition( - &m->nested.compliancemanager_add_compliance_requirement_V4.receiver_conditions, + &m->nested.compliancemanager_add_compliance_requirement_V7.receiver_conditions, outValue, outValueLen, pageIdx, pageCount); default: @@ -11318,14 +10894,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 7425: /* module 29 call 1 */ switch (itemIdx) { - case 0: /* compliancemanager_remove_compliance_requirement_V4 - ticker */; - return _toStringTicker( - &m->nested.compliancemanager_remove_compliance_requirement_V4.ticker, + case 0: /* compliancemanager_remove_compliance_requirement_V7 - asset_id */; + return _toStringAssetID( + &m->nested.compliancemanager_remove_compliance_requirement_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* compliancemanager_remove_compliance_requirement_V4 - id */; + case 1: /* compliancemanager_remove_compliance_requirement_V7 - id */; return _toStringu32( - &m->nested.compliancemanager_remove_compliance_requirement_V4.id, + &m->nested.compliancemanager_remove_compliance_requirement_V7.id, outValue, outValueLen, pageIdx, pageCount); default: @@ -11333,14 +10909,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 7426: /* module 29 call 2 */ switch (itemIdx) { - case 0: /* compliancemanager_replace_asset_compliance_V4 - ticker */; - return _toStringTicker( - &m->nested.compliancemanager_replace_asset_compliance_V4.ticker, + case 0: /* compliancemanager_replace_asset_compliance_V7 - asset_id */; + return _toStringAssetID( + &m->nested.compliancemanager_replace_asset_compliance_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* compliancemanager_replace_asset_compliance_V4 - asset_compliance */; + case 1: /* compliancemanager_replace_asset_compliance_V7 - asset_compliance */; return _toStringVecComplianceRequirement( - &m->nested.compliancemanager_replace_asset_compliance_V4.asset_compliance, + &m->nested.compliancemanager_replace_asset_compliance_V7.asset_compliance, outValue, outValueLen, pageIdx, pageCount); default: @@ -11348,9 +10924,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 7427: /* module 29 call 3 */ switch (itemIdx) { - case 0: /* compliancemanager_reset_asset_compliance_V4 - ticker */; - return _toStringTicker( - &m->nested.compliancemanager_reset_asset_compliance_V4.ticker, + case 0: /* compliancemanager_reset_asset_compliance_V7 - asset_id */; + return _toStringAssetID( + &m->nested.compliancemanager_reset_asset_compliance_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -11358,9 +10934,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 7428: /* module 29 call 4 */ switch (itemIdx) { - case 0: /* compliancemanager_pause_asset_compliance_V4 - ticker */; - return _toStringTicker( - &m->nested.compliancemanager_pause_asset_compliance_V4.ticker, + case 0: /* compliancemanager_pause_asset_compliance_V7 - asset_id */; + return _toStringAssetID( + &m->nested.compliancemanager_pause_asset_compliance_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -11368,9 +10944,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 7429: /* module 29 call 5 */ switch (itemIdx) { - case 0: /* compliancemanager_resume_asset_compliance_V4 - ticker */; - return _toStringTicker( - &m->nested.compliancemanager_resume_asset_compliance_V4.ticker, + case 0: /* compliancemanager_resume_asset_compliance_V7 - asset_id */; + return _toStringAssetID( + &m->nested.compliancemanager_resume_asset_compliance_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -11378,14 +10954,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 7430: /* module 29 call 6 */ switch (itemIdx) { - case 0: /* compliancemanager_add_default_trusted_claim_issuer_V4 - ticker */; - return _toStringTicker( - &m->nested.compliancemanager_add_default_trusted_claim_issuer_V4.ticker, + case 0: /* compliancemanager_add_default_trusted_claim_issuer_V7 - asset_id */; + return _toStringAssetID( + &m->nested.compliancemanager_add_default_trusted_claim_issuer_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* compliancemanager_add_default_trusted_claim_issuer_V4 - issuer */; + case 1: /* compliancemanager_add_default_trusted_claim_issuer_V7 - issuer */; return _toStringTrustedIssuer( - &m->nested.compliancemanager_add_default_trusted_claim_issuer_V4.issuer, + &m->nested.compliancemanager_add_default_trusted_claim_issuer_V7.issuer, outValue, outValueLen, pageIdx, pageCount); default: @@ -11393,14 +10969,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 7431: /* module 29 call 7 */ switch (itemIdx) { - case 0: /* compliancemanager_remove_default_trusted_claim_issuer_V4 - ticker */; - return _toStringTicker( - &m->nested.compliancemanager_remove_default_trusted_claim_issuer_V4.ticker, + case 0: /* compliancemanager_remove_default_trusted_claim_issuer_V7 - asset_id */; + return _toStringAssetID( + &m->nested.compliancemanager_remove_default_trusted_claim_issuer_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* compliancemanager_remove_default_trusted_claim_issuer_V4 - issuer */; + case 1: /* compliancemanager_remove_default_trusted_claim_issuer_V7 - issuer */; return _toStringIdentityId( - &m->nested.compliancemanager_remove_default_trusted_claim_issuer_V4.issuer, + &m->nested.compliancemanager_remove_default_trusted_claim_issuer_V7.issuer, outValue, outValueLen, pageIdx, pageCount); default: @@ -11408,14 +10984,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 7432: /* module 29 call 8 */ switch (itemIdx) { - case 0: /* compliancemanager_change_compliance_requirement_V4 - ticker */; - return _toStringTicker( - &m->nested.compliancemanager_change_compliance_requirement_V4.ticker, + case 0: /* compliancemanager_change_compliance_requirement_V7 - asset_id */; + return _toStringAssetID( + &m->nested.compliancemanager_change_compliance_requirement_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* compliancemanager_change_compliance_requirement_V4 - new_req */; + case 1: /* compliancemanager_change_compliance_requirement_V7 - new_req */; return _toStringComplianceRequirement( - &m->nested.compliancemanager_change_compliance_requirement_V4.new_req, + &m->nested.compliancemanager_change_compliance_requirement_V7.new_req, outValue, outValueLen, pageIdx, pageCount); default: @@ -11423,9 +10999,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 8448: /* module 33 call 0 */ switch (itemIdx) { - case 0: /* pips_set_prune_historical_pips_V4 - prune */; + case 0: /* pips_set_prune_historical_pips_V7 - prune */; return _toStringbool( - &m->nested.pips_set_prune_historical_pips_V4.prune, + &m->nested.pips_set_prune_historical_pips_V7.prune, outValue, outValueLen, pageIdx, pageCount); default: @@ -11433,9 +11009,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 8449: /* module 33 call 1 */ switch (itemIdx) { - case 0: /* pips_set_min_proposal_deposit_V4 - deposit */; + case 0: /* pips_set_min_proposal_deposit_V7 - deposit */; return _toStringBalance( - &m->nested.pips_set_min_proposal_deposit_V4.deposit, + &m->nested.pips_set_min_proposal_deposit_V7.deposit, outValue, outValueLen, pageIdx, pageCount); default: @@ -11443,9 +11019,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 8450: /* module 33 call 2 */ switch (itemIdx) { - case 0: /* pips_set_default_enactment_period_V4 - duration */; + case 0: /* pips_set_default_enactment_period_V7 - duration */; return _toStringBlockNumber( - &m->nested.pips_set_default_enactment_period_V4.duration, + &m->nested.pips_set_default_enactment_period_V7.duration, outValue, outValueLen, pageIdx, pageCount); default: @@ -11453,9 +11029,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 8451: /* module 33 call 3 */ switch (itemIdx) { - case 0: /* pips_set_pending_pip_expiry_V4 - expiry */; + case 0: /* pips_set_pending_pip_expiry_V7 - expiry */; return _toStringMaybeBlockBlockNumber( - &m->nested.pips_set_pending_pip_expiry_V4.expiry, + &m->nested.pips_set_pending_pip_expiry_V7.expiry, outValue, outValueLen, pageIdx, pageCount); default: @@ -11463,9 +11039,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 8452: /* module 33 call 4 */ switch (itemIdx) { - case 0: /* pips_set_max_pip_skip_count_V4 - max */; + case 0: /* pips_set_max_pip_skip_count_V7 - max */; return _toStringSkippedCount( - &m->nested.pips_set_max_pip_skip_count_V4.max, + &m->nested.pips_set_max_pip_skip_count_V7.max, outValue, outValueLen, pageIdx, pageCount); default: @@ -11473,9 +11049,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 8453: /* module 33 call 5 */ switch (itemIdx) { - case 0: /* pips_set_active_pip_limit_V4 - limit */; + case 0: /* pips_set_active_pip_limit_V7 - limit */; return _toStringu32( - &m->nested.pips_set_active_pip_limit_V4.limit, + &m->nested.pips_set_active_pip_limit_V7.limit, outValue, outValueLen, pageIdx, pageCount); default: @@ -11483,9 +11059,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 8456: /* module 33 call 8 */ switch (itemIdx) { - case 0: /* pips_approve_committee_proposal_V4 - id */; + case 0: /* pips_approve_committee_proposal_V7 - id */; return _toStringPipId( - &m->nested.pips_approve_committee_proposal_V4.id, + &m->nested.pips_approve_committee_proposal_V7.id, outValue, outValueLen, pageIdx, pageCount); default: @@ -11493,9 +11069,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 8457: /* module 33 call 9 */ switch (itemIdx) { - case 0: /* pips_reject_proposal_V4 - id */; + case 0: /* pips_reject_proposal_V7 - id */; return _toStringPipId( - &m->nested.pips_reject_proposal_V4.id, + &m->nested.pips_reject_proposal_V7.id, outValue, outValueLen, pageIdx, pageCount); default: @@ -11503,9 +11079,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 8458: /* module 33 call 10 */ switch (itemIdx) { - case 0: /* pips_prune_proposal_V4 - id */; + case 0: /* pips_prune_proposal_V7 - id */; return _toStringPipId( - &m->nested.pips_prune_proposal_V4.id, + &m->nested.pips_prune_proposal_V7.id, outValue, outValueLen, pageIdx, pageCount); default: @@ -11513,14 +11089,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 8459: /* module 33 call 11 */ switch (itemIdx) { - case 0: /* pips_reschedule_execution_V4 - id */; + case 0: /* pips_reschedule_execution_V7 - id */; return _toStringPipId( - &m->nested.pips_reschedule_execution_V4.id, + &m->nested.pips_reschedule_execution_V7.id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* pips_reschedule_execution_V4 - until */; + case 1: /* pips_reschedule_execution_V7 - until */; return _toStringOptionBlockNumber( - &m->nested.pips_reschedule_execution_V4.until, + &m->nested.pips_reschedule_execution_V7.until, outValue, outValueLen, pageIdx, pageCount); default: @@ -11538,9 +11114,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 8463: /* module 33 call 15 */ switch (itemIdx) { - case 0: /* pips_execute_scheduled_pip_V4 - id */; + case 0: /* pips_execute_scheduled_pip_V7 - id */; return _toStringPipId( - &m->nested.pips_execute_scheduled_pip_V4.id, + &m->nested.pips_execute_scheduled_pip_V7.id, outValue, outValueLen, pageIdx, pageCount); default: @@ -11548,14 +11124,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 8464: /* module 33 call 16 */ switch (itemIdx) { - case 0: /* pips_expire_scheduled_pip_V4 - did */; + case 0: /* pips_expire_scheduled_pip_V7 - did */; return _toStringIdentityId( - &m->nested.pips_expire_scheduled_pip_V4.did, + &m->nested.pips_expire_scheduled_pip_V7.did, outValue, outValueLen, pageIdx, pageCount); - case 1: /* pips_expire_scheduled_pip_V4 - id */; + case 1: /* pips_expire_scheduled_pip_V7 - id */; return _toStringPipId( - &m->nested.pips_expire_scheduled_pip_V4.id, + &m->nested.pips_expire_scheduled_pip_V7.id, outValue, outValueLen, pageIdx, pageCount); default: @@ -11563,9 +11139,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 8704: /* module 34 call 0 */ switch (itemIdx) { - case 0: /* portfolio_create_portfolio_V4 - name */; + case 0: /* portfolio_create_portfolio_V7 - name */; return _toStringPortfolioName( - &m->nested.portfolio_create_portfolio_V4.name, + &m->nested.portfolio_create_portfolio_V7.name, outValue, outValueLen, pageIdx, pageCount); default: @@ -11573,9 +11149,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 8705: /* module 34 call 1 */ switch (itemIdx) { - case 0: /* portfolio_delete_portfolio_V4 - num */; + case 0: /* portfolio_delete_portfolio_V7 - num */; return _toStringPortfolioNumber( - &m->nested.portfolio_delete_portfolio_V4.num, + &m->nested.portfolio_delete_portfolio_V7.num, outValue, outValueLen, pageIdx, pageCount); default: @@ -11583,14 +11159,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 8706: /* module 34 call 2 */ switch (itemIdx) { - case 0: /* portfolio_rename_portfolio_V4 - num */; + case 0: /* portfolio_rename_portfolio_V7 - num */; return _toStringPortfolioNumber( - &m->nested.portfolio_rename_portfolio_V4.num, + &m->nested.portfolio_rename_portfolio_V7.num, outValue, outValueLen, pageIdx, pageCount); - case 1: /* portfolio_rename_portfolio_V4 - to_name */; + case 1: /* portfolio_rename_portfolio_V7 - to_name */; return _toStringPortfolioName( - &m->nested.portfolio_rename_portfolio_V4.to_name, + &m->nested.portfolio_rename_portfolio_V7.to_name, outValue, outValueLen, pageIdx, pageCount); default: @@ -11598,9 +11174,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 8707: /* module 34 call 3 */ switch (itemIdx) { - case 0: /* portfolio_quit_portfolio_custody_V4 - pid */; + case 0: /* portfolio_quit_portfolio_custody_V7 - pid */; return _toStringPortfolioId( - &m->basic.portfolio_quit_portfolio_custody_V4.pid, + &m->basic.portfolio_quit_portfolio_custody_V7.pid, outValue, outValueLen, pageIdx, pageCount); default: @@ -11608,9 +11184,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 8708: /* module 34 call 4 */ switch (itemIdx) { - case 0: /* portfolio_accept_portfolio_custody_V4 - auth_id */; + case 0: /* portfolio_accept_portfolio_custody_V7 - auth_id */; return _toStringu64( - &m->basic.portfolio_accept_portfolio_custody_V4.auth_id, + &m->basic.portfolio_accept_portfolio_custody_V7.auth_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -11618,19 +11194,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 8709: /* module 34 call 5 */ switch (itemIdx) { - case 0: /* portfolio_move_portfolio_funds_V4 - from */; + case 0: /* portfolio_move_portfolio_funds_V7 - from */; return _toStringPortfolioId( - &m->nested.portfolio_move_portfolio_funds_V4.from, + &m->nested.portfolio_move_portfolio_funds_V7.from, outValue, outValueLen, pageIdx, pageCount); - case 1: /* portfolio_move_portfolio_funds_V4 - to */; + case 1: /* portfolio_move_portfolio_funds_V7 - to */; return _toStringPortfolioId( - &m->nested.portfolio_move_portfolio_funds_V4.to, + &m->nested.portfolio_move_portfolio_funds_V7.to, outValue, outValueLen, pageIdx, pageCount); - case 2: /* portfolio_move_portfolio_funds_V4 - funds */; + case 2: /* portfolio_move_portfolio_funds_V7 - funds */; return _toStringVecFund( - &m->nested.portfolio_move_portfolio_funds_V4.funds, + &m->nested.portfolio_move_portfolio_funds_V7.funds, outValue, outValueLen, pageIdx, pageCount); default: @@ -11638,14 +11214,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 8710: /* module 34 call 6 */ switch (itemIdx) { - case 0: /* portfolio_pre_approve_portfolio_V4 - ticker */; - return _toStringTicker( - &m->basic.portfolio_pre_approve_portfolio_V4.ticker, + case 0: /* portfolio_pre_approve_portfolio_V7 - asset_id */; + return _toStringAssetID( + &m->basic.portfolio_pre_approve_portfolio_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* portfolio_pre_approve_portfolio_V4 - portfolio_id */; + case 1: /* portfolio_pre_approve_portfolio_V7 - portfolio_id */; return _toStringPortfolioId( - &m->basic.portfolio_pre_approve_portfolio_V4.portfolio_id, + &m->basic.portfolio_pre_approve_portfolio_V7.portfolio_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -11653,14 +11229,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 8711: /* module 34 call 7 */ switch (itemIdx) { - case 0: /* portfolio_remove_portfolio_pre_approval_V4 - ticker */; - return _toStringTicker( - &m->basic.portfolio_remove_portfolio_pre_approval_V4.ticker, + case 0: /* portfolio_remove_portfolio_pre_approval_V7 - asset_id */; + return _toStringAssetID( + &m->basic.portfolio_remove_portfolio_pre_approval_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* portfolio_remove_portfolio_pre_approval_V4 - portfolio_id */; + case 1: /* portfolio_remove_portfolio_pre_approval_V7 - portfolio_id */; return _toStringPortfolioId( - &m->basic.portfolio_remove_portfolio_pre_approval_V4.portfolio_id, + &m->basic.portfolio_remove_portfolio_pre_approval_V7.portfolio_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -11668,9 +11244,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 8960: /* module 35 call 0 */ switch (itemIdx) { - case 0: /* protocolfee_change_coefficient_V4 - coefficient */; + case 0: /* protocolfee_change_coefficient_V7 - coefficient */; return _toStringPosRatio( - &m->nested.protocolfee_change_coefficient_V4.coefficient, + &m->nested.protocolfee_change_coefficient_V7.coefficient, outValue, outValueLen, pageIdx, pageCount); default: @@ -11678,19 +11254,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 9472: /* module 37 call 0 */ switch (itemIdx) { - case 0: /* settlement_create_venue_V4 - details */; + case 0: /* settlement_create_venue_V7 - details */; return _toStringVenueDetails( - &m->nested.settlement_create_venue_V4.details, + &m->nested.settlement_create_venue_V7.details, outValue, outValueLen, pageIdx, pageCount); - case 1: /* settlement_create_venue_V4 - signers */; + case 1: /* settlement_create_venue_V7 - signers */; return _toStringVecAccountId( - &m->nested.settlement_create_venue_V4.signers, + &m->nested.settlement_create_venue_V7.signers, outValue, outValueLen, pageIdx, pageCount); - case 2: /* settlement_create_venue_V4 - typ */; + case 2: /* settlement_create_venue_V7 - typ */; return _toStringVenueType( - &m->nested.settlement_create_venue_V4.typ, + &m->nested.settlement_create_venue_V7.typ, outValue, outValueLen, pageIdx, pageCount); default: @@ -11698,14 +11274,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 9473: /* module 37 call 1 */ switch (itemIdx) { - case 0: /* settlement_update_venue_details_V4 - id */; + case 0: /* settlement_update_venue_details_V7 - id */; return _toStringVenueId( - &m->basic.settlement_update_venue_details_V4.id, + &m->basic.settlement_update_venue_details_V7.id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* settlement_update_venue_details_V4 - details */; + case 1: /* settlement_update_venue_details_V7 - details */; return _toStringVenueDetails( - &m->basic.settlement_update_venue_details_V4.details, + &m->basic.settlement_update_venue_details_V7.details, outValue, outValueLen, pageIdx, pageCount); default: @@ -11713,14 +11289,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 9474: /* module 37 call 2 */ switch (itemIdx) { - case 0: /* settlement_update_venue_type_V4 - id */; + case 0: /* settlement_update_venue_type_V7 - id */; return _toStringVenueId( - &m->basic.settlement_update_venue_type_V4.id, + &m->basic.settlement_update_venue_type_V7.id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* settlement_update_venue_type_V4 - typ */; + case 1: /* settlement_update_venue_type_V7 - typ */; return _toStringVenueType( - &m->basic.settlement_update_venue_type_V4.typ, + &m->basic.settlement_update_venue_type_V7.typ, outValue, outValueLen, pageIdx, pageCount); default: @@ -11728,19 +11304,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 9475: /* module 37 call 3 */ switch (itemIdx) { - case 0: /* settlement_affirm_with_receipts_V4 - id */; + case 0: /* settlement_affirm_with_receipts_V7 - id */; return _toStringInstructionId( - &m->nested.settlement_affirm_with_receipts_V4.id, + &m->nested.settlement_affirm_with_receipts_V7.id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* settlement_affirm_with_receipts_V4 - receipt_details */; + case 1: /* settlement_affirm_with_receipts_V7 - receipt_details */; return _toStringVecReceiptDetails( - &m->nested.settlement_affirm_with_receipts_V4.receipt_details, + &m->nested.settlement_affirm_with_receipts_V7.receipt_details, outValue, outValueLen, pageIdx, pageCount); - case 2: /* settlement_affirm_with_receipts_V4 - portfolios */; + case 2: /* settlement_affirm_with_receipts_V7 - portfolios */; return _toStringVecPortfolioId( - &m->nested.settlement_affirm_with_receipts_V4.portfolios, + &m->nested.settlement_affirm_with_receipts_V7.portfolios, outValue, outValueLen, pageIdx, pageCount); default: @@ -11748,14 +11324,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 9476: /* module 37 call 4 */ switch (itemIdx) { - case 0: /* settlement_set_venue_filtering_V4 - ticker */; - return _toStringTicker( - &m->nested.settlement_set_venue_filtering_V4.ticker, + case 0: /* settlement_set_venue_filtering_V7 - asset_id */; + return _toStringAssetID( + &m->nested.settlement_set_venue_filtering_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* settlement_set_venue_filtering_V4 - enabled */; + case 1: /* settlement_set_venue_filtering_V7 - enabled */; return _toStringbool( - &m->nested.settlement_set_venue_filtering_V4.enabled, + &m->nested.settlement_set_venue_filtering_V7.enabled, outValue, outValueLen, pageIdx, pageCount); default: @@ -11763,14 +11339,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 9477: /* module 37 call 5 */ switch (itemIdx) { - case 0: /* settlement_allow_venues_V4 - ticker */; - return _toStringTicker( - &m->nested.settlement_allow_venues_V4.ticker, + case 0: /* settlement_allow_venues_V7 - asset_id */; + return _toStringAssetID( + &m->nested.settlement_allow_venues_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* settlement_allow_venues_V4 - venues */; + case 1: /* settlement_allow_venues_V7 - venues */; return _toStringVecVenueId( - &m->nested.settlement_allow_venues_V4.venues, + &m->nested.settlement_allow_venues_V7.venues, outValue, outValueLen, pageIdx, pageCount); default: @@ -11778,14 +11354,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 9478: /* module 37 call 6 */ switch (itemIdx) { - case 0: /* settlement_disallow_venues_V4 - ticker */; - return _toStringTicker( - &m->nested.settlement_disallow_venues_V4.ticker, + case 0: /* settlement_disallow_venues_V7 - asset_id */; + return _toStringAssetID( + &m->nested.settlement_disallow_venues_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* settlement_disallow_venues_V4 - venues */; + case 1: /* settlement_disallow_venues_V7 - venues */; return _toStringVecVenueId( - &m->nested.settlement_disallow_venues_V4.venues, + &m->nested.settlement_disallow_venues_V7.venues, outValue, outValueLen, pageIdx, pageCount); default: @@ -11793,19 +11369,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 9479: /* module 37 call 7 */ switch (itemIdx) { - case 0: /* settlement_update_venue_signers_V4 - id */; + case 0: /* settlement_update_venue_signers_V7 - id */; return _toStringVenueId( - &m->basic.settlement_update_venue_signers_V4.id, + &m->basic.settlement_update_venue_signers_V7.id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* settlement_update_venue_signers_V4 - signers */; + case 1: /* settlement_update_venue_signers_V7 - signers */; return _toStringVecAccountId( - &m->basic.settlement_update_venue_signers_V4.signers, + &m->basic.settlement_update_venue_signers_V7.signers, outValue, outValueLen, pageIdx, pageCount); - case 2: /* settlement_update_venue_signers_V4 - add_signers */; + case 2: /* settlement_update_venue_signers_V7 - add_signers */; return _toStringbool( - &m->basic.settlement_update_venue_signers_V4.add_signers, + &m->basic.settlement_update_venue_signers_V7.add_signers, outValue, outValueLen, pageIdx, pageCount); default: @@ -11813,34 +11389,34 @@ parser_error_t _getMethod_ItemValue_V4( } case 9480: /* module 37 call 8 */ switch (itemIdx) { - case 0: /* settlement_execute_manual_instruction_V4 - id */; + case 0: /* settlement_execute_manual_instruction_V7 - id */; return _toStringInstructionId( - &m->basic.settlement_execute_manual_instruction_V4.id, + &m->basic.settlement_execute_manual_instruction_V7.id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* settlement_execute_manual_instruction_V4 - portfolio */; + case 1: /* settlement_execute_manual_instruction_V7 - portfolio */; return _toStringOptionPortfolioId( - &m->basic.settlement_execute_manual_instruction_V4.portfolio, + &m->basic.settlement_execute_manual_instruction_V7.portfolio, outValue, outValueLen, pageIdx, pageCount); - case 2: /* settlement_execute_manual_instruction_V4 - fungible_transfers */; + case 2: /* settlement_execute_manual_instruction_V7 - fungible_transfers */; return _toStringu32( - &m->basic.settlement_execute_manual_instruction_V4.fungible_transfers, + &m->basic.settlement_execute_manual_instruction_V7.fungible_transfers, outValue, outValueLen, pageIdx, pageCount); - case 3: /* settlement_execute_manual_instruction_V4 - nfts_transfers */; + case 3: /* settlement_execute_manual_instruction_V7 - nfts_transfers */; return _toStringu32( - &m->basic.settlement_execute_manual_instruction_V4.nfts_transfers, + &m->basic.settlement_execute_manual_instruction_V7.nfts_transfers, outValue, outValueLen, pageIdx, pageCount); - case 4: /* settlement_execute_manual_instruction_V4 - offchain_transfers */; + case 4: /* settlement_execute_manual_instruction_V7 - offchain_transfers */; return _toStringu32( - &m->basic.settlement_execute_manual_instruction_V4.offchain_transfers, + &m->basic.settlement_execute_manual_instruction_V7.offchain_transfers, outValue, outValueLen, pageIdx, pageCount); - case 5: /* settlement_execute_manual_instruction_V4 - weight_limit */; + case 5: /* settlement_execute_manual_instruction_V7 - weight_limit */; return _toStringOptionWeight( - &m->basic.settlement_execute_manual_instruction_V4.weight_limit, + &m->basic.settlement_execute_manual_instruction_V7.weight_limit, outValue, outValueLen, pageIdx, pageCount); default: @@ -11848,34 +11424,34 @@ parser_error_t _getMethod_ItemValue_V4( } case 9481: /* module 37 call 9 */ switch (itemIdx) { - case 0: /* settlement_add_instruction_V4 - venue_id */; - return _toStringVenueId( - &m->nested.settlement_add_instruction_V4.venue_id, + case 0: /* settlement_add_instruction_V7 - venue_id */; + return _toStringOptionVenueId( + &m->nested.settlement_add_instruction_V7.venue_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* settlement_add_instruction_V4 - settlement_type */; + case 1: /* settlement_add_instruction_V7 - settlement_type */; return _toStringSettlementTypeBlockNumber( - &m->nested.settlement_add_instruction_V4.settlement_type, + &m->nested.settlement_add_instruction_V7.settlement_type, outValue, outValueLen, pageIdx, pageCount); - case 2: /* settlement_add_instruction_V4 - trade_date */; + case 2: /* settlement_add_instruction_V7 - trade_date */; return _toStringOptionMoment( - &m->nested.settlement_add_instruction_V4.trade_date, + &m->nested.settlement_add_instruction_V7.trade_date, outValue, outValueLen, pageIdx, pageCount); - case 3: /* settlement_add_instruction_V4 - value_date */; + case 3: /* settlement_add_instruction_V7 - value_date */; return _toStringOptionMoment( - &m->nested.settlement_add_instruction_V4.value_date, + &m->nested.settlement_add_instruction_V7.value_date, outValue, outValueLen, pageIdx, pageCount); - case 4: /* settlement_add_instruction_V4 - legs */; + case 4: /* settlement_add_instruction_V7 - legs */; return _toStringVecLeg( - &m->nested.settlement_add_instruction_V4.legs, + &m->nested.settlement_add_instruction_V7.legs, outValue, outValueLen, pageIdx, pageCount); - case 5: /* settlement_add_instruction_V4 - instruction_memo */; + case 5: /* settlement_add_instruction_V7 - instruction_memo */; return _toStringOptionMemo( - &m->nested.settlement_add_instruction_V4.instruction_memo, + &m->nested.settlement_add_instruction_V7.instruction_memo, outValue, outValueLen, pageIdx, pageCount); default: @@ -11883,39 +11459,39 @@ parser_error_t _getMethod_ItemValue_V4( } case 9482: /* module 37 call 10 */ switch (itemIdx) { - case 0: /* settlement_add_and_affirm_instruction_V4 - venue_id */; - return _toStringVenueId( - &m->nested.settlement_add_and_affirm_instruction_V4.venue_id, + case 0: /* settlement_add_and_affirm_instruction_V7 - venue_id */; + return _toStringOptionVenueId( + &m->nested.settlement_add_and_affirm_instruction_V7.venue_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* settlement_add_and_affirm_instruction_V4 - settlement_type */; + case 1: /* settlement_add_and_affirm_instruction_V7 - settlement_type */; return _toStringSettlementTypeBlockNumber( - &m->nested.settlement_add_and_affirm_instruction_V4.settlement_type, + &m->nested.settlement_add_and_affirm_instruction_V7.settlement_type, outValue, outValueLen, pageIdx, pageCount); - case 2: /* settlement_add_and_affirm_instruction_V4 - trade_date */; + case 2: /* settlement_add_and_affirm_instruction_V7 - trade_date */; return _toStringOptionMoment( - &m->nested.settlement_add_and_affirm_instruction_V4.trade_date, + &m->nested.settlement_add_and_affirm_instruction_V7.trade_date, outValue, outValueLen, pageIdx, pageCount); - case 3: /* settlement_add_and_affirm_instruction_V4 - value_date */; + case 3: /* settlement_add_and_affirm_instruction_V7 - value_date */; return _toStringOptionMoment( - &m->nested.settlement_add_and_affirm_instruction_V4.value_date, + &m->nested.settlement_add_and_affirm_instruction_V7.value_date, outValue, outValueLen, pageIdx, pageCount); - case 4: /* settlement_add_and_affirm_instruction_V4 - legs */; + case 4: /* settlement_add_and_affirm_instruction_V7 - legs */; return _toStringVecLeg( - &m->nested.settlement_add_and_affirm_instruction_V4.legs, + &m->nested.settlement_add_and_affirm_instruction_V7.legs, outValue, outValueLen, pageIdx, pageCount); - case 5: /* settlement_add_and_affirm_instruction_V4 - portfolios */; + case 5: /* settlement_add_and_affirm_instruction_V7 - portfolios */; return _toStringVecPortfolioId( - &m->nested.settlement_add_and_affirm_instruction_V4.portfolios, + &m->nested.settlement_add_and_affirm_instruction_V7.portfolios, outValue, outValueLen, pageIdx, pageCount); - case 6: /* settlement_add_and_affirm_instruction_V4 - instruction_memo */; + case 6: /* settlement_add_and_affirm_instruction_V7 - instruction_memo */; return _toStringOptionMemo( - &m->nested.settlement_add_and_affirm_instruction_V4.instruction_memo, + &m->nested.settlement_add_and_affirm_instruction_V7.instruction_memo, outValue, outValueLen, pageIdx, pageCount); default: @@ -11923,14 +11499,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 9483: /* module 37 call 11 */ switch (itemIdx) { - case 0: /* settlement_affirm_instruction_V4 - id */; + case 0: /* settlement_affirm_instruction_V7 - id */; return _toStringInstructionId( - &m->nested.settlement_affirm_instruction_V4.id, + &m->nested.settlement_affirm_instruction_V7.id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* settlement_affirm_instruction_V4 - portfolios */; + case 1: /* settlement_affirm_instruction_V7 - portfolios */; return _toStringVecPortfolioId( - &m->nested.settlement_affirm_instruction_V4.portfolios, + &m->nested.settlement_affirm_instruction_V7.portfolios, outValue, outValueLen, pageIdx, pageCount); default: @@ -11938,14 +11514,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 9484: /* module 37 call 12 */ switch (itemIdx) { - case 0: /* settlement_withdraw_affirmation_V4 - id */; + case 0: /* settlement_withdraw_affirmation_V7 - id */; return _toStringInstructionId( - &m->nested.settlement_withdraw_affirmation_V4.id, + &m->nested.settlement_withdraw_affirmation_V7.id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* settlement_withdraw_affirmation_V4 - portfolios */; + case 1: /* settlement_withdraw_affirmation_V7 - portfolios */; return _toStringVecPortfolioId( - &m->nested.settlement_withdraw_affirmation_V4.portfolios, + &m->nested.settlement_withdraw_affirmation_V7.portfolios, outValue, outValueLen, pageIdx, pageCount); default: @@ -11953,14 +11529,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 9485: /* module 37 call 13 */ switch (itemIdx) { - case 0: /* settlement_reject_instruction_V4 - id */; + case 0: /* settlement_reject_instruction_V7 - id */; return _toStringInstructionId( - &m->nested.settlement_reject_instruction_V4.id, + &m->nested.settlement_reject_instruction_V7.id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* settlement_reject_instruction_V4 - portfolio */; + case 1: /* settlement_reject_instruction_V7 - portfolio */; return _toStringPortfolioId( - &m->nested.settlement_reject_instruction_V4.portfolio, + &m->nested.settlement_reject_instruction_V7.portfolio, outValue, outValueLen, pageIdx, pageCount); default: @@ -11968,14 +11544,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 9486: /* module 37 call 14 */ switch (itemIdx) { - case 0: /* settlement_execute_scheduled_instruction_V4 - id */; + case 0: /* settlement_execute_scheduled_instruction_V7 - id */; return _toStringInstructionId( - &m->nested.settlement_execute_scheduled_instruction_V4.id, + &m->nested.settlement_execute_scheduled_instruction_V7.id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* settlement_execute_scheduled_instruction_V4 - weight_limit */; + case 1: /* settlement_execute_scheduled_instruction_V7 - weight_limit */; return _toStringWeight( - &m->nested.settlement_execute_scheduled_instruction_V4.weight_limit, + &m->nested.settlement_execute_scheduled_instruction_V7.weight_limit, outValue, outValueLen, pageIdx, pageCount); default: @@ -11983,54 +11559,54 @@ parser_error_t _getMethod_ItemValue_V4( } case 9984: /* module 39 call 0 */ switch (itemIdx) { - case 0: /* sto_create_fundraiser_V4 - offering_portfolio */; + case 0: /* sto_create_fundraiser_V7 - offering_portfolio */; return _toStringPortfolioId( - &m->basic.sto_create_fundraiser_V4.offering_portfolio, + &m->basic.sto_create_fundraiser_V7.offering_portfolio, outValue, outValueLen, pageIdx, pageCount); - case 1: /* sto_create_fundraiser_V4 - offering_asset */; - return _toStringTicker( - &m->basic.sto_create_fundraiser_V4.offering_asset, + case 1: /* sto_create_fundraiser_V7 - offering_asset */; + return _toStringAssetID( + &m->basic.sto_create_fundraiser_V7.offering_asset, outValue, outValueLen, pageIdx, pageCount); - case 2: /* sto_create_fundraiser_V4 - raising_portfolio */; + case 2: /* sto_create_fundraiser_V7 - raising_portfolio */; return _toStringPortfolioId( - &m->basic.sto_create_fundraiser_V4.raising_portfolio, + &m->basic.sto_create_fundraiser_V7.raising_portfolio, outValue, outValueLen, pageIdx, pageCount); - case 3: /* sto_create_fundraiser_V4 - raising_asset */; - return _toStringTicker( - &m->basic.sto_create_fundraiser_V4.raising_asset, + case 3: /* sto_create_fundraiser_V7 - raising_asset */; + return _toStringAssetID( + &m->basic.sto_create_fundraiser_V7.raising_asset, outValue, outValueLen, pageIdx, pageCount); - case 4: /* sto_create_fundraiser_V4 - tiers */; + case 4: /* sto_create_fundraiser_V7 - tiers */; return _toStringVecPriceTier( - &m->basic.sto_create_fundraiser_V4.tiers, + &m->basic.sto_create_fundraiser_V7.tiers, outValue, outValueLen, pageIdx, pageCount); - case 5: /* sto_create_fundraiser_V4 - venue_id */; + case 5: /* sto_create_fundraiser_V7 - venue_id */; return _toStringVenueId( - &m->basic.sto_create_fundraiser_V4.venue_id, + &m->basic.sto_create_fundraiser_V7.venue_id, outValue, outValueLen, pageIdx, pageCount); - case 6: /* sto_create_fundraiser_V4 - start */; + case 6: /* sto_create_fundraiser_V7 - start */; return _toStringOptionMoment( - &m->basic.sto_create_fundraiser_V4.start, + &m->basic.sto_create_fundraiser_V7.start, outValue, outValueLen, pageIdx, pageCount); - case 7: /* sto_create_fundraiser_V4 - end */; + case 7: /* sto_create_fundraiser_V7 - end */; return _toStringOptionMoment( - &m->basic.sto_create_fundraiser_V4.end, + &m->basic.sto_create_fundraiser_V7.end, outValue, outValueLen, pageIdx, pageCount); - case 8: /* sto_create_fundraiser_V4 - minimum_investment */; + case 8: /* sto_create_fundraiser_V7 - minimum_investment */; return _toStringBalanceNoSymbol( - &m->basic.sto_create_fundraiser_V4.minimum_investment, + &m->basic.sto_create_fundraiser_V7.minimum_investment, outValue, outValueLen, pageIdx, pageCount); - case 9: /* sto_create_fundraiser_V4 - fundraiser_name */; + case 9: /* sto_create_fundraiser_V7 - fundraiser_name */; return _toStringFundraiserName( - &m->basic.sto_create_fundraiser_V4.fundraiser_name, + &m->basic.sto_create_fundraiser_V7.fundraiser_name, outValue, outValueLen, pageIdx, pageCount); default: @@ -12038,39 +11614,39 @@ parser_error_t _getMethod_ItemValue_V4( } case 9985: /* module 39 call 1 */ switch (itemIdx) { - case 0: /* sto_invest_V4 - investment_portfolio */; + case 0: /* sto_invest_V7 - investment_portfolio */; return _toStringPortfolioId( - &m->basic.sto_invest_V4.investment_portfolio, + &m->basic.sto_invest_V7.investment_portfolio, outValue, outValueLen, pageIdx, pageCount); - case 1: /* sto_invest_V4 - funding_portfolio */; + case 1: /* sto_invest_V7 - funding_portfolio */; return _toStringPortfolioId( - &m->basic.sto_invest_V4.funding_portfolio, + &m->basic.sto_invest_V7.funding_portfolio, outValue, outValueLen, pageIdx, pageCount); - case 2: /* sto_invest_V4 - offering_asset */; - return _toStringTicker( - &m->basic.sto_invest_V4.offering_asset, + case 2: /* sto_invest_V7 - offering_asset */; + return _toStringAssetID( + &m->basic.sto_invest_V7.offering_asset, outValue, outValueLen, pageIdx, pageCount); - case 3: /* sto_invest_V4 - id */; + case 3: /* sto_invest_V7 - id */; return _toStringFundraiserId( - &m->basic.sto_invest_V4.id, + &m->basic.sto_invest_V7.id, outValue, outValueLen, pageIdx, pageCount); - case 4: /* sto_invest_V4 - purchase_amount */; + case 4: /* sto_invest_V7 - purchase_amount */; return _toStringBalanceNoSymbol( - &m->basic.sto_invest_V4.purchase_amount, + &m->basic.sto_invest_V7.purchase_amount, outValue, outValueLen, pageIdx, pageCount); - case 5: /* sto_invest_V4 - max_price */; + case 5: /* sto_invest_V7 - max_price */; return _toStringOptionBalance( - &m->basic.sto_invest_V4.max_price, + &m->basic.sto_invest_V7.max_price, outValue, outValueLen, pageIdx, pageCount); - case 6: /* sto_invest_V4 - receipt */; + case 6: /* sto_invest_V7 - receipt */; return _toStringOptionReceiptDetails( - &m->basic.sto_invest_V4.receipt, + &m->basic.sto_invest_V7.receipt, outValue, outValueLen, pageIdx, pageCount); default: @@ -12078,14 +11654,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 9986: /* module 39 call 2 */ switch (itemIdx) { - case 0: /* sto_freeze_fundraiser_V4 - offering_asset */; - return _toStringTicker( - &m->basic.sto_freeze_fundraiser_V4.offering_asset, + case 0: /* sto_freeze_fundraiser_V7 - offering_asset */; + return _toStringAssetID( + &m->basic.sto_freeze_fundraiser_V7.offering_asset, outValue, outValueLen, pageIdx, pageCount); - case 1: /* sto_freeze_fundraiser_V4 - id */; + case 1: /* sto_freeze_fundraiser_V7 - id */; return _toStringFundraiserId( - &m->basic.sto_freeze_fundraiser_V4.id, + &m->basic.sto_freeze_fundraiser_V7.id, outValue, outValueLen, pageIdx, pageCount); default: @@ -12093,14 +11669,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 9987: /* module 39 call 3 */ switch (itemIdx) { - case 0: /* sto_unfreeze_fundraiser_V4 - offering_asset */; - return _toStringTicker( - &m->basic.sto_unfreeze_fundraiser_V4.offering_asset, + case 0: /* sto_unfreeze_fundraiser_V7 - offering_asset */; + return _toStringAssetID( + &m->basic.sto_unfreeze_fundraiser_V7.offering_asset, outValue, outValueLen, pageIdx, pageCount); - case 1: /* sto_unfreeze_fundraiser_V4 - id */; + case 1: /* sto_unfreeze_fundraiser_V7 - id */; return _toStringFundraiserId( - &m->basic.sto_unfreeze_fundraiser_V4.id, + &m->basic.sto_unfreeze_fundraiser_V7.id, outValue, outValueLen, pageIdx, pageCount); default: @@ -12108,24 +11684,24 @@ parser_error_t _getMethod_ItemValue_V4( } case 9988: /* module 39 call 4 */ switch (itemIdx) { - case 0: /* sto_modify_fundraiser_window_V4 - offering_asset */; - return _toStringTicker( - &m->basic.sto_modify_fundraiser_window_V4.offering_asset, + case 0: /* sto_modify_fundraiser_window_V7 - offering_asset */; + return _toStringAssetID( + &m->basic.sto_modify_fundraiser_window_V7.offering_asset, outValue, outValueLen, pageIdx, pageCount); - case 1: /* sto_modify_fundraiser_window_V4 - id */; + case 1: /* sto_modify_fundraiser_window_V7 - id */; return _toStringFundraiserId( - &m->basic.sto_modify_fundraiser_window_V4.id, + &m->basic.sto_modify_fundraiser_window_V7.id, outValue, outValueLen, pageIdx, pageCount); - case 2: /* sto_modify_fundraiser_window_V4 - start */; + case 2: /* sto_modify_fundraiser_window_V7 - start */; return _toStringMoment( - &m->basic.sto_modify_fundraiser_window_V4.start, + &m->basic.sto_modify_fundraiser_window_V7.start, outValue, outValueLen, pageIdx, pageCount); - case 3: /* sto_modify_fundraiser_window_V4 - end */; + case 3: /* sto_modify_fundraiser_window_V7 - end */; return _toStringOptionMoment( - &m->basic.sto_modify_fundraiser_window_V4.end, + &m->basic.sto_modify_fundraiser_window_V7.end, outValue, outValueLen, pageIdx, pageCount); default: @@ -12133,14 +11709,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 9989: /* module 39 call 5 */ switch (itemIdx) { - case 0: /* sto_stop_V4 - offering_asset */; - return _toStringTicker( - &m->basic.sto_stop_V4.offering_asset, + case 0: /* sto_stop_V7 - offering_asset */; + return _toStringAssetID( + &m->basic.sto_stop_V7.offering_asset, outValue, outValueLen, pageIdx, pageCount); - case 1: /* sto_stop_V4 - id */; + case 1: /* sto_stop_V7 - id */; return _toStringFundraiserId( - &m->basic.sto_stop_V4.id, + &m->basic.sto_stop_V7.id, outValue, outValueLen, pageIdx, pageCount); default: @@ -12148,9 +11724,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 10240: /* module 40 call 0 */ switch (itemIdx) { - case 0: /* treasury_disbursement_V4 - beneficiaries */; + case 0: /* treasury_disbursement_V7 - beneficiaries */; return _toStringVecBeneficiary( - &m->nested.treasury_disbursement_V4.beneficiaries, + &m->nested.treasury_disbursement_V7.beneficiaries, outValue, outValueLen, pageIdx, pageCount); default: @@ -12158,9 +11734,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 10241: /* module 40 call 1 */ switch (itemIdx) { - case 0: /* treasury_reimbursement_V4 - amount */; + case 0: /* treasury_reimbursement_V7 - amount */; return _toStringBalance( - &m->nested.treasury_reimbursement_V4.amount, + &m->nested.treasury_reimbursement_V7.amount, outValue, outValueLen, pageIdx, pageCount); default: @@ -12168,19 +11744,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 10497: /* module 41 call 1 */ switch (itemIdx) { - case 0: /* utility_relay_tx_V4 - target */; + case 0: /* utility_relay_tx_V7 - target */; return _toStringAccountId( - &m->nested.utility_relay_tx_V4.target, + &m->nested.utility_relay_tx_V7.target, outValue, outValueLen, pageIdx, pageCount); - case 1: /* utility_relay_tx_V4 - signature */; + case 1: /* utility_relay_tx_V7 - signature */; return _toStringOffChainSignature( - &m->nested.utility_relay_tx_V4.signature, + &m->nested.utility_relay_tx_V7.signature, outValue, outValueLen, pageIdx, pageCount); - case 2: /* utility_relay_tx_V4 - call */; + case 2: /* utility_relay_tx_V7 - call */; return _toStringUniqueCall( - &m->nested.utility_relay_tx_V4.call, + &m->nested.utility_relay_tx_V7.call, outValue, outValueLen, pageIdx, pageCount); default: @@ -12188,9 +11764,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 10498: /* module 41 call 2 */ switch (itemIdx) { - case 0: /* utility_batch_all_V4 - calls */; + case 0: /* utility_batch_all_V7 - calls */; return _toStringVecCall( - &m->basic.utility_batch_all_V4.calls, + &m->basic.utility_batch_all_V7.calls, outValue, outValueLen, pageIdx, pageCount); default: @@ -12198,14 +11774,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 10499: /* module 41 call 3 */ switch (itemIdx) { - case 0: /* utility_dispatch_as_V4 - as_origin */; + case 0: /* utility_dispatch_as_V7 - as_origin */; return _toStringBoxPalletsOrigin( - &m->basic.utility_dispatch_as_V4.as_origin, + &m->basic.utility_dispatch_as_V7.as_origin, outValue, outValueLen, pageIdx, pageCount); - case 1: /* utility_dispatch_as_V4 - call */; + case 1: /* utility_dispatch_as_V7 - call */; return _toStringCall( - &m->basic.utility_dispatch_as_V4.call, + &m->basic.utility_dispatch_as_V7.call, outValue, outValueLen, pageIdx, pageCount); default: @@ -12213,9 +11789,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 10500: /* module 41 call 4 */ switch (itemIdx) { - case 0: /* utility_force_batch_V4 - calls */; + case 0: /* utility_force_batch_V7 - calls */; return _toStringVecCall( - &m->basic.utility_force_batch_V4.calls, + &m->basic.utility_force_batch_V7.calls, outValue, outValueLen, pageIdx, pageCount); default: @@ -12223,14 +11799,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 10501: /* module 41 call 5 */ switch (itemIdx) { - case 0: /* utility_with_weight_V4 - call */; + case 0: /* utility_with_weight_V7 - call */; return _toStringCall( - &m->basic.utility_with_weight_V4.call, + &m->basic.utility_with_weight_V7.call, outValue, outValueLen, pageIdx, pageCount); - case 1: /* utility_with_weight_V4 - weight */; + case 1: /* utility_with_weight_V7 - weight */; return _toStringWeight( - &m->basic.utility_with_weight_V4.weight, + &m->basic.utility_with_weight_V7.weight, outValue, outValueLen, pageIdx, pageCount); default: @@ -12238,24 +11814,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 10502: /* module 41 call 6 */ switch (itemIdx) { - case 0: /* utility_batch_old_V4 - calls */; + case 0: /* utility_batch_old_V7 - calls */; return _toStringVecCall( - &m->basic.utility_batch_old_V4.calls, - outValue, outValueLen, - pageIdx, pageCount); - default: - return parser_no_data; - } - case 10505: /* module 41 call 9 */ - switch (itemIdx) { - case 0: /* utility_as_derivative_V4 - index */; - return _toStringu16( - &m->basic.utility_as_derivative_V4.index, - outValue, outValueLen, - pageIdx, pageCount); - case 1: /* utility_as_derivative_V4 - call */; - return _toStringCall( - &m->basic.utility_as_derivative_V4.call, + &m->basic.utility_batch_old_V7.calls, outValue, outValueLen, pageIdx, pageCount); default: @@ -12263,14 +11824,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 11008: /* module 43 call 0 */ switch (itemIdx) { - case 0: /* externalagents_create_group_V4 - ticker */; - return _toStringTicker( - &m->basic.externalagents_create_group_V4.ticker, + case 0: /* externalagents_create_group_V7 - asset_id */; + return _toStringAssetID( + &m->basic.externalagents_create_group_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* externalagents_create_group_V4 - perms */; + case 1: /* externalagents_create_group_V7 - perms */; return _toStringExtrinsicPermissions( - &m->basic.externalagents_create_group_V4.perms, + &m->basic.externalagents_create_group_V7.perms, outValue, outValueLen, pageIdx, pageCount); default: @@ -12278,19 +11839,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 11009: /* module 43 call 1 */ switch (itemIdx) { - case 0: /* externalagents_set_group_permissions_V4 - ticker */; - return _toStringTicker( - &m->basic.externalagents_set_group_permissions_V4.ticker, + case 0: /* externalagents_set_group_permissions_V7 - asset_id */; + return _toStringAssetID( + &m->basic.externalagents_set_group_permissions_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* externalagents_set_group_permissions_V4 - id */; + case 1: /* externalagents_set_group_permissions_V7 - id */; return _toStringAGId( - &m->basic.externalagents_set_group_permissions_V4.id, + &m->basic.externalagents_set_group_permissions_V7.id, outValue, outValueLen, pageIdx, pageCount); - case 2: /* externalagents_set_group_permissions_V4 - perms */; + case 2: /* externalagents_set_group_permissions_V7 - perms */; return _toStringExtrinsicPermissions( - &m->basic.externalagents_set_group_permissions_V4.perms, + &m->basic.externalagents_set_group_permissions_V7.perms, outValue, outValueLen, pageIdx, pageCount); default: @@ -12298,14 +11859,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 11010: /* module 43 call 2 */ switch (itemIdx) { - case 0: /* externalagents_remove_agent_V4 - ticker */; - return _toStringTicker( - &m->basic.externalagents_remove_agent_V4.ticker, + case 0: /* externalagents_remove_agent_V7 - asset_id */; + return _toStringAssetID( + &m->basic.externalagents_remove_agent_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* externalagents_remove_agent_V4 - agent */; + case 1: /* externalagents_remove_agent_V7 - agent */; return _toStringIdentityId( - &m->basic.externalagents_remove_agent_V4.agent, + &m->basic.externalagents_remove_agent_V7.agent, outValue, outValueLen, pageIdx, pageCount); default: @@ -12313,9 +11874,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 11011: /* module 43 call 3 */ switch (itemIdx) { - case 0: /* externalagents_abdicate_V4 - ticker */; - return _toStringTicker( - &m->basic.externalagents_abdicate_V4.ticker, + case 0: /* externalagents_abdicate_V7 - asset_id */; + return _toStringAssetID( + &m->basic.externalagents_abdicate_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -12323,19 +11884,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 11012: /* module 43 call 4 */ switch (itemIdx) { - case 0: /* externalagents_change_group_V4 - ticker */; - return _toStringTicker( - &m->basic.externalagents_change_group_V4.ticker, + case 0: /* externalagents_change_group_V7 - asset_id */; + return _toStringAssetID( + &m->basic.externalagents_change_group_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* externalagents_change_group_V4 - agent */; + case 1: /* externalagents_change_group_V7 - agent */; return _toStringIdentityId( - &m->basic.externalagents_change_group_V4.agent, + &m->basic.externalagents_change_group_V7.agent, outValue, outValueLen, pageIdx, pageCount); - case 2: /* externalagents_change_group_V4 - group */; + case 2: /* externalagents_change_group_V7 - group */; return _toStringAgentGroup( - &m->basic.externalagents_change_group_V4.group, + &m->basic.externalagents_change_group_V7.group, outValue, outValueLen, pageIdx, pageCount); default: @@ -12343,9 +11904,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 11013: /* module 43 call 5 */ switch (itemIdx) { - case 0: /* externalagents_accept_become_agent_V4 - auth_id */; + case 0: /* externalagents_accept_become_agent_V7 - auth_id */; return _toStringu64( - &m->basic.externalagents_accept_become_agent_V4.auth_id, + &m->basic.externalagents_accept_become_agent_V7.auth_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -12353,24 +11914,24 @@ parser_error_t _getMethod_ItemValue_V4( } case 11014: /* module 43 call 6 */ switch (itemIdx) { - case 0: /* externalagents_create_group_and_add_auth_V4 - ticker */; - return _toStringTicker( - &m->basic.externalagents_create_group_and_add_auth_V4.ticker, + case 0: /* externalagents_create_group_and_add_auth_V7 - asset_id */; + return _toStringAssetID( + &m->basic.externalagents_create_group_and_add_auth_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* externalagents_create_group_and_add_auth_V4 - perms */; + case 1: /* externalagents_create_group_and_add_auth_V7 - perms */; return _toStringExtrinsicPermissions( - &m->basic.externalagents_create_group_and_add_auth_V4.perms, + &m->basic.externalagents_create_group_and_add_auth_V7.perms, outValue, outValueLen, pageIdx, pageCount); - case 2: /* externalagents_create_group_and_add_auth_V4 - target */; + case 2: /* externalagents_create_group_and_add_auth_V7 - target */; return _toStringIdentityId( - &m->basic.externalagents_create_group_and_add_auth_V4.target, + &m->basic.externalagents_create_group_and_add_auth_V7.target, outValue, outValueLen, pageIdx, pageCount); - case 3: /* externalagents_create_group_and_add_auth_V4 - expiry */; + case 3: /* externalagents_create_group_and_add_auth_V7 - expiry */; return _toStringOptionMoment( - &m->basic.externalagents_create_group_and_add_auth_V4.expiry, + &m->basic.externalagents_create_group_and_add_auth_V7.expiry, outValue, outValueLen, pageIdx, pageCount); default: @@ -12378,19 +11939,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 11015: /* module 43 call 7 */ switch (itemIdx) { - case 0: /* externalagents_create_and_change_custom_group_V4 - ticker */; - return _toStringTicker( - &m->basic.externalagents_create_and_change_custom_group_V4.ticker, + case 0: /* externalagents_create_and_change_custom_group_V7 - asset_id */; + return _toStringAssetID( + &m->basic.externalagents_create_and_change_custom_group_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* externalagents_create_and_change_custom_group_V4 - perms */; + case 1: /* externalagents_create_and_change_custom_group_V7 - perms */; return _toStringExtrinsicPermissions( - &m->basic.externalagents_create_and_change_custom_group_V4.perms, + &m->basic.externalagents_create_and_change_custom_group_V7.perms, outValue, outValueLen, pageIdx, pageCount); - case 2: /* externalagents_create_and_change_custom_group_V4 - agent */; + case 2: /* externalagents_create_and_change_custom_group_V7 - agent */; return _toStringIdentityId( - &m->basic.externalagents_create_and_change_custom_group_V4.agent, + &m->basic.externalagents_create_and_change_custom_group_V7.agent, outValue, outValueLen, pageIdx, pageCount); default: @@ -12398,14 +11959,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 11264: /* module 44 call 0 */ switch (itemIdx) { - case 0: /* relayer_set_paying_key_V4 - user_key */; + case 0: /* relayer_set_paying_key_V7 - user_key */; return _toStringAccountId( - &m->basic.relayer_set_paying_key_V4.user_key, + &m->basic.relayer_set_paying_key_V7.user_key, outValue, outValueLen, pageIdx, pageCount); - case 1: /* relayer_set_paying_key_V4 - polyx_limit */; + case 1: /* relayer_set_paying_key_V7 - polyx_limit */; return _toStringBalance( - &m->basic.relayer_set_paying_key_V4.polyx_limit, + &m->basic.relayer_set_paying_key_V7.polyx_limit, outValue, outValueLen, pageIdx, pageCount); default: @@ -12413,9 +11974,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 11265: /* module 44 call 1 */ switch (itemIdx) { - case 0: /* relayer_accept_paying_key_V4 - auth_id */; + case 0: /* relayer_accept_paying_key_V7 - auth_id */; return _toStringu64( - &m->basic.relayer_accept_paying_key_V4.auth_id, + &m->basic.relayer_accept_paying_key_V7.auth_id, outValue, outValueLen, pageIdx, pageCount); default: @@ -12423,14 +11984,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 11266: /* module 44 call 2 */ switch (itemIdx) { - case 0: /* relayer_remove_paying_key_V4 - user_key */; + case 0: /* relayer_remove_paying_key_V7 - user_key */; return _toStringAccountId( - &m->basic.relayer_remove_paying_key_V4.user_key, + &m->basic.relayer_remove_paying_key_V7.user_key, outValue, outValueLen, pageIdx, pageCount); - case 1: /* relayer_remove_paying_key_V4 - paying_key */; + case 1: /* relayer_remove_paying_key_V7 - paying_key */; return _toStringAccountId( - &m->basic.relayer_remove_paying_key_V4.paying_key, + &m->basic.relayer_remove_paying_key_V7.paying_key, outValue, outValueLen, pageIdx, pageCount); default: @@ -12438,14 +11999,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 11267: /* module 44 call 3 */ switch (itemIdx) { - case 0: /* relayer_update_polyx_limit_V4 - user_key */; + case 0: /* relayer_update_polyx_limit_V7 - user_key */; return _toStringAccountId( - &m->basic.relayer_update_polyx_limit_V4.user_key, + &m->basic.relayer_update_polyx_limit_V7.user_key, outValue, outValueLen, pageIdx, pageCount); - case 1: /* relayer_update_polyx_limit_V4 - polyx_limit */; + case 1: /* relayer_update_polyx_limit_V7 - polyx_limit */; return _toStringBalance( - &m->basic.relayer_update_polyx_limit_V4.polyx_limit, + &m->basic.relayer_update_polyx_limit_V7.polyx_limit, outValue, outValueLen, pageIdx, pageCount); default: @@ -12453,14 +12014,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 11268: /* module 44 call 4 */ switch (itemIdx) { - case 0: /* relayer_increase_polyx_limit_V4 - user_key */; + case 0: /* relayer_increase_polyx_limit_V7 - user_key */; return _toStringAccountId( - &m->basic.relayer_increase_polyx_limit_V4.user_key, + &m->basic.relayer_increase_polyx_limit_V7.user_key, outValue, outValueLen, pageIdx, pageCount); - case 1: /* relayer_increase_polyx_limit_V4 - amount */; + case 1: /* relayer_increase_polyx_limit_V7 - amount */; return _toStringBalance( - &m->basic.relayer_increase_polyx_limit_V4.amount, + &m->basic.relayer_increase_polyx_limit_V7.amount, outValue, outValueLen, pageIdx, pageCount); default: @@ -12468,14 +12029,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 11269: /* module 44 call 5 */ switch (itemIdx) { - case 0: /* relayer_decrease_polyx_limit_V4 - user_key */; + case 0: /* relayer_decrease_polyx_limit_V7 - user_key */; return _toStringAccountId( - &m->basic.relayer_decrease_polyx_limit_V4.user_key, + &m->basic.relayer_decrease_polyx_limit_V7.user_key, outValue, outValueLen, pageIdx, pageCount); - case 1: /* relayer_decrease_polyx_limit_V4 - amount */; + case 1: /* relayer_decrease_polyx_limit_V7 - amount */; return _toStringBalance( - &m->basic.relayer_decrease_polyx_limit_V4.amount, + &m->basic.relayer_decrease_polyx_limit_V7.amount, outValue, outValueLen, pageIdx, pageCount); default: @@ -12483,29 +12044,29 @@ parser_error_t _getMethod_ItemValue_V4( } case 11776: /* module 46 call 0 */ switch (itemIdx) { - case 0: /* contracts_call_old_weight_V4 - dest */; + case 0: /* contracts_call_old_weight_V7 - dest */; return _toStringAccountIdLookupOfT( - &m->basic.contracts_call_old_weight_V4.dest, + &m->basic.contracts_call_old_weight_V7.dest, outValue, outValueLen, pageIdx, pageCount); - case 1: /* contracts_call_old_weight_V4 - amount */; + case 1: /* contracts_call_old_weight_V7 - amount */; return _toStringCompactBalance( - &m->basic.contracts_call_old_weight_V4.amount, + &m->basic.contracts_call_old_weight_V7.amount, outValue, outValueLen, pageIdx, pageCount); - case 2: /* contracts_call_old_weight_V4 - gas_limit */; + case 2: /* contracts_call_old_weight_V7 - gas_limit */; return _toStringCompactu64( - &m->basic.contracts_call_old_weight_V4.gas_limit, + &m->basic.contracts_call_old_weight_V7.gas_limit, outValue, outValueLen, pageIdx, pageCount); - case 3: /* contracts_call_old_weight_V4 - storage_deposit_limit */; + case 3: /* contracts_call_old_weight_V7 - storage_deposit_limit */; return _toStringOptionCompactBalanceOf( - &m->basic.contracts_call_old_weight_V4.storage_deposit_limit, + &m->basic.contracts_call_old_weight_V7.storage_deposit_limit, outValue, outValueLen, pageIdx, pageCount); - case 4: /* contracts_call_old_weight_V4 - data */; + case 4: /* contracts_call_old_weight_V7 - data */; return _toStringBytes( - &m->basic.contracts_call_old_weight_V4.data, + &m->basic.contracts_call_old_weight_V7.data, outValue, outValueLen, pageIdx, pageCount); default: @@ -12513,34 +12074,34 @@ parser_error_t _getMethod_ItemValue_V4( } case 11777: /* module 46 call 1 */ switch (itemIdx) { - case 0: /* contracts_instantiate_with_code_old_weight_V4 - amount */; + case 0: /* contracts_instantiate_with_code_old_weight_V7 - amount */; return _toStringCompactBalance( - &m->basic.contracts_instantiate_with_code_old_weight_V4.amount, + &m->basic.contracts_instantiate_with_code_old_weight_V7.amount, outValue, outValueLen, pageIdx, pageCount); - case 1: /* contracts_instantiate_with_code_old_weight_V4 - gas_limit */; + case 1: /* contracts_instantiate_with_code_old_weight_V7 - gas_limit */; return _toStringCompactu64( - &m->basic.contracts_instantiate_with_code_old_weight_V4.gas_limit, + &m->basic.contracts_instantiate_with_code_old_weight_V7.gas_limit, outValue, outValueLen, pageIdx, pageCount); - case 2: /* contracts_instantiate_with_code_old_weight_V4 - storage_deposit_limit */; + case 2: /* contracts_instantiate_with_code_old_weight_V7 - storage_deposit_limit */; return _toStringOptionCompactBalanceOf( - &m->basic.contracts_instantiate_with_code_old_weight_V4.storage_deposit_limit, + &m->basic.contracts_instantiate_with_code_old_weight_V7.storage_deposit_limit, outValue, outValueLen, pageIdx, pageCount); - case 3: /* contracts_instantiate_with_code_old_weight_V4 - code */; + case 3: /* contracts_instantiate_with_code_old_weight_V7 - code */; return _toStringBytes( - &m->basic.contracts_instantiate_with_code_old_weight_V4.code, + &m->basic.contracts_instantiate_with_code_old_weight_V7.code, outValue, outValueLen, pageIdx, pageCount); - case 4: /* contracts_instantiate_with_code_old_weight_V4 - data */; + case 4: /* contracts_instantiate_with_code_old_weight_V7 - data */; return _toStringBytes( - &m->basic.contracts_instantiate_with_code_old_weight_V4.data, + &m->basic.contracts_instantiate_with_code_old_weight_V7.data, outValue, outValueLen, pageIdx, pageCount); - case 5: /* contracts_instantiate_with_code_old_weight_V4 - salt */; + case 5: /* contracts_instantiate_with_code_old_weight_V7 - salt */; return _toStringBytes( - &m->basic.contracts_instantiate_with_code_old_weight_V4.salt, + &m->basic.contracts_instantiate_with_code_old_weight_V7.salt, outValue, outValueLen, pageIdx, pageCount); default: @@ -12548,34 +12109,34 @@ parser_error_t _getMethod_ItemValue_V4( } case 11778: /* module 46 call 2 */ switch (itemIdx) { - case 0: /* contracts_instantiate_old_weight_V4 - amount */; + case 0: /* contracts_instantiate_old_weight_V7 - amount */; return _toStringCompactBalance( - &m->basic.contracts_instantiate_old_weight_V4.amount, + &m->basic.contracts_instantiate_old_weight_V7.amount, outValue, outValueLen, pageIdx, pageCount); - case 1: /* contracts_instantiate_old_weight_V4 - gas_limit */; + case 1: /* contracts_instantiate_old_weight_V7 - gas_limit */; return _toStringCompactu64( - &m->basic.contracts_instantiate_old_weight_V4.gas_limit, + &m->basic.contracts_instantiate_old_weight_V7.gas_limit, outValue, outValueLen, pageIdx, pageCount); - case 2: /* contracts_instantiate_old_weight_V4 - storage_deposit_limit */; + case 2: /* contracts_instantiate_old_weight_V7 - storage_deposit_limit */; return _toStringOptionCompactBalanceOf( - &m->basic.contracts_instantiate_old_weight_V4.storage_deposit_limit, + &m->basic.contracts_instantiate_old_weight_V7.storage_deposit_limit, outValue, outValueLen, pageIdx, pageCount); - case 3: /* contracts_instantiate_old_weight_V4 - code_hash */; + case 3: /* contracts_instantiate_old_weight_V7 - code_hash */; return _toStringCodeHash( - &m->basic.contracts_instantiate_old_weight_V4.code_hash, + &m->basic.contracts_instantiate_old_weight_V7.code_hash, outValue, outValueLen, pageIdx, pageCount); - case 4: /* contracts_instantiate_old_weight_V4 - data */; + case 4: /* contracts_instantiate_old_weight_V7 - data */; return _toStringBytes( - &m->basic.contracts_instantiate_old_weight_V4.data, + &m->basic.contracts_instantiate_old_weight_V7.data, outValue, outValueLen, pageIdx, pageCount); - case 5: /* contracts_instantiate_old_weight_V4 - salt */; + case 5: /* contracts_instantiate_old_weight_V7 - salt */; return _toStringBytes( - &m->basic.contracts_instantiate_old_weight_V4.salt, + &m->basic.contracts_instantiate_old_weight_V7.salt, outValue, outValueLen, pageIdx, pageCount); default: @@ -12583,19 +12144,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 11779: /* module 46 call 3 */ switch (itemIdx) { - case 0: /* contracts_upload_code_V4 - code */; + case 0: /* contracts_upload_code_V7 - code */; return _toStringBytes( - &m->basic.contracts_upload_code_V4.code, + &m->basic.contracts_upload_code_V7.code, outValue, outValueLen, pageIdx, pageCount); - case 1: /* contracts_upload_code_V4 - storage_deposit_limit */; + case 1: /* contracts_upload_code_V7 - storage_deposit_limit */; return _toStringOptionCompactBalanceOf( - &m->basic.contracts_upload_code_V4.storage_deposit_limit, + &m->basic.contracts_upload_code_V7.storage_deposit_limit, outValue, outValueLen, pageIdx, pageCount); - case 2: /* contracts_upload_code_V4 - determinism */; + case 2: /* contracts_upload_code_V7 - determinism */; return _toStringDeterminism( - &m->basic.contracts_upload_code_V4.determinism, + &m->basic.contracts_upload_code_V7.determinism, outValue, outValueLen, pageIdx, pageCount); default: @@ -12603,9 +12164,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 11780: /* module 46 call 4 */ switch (itemIdx) { - case 0: /* contracts_remove_code_V4 - code_hash */; + case 0: /* contracts_remove_code_V7 - code_hash */; return _toStringCodeHash( - &m->basic.contracts_remove_code_V4.code_hash, + &m->basic.contracts_remove_code_V7.code_hash, outValue, outValueLen, pageIdx, pageCount); default: @@ -12613,14 +12174,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 11781: /* module 46 call 5 */ switch (itemIdx) { - case 0: /* contracts_set_code_V4 - dest */; + case 0: /* contracts_set_code_V7 - dest */; return _toStringAccountIdLookupOfT( - &m->basic.contracts_set_code_V4.dest, + &m->basic.contracts_set_code_V7.dest, outValue, outValueLen, pageIdx, pageCount); - case 1: /* contracts_set_code_V4 - code_hash */; + case 1: /* contracts_set_code_V7 - code_hash */; return _toStringCodeHash( - &m->basic.contracts_set_code_V4.code_hash, + &m->basic.contracts_set_code_V7.code_hash, outValue, outValueLen, pageIdx, pageCount); default: @@ -12628,29 +12189,29 @@ parser_error_t _getMethod_ItemValue_V4( } case 11782: /* module 46 call 6 */ switch (itemIdx) { - case 0: /* contracts_call_V4 - dest */; + case 0: /* contracts_call_V7 - dest */; return _toStringAccountIdLookupOfT( - &m->nested.contracts_call_V4.dest, + &m->nested.contracts_call_V7.dest, outValue, outValueLen, pageIdx, pageCount); - case 1: /* contracts_call_V4 - amount */; + case 1: /* contracts_call_V7 - amount */; return _toStringCompactBalance( - &m->nested.contracts_call_V4.amount, + &m->nested.contracts_call_V7.amount, outValue, outValueLen, pageIdx, pageCount); - case 2: /* contracts_call_V4 - gas_limit */; + case 2: /* contracts_call_V7 - gas_limit */; return _toStringWeight( - &m->nested.contracts_call_V4.gas_limit, + &m->nested.contracts_call_V7.gas_limit, outValue, outValueLen, pageIdx, pageCount); - case 3: /* contracts_call_V4 - storage_deposit_limit */; + case 3: /* contracts_call_V7 - storage_deposit_limit */; return _toStringOptionCompactBalanceOf( - &m->nested.contracts_call_V4.storage_deposit_limit, + &m->nested.contracts_call_V7.storage_deposit_limit, outValue, outValueLen, pageIdx, pageCount); - case 4: /* contracts_call_V4 - data */; + case 4: /* contracts_call_V7 - data */; return _toStringBytes( - &m->nested.contracts_call_V4.data, + &m->nested.contracts_call_V7.data, outValue, outValueLen, pageIdx, pageCount); default: @@ -12658,34 +12219,34 @@ parser_error_t _getMethod_ItemValue_V4( } case 11783: /* module 46 call 7 */ switch (itemIdx) { - case 0: /* contracts_instantiate_with_code_V4 - amount */; + case 0: /* contracts_instantiate_with_code_V7 - amount */; return _toStringCompactBalance( - &m->basic.contracts_instantiate_with_code_V4.amount, + &m->basic.contracts_instantiate_with_code_V7.amount, outValue, outValueLen, pageIdx, pageCount); - case 1: /* contracts_instantiate_with_code_V4 - gas_limit */; + case 1: /* contracts_instantiate_with_code_V7 - gas_limit */; return _toStringWeight( - &m->basic.contracts_instantiate_with_code_V4.gas_limit, + &m->basic.contracts_instantiate_with_code_V7.gas_limit, outValue, outValueLen, pageIdx, pageCount); - case 2: /* contracts_instantiate_with_code_V4 - storage_deposit_limit */; + case 2: /* contracts_instantiate_with_code_V7 - storage_deposit_limit */; return _toStringOptionCompactBalanceOf( - &m->basic.contracts_instantiate_with_code_V4.storage_deposit_limit, + &m->basic.contracts_instantiate_with_code_V7.storage_deposit_limit, outValue, outValueLen, pageIdx, pageCount); - case 3: /* contracts_instantiate_with_code_V4 - code */; + case 3: /* contracts_instantiate_with_code_V7 - code */; return _toStringBytes( - &m->basic.contracts_instantiate_with_code_V4.code, + &m->basic.contracts_instantiate_with_code_V7.code, outValue, outValueLen, pageIdx, pageCount); - case 4: /* contracts_instantiate_with_code_V4 - data */; + case 4: /* contracts_instantiate_with_code_V7 - data */; return _toStringBytes( - &m->basic.contracts_instantiate_with_code_V4.data, + &m->basic.contracts_instantiate_with_code_V7.data, outValue, outValueLen, pageIdx, pageCount); - case 5: /* contracts_instantiate_with_code_V4 - salt */; + case 5: /* contracts_instantiate_with_code_V7 - salt */; return _toStringBytes( - &m->basic.contracts_instantiate_with_code_V4.salt, + &m->basic.contracts_instantiate_with_code_V7.salt, outValue, outValueLen, pageIdx, pageCount); default: @@ -12693,34 +12254,34 @@ parser_error_t _getMethod_ItemValue_V4( } case 11784: /* module 46 call 8 */ switch (itemIdx) { - case 0: /* contracts_instantiate_V4 - amount */; + case 0: /* contracts_instantiate_V7 - amount */; return _toStringCompactBalance( - &m->nested.contracts_instantiate_V4.amount, + &m->nested.contracts_instantiate_V7.amount, outValue, outValueLen, pageIdx, pageCount); - case 1: /* contracts_instantiate_V4 - gas_limit */; + case 1: /* contracts_instantiate_V7 - gas_limit */; return _toStringWeight( - &m->nested.contracts_instantiate_V4.gas_limit, + &m->nested.contracts_instantiate_V7.gas_limit, outValue, outValueLen, pageIdx, pageCount); - case 2: /* contracts_instantiate_V4 - storage_deposit_limit */; + case 2: /* contracts_instantiate_V7 - storage_deposit_limit */; return _toStringOptionCompactBalanceOf( - &m->nested.contracts_instantiate_V4.storage_deposit_limit, + &m->nested.contracts_instantiate_V7.storage_deposit_limit, outValue, outValueLen, pageIdx, pageCount); - case 3: /* contracts_instantiate_V4 - code_hash */; + case 3: /* contracts_instantiate_V7 - code_hash */; return _toStringCodeHash( - &m->nested.contracts_instantiate_V4.code_hash, + &m->nested.contracts_instantiate_V7.code_hash, outValue, outValueLen, pageIdx, pageCount); - case 4: /* contracts_instantiate_V4 - data */; + case 4: /* contracts_instantiate_V7 - data */; return _toStringBytes( - &m->nested.contracts_instantiate_V4.data, + &m->nested.contracts_instantiate_V7.data, outValue, outValueLen, pageIdx, pageCount); - case 5: /* contracts_instantiate_V4 - salt */; + case 5: /* contracts_instantiate_V7 - salt */; return _toStringBytes( - &m->nested.contracts_instantiate_V4.salt, + &m->nested.contracts_instantiate_V7.salt, outValue, outValueLen, pageIdx, pageCount); default: @@ -12728,39 +12289,39 @@ parser_error_t _getMethod_ItemValue_V4( } case 12032: /* module 47 call 0 */ switch (itemIdx) { - case 0: /* polymeshcontracts_instantiate_with_code_perms_V4 - endowment */; + case 0: /* polymeshcontracts_instantiate_with_code_perms_V7 - endowment */; return _toStringBalance( - &m->basic.polymeshcontracts_instantiate_with_code_perms_V4.endowment, + &m->basic.polymeshcontracts_instantiate_with_code_perms_V7.endowment, outValue, outValueLen, pageIdx, pageCount); - case 1: /* polymeshcontracts_instantiate_with_code_perms_V4 - gas_limit */; + case 1: /* polymeshcontracts_instantiate_with_code_perms_V7 - gas_limit */; return _toStringWeight( - &m->basic.polymeshcontracts_instantiate_with_code_perms_V4.gas_limit, + &m->basic.polymeshcontracts_instantiate_with_code_perms_V7.gas_limit, outValue, outValueLen, pageIdx, pageCount); - case 2: /* polymeshcontracts_instantiate_with_code_perms_V4 - storage_deposit_limit */; + case 2: /* polymeshcontracts_instantiate_with_code_perms_V7 - storage_deposit_limit */; return _toStringOptionBalance( - &m->basic.polymeshcontracts_instantiate_with_code_perms_V4.storage_deposit_limit, + &m->basic.polymeshcontracts_instantiate_with_code_perms_V7.storage_deposit_limit, outValue, outValueLen, pageIdx, pageCount); - case 3: /* polymeshcontracts_instantiate_with_code_perms_V4 - code */; + case 3: /* polymeshcontracts_instantiate_with_code_perms_V7 - code */; return _toStringVecu8( - &m->basic.polymeshcontracts_instantiate_with_code_perms_V4.code, + &m->basic.polymeshcontracts_instantiate_with_code_perms_V7.code, outValue, outValueLen, pageIdx, pageCount); - case 4: /* polymeshcontracts_instantiate_with_code_perms_V4 - data */; + case 4: /* polymeshcontracts_instantiate_with_code_perms_V7 - data */; return _toStringVecu8( - &m->basic.polymeshcontracts_instantiate_with_code_perms_V4.data, + &m->basic.polymeshcontracts_instantiate_with_code_perms_V7.data, outValue, outValueLen, pageIdx, pageCount); - case 5: /* polymeshcontracts_instantiate_with_code_perms_V4 - salt */; + case 5: /* polymeshcontracts_instantiate_with_code_perms_V7 - salt */; return _toStringVecu8( - &m->basic.polymeshcontracts_instantiate_with_code_perms_V4.salt, + &m->basic.polymeshcontracts_instantiate_with_code_perms_V7.salt, outValue, outValueLen, pageIdx, pageCount); - case 6: /* polymeshcontracts_instantiate_with_code_perms_V4 - perms */; + case 6: /* polymeshcontracts_instantiate_with_code_perms_V7 - perms */; return _toStringPermissions( - &m->basic.polymeshcontracts_instantiate_with_code_perms_V4.perms, + &m->basic.polymeshcontracts_instantiate_with_code_perms_V7.perms, outValue, outValueLen, pageIdx, pageCount); default: @@ -12768,39 +12329,39 @@ parser_error_t _getMethod_ItemValue_V4( } case 12033: /* module 47 call 1 */ switch (itemIdx) { - case 0: /* polymeshcontracts_instantiate_with_hash_perms_V4 - endowment */; + case 0: /* polymeshcontracts_instantiate_with_hash_perms_V7 - endowment */; return _toStringBalance( - &m->basic.polymeshcontracts_instantiate_with_hash_perms_V4.endowment, + &m->basic.polymeshcontracts_instantiate_with_hash_perms_V7.endowment, outValue, outValueLen, pageIdx, pageCount); - case 1: /* polymeshcontracts_instantiate_with_hash_perms_V4 - gas_limit */; + case 1: /* polymeshcontracts_instantiate_with_hash_perms_V7 - gas_limit */; return _toStringWeight( - &m->basic.polymeshcontracts_instantiate_with_hash_perms_V4.gas_limit, + &m->basic.polymeshcontracts_instantiate_with_hash_perms_V7.gas_limit, outValue, outValueLen, pageIdx, pageCount); - case 2: /* polymeshcontracts_instantiate_with_hash_perms_V4 - storage_deposit_limit */; + case 2: /* polymeshcontracts_instantiate_with_hash_perms_V7 - storage_deposit_limit */; return _toStringOptionBalance( - &m->basic.polymeshcontracts_instantiate_with_hash_perms_V4.storage_deposit_limit, + &m->basic.polymeshcontracts_instantiate_with_hash_perms_V7.storage_deposit_limit, outValue, outValueLen, pageIdx, pageCount); - case 3: /* polymeshcontracts_instantiate_with_hash_perms_V4 - code_hash */; + case 3: /* polymeshcontracts_instantiate_with_hash_perms_V7 - code_hash */; return _toStringCodeHash( - &m->basic.polymeshcontracts_instantiate_with_hash_perms_V4.code_hash, + &m->basic.polymeshcontracts_instantiate_with_hash_perms_V7.code_hash, outValue, outValueLen, pageIdx, pageCount); - case 4: /* polymeshcontracts_instantiate_with_hash_perms_V4 - data */; + case 4: /* polymeshcontracts_instantiate_with_hash_perms_V7 - data */; return _toStringVecu8( - &m->basic.polymeshcontracts_instantiate_with_hash_perms_V4.data, + &m->basic.polymeshcontracts_instantiate_with_hash_perms_V7.data, outValue, outValueLen, pageIdx, pageCount); - case 5: /* polymeshcontracts_instantiate_with_hash_perms_V4 - salt */; + case 5: /* polymeshcontracts_instantiate_with_hash_perms_V7 - salt */; return _toStringVecu8( - &m->basic.polymeshcontracts_instantiate_with_hash_perms_V4.salt, + &m->basic.polymeshcontracts_instantiate_with_hash_perms_V7.salt, outValue, outValueLen, pageIdx, pageCount); - case 6: /* polymeshcontracts_instantiate_with_hash_perms_V4 - perms */; + case 6: /* polymeshcontracts_instantiate_with_hash_perms_V7 - perms */; return _toStringPermissions( - &m->basic.polymeshcontracts_instantiate_with_hash_perms_V4.perms, + &m->basic.polymeshcontracts_instantiate_with_hash_perms_V7.perms, outValue, outValueLen, pageIdx, pageCount); default: @@ -12808,9 +12369,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 12034: /* module 47 call 2 */ switch (itemIdx) { - case 0: /* polymeshcontracts_update_call_runtime_whitelist_V4 - updates */; + case 0: /* polymeshcontracts_update_call_runtime_whitelist_V7 - updates */; return _toStringVecTupleExtrinsicIdbool( - &m->basic.polymeshcontracts_update_call_runtime_whitelist_V4.updates, + &m->basic.polymeshcontracts_update_call_runtime_whitelist_V7.updates, outValue, outValueLen, pageIdx, pageCount); default: @@ -12818,34 +12379,34 @@ parser_error_t _getMethod_ItemValue_V4( } case 12035: /* module 47 call 3 */ switch (itemIdx) { - case 0: /* polymeshcontracts_instantiate_with_code_as_primary_key_V4 - endowment */; + case 0: /* polymeshcontracts_instantiate_with_code_as_primary_key_V7 - endowment */; return _toStringBalance( - &m->basic.polymeshcontracts_instantiate_with_code_as_primary_key_V4.endowment, + &m->basic.polymeshcontracts_instantiate_with_code_as_primary_key_V7.endowment, outValue, outValueLen, pageIdx, pageCount); - case 1: /* polymeshcontracts_instantiate_with_code_as_primary_key_V4 - gas_limit */; + case 1: /* polymeshcontracts_instantiate_with_code_as_primary_key_V7 - gas_limit */; return _toStringWeight( - &m->basic.polymeshcontracts_instantiate_with_code_as_primary_key_V4.gas_limit, + &m->basic.polymeshcontracts_instantiate_with_code_as_primary_key_V7.gas_limit, outValue, outValueLen, pageIdx, pageCount); - case 2: /* polymeshcontracts_instantiate_with_code_as_primary_key_V4 - storage_deposit_limit */; + case 2: /* polymeshcontracts_instantiate_with_code_as_primary_key_V7 - storage_deposit_limit */; return _toStringOptionBalance( - &m->basic.polymeshcontracts_instantiate_with_code_as_primary_key_V4.storage_deposit_limit, + &m->basic.polymeshcontracts_instantiate_with_code_as_primary_key_V7.storage_deposit_limit, outValue, outValueLen, pageIdx, pageCount); - case 3: /* polymeshcontracts_instantiate_with_code_as_primary_key_V4 - code */; + case 3: /* polymeshcontracts_instantiate_with_code_as_primary_key_V7 - code */; return _toStringVecu8( - &m->basic.polymeshcontracts_instantiate_with_code_as_primary_key_V4.code, + &m->basic.polymeshcontracts_instantiate_with_code_as_primary_key_V7.code, outValue, outValueLen, pageIdx, pageCount); - case 4: /* polymeshcontracts_instantiate_with_code_as_primary_key_V4 - data */; + case 4: /* polymeshcontracts_instantiate_with_code_as_primary_key_V7 - data */; return _toStringVecu8( - &m->basic.polymeshcontracts_instantiate_with_code_as_primary_key_V4.data, + &m->basic.polymeshcontracts_instantiate_with_code_as_primary_key_V7.data, outValue, outValueLen, pageIdx, pageCount); - case 5: /* polymeshcontracts_instantiate_with_code_as_primary_key_V4 - salt */; + case 5: /* polymeshcontracts_instantiate_with_code_as_primary_key_V7 - salt */; return _toStringVecu8( - &m->basic.polymeshcontracts_instantiate_with_code_as_primary_key_V4.salt, + &m->basic.polymeshcontracts_instantiate_with_code_as_primary_key_V7.salt, outValue, outValueLen, pageIdx, pageCount); default: @@ -12853,34 +12414,34 @@ parser_error_t _getMethod_ItemValue_V4( } case 12036: /* module 47 call 4 */ switch (itemIdx) { - case 0: /* polymeshcontracts_instantiate_with_hash_as_primary_key_V4 - endowment */; + case 0: /* polymeshcontracts_instantiate_with_hash_as_primary_key_V7 - endowment */; return _toStringBalance( - &m->basic.polymeshcontracts_instantiate_with_hash_as_primary_key_V4.endowment, + &m->basic.polymeshcontracts_instantiate_with_hash_as_primary_key_V7.endowment, outValue, outValueLen, pageIdx, pageCount); - case 1: /* polymeshcontracts_instantiate_with_hash_as_primary_key_V4 - gas_limit */; + case 1: /* polymeshcontracts_instantiate_with_hash_as_primary_key_V7 - gas_limit */; return _toStringWeight( - &m->basic.polymeshcontracts_instantiate_with_hash_as_primary_key_V4.gas_limit, + &m->basic.polymeshcontracts_instantiate_with_hash_as_primary_key_V7.gas_limit, outValue, outValueLen, pageIdx, pageCount); - case 2: /* polymeshcontracts_instantiate_with_hash_as_primary_key_V4 - storage_deposit_limit */; + case 2: /* polymeshcontracts_instantiate_with_hash_as_primary_key_V7 - storage_deposit_limit */; return _toStringOptionBalance( - &m->basic.polymeshcontracts_instantiate_with_hash_as_primary_key_V4.storage_deposit_limit, + &m->basic.polymeshcontracts_instantiate_with_hash_as_primary_key_V7.storage_deposit_limit, outValue, outValueLen, pageIdx, pageCount); - case 3: /* polymeshcontracts_instantiate_with_hash_as_primary_key_V4 - code_hash */; + case 3: /* polymeshcontracts_instantiate_with_hash_as_primary_key_V7 - code_hash */; return _toStringCodeHash( - &m->basic.polymeshcontracts_instantiate_with_hash_as_primary_key_V4.code_hash, + &m->basic.polymeshcontracts_instantiate_with_hash_as_primary_key_V7.code_hash, outValue, outValueLen, pageIdx, pageCount); - case 4: /* polymeshcontracts_instantiate_with_hash_as_primary_key_V4 - data */; + case 4: /* polymeshcontracts_instantiate_with_hash_as_primary_key_V7 - data */; return _toStringVecu8( - &m->basic.polymeshcontracts_instantiate_with_hash_as_primary_key_V4.data, + &m->basic.polymeshcontracts_instantiate_with_hash_as_primary_key_V7.data, outValue, outValueLen, pageIdx, pageCount); - case 5: /* polymeshcontracts_instantiate_with_hash_as_primary_key_V4 - salt */; + case 5: /* polymeshcontracts_instantiate_with_hash_as_primary_key_V7 - salt */; return _toStringVecu8( - &m->basic.polymeshcontracts_instantiate_with_hash_as_primary_key_V4.salt, + &m->basic.polymeshcontracts_instantiate_with_hash_as_primary_key_V7.salt, outValue, outValueLen, pageIdx, pageCount); default: @@ -12888,14 +12449,14 @@ parser_error_t _getMethod_ItemValue_V4( } case 12037: /* module 47 call 5 */ switch (itemIdx) { - case 0: /* polymeshcontracts_upgrade_api_V4 - api */; + case 0: /* polymeshcontracts_upgrade_api_V7 - api */; return _toStringApi( - &m->basic.polymeshcontracts_upgrade_api_V4.api, + &m->basic.polymeshcontracts_upgrade_api_V7.api, outValue, outValueLen, pageIdx, pageCount); - case 1: /* polymeshcontracts_upgrade_api_V4 - next_upgrade */; + case 1: /* polymeshcontracts_upgrade_api_V7 - next_upgrade */; return _toStringNextUpgradeT( - &m->basic.polymeshcontracts_upgrade_api_V4.next_upgrade, + &m->basic.polymeshcontracts_upgrade_api_V7.next_upgrade, outValue, outValueLen, pageIdx, pageCount); default: @@ -12903,9 +12464,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 12288: /* module 48 call 0 */ switch (itemIdx) { - case 0: /* preimage_note_preimage_V4 - bytes */; + case 0: /* preimage_note_preimage_V7 - bytes */; return _toStringVecu8( - &m->basic.preimage_note_preimage_V4.bytes, + &m->basic.preimage_note_preimage_V7.bytes, outValue, outValueLen, pageIdx, pageCount); default: @@ -12913,9 +12474,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 12289: /* module 48 call 1 */ switch (itemIdx) { - case 0: /* preimage_unnote_preimage_V4 - hash */; + case 0: /* preimage_unnote_preimage_V7 - hash */; return _toStringHash( - &m->basic.preimage_unnote_preimage_V4.hash, + &m->basic.preimage_unnote_preimage_V7.hash, outValue, outValueLen, pageIdx, pageCount); default: @@ -12923,9 +12484,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 12290: /* module 48 call 2 */ switch (itemIdx) { - case 0: /* preimage_request_preimage_V4 - hash */; + case 0: /* preimage_request_preimage_V7 - hash */; return _toStringHash( - &m->basic.preimage_request_preimage_V4.hash, + &m->basic.preimage_request_preimage_V7.hash, outValue, outValueLen, pageIdx, pageCount); default: @@ -12933,9 +12494,9 @@ parser_error_t _getMethod_ItemValue_V4( } case 12291: /* module 48 call 3 */ switch (itemIdx) { - case 0: /* preimage_unrequest_preimage_V4 - hash */; + case 0: /* preimage_unrequest_preimage_V7 - hash */; return _toStringHash( - &m->basic.preimage_unrequest_preimage_V4.hash, + &m->basic.preimage_unrequest_preimage_V7.hash, outValue, outValueLen, pageIdx, pageCount); default: @@ -12943,19 +12504,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 12544: /* module 49 call 0 */ switch (itemIdx) { - case 0: /* nft_create_nft_collection_V4 - ticker */; - return _toStringTicker( - &m->basic.nft_create_nft_collection_V4.ticker, + case 0: /* nft_create_nft_collection_V7 - asset_id */; + return _toStringOptionAssetID( + &m->basic.nft_create_nft_collection_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* nft_create_nft_collection_V4 - nft_type */; + case 1: /* nft_create_nft_collection_V7 - nft_type */; return _toStringOptionNonFungibleType( - &m->basic.nft_create_nft_collection_V4.nft_type, + &m->basic.nft_create_nft_collection_V7.nft_type, outValue, outValueLen, pageIdx, pageCount); - case 2: /* nft_create_nft_collection_V4 - collection_keys */; + case 2: /* nft_create_nft_collection_V7 - collection_keys */; return _toStringVecAssetMetadataKey( - &m->basic.nft_create_nft_collection_V4.collection_keys, + &m->basic.nft_create_nft_collection_V7.collection_keys, outValue, outValueLen, pageIdx, pageCount); default: @@ -12963,19 +12524,19 @@ parser_error_t _getMethod_ItemValue_V4( } case 12545: /* module 49 call 1 */ switch (itemIdx) { - case 0: /* nft_issue_nft_V4 - ticker */; - return _toStringTicker( - &m->basic.nft_issue_nft_V4.ticker, + case 0: /* nft_issue_nft_V7 - asset_id */; + return _toStringAssetID( + &m->basic.nft_issue_nft_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* nft_issue_nft_V4 - nft_metadata_attributes */; + case 1: /* nft_issue_nft_V7 - nft_metadata_attributes */; return _toStringVecNFTMetadataAttribute( - &m->basic.nft_issue_nft_V4.nft_metadata_attributes, + &m->basic.nft_issue_nft_V7.nft_metadata_attributes, outValue, outValueLen, pageIdx, pageCount); - case 2: /* nft_issue_nft_V4 - portfolio_kind */; + case 2: /* nft_issue_nft_V7 - portfolio_kind */; return _toStringPortfolioKind( - &m->basic.nft_issue_nft_V4.portfolio_kind, + &m->basic.nft_issue_nft_V7.portfolio_kind, outValue, outValueLen, pageIdx, pageCount); default: @@ -12983,19 +12544,84 @@ parser_error_t _getMethod_ItemValue_V4( } case 12546: /* module 49 call 2 */ switch (itemIdx) { - case 0: /* nft_redeem_nft_V4 - ticker */; - return _toStringTicker( - &m->basic.nft_redeem_nft_V4.ticker, + case 0: /* nft_redeem_nft_V7 - asset_id */; + return _toStringAssetID( + &m->basic.nft_redeem_nft_V7.asset_id, outValue, outValueLen, pageIdx, pageCount); - case 1: /* nft_redeem_nft_V4 - nft_id */; + case 1: /* nft_redeem_nft_V7 - nft_id */; return _toStringNFTId( - &m->basic.nft_redeem_nft_V4.nft_id, + &m->basic.nft_redeem_nft_V7.nft_id, outValue, outValueLen, pageIdx, pageCount); - case 2: /* nft_redeem_nft_V4 - portfolio_kind */; + case 2: /* nft_redeem_nft_V7 - portfolio_kind */; return _toStringPortfolioKind( - &m->basic.nft_redeem_nft_V4.portfolio_kind, + &m->basic.nft_redeem_nft_V7.portfolio_kind, + outValue, outValueLen, + pageIdx, pageCount); + case 3: /* nft_redeem_nft_V7 - number_of_keys */; + return _toStringOptionu8( + &m->basic.nft_redeem_nft_V7.number_of_keys, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 12800: /* module 50 call 0 */ + switch (itemIdx) { + case 0: /* electionprovidermultiphase_submit_unsigned_V7 - raw_solution */; + return _toStringBoxRawSolutionSolutionOfMinerConfig( + &m->basic.electionprovidermultiphase_submit_unsigned_V7.raw_solution, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* electionprovidermultiphase_submit_unsigned_V7 - witness */; + return _toStringSolutionOrSnapshotSize( + &m->basic.electionprovidermultiphase_submit_unsigned_V7.witness, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 12801: /* module 50 call 1 */ + switch (itemIdx) { + case 0: /* electionprovidermultiphase_set_minimum_untrusted_score_V7 - maybe_next_score */; + return _toStringOptionElectionScore( + &m->basic.electionprovidermultiphase_set_minimum_untrusted_score_V7.maybe_next_score, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 12802: /* module 50 call 2 */ + switch (itemIdx) { + case 0: /* electionprovidermultiphase_set_emergency_election_result_V7 - supports */; + return _toStringSupportsAccountId( + &m->basic.electionprovidermultiphase_set_emergency_election_result_V7.supports, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 12803: /* module 50 call 3 */ + switch (itemIdx) { + case 0: /* electionprovidermultiphase_submit_V7 - raw_solution */; + return _toStringBoxRawSolutionSolutionOfMinerConfig( + &m->basic.electionprovidermultiphase_submit_V7.raw_solution, + outValue, outValueLen, + pageIdx, pageCount); + default: + return parser_no_data; + } + case 12804: /* module 50 call 4 */ + switch (itemIdx) { + case 0: /* electionprovidermultiphase_governance_fallback_V7 - maybe_max_voters */; + return _toStringOptionu32( + &m->basic.electionprovidermultiphase_governance_fallback_V7.maybe_max_voters, + outValue, outValueLen, + pageIdx, pageCount); + case 1: /* electionprovidermultiphase_governance_fallback_V7 - maybe_max_targets */; + return _toStringOptionu32( + &m->basic.electionprovidermultiphase_governance_fallback_V7.maybe_max_targets, outValue, outValueLen, pageIdx, pageCount); default: @@ -13009,7 +12635,7 @@ parser_error_t _getMethod_ItemValue_V4( return parser_ok; } -bool _getMethod_ItemIsExpert_V4(uint8_t moduleIdx, uint8_t callIdx, __Z_UNUSED uint8_t itemIdx) +bool _getMethod_ItemIsExpert_V7(uint8_t moduleIdx, uint8_t callIdx, __Z_UNUSED uint8_t itemIdx) { uint16_t callPrivIdx = ((uint16_t)moduleIdx << 8u) + callIdx; @@ -13021,14 +12647,14 @@ bool _getMethod_ItemIsExpert_V4(uint8_t moduleIdx, uint8_t callIdx, __Z_UNUSED u default: return false; } - case 4372: // Staking:Force unstake + case 4367: // Staking:Force unstake switch (itemIdx) { case 1: // Num slashing spans return true; default: return false; } - case 4378: // Staking:Reap stash + case 4372: // Staking:Reap stash switch (itemIdx) { case 1: // Num slashing spans return true; @@ -13041,20 +12667,16 @@ bool _getMethod_ItemIsExpert_V4(uint8_t moduleIdx, uint8_t callIdx, __Z_UNUSED u } } -bool _getMethod_IsNestingSupported_V4(uint8_t moduleIdx, uint8_t callIdx) +bool _getMethod_IsNestingSupported_V7(uint8_t moduleIdx, uint8_t callIdx) { uint16_t callPrivIdx = ((uint16_t)moduleIdx << 8u) + callIdx; switch (callPrivIdx) { - case 4104: // Bridge:Batch propose bridge tx - case 4105: // Bridge:Propose bridge tx - case 4106: // Bridge:Handle bridge tx - case 4107: // Bridge:Freeze txs - case 4108: // Bridge:Unfreeze txs - case 4109: // Bridge:Handle scheduled bridge tx - case 4110: // Bridge:Add freeze admin - case 4111: // Bridge:Remove freeze admin - case 4112: // Bridge:Remove txs + case 6400: // Sudo:Sudo + case 6401: // Sudo:Sudo unchecked weight + case 6402: // Sudo:Set key + case 6403: // Sudo:Sudo as + case 6656: // Asset:Register unique ticker case 6670: // Asset:Controller transfer case 6671: // Asset:Register custom asset type case 6672: // Asset:Create asset with custom type @@ -13063,16 +12685,16 @@ bool _getMethod_IsNestingSupported_V4(uint8_t moduleIdx, uint8_t callIdx) case 6675: // Asset:Register and set local asset metadata case 6676: // Asset:Register asset metadata local type case 6677: // Asset:Register asset metadata global type - case 6678: // Asset:Redeem from portfolio - case 6679: // Asset:Update asset type - case 6680: // Asset:Remove local metadata key - case 6681: // Asset:Remove metadata value - case 6682: // Asset:Exempt ticker affirmation - case 6683: // Asset:Remove ticker affirmation exemption - case 6684: // Asset:Pre approve ticker - case 6685: // Asset:Remove ticker pre approval - case 6686: // Asset:Add mandatory mediators - case 6687: // Asset:Remove mandatory mediators + case 6678: // Asset:Update asset type + case 6679: // Asset:Remove local metadata key + case 6680: // Asset:Remove metadata value + case 6681: // Asset:Exempt asset affirmation + case 6682: // Asset:Remove asset affirmation exemption + case 6683: // Asset:Pre approve asset + case 6684: // Asset:Remove asset pre approval + case 6685: // Asset:Add mandatory mediators + case 6686: // Asset:Remove mandatory mediators + case 6687: // Asset:Link ticker to asset id case 8707: // Portfolio:Quit portfolio custody case 8708: // Portfolio:Accept portfolio custody case 8710: // Portfolio:Pre approve portfolio @@ -13104,7 +12726,6 @@ bool _getMethod_IsNestingSupported_V4(uint8_t moduleIdx, uint8_t callIdx) case 10500: // Utility:Force batch case 10501: // Utility:With weight case 10502: // Utility:Batch old - case 10505: // Utility:As derivative case 11008: // ExternalAgents:Create group case 11009: // ExternalAgents:Set group permissions case 11010: // ExternalAgents:Remove agent @@ -13140,6 +12761,11 @@ bool _getMethod_IsNestingSupported_V4(uint8_t moduleIdx, uint8_t callIdx) case 12545: // Nft:Issue nft case 12546: // Nft:Redeem nft case 12547: // Nft:Controller transfer + case 12800: // ElectionProviderMultiPhase:Submit unsigned + case 12801: // ElectionProviderMultiPhase:Set minimum untrusted score + case 12802: // ElectionProviderMultiPhase:Set emergency election result + case 12803: // ElectionProviderMultiPhase:Submit + case 12804: // ElectionProviderMultiPhase:Governance fallback return false; default: return true; diff --git a/app/src/substrate/substrate_dispatch_V4.h b/app/src/substrate/substrate_dispatch_V7.h similarity index 62% rename from app/src/substrate/substrate_dispatch_V4.h rename to app/src/substrate/substrate_dispatch_V7.h index 9bd8197..2ce433f 100644 --- a/app/src/substrate/substrate_dispatch_V4.h +++ b/app/src/substrate/substrate_dispatch_V7.h @@ -22,28 +22,28 @@ extern "C" { #include "parser_impl.h" #include "stdbool.h" #include "substrate_functions.h" -#include "substrate_functions_V4.h" +#include "substrate_functions_V7.h" #include #include -parser_error_t _readMethod_V4(parser_context_t* c, uint8_t moduleIdx, uint8_t callIdx, pd_Method_V4_t* method); +parser_error_t _readMethod_V7(parser_context_t* c, uint8_t moduleIdx, uint8_t callIdx, pd_Method_V7_t* method); -const char* _getMethod_ModuleName_V4(uint8_t moduleIdx); +const char* _getMethod_ModuleName_V7(uint8_t moduleIdx); -const char* _getMethod_Name_V4(uint8_t moduleIdx, uint8_t callIdx); -const char* _getMethod_Name_V4_ParserFull(uint16_t callPrivIdx); +const char* _getMethod_Name_V7(uint8_t moduleIdx, uint8_t callIdx); +const char* _getMethod_Name_V7_ParserFull(uint16_t callPrivIdx); -const char* _getMethod_ItemName_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t itemIdx); +const char* _getMethod_ItemName_V7(uint8_t moduleIdx, uint8_t callIdx, uint8_t itemIdx); -uint8_t _getMethod_NumItems_V4(uint8_t moduleIdx, uint8_t callIdx); +uint8_t _getMethod_NumItems_V7(uint8_t moduleIdx, uint8_t callIdx); -parser_error_t _getMethod_ItemValue_V4( - pd_Method_V4_t* m, uint8_t moduleIdx, uint8_t callIdx, uint8_t itemIdx, +parser_error_t _getMethod_ItemValue_V7( + pd_Method_V7_t* m, uint8_t moduleIdx, uint8_t callIdx, uint8_t itemIdx, char* outValue, uint16_t outValueLen, uint8_t pageIdx, uint8_t* pageCount); -bool _getMethod_ItemIsExpert_V4(uint8_t moduleIdx, uint8_t callIdx, uint8_t itemIdx); -bool _getMethod_IsNestingSupported_V4(uint8_t moduleIdx, uint8_t callIdx); +bool _getMethod_ItemIsExpert_V7(uint8_t moduleIdx, uint8_t callIdx, uint8_t itemIdx); +bool _getMethod_IsNestingSupported_V7(uint8_t moduleIdx, uint8_t callIdx); #ifdef __cplusplus } diff --git a/app/src/substrate/substrate_functions.h b/app/src/substrate/substrate_functions.h index 3b82613..06cbdbd 100644 --- a/app/src/substrate/substrate_functions.h +++ b/app/src/substrate/substrate_functions.h @@ -34,8 +34,8 @@ parser_error_t _readCompactu32(parser_context_t* c, pd_Compactu32_t* v); parser_error_t _readCompactu64(parser_context_t* c, pd_Compactu64_t* v); parser_error_t _readCallImpl(parser_context_t* c, pd_Call_t* v, pd_MethodNested_t* m); +parser_error_t _readAssetID(parser_context_t* c, pd_AssetID_t* v); parser_error_t _readIdentityId(parser_context_t* c, pd_IdentityId_t* v); -parser_error_t _readTicker(parser_context_t* c, pd_Ticker_t* v); parser_error_t _readScope(parser_context_t* c, pd_Scope_t* v); parser_error_t _readCddId(parser_context_t* c, pd_CddId_t* v); parser_error_t _readClaimType(parser_context_t* c, pd_ClaimType_t* v); @@ -49,6 +49,8 @@ parser_error_t _readTupleScopeScopeIdCddId(parser_context_t* c, pd_TupleScopeSco parser_error_t _readTupleU32Scope(parser_context_t* c, pd_TupleU32Scope_t* v); parser_error_t _readVecClaimType(parser_context_t* c, pd_VecClaimType_t* v); parser_error_t _readVecDispatchableName(parser_context_t* c, pd_VecDispatchableName_t* v); +parser_error_t _readAccountId(parser_context_t* c, pd_AccountId_t* v); +parser_error_t _readBalanceNoSymbol(parser_context_t* c, pd_BalanceNoSymbol_t* v); parser_error_t _readClaim(parser_context_t* c, pd_Claim_t* v); parser_error_t _readDispatchableNames(parser_context_t* c, pd_DispatchableNames_t* v); parser_error_t _readPalletName(parser_context_t* c, pd_PalletName_t* v); @@ -59,6 +61,7 @@ parser_error_t _readPermill(parser_context_t* c, pd_Permill_t* v); parser_error_t _readPortfolioId(parser_context_t* c, pd_PortfolioId_t* v); parser_error_t _readTargetIdentity(parser_context_t* c, pd_TargetIdentity_t* v); parser_error_t _readTrustedIssuer(parser_context_t* c, pd_TrustedIssuer_t* v); +parser_error_t _readTupleAccountId32u128(parser_context_t* c, pd_TupleAccountId32u128_t* v); parser_error_t _readVecClaim(parser_context_t* c, pd_VecClaim_t* v); parser_error_t _readChoiceTitle(parser_context_t* c, pd_ChoiceTitle_t* v); parser_error_t _readConditionType(parser_context_t* c, pd_ConditionType_t* v); @@ -67,12 +70,12 @@ parser_error_t _readEd25519Signature(parser_context_t* c, pd_Ed25519Signature_t* parser_error_t _readMemo(parser_context_t* c, pd_Memo_t* v); parser_error_t _readSr25519Signature(parser_context_t* c, pd_Sr25519Signature_t* v); parser_error_t _readTax(parser_context_t* c, pd_Tax_t* v); +parser_error_t _readVecAssetID(parser_context_t* c, pd_VecAssetID_t* v); parser_error_t _readVecPalletPermissions(parser_context_t* c, pd_VecPalletPermissions_t* v); parser_error_t _readVecPortfolioId(parser_context_t* c, pd_VecPortfolioId_t* v); -parser_error_t _readVecTicker(parser_context_t* c, pd_VecTicker_t* v); parser_error_t _readVecTrustedIssuer(parser_context_t* c, pd_VecTrustedIssuer_t* v); +parser_error_t _readVecTupleAccountId32u128(parser_context_t* c, pd_VecTupleAccountId32u128_t* v); parser_error_t _readAssetPermissions(parser_context_t* c, pd_AssetPermissions_t* v); -parser_error_t _readBalanceNoSymbol(parser_context_t* c, pd_BalanceNoSymbol_t* v); parser_error_t _readCheckpointId(parser_context_t* c, pd_CheckpointId_t* v); parser_error_t _readCondition(parser_context_t* c, pd_Condition_t* v); parser_error_t _readDocumentType(parser_context_t* c, pd_DocumentType_t* v); @@ -85,12 +88,13 @@ parser_error_t _readOptionMemo(parser_context_t* c, pd_OptionMemo_t* v); parser_error_t _readPortfolioPermissions(parser_context_t* c, pd_PortfolioPermissions_t* v); parser_error_t _readReceiptMetadata(parser_context_t* c, pd_ReceiptMetadata_t* v); parser_error_t _readScheduleId(parser_context_t* c, pd_ScheduleId_t* v); +parser_error_t _readSpNposElectionsSupport(parser_context_t* c, pd_SpNposElectionsSupport_t* v); parser_error_t _readTargetTreatment(parser_context_t* c, pd_TargetTreatment_t* v); +parser_error_t _readTicker(parser_context_t* c, pd_Ticker_t* v); parser_error_t _readTupleIdentityIdTax(parser_context_t* c, pd_TupleIdentityIdTax_t* v); parser_error_t _readVecChoiceTitle(parser_context_t* c, pd_VecChoiceTitle_t* v); parser_error_t _readVecIdentityId(parser_context_t* c, pd_VecIdentityId_t* v); parser_error_t _readVecu64(parser_context_t* c, pd_Vecu64_t* v); -parser_error_t _readAccountId(parser_context_t* c, pd_AccountId_t* v); parser_error_t _readAgentGroup(parser_context_t* c, pd_AgentGroup_t* v); parser_error_t _readAssetCount(parser_context_t* c, pd_AssetCount_t* v); parser_error_t _readAssetMetadataKey(parser_context_t* c, pd_AssetMetadataKey_t* v); @@ -103,7 +107,6 @@ parser_error_t _readDocumentName(parser_context_t* c, pd_DocumentName_t* v); parser_error_t _readDocumentUri(parser_context_t* c, pd_DocumentUri_t* v); parser_error_t _readFundFungible(parser_context_t* c, pd_FundFungible_t* v); parser_error_t _readFundNonFungible(parser_context_t* c, pd_FundNonFungible_t* v); -parser_error_t _readHash(parser_context_t* c, pd_Hash_t* v); parser_error_t _readLegFungible(parser_context_t* c, pd_LegFungible_t* v); parser_error_t _readLegNonFungible(parser_context_t* c, pd_LegNonFungible_t* v); parser_error_t _readLegOffChain(parser_context_t* c, pd_LegOffChain_t* v); @@ -120,6 +123,7 @@ parser_error_t _readRecordDateSpec(parser_context_t* c, pd_RecordDateSpec_t* v); parser_error_t _readSignature(parser_context_t* c, pd_Signature_t* v); parser_error_t _readSnapshotResult(parser_context_t* c, pd_SnapshotResult_t* v); parser_error_t _readTargetIdentities(parser_context_t* c, pd_TargetIdentities_t* v); +parser_error_t _readTupleAccountId32SpNposElectionsSupport(parser_context_t* c, pd_TupleAccountId32SpNposElectionsSupport_t* v); parser_error_t _readVecCondition(parser_context_t* c, pd_VecCondition_t* v); parser_error_t _readVecTupleIdentityIdTax(parser_context_t* c, pd_VecTupleIdentityIdTax_t* v); parser_error_t _readu8_array_32(parser_context_t* c, pd_u8_array_32_t* v); @@ -133,7 +137,6 @@ parser_error_t _readBallotTitle(parser_context_t* c, pd_BallotTitle_t* v); parser_error_t _readBallotVote(parser_context_t* c, pd_BallotVote_t* v); parser_error_t _readBecomeAgent(parser_context_t* c, pd_BecomeAgent_t* v); parser_error_t _readBeneficiary(parser_context_t* c, pd_Beneficiary_t* v); -parser_error_t _readBridgeTxAccountId(parser_context_t* c, pd_BridgeTxAccountId_t* v); parser_error_t _readCAKind(parser_context_t* c, pd_CAKind_t* v); parser_error_t _readCall(parser_context_t* c, pd_Call_t* v); parser_error_t _readChainVersion(parser_context_t* c, pd_ChainVersion_t* v); @@ -144,8 +147,10 @@ parser_error_t _readCreateChildIdentityWithAuthAccountId(parser_context_t* c, pd parser_error_t _readCustomAssetTypeId(parser_context_t* c, pd_CustomAssetTypeId_t* v); parser_error_t _readDocumentId(parser_context_t* c, pd_DocumentId_t* v); parser_error_t _readDocument(parser_context_t* c, pd_Document_t* v); +parser_error_t _readElectionScore(parser_context_t* c, pd_ElectionScore_t* v); parser_error_t _readFund(parser_context_t* c, pd_Fund_t* v); parser_error_t _readFundingRoundName(parser_context_t* c, pd_FundingRoundName_t* v); +parser_error_t _readHash(parser_context_t* c, pd_Hash_t* v); parser_error_t _readLeg(parser_context_t* c, pd_Leg_t* v); parser_error_t _readLocalCAId(parser_context_t* c, pd_LocalCAId_t* v); parser_error_t _readNFTMetadataAttribute(parser_context_t* c, pd_NFTMetadataAttribute_t* v); @@ -155,19 +160,22 @@ parser_error_t _readOptionPermill(parser_context_t* c, pd_OptionPermill_t* v); parser_error_t _readOptionRecordDateSpec(parser_context_t* c, pd_OptionRecordDateSpec_t* v); parser_error_t _readOptionTargetIdentities(parser_context_t* c, pd_OptionTargetIdentities_t* v); parser_error_t _readOptionVecTupleIdentityIdTax(parser_context_t* c, pd_OptionVecTupleIdentityIdTax_t* v); +parser_error_t _readPerbill(parser_context_t* c, pd_Perbill_t* v); +parser_error_t _readPercent(parser_context_t* c, pd_Percent_t* v); parser_error_t _readPipDescription(parser_context_t* c, pd_PipDescription_t* v); parser_error_t _readPriceTier(parser_context_t* c, pd_PriceTier_t* v); parser_error_t _readReceiptDetails(parser_context_t* c, pd_ReceiptDetails_t* v); parser_error_t _readSecondaryKeyAccountId(parser_context_t* c, pd_SecondaryKeyAccountId_t* v); parser_error_t _readSecondaryKeyWithAuthAccountId(parser_context_t* c, pd_SecondaryKeyWithAuthAccountId_t* v); -parser_error_t _readSignatoryAccountId(parser_context_t* c, pd_SignatoryAccountId_t* v); parser_error_t _readSystemOrigin(parser_context_t* c, pd_SystemOrigin_t* v); parser_error_t _readTupleExtrinsicIdbool(parser_context_t* c, pd_TupleExtrinsicIdbool_t* v); -parser_error_t _readTupleIdentityIdbool(parser_context_t* c, pd_TupleIdentityIdbool_t* v); parser_error_t _readTuplePipIdSnapshotResult(parser_context_t* c, pd_TuplePipIdSnapshotResult_t* v); parser_error_t _readUrl(parser_context_t* c, pd_Url_t* v); +parser_error_t _readVecAccountId(parser_context_t* c, pd_VecAccountId_t* v); +parser_error_t _readVecCompactu32(parser_context_t* c, pd_VecCompactu32_t* v); parser_error_t _readVecMotion(parser_context_t* c, pd_VecMotion_t* v); parser_error_t _readVecNFTId(parser_context_t* c, pd_VecNFTId_t* v); +parser_error_t _readVecTupleAccountId32SpNposElectionsSupport(parser_context_t* c, pd_VecTupleAccountId32SpNposElectionsSupport_t* v); parser_error_t _readVenueId(parser_context_t* c, pd_VenueId_t* v); parser_error_t _readWeight(parser_context_t* c, pd_Weight_t* v); parser_error_t _readu8_array_4(parser_context_t* c, pd_u8_array_4_t* v); @@ -182,9 +190,15 @@ parser_error_t _readBallotMeta(parser_context_t* c, pd_BallotMeta_t* v); parser_error_t _readBallotTimeRange(parser_context_t* c, pd_BallotTimeRange_t* v); parser_error_t _readBoundedBTreeSetIdentityIdMaxAssetMediators(parser_context_t* c, pd_BoundedBTreeSetIdentityIdMaxAssetMediators_t* v); parser_error_t _readBoundedBTreeSetIdentityIdMaxInstructionMediators(parser_context_t* c, pd_BoundedBTreeSetIdentityIdMaxInstructionMediators_t* v); +parser_error_t _readBoundedVecAccountIdMaxSigners(parser_context_t* c, pd_BoundedVecAccountIdMaxSigners_t* v); parser_error_t _readBoxPalletsOrigin(parser_context_t* c, pd_BoxPalletsOrigin_t* v); +parser_error_t _readBoxRawSolutionSolutionOfMinerConfig(parser_context_t* c, pd_BoxRawSolutionSolutionOfMinerConfig_t* v); +parser_error_t _readBoxTasConfigProposal(parser_context_t* c, pd_BoxTasConfigProposal_t* v); parser_error_t _readCAId(parser_context_t* c, pd_CAId_t* v); parser_error_t _readCodeHash(parser_context_t* c, pd_CodeHash_t* v); +parser_error_t _readConfigOpBalanceOfT(parser_context_t* c, pd_ConfigOpBalanceOfT_t* v); +parser_error_t _readConfigOpPerbill(parser_context_t* c, pd_ConfigOpPerbill_t* v); +parser_error_t _readConfigOpPercent(parser_context_t* c, pd_ConfigOpPercent_t* v); parser_error_t _readInitiateCorporateActionArgs(parser_context_t* c, pd_InitiateCorporateActionArgs_t* v); parser_error_t _readLookupasStaticLookupSource(parser_context_t* c, pd_LookupasStaticLookupSource_t* v); parser_error_t _readMaybeBlockBlockNumber(parser_context_t* c, pd_MaybeBlockBlockNumber_t* v); @@ -192,6 +206,8 @@ parser_error_t _readNFTs(parser_context_t* c, pd_NFTs_t* v); parser_error_t _readNextUpgradeT(parser_context_t* c, pd_NextUpgradeT_t* v); parser_error_t _readOptionAffirmationCount(parser_context_t* c, pd_OptionAffirmationCount_t* v); parser_error_t _readOptionAssetMetadataValueDetailMoment(parser_context_t* c, pd_OptionAssetMetadataValueDetailMoment_t* v); +parser_error_t _readOptionElectionScore(parser_context_t* c, pd_OptionElectionScore_t* v); +parser_error_t _readOptionPermissions(parser_context_t* c, pd_OptionPermissions_t* v); parser_error_t _readOptionPortfolioId(parser_context_t* c, pd_OptionPortfolioId_t* v); parser_error_t _readOptionReceiptDetails(parser_context_t* c, pd_OptionReceiptDetails_t* v); parser_error_t _readOptionTax(parser_context_t* c, pd_OptionTax_t* v); @@ -200,12 +216,13 @@ parser_error_t _readProposal(parser_context_t* c, pd_Proposal_t* v); parser_error_t _readRewardDestination(parser_context_t* c, pd_RewardDestination_t* v); parser_error_t _readScheduleCheckpoints(parser_context_t* c, pd_ScheduleCheckpoints_t* v); parser_error_t _readSettlementTypeBlockNumber(parser_context_t* c, pd_SettlementTypeBlockNumber_t* v); +parser_error_t _readSignatoryAccountId(parser_context_t* c, pd_SignatoryAccountId_t* v); +parser_error_t _readSupportsAccountId(parser_context_t* c, pd_SupportsAccountId_t* v); parser_error_t _readUniqueCall(parser_context_t* c, pd_UniqueCall_t* v); parser_error_t _readValidatorPrefs(parser_context_t* c, pd_ValidatorPrefs_t* v); parser_error_t _readVecAccountIdLookupOfT(parser_context_t* c, pd_VecAccountIdLookupOfT_t* v); parser_error_t _readVecBallotVote(parser_context_t* c, pd_VecBallotVote_t* v); parser_error_t _readVecBeneficiary(parser_context_t* c, pd_VecBeneficiary_t* v); -parser_error_t _readVecBridgeTxAccountId(parser_context_t* c, pd_VecBridgeTxAccountId_t* v); parser_error_t _readVecCall(parser_context_t* c, pd_VecCall_t* v); parser_error_t _readVecComplianceRequirement(parser_context_t* c, pd_VecComplianceRequirement_t* v); parser_error_t _readVecCreateChildIdentityWithAuthAccountId(parser_context_t* c, pd_VecCreateChildIdentityWithAuthAccountId_t* v); @@ -217,15 +234,14 @@ parser_error_t _readVecPriceTier(parser_context_t* c, pd_VecPriceTier_t* v); parser_error_t _readVecReceiptDetails(parser_context_t* c, pd_VecReceiptDetails_t* v); parser_error_t _readVecSecondaryKeyAccountId(parser_context_t* c, pd_VecSecondaryKeyAccountId_t* v); parser_error_t _readVecSecondaryKeyWithAuthAccountId(parser_context_t* c, pd_VecSecondaryKeyWithAuthAccountId_t* v); -parser_error_t _readVecSignatoryAccountId(parser_context_t* c, pd_VecSignatoryAccountId_t* v); parser_error_t _readVecTupleExtrinsicIdbool(parser_context_t* c, pd_VecTupleExtrinsicIdbool_t* v); -parser_error_t _readVecTupleIdentityIdbool(parser_context_t* c, pd_VecTupleIdentityIdbool_t* v); parser_error_t _readVecTuplePipIdSnapshotResult(parser_context_t* c, pd_VecTuplePipIdSnapshotResult_t* v); parser_error_t _readAGId(parser_context_t* c, pd_AGId_t* v); parser_error_t _readAccountIndex(parser_context_t* c, pd_AccountIndex_t* v); parser_error_t _readAssetMetadataLocalKey(parser_context_t* c, pd_AssetMetadataLocalKey_t* v); parser_error_t _readAssetName(parser_context_t* c, pd_AssetName_t* v); parser_error_t _readCADetails(parser_context_t* c, pd_CADetails_t* v); +parser_error_t _readConfigOpu32(parser_context_t* c, pd_ConfigOpu32_t* v); parser_error_t _readDeterminism(parser_context_t* c, pd_Determinism_t* v); parser_error_t _readEraIndex(parser_context_t* c, pd_EraIndex_t* v); parser_error_t _readFundraiserId(parser_context_t* c, pd_FundraiserId_t* v); @@ -234,6 +250,7 @@ parser_error_t _readInstructionId(parser_context_t* c, pd_InstructionId_t* v); parser_error_t _readKeys(parser_context_t* c, pd_Keys_t* v); parser_error_t _readMemberCount(parser_context_t* c, pd_MemberCount_t* v); parser_error_t _readOptionAssetCount(parser_context_t* c, pd_OptionAssetCount_t* v); +parser_error_t _readOptionAssetID(parser_context_t* c, pd_OptionAssetID_t* v); parser_error_t _readOptionBalance(parser_context_t* c, pd_OptionBalance_t* v); parser_error_t _readOptionBlockNumber(parser_context_t* c, pd_OptionBlockNumber_t* v); parser_error_t _readOptionCompactBalanceOf(parser_context_t* c, pd_OptionCompactBalanceOf_t* v); @@ -242,16 +259,16 @@ parser_error_t _readOptionNonFungibleType(parser_context_t* c, pd_OptionNonFungi parser_error_t _readOptionPipDescription(parser_context_t* c, pd_OptionPipDescription_t* v); parser_error_t _readOptionPortfolioNumber(parser_context_t* c, pd_OptionPortfolioNumber_t* v); parser_error_t _readOptionUrl(parser_context_t* c, pd_OptionUrl_t* v); +parser_error_t _readOptionVenueId(parser_context_t* c, pd_OptionVenueId_t* v); parser_error_t _readOptionu32(parser_context_t* c, pd_Optionu32_t* v); parser_error_t _readOptionu64(parser_context_t* c, pd_Optionu64_t* v); -parser_error_t _readPerbill(parser_context_t* c, pd_Perbill_t* v); -parser_error_t _readPercent(parser_context_t* c, pd_Percent_t* v); +parser_error_t _readOptionu8(parser_context_t* c, pd_Optionu8_t* v); parser_error_t _readPortfolioName(parser_context_t* c, pd_PortfolioName_t* v); parser_error_t _readPosRatio(parser_context_t* c, pd_PosRatio_t* v); parser_error_t _readProposalIndex(parser_context_t* c, pd_ProposalIndex_t* v); parser_error_t _readSkippedCount(parser_context_t* c, pd_SkippedCount_t* v); parser_error_t _readSlashingSwitch(parser_context_t* c, pd_SlashingSwitch_t* v); -parser_error_t _readVecAccountId(parser_context_t* c, pd_VecAccountId_t* v); +parser_error_t _readSolutionOrSnapshotSize(parser_context_t* c, pd_SolutionOrSnapshotSize_t* v); parser_error_t _readVecAssetIdentifier(parser_context_t* c, pd_VecAssetIdentifier_t* v); parser_error_t _readVecAssetMetadataKey(parser_context_t* c, pd_VecAssetMetadataKey_t* v); parser_error_t _readVecDocumentId(parser_context_t* c, pd_VecDocumentId_t* v); @@ -319,15 +336,15 @@ parser_error_t _toStringCompactu64( uint8_t pageIdx, uint8_t* pageCount); -parser_error_t _toStringIdentityId( - const pd_IdentityId_t* v, +parser_error_t _toStringAssetID( + const pd_AssetID_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, uint8_t* pageCount); -parser_error_t _toStringTicker( - const pd_Ticker_t* v, +parser_error_t _toStringIdentityId( + const pd_IdentityId_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -424,6 +441,20 @@ parser_error_t _toStringVecDispatchableName( uint8_t pageIdx, uint8_t* pageCount); +parser_error_t _toStringAccountId( + const pd_AccountId_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringBalanceNoSymbol( + const pd_BalanceNoSymbol_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + parser_error_t _toStringClaim( const pd_Claim_t* v, char* outValue, @@ -494,6 +525,13 @@ parser_error_t _toStringTrustedIssuer( uint8_t pageIdx, uint8_t* pageCount); +parser_error_t _toStringTupleAccountId32u128( + const pd_TupleAccountId32u128_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + parser_error_t _toStringVecClaim( const pd_VecClaim_t* v, char* outValue, @@ -550,22 +588,22 @@ parser_error_t _toStringTax( uint8_t pageIdx, uint8_t* pageCount); -parser_error_t _toStringVecPalletPermissions( - const pd_VecPalletPermissions_t* v, +parser_error_t _toStringVecAssetID( + const pd_VecAssetID_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, uint8_t* pageCount); -parser_error_t _toStringVecPortfolioId( - const pd_VecPortfolioId_t* v, +parser_error_t _toStringVecPalletPermissions( + const pd_VecPalletPermissions_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, uint8_t* pageCount); -parser_error_t _toStringVecTicker( - const pd_VecTicker_t* v, +parser_error_t _toStringVecPortfolioId( + const pd_VecPortfolioId_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -578,15 +616,15 @@ parser_error_t _toStringVecTrustedIssuer( uint8_t pageIdx, uint8_t* pageCount); -parser_error_t _toStringAssetPermissions( - const pd_AssetPermissions_t* v, +parser_error_t _toStringVecTupleAccountId32u128( + const pd_VecTupleAccountId32u128_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, uint8_t* pageCount); -parser_error_t _toStringBalanceNoSymbol( - const pd_BalanceNoSymbol_t* v, +parser_error_t _toStringAssetPermissions( + const pd_AssetPermissions_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -676,6 +714,13 @@ parser_error_t _toStringScheduleId( uint8_t pageIdx, uint8_t* pageCount); +parser_error_t _toStringSpNposElectionsSupport( + const pd_SpNposElectionsSupport_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + parser_error_t _toStringTargetTreatment( const pd_TargetTreatment_t* v, char* outValue, @@ -683,6 +728,13 @@ parser_error_t _toStringTargetTreatment( uint8_t pageIdx, uint8_t* pageCount); +parser_error_t _toStringTicker( + const pd_Ticker_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + parser_error_t _toStringTupleIdentityIdTax( const pd_TupleIdentityIdTax_t* v, char* outValue, @@ -711,13 +763,6 @@ parser_error_t _toStringVecu64( uint8_t pageIdx, uint8_t* pageCount); -parser_error_t _toStringAccountId( - const pd_AccountId_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - parser_error_t _toStringAgentGroup( const pd_AgentGroup_t* v, char* outValue, @@ -802,13 +847,6 @@ parser_error_t _toStringFundNonFungible( uint8_t pageIdx, uint8_t* pageCount); -parser_error_t _toStringHash( - const pd_Hash_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - parser_error_t _toStringLegFungible( const pd_LegFungible_t* v, char* outValue, @@ -921,6 +959,13 @@ parser_error_t _toStringTargetIdentities( uint8_t pageIdx, uint8_t* pageCount); +parser_error_t _toStringTupleAccountId32SpNposElectionsSupport( + const pd_TupleAccountId32SpNposElectionsSupport_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + parser_error_t _toStringVecCondition( const pd_VecCondition_t* v, char* outValue, @@ -1012,13 +1057,6 @@ parser_error_t _toStringBeneficiary( uint8_t pageIdx, uint8_t* pageCount); -parser_error_t _toStringBridgeTxAccountId( - const pd_BridgeTxAccountId_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - parser_error_t _toStringCAKind( const pd_CAKind_t* v, char* outValue, @@ -1089,6 +1127,13 @@ parser_error_t _toStringDocument( uint8_t pageIdx, uint8_t* pageCount); +parser_error_t _toStringElectionScore( + const pd_ElectionScore_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + parser_error_t _toStringFund( const pd_Fund_t* v, char* outValue, @@ -1103,6 +1148,13 @@ parser_error_t _toStringFundingRoundName( uint8_t pageIdx, uint8_t* pageCount); +parser_error_t _toStringHash( + const pd_Hash_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + parser_error_t _toStringLeg( const pd_Leg_t* v, char* outValue, @@ -1166,6 +1218,20 @@ parser_error_t _toStringOptionVecTupleIdentityIdTax( uint8_t pageIdx, uint8_t* pageCount); +parser_error_t _toStringPerbill( + const pd_Perbill_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringPercent( + const pd_Percent_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + parser_error_t _toStringPipDescription( const pd_PipDescription_t* v, char* outValue, @@ -1201,43 +1267,43 @@ parser_error_t _toStringSecondaryKeyWithAuthAccountId( uint8_t pageIdx, uint8_t* pageCount); -parser_error_t _toStringSignatoryAccountId( - const pd_SignatoryAccountId_t* v, +parser_error_t _toStringSystemOrigin( + const pd_SystemOrigin_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, uint8_t* pageCount); -parser_error_t _toStringSystemOrigin( - const pd_SystemOrigin_t* v, +parser_error_t _toStringTupleExtrinsicIdbool( + const pd_TupleExtrinsicIdbool_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, uint8_t* pageCount); -parser_error_t _toStringTupleExtrinsicIdbool( - const pd_TupleExtrinsicIdbool_t* v, +parser_error_t _toStringTuplePipIdSnapshotResult( + const pd_TuplePipIdSnapshotResult_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, uint8_t* pageCount); -parser_error_t _toStringTupleIdentityIdbool( - const pd_TupleIdentityIdbool_t* v, +parser_error_t _toStringUrl( + const pd_Url_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, uint8_t* pageCount); -parser_error_t _toStringTuplePipIdSnapshotResult( - const pd_TuplePipIdSnapshotResult_t* v, +parser_error_t _toStringVecAccountId( + const pd_VecAccountId_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, uint8_t* pageCount); -parser_error_t _toStringUrl( - const pd_Url_t* v, +parser_error_t _toStringVecCompactu32( + const pd_VecCompactu32_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1257,6 +1323,13 @@ parser_error_t _toStringVecNFTId( uint8_t pageIdx, uint8_t* pageCount); +parser_error_t _toStringVecTupleAccountId32SpNposElectionsSupport( + const pd_VecTupleAccountId32SpNposElectionsSupport_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + parser_error_t _toStringVenueId( const pd_VenueId_t* v, char* outValue, @@ -1355,6 +1428,13 @@ parser_error_t _toStringBoundedBTreeSetIdentityIdMaxInstructionMediators( uint8_t pageIdx, uint8_t* pageCount); +parser_error_t _toStringBoundedVecAccountIdMaxSigners( + const pd_BoundedVecAccountIdMaxSigners_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + parser_error_t _toStringBoxPalletsOrigin( const pd_BoxPalletsOrigin_t* v, char* outValue, @@ -1362,6 +1442,20 @@ parser_error_t _toStringBoxPalletsOrigin( uint8_t pageIdx, uint8_t* pageCount); +parser_error_t _toStringBoxRawSolutionSolutionOfMinerConfig( + const pd_BoxRawSolutionSolutionOfMinerConfig_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringBoxTasConfigProposal( + const pd_BoxTasConfigProposal_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + parser_error_t _toStringCAId( const pd_CAId_t* v, char* outValue, @@ -1376,6 +1470,27 @@ parser_error_t _toStringCodeHash( uint8_t pageIdx, uint8_t* pageCount); +parser_error_t _toStringConfigOpBalanceOfT( + const pd_ConfigOpBalanceOfT_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringConfigOpPerbill( + const pd_ConfigOpPerbill_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringConfigOpPercent( + const pd_ConfigOpPercent_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + parser_error_t _toStringInitiateCorporateActionArgs( const pd_InitiateCorporateActionArgs_t* v, char* outValue, @@ -1425,6 +1540,20 @@ parser_error_t _toStringOptionAssetMetadataValueDetailMoment( uint8_t pageIdx, uint8_t* pageCount); +parser_error_t _toStringOptionElectionScore( + const pd_OptionElectionScore_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringOptionPermissions( + const pd_OptionPermissions_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + parser_error_t _toStringOptionPortfolioId( const pd_OptionPortfolioId_t* v, char* outValue, @@ -1481,6 +1610,20 @@ parser_error_t _toStringSettlementTypeBlockNumber( uint8_t pageIdx, uint8_t* pageCount); +parser_error_t _toStringSignatoryAccountId( + const pd_SignatoryAccountId_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + +parser_error_t _toStringSupportsAccountId( + const pd_SupportsAccountId_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + parser_error_t _toStringUniqueCall( const pd_UniqueCall_t* v, char* outValue, @@ -1516,13 +1659,6 @@ parser_error_t _toStringVecBeneficiary( uint8_t pageIdx, uint8_t* pageCount); -parser_error_t _toStringVecBridgeTxAccountId( - const pd_VecBridgeTxAccountId_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - parser_error_t _toStringVecCall( const pd_VecCall_t* v, char* outValue, @@ -1600,13 +1736,6 @@ parser_error_t _toStringVecSecondaryKeyWithAuthAccountId( uint8_t pageIdx, uint8_t* pageCount); -parser_error_t _toStringVecSignatoryAccountId( - const pd_VecSignatoryAccountId_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - parser_error_t _toStringVecTupleExtrinsicIdbool( const pd_VecTupleExtrinsicIdbool_t* v, char* outValue, @@ -1614,13 +1743,6 @@ parser_error_t _toStringVecTupleExtrinsicIdbool( uint8_t pageIdx, uint8_t* pageCount); -parser_error_t _toStringVecTupleIdentityIdbool( - const pd_VecTupleIdentityIdbool_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount); - parser_error_t _toStringVecTuplePipIdSnapshotResult( const pd_VecTuplePipIdSnapshotResult_t* v, char* outValue, @@ -1663,6 +1785,13 @@ parser_error_t _toStringCADetails( uint8_t pageIdx, uint8_t* pageCount); +parser_error_t _toStringConfigOpu32( + const pd_ConfigOpu32_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + parser_error_t _toStringDeterminism( const pd_Determinism_t* v, char* outValue, @@ -1719,6 +1848,13 @@ parser_error_t _toStringOptionAssetCount( uint8_t pageIdx, uint8_t* pageCount); +parser_error_t _toStringOptionAssetID( + const pd_OptionAssetID_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount); + parser_error_t _toStringOptionBalance( const pd_OptionBalance_t* v, char* outValue, @@ -1775,29 +1911,29 @@ parser_error_t _toStringOptionUrl( uint8_t pageIdx, uint8_t* pageCount); -parser_error_t _toStringOptionu32( - const pd_Optionu32_t* v, +parser_error_t _toStringOptionVenueId( + const pd_OptionVenueId_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, uint8_t* pageCount); -parser_error_t _toStringOptionu64( - const pd_Optionu64_t* v, +parser_error_t _toStringOptionu32( + const pd_Optionu32_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, uint8_t* pageCount); -parser_error_t _toStringPerbill( - const pd_Perbill_t* v, +parser_error_t _toStringOptionu64( + const pd_Optionu64_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, uint8_t* pageCount); -parser_error_t _toStringPercent( - const pd_Percent_t* v, +parser_error_t _toStringOptionu8( + const pd_Optionu8_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -1838,8 +1974,8 @@ parser_error_t _toStringSlashingSwitch( uint8_t pageIdx, uint8_t* pageCount); -parser_error_t _toStringVecAccountId( - const pd_VecAccountId_t* v, +parser_error_t _toStringSolutionOrSnapshotSize( + const pd_SolutionOrSnapshotSize_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, diff --git a/app/src/substrate/substrate_functions_V4.h b/app/src/substrate/substrate_functions_V7.h similarity index 88% rename from app/src/substrate/substrate_functions_V4.h rename to app/src/substrate/substrate_functions_V7.h index f7a4029..9bcc4e0 100644 --- a/app/src/substrate/substrate_functions_V4.h +++ b/app/src/substrate/substrate_functions_V7.h @@ -20,12 +20,12 @@ extern "C" { #endif #include "parser_common.h" -#include "substrate_methods_V4.h" -#include "substrate_types_V4.h" +#include "substrate_methods_V7.h" +#include "substrate_types_V7.h" #include #include -// Versioned types functions for tx version V4 +// Versioned types functions for tx version V7 #ifdef __cplusplus } diff --git a/app/src/substrate/substrate_methods_V4.h b/app/src/substrate/substrate_methods_V4.h deleted file mode 100644 index 67f7dae..0000000 --- a/app/src/substrate/substrate_methods_V4.h +++ /dev/null @@ -1,2367 +0,0 @@ -/******************************************************************************* - * (c) 2019 - 2024 Zondax AG - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - ********************************************************************************/ -#pragma once - -#ifdef __cplusplus -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wextern-c-compat" - -extern "C" { -#endif - -#include "substrate_types.h" -#include "substrate_types_V4.h" -#include -#include -#ifdef LEDGER_SPECIFIC -#include "bolos_target.h" -#endif - -#define PD_CALL_SYSTEM_V4 0 -#define PD_CALL_TIMESTAMP_V4 2 -#define PD_CALL_INDICES_V4 3 -#define PD_CALL_BALANCES_V4 5 -#define PD_CALL_IDENTITY_V4 7 -#define PD_CALL_CDDSERVICEPROVIDERS_V4 8 -#define PD_CALL_POLYMESHCOMMITTEE_V4 9 -#define PD_CALL_COMMITTEEMEMBERSHIP_V4 10 -#define PD_CALL_TECHNICALCOMMITTEE_V4 11 -#define PD_CALL_TECHNICALCOMMITTEEMEMBERSHIP_V4 12 -#define PD_CALL_UPGRADECOMMITTEE_V4 13 -#define PD_CALL_UPGRADECOMMITTEEMEMBERSHIP_V4 14 -#define PD_CALL_MULTISIG_V4 15 -#define PD_CALL_BRIDGE_V4 16 -#define PD_CALL_STAKING_V4 17 -#define PD_CALL_SESSION_V4 19 -#define PD_CALL_ASSET_V4 26 -#define PD_CALL_CAPITALDISTRIBUTION_V4 27 -#define PD_CALL_CHECKPOINT_V4 28 -#define PD_CALL_COMPLIANCEMANAGER_V4 29 -#define PD_CALL_CORPORATEACTION_V4 30 -#define PD_CALL_CORPORATEBALLOT_V4 31 -#define PD_CALL_PIPS_V4 33 -#define PD_CALL_PORTFOLIO_V4 34 -#define PD_CALL_PROTOCOLFEE_V4 35 -#define PD_CALL_SETTLEMENT_V4 37 -#define PD_CALL_STO_V4 39 -#define PD_CALL_TREASURY_V4 40 -#define PD_CALL_UTILITY_V4 41 -#define PD_CALL_EXTERNALAGENTS_V4 43 -#define PD_CALL_RELAYER_V4 44 -#define PD_CALL_CONTRACTS_V4 46 -#define PD_CALL_POLYMESHCONTRACTS_V4 47 -#define PD_CALL_PREIMAGE_V4 48 -#define PD_CALL_NFT_V4 49 - -#ifdef SUBSTRATE_PARSER_FULL -#ifndef TARGET_NANOS -#define PD_CALL_ASSET_ADD_MANDATORY_MEDIATORS_V4 30 -typedef struct { - pd_Ticker_t ticker; - pd_BoundedBTreeSetIdentityIdMaxAssetMediators_t mediators; -} pd_asset_add_mandatory_mediators_V4_t; -#define PD_CALL_ASSET_REMOVE_MANDATORY_MEDIATORS_V4 31 -typedef struct { - pd_Ticker_t ticker; - pd_BoundedBTreeSetIdentityIdMaxAssetMediators_t mediators; -} pd_asset_remove_mandatory_mediators_V4_t; -#define PD_CALL_PORTFOLIO_ALLOW_IDENTITY_TO_CREATE_PORTFOLIOS_V4 8 -typedef struct { - pd_IdentityId_t trusted_identity; -} pd_portfolio_allow_identity_to_create_portfolios_V4_t; -#define PD_CALL_PORTFOLIO_REVOKE_CREATE_PORTFOLIOS_PERMISSION_V4 9 -typedef struct { - pd_IdentityId_t identity; -} pd_portfolio_revoke_create_portfolios_permission_V4_t; -#define PD_CALL_PORTFOLIO_CREATE_CUSTODY_PORTFOLIO_V4 10 -typedef struct { - pd_IdentityId_t portfolio_owner_id; - pd_PortfolioName_t portfolio_name; -} pd_portfolio_create_custody_portfolio_V4_t; -#define PD_CALL_SETTLEMENT_AFFIRM_WITH_RECEIPTS_WITH_COUNT_V4 15 -typedef struct { - pd_InstructionId_t id; - pd_VecReceiptDetails_t receipt_details; - pd_VecPortfolioId_t portfolios; - pd_OptionAffirmationCount_t number_of_assets; -} pd_settlement_affirm_with_receipts_with_count_V4_t; -#define PD_CALL_SETTLEMENT_AFFIRM_INSTRUCTION_WITH_COUNT_V4 16 -typedef struct { - pd_InstructionId_t id; - pd_VecPortfolioId_t portfolios; - pd_OptionAffirmationCount_t number_of_assets; -} pd_settlement_affirm_instruction_with_count_V4_t; -#define PD_CALL_SETTLEMENT_REJECT_INSTRUCTION_WITH_COUNT_V4 17 -typedef struct { - pd_InstructionId_t id; - pd_PortfolioId_t portfolio; - pd_OptionAssetCount_t number_of_assets; -} pd_settlement_reject_instruction_with_count_V4_t; -#define PD_CALL_SETTLEMENT_WITHDRAW_AFFIRMATION_WITH_COUNT_V4 18 -typedef struct { - pd_InstructionId_t id; - pd_VecPortfolioId_t portfolios; - pd_OptionAffirmationCount_t number_of_assets; -} pd_settlement_withdraw_affirmation_with_count_V4_t; -#define PD_CALL_SETTLEMENT_ADD_INSTRUCTION_WITH_MEDIATORS_V4 19 -typedef struct { - pd_VenueId_t venue_id; - pd_SettlementTypeBlockNumber_t settlement_type; - pd_OptionMoment_t trade_date; - pd_OptionMoment_t value_date; - pd_VecLeg_t legs; - pd_OptionMemo_t instruction_memo; - pd_BoundedBTreeSetIdentityIdMaxInstructionMediators_t mediators; -} pd_settlement_add_instruction_with_mediators_V4_t; -#define PD_CALL_SETTLEMENT_ADD_AND_AFFIRM_WITH_MEDIATORS_V4 20 -typedef struct { - pd_VenueId_t venue_id; - pd_SettlementTypeBlockNumber_t settlement_type; - pd_OptionMoment_t trade_date; - pd_OptionMoment_t value_date; - pd_VecLeg_t legs; - pd_VecPortfolioId_t portfolios; - pd_OptionMemo_t instruction_memo; - pd_BoundedBTreeSetIdentityIdMaxInstructionMediators_t mediators; -} pd_settlement_add_and_affirm_with_mediators_V4_t; -#define PD_CALL_SETTLEMENT_AFFIRM_INSTRUCTION_AS_MEDIATOR_V4 21 -typedef struct { - pd_InstructionId_t instruction_id; - pd_OptionMoment_t expiry; -} pd_settlement_affirm_instruction_as_mediator_V4_t; -#define PD_CALL_SETTLEMENT_WITHDRAW_AFFIRMATION_AS_MEDIATOR_V4 22 -typedef struct { - pd_InstructionId_t instruction_id; -} pd_settlement_withdraw_affirmation_as_mediator_V4_t; -#define PD_CALL_SETTLEMENT_REJECT_INSTRUCTION_AS_MEDIATOR_V4 23 -typedef struct { - pd_InstructionId_t instruction_id; - pd_OptionAssetCount_t number_of_assets; -} pd_settlement_reject_instruction_as_mediator_V4_t; -#define PD_CALL_NFT_CONTROLLER_TRANSFER_V4 3 -typedef struct { - pd_Ticker_t ticker; - pd_NFTs_t nfts; - pd_PortfolioId_t source_portfolio; - pd_PortfolioKind_t callers_portfolio_kind; -} pd_nft_controller_transfer_V4_t; -#endif - -#define PD_CALL_BRIDGE_BATCH_PROPOSE_BRIDGE_TX_V4 8 -typedef struct { - pd_VecBridgeTxAccountId_t bridge_txs; -} pd_bridge_batch_propose_bridge_tx_V4_t; - -#define PD_CALL_BRIDGE_PROPOSE_BRIDGE_TX_V4 9 -typedef struct { - pd_BridgeTxAccountId_t bridge_tx; -} pd_bridge_propose_bridge_tx_V4_t; - -#define PD_CALL_BRIDGE_HANDLE_BRIDGE_TX_V4 10 -typedef struct { - pd_BridgeTxAccountId_t bridge_tx; -} pd_bridge_handle_bridge_tx_V4_t; - -#define PD_CALL_BRIDGE_FREEZE_TXS_V4 11 -typedef struct { - pd_VecBridgeTxAccountId_t bridge_txs; -} pd_bridge_freeze_txs_V4_t; - -#define PD_CALL_BRIDGE_UNFREEZE_TXS_V4 12 -typedef struct { - pd_VecBridgeTxAccountId_t bridge_txs; -} pd_bridge_unfreeze_txs_V4_t; - -#define PD_CALL_BRIDGE_HANDLE_SCHEDULED_BRIDGE_TX_V4 13 -typedef struct { - pd_BridgeTxAccountId_t bridge_tx; -} pd_bridge_handle_scheduled_bridge_tx_V4_t; - -#define PD_CALL_BRIDGE_ADD_FREEZE_ADMIN_V4 14 -typedef struct { - pd_AccountId_t freeze_admin; -} pd_bridge_add_freeze_admin_V4_t; - -#define PD_CALL_BRIDGE_REMOVE_FREEZE_ADMIN_V4 15 -typedef struct { - pd_AccountId_t freeze_admin; -} pd_bridge_remove_freeze_admin_V4_t; - -#define PD_CALL_BRIDGE_REMOVE_TXS_V4 16 -typedef struct { - pd_VecBridgeTxAccountId_t bridge_txs; -} pd_bridge_remove_txs_V4_t; - -#define PD_CALL_ASSET_CONTROLLER_TRANSFER_V4 14 -typedef struct { - pd_Ticker_t ticker; - pd_BalanceNoSymbol_t amount; - pd_PortfolioId_t from_portfolio; -} pd_asset_controller_transfer_V4_t; - -#define PD_CALL_ASSET_REGISTER_CUSTOM_ASSET_TYPE_V4 15 -typedef struct { - pd_Vecu8_t ty; -} pd_asset_register_custom_asset_type_V4_t; - -#define PD_CALL_ASSET_CREATE_ASSET_WITH_CUSTOM_TYPE_V4 16 -typedef struct { - pd_AssetName_t name; - pd_Ticker_t ticker; - pd_bool_t divisible; - pd_Vecu8_t custom_asset_type; - pd_VecAssetIdentifier_t identifiers; - pd_OptionFundingRoundName_t funding_round; -} pd_asset_create_asset_with_custom_type_V4_t; - -#define PD_CALL_ASSET_SET_ASSET_METADATA_V4 17 -typedef struct { - pd_Ticker_t ticker; - pd_AssetMetadataKey_t key; - pd_AssetMetadataValue_t value; - pd_OptionAssetMetadataValueDetailMoment_t detail; -} pd_asset_set_asset_metadata_V4_t; - -#define PD_CALL_ASSET_SET_ASSET_METADATA_DETAILS_V4 18 -typedef struct { - pd_Ticker_t ticker; - pd_AssetMetadataKey_t key; - pd_AssetMetadataValueDetailMoment_t detail; -} pd_asset_set_asset_metadata_details_V4_t; - -#define PD_CALL_ASSET_REGISTER_AND_SET_LOCAL_ASSET_METADATA_V4 19 -typedef struct { - pd_Ticker_t ticker; - pd_AssetMetadataName_t name; - pd_AssetMetadataSpec_t spec; - pd_AssetMetadataValue_t value; - pd_OptionAssetMetadataValueDetailMoment_t detail; -} pd_asset_register_and_set_local_asset_metadata_V4_t; - -#define PD_CALL_ASSET_REGISTER_ASSET_METADATA_LOCAL_TYPE_V4 20 -typedef struct { - pd_Ticker_t ticker; - pd_AssetMetadataName_t name; - pd_AssetMetadataSpec_t spec; -} pd_asset_register_asset_metadata_local_type_V4_t; - -#define PD_CALL_ASSET_REGISTER_ASSET_METADATA_GLOBAL_TYPE_V4 21 -typedef struct { - pd_AssetMetadataName_t name; - pd_AssetMetadataSpec_t spec; -} pd_asset_register_asset_metadata_global_type_V4_t; - -#define PD_CALL_ASSET_REDEEM_FROM_PORTFOLIO_V4 22 -typedef struct { - pd_Ticker_t ticker; - pd_BalanceNoSymbol_t amount; - pd_PortfolioKind_t portfolio; -} pd_asset_redeem_from_portfolio_V4_t; - -#define PD_CALL_ASSET_UPDATE_ASSET_TYPE_V4 23 -typedef struct { - pd_Ticker_t ticker; - pd_AssetType_t asset_type; -} pd_asset_update_asset_type_V4_t; - -#define PD_CALL_ASSET_REMOVE_LOCAL_METADATA_KEY_V4 24 -typedef struct { - pd_Ticker_t ticker; - pd_AssetMetadataLocalKey_t local_key; -} pd_asset_remove_local_metadata_key_V4_t; - -#define PD_CALL_ASSET_REMOVE_METADATA_VALUE_V4 25 -typedef struct { - pd_Ticker_t ticker; - pd_AssetMetadataKey_t metadata_key; -} pd_asset_remove_metadata_value_V4_t; - -#define PD_CALL_ASSET_EXEMPT_TICKER_AFFIRMATION_V4 26 -typedef struct { - pd_Ticker_t ticker; -} pd_asset_exempt_ticker_affirmation_V4_t; - -#define PD_CALL_ASSET_REMOVE_TICKER_AFFIRMATION_EXEMPTION_V4 27 -typedef struct { - pd_Ticker_t ticker; -} pd_asset_remove_ticker_affirmation_exemption_V4_t; - -#define PD_CALL_ASSET_PRE_APPROVE_TICKER_V4 28 -typedef struct { - pd_Ticker_t ticker; -} pd_asset_pre_approve_ticker_V4_t; - -#define PD_CALL_ASSET_REMOVE_TICKER_PRE_APPROVAL_V4 29 -typedef struct { - pd_Ticker_t ticker; -} pd_asset_remove_ticker_pre_approval_V4_t; - -#define PD_CALL_PORTFOLIO_QUIT_PORTFOLIO_CUSTODY_V4 3 -typedef struct { - pd_PortfolioId_t pid; -} pd_portfolio_quit_portfolio_custody_V4_t; - -#define PD_CALL_PORTFOLIO_ACCEPT_PORTFOLIO_CUSTODY_V4 4 -typedef struct { - pd_u64_t auth_id; -} pd_portfolio_accept_portfolio_custody_V4_t; - -#define PD_CALL_PORTFOLIO_PRE_APPROVE_PORTFOLIO_V4 6 -typedef struct { - pd_Ticker_t ticker; - pd_PortfolioId_t portfolio_id; -} pd_portfolio_pre_approve_portfolio_V4_t; - -#define PD_CALL_PORTFOLIO_REMOVE_PORTFOLIO_PRE_APPROVAL_V4 7 -typedef struct { - pd_Ticker_t ticker; - pd_PortfolioId_t portfolio_id; -} pd_portfolio_remove_portfolio_pre_approval_V4_t; - -#define PD_CALL_SETTLEMENT_UPDATE_VENUE_DETAILS_V4 1 -typedef struct { - pd_VenueId_t id; - pd_VenueDetails_t details; -} pd_settlement_update_venue_details_V4_t; - -#define PD_CALL_SETTLEMENT_UPDATE_VENUE_TYPE_V4 2 -typedef struct { - pd_VenueId_t id; - pd_VenueType_t typ; -} pd_settlement_update_venue_type_V4_t; - -#define PD_CALL_SETTLEMENT_UPDATE_VENUE_SIGNERS_V4 7 -typedef struct { - pd_VenueId_t id; - pd_VecAccountId_t signers; - pd_bool_t add_signers; -} pd_settlement_update_venue_signers_V4_t; - -#define PD_CALL_SETTLEMENT_EXECUTE_MANUAL_INSTRUCTION_V4 8 -typedef struct { - pd_InstructionId_t id; - pd_OptionPortfolioId_t portfolio; - pd_u32_t fungible_transfers; - pd_u32_t nfts_transfers; - pd_u32_t offchain_transfers; - pd_OptionWeight_t weight_limit; -} pd_settlement_execute_manual_instruction_V4_t; - -#define PD_CALL_STO_CREATE_FUNDRAISER_V4 0 -typedef struct { - pd_PortfolioId_t offering_portfolio; - pd_Ticker_t offering_asset; - pd_PortfolioId_t raising_portfolio; - pd_Ticker_t raising_asset; - pd_VecPriceTier_t tiers; - pd_VenueId_t venue_id; - pd_OptionMoment_t start; - pd_OptionMoment_t end; - pd_BalanceNoSymbol_t minimum_investment; - pd_FundraiserName_t fundraiser_name; -} pd_sto_create_fundraiser_V4_t; - -#define PD_CALL_STO_INVEST_V4 1 -typedef struct { - pd_PortfolioId_t investment_portfolio; - pd_PortfolioId_t funding_portfolio; - pd_Ticker_t offering_asset; - pd_FundraiserId_t id; - pd_BalanceNoSymbol_t purchase_amount; - pd_OptionBalance_t max_price; - pd_OptionReceiptDetails_t receipt; -} pd_sto_invest_V4_t; - -#define PD_CALL_STO_FREEZE_FUNDRAISER_V4 2 -typedef struct { - pd_Ticker_t offering_asset; - pd_FundraiserId_t id; -} pd_sto_freeze_fundraiser_V4_t; - -#define PD_CALL_STO_UNFREEZE_FUNDRAISER_V4 3 -typedef struct { - pd_Ticker_t offering_asset; - pd_FundraiserId_t id; -} pd_sto_unfreeze_fundraiser_V4_t; - -#define PD_CALL_STO_MODIFY_FUNDRAISER_WINDOW_V4 4 -typedef struct { - pd_Ticker_t offering_asset; - pd_FundraiserId_t id; - pd_Moment_t start; - pd_OptionMoment_t end; -} pd_sto_modify_fundraiser_window_V4_t; - -#define PD_CALL_STO_STOP_V4 5 -typedef struct { - pd_Ticker_t offering_asset; - pd_FundraiserId_t id; -} pd_sto_stop_V4_t; - -#define PD_CALL_UTILITY_BATCH_ALL_V4 2 -typedef struct { - pd_VecCall_t calls; -} pd_utility_batch_all_V4_t; - -#define PD_CALL_UTILITY_DISPATCH_AS_V4 3 -typedef struct { - pd_BoxPalletsOrigin_t as_origin; - pd_Call_t call; -} pd_utility_dispatch_as_V4_t; - -#define PD_CALL_UTILITY_FORCE_BATCH_V4 4 -typedef struct { - pd_VecCall_t calls; -} pd_utility_force_batch_V4_t; - -#define PD_CALL_UTILITY_WITH_WEIGHT_V4 5 -typedef struct { - pd_Call_t call; - pd_Weight_t weight; -} pd_utility_with_weight_V4_t; - -#define PD_CALL_UTILITY_BATCH_OLD_V4 6 -typedef struct { - pd_VecCall_t calls; -} pd_utility_batch_old_V4_t; - -#define PD_CALL_UTILITY_AS_DERIVATIVE_V4 9 -typedef struct { - pd_u16_t index; - pd_Call_t call; -} pd_utility_as_derivative_V4_t; - -#define PD_CALL_EXTERNALAGENTS_CREATE_GROUP_V4 0 -typedef struct { - pd_Ticker_t ticker; - pd_ExtrinsicPermissions_t perms; -} pd_externalagents_create_group_V4_t; - -#define PD_CALL_EXTERNALAGENTS_SET_GROUP_PERMISSIONS_V4 1 -typedef struct { - pd_Ticker_t ticker; - pd_AGId_t id; - pd_ExtrinsicPermissions_t perms; -} pd_externalagents_set_group_permissions_V4_t; - -#define PD_CALL_EXTERNALAGENTS_REMOVE_AGENT_V4 2 -typedef struct { - pd_Ticker_t ticker; - pd_IdentityId_t agent; -} pd_externalagents_remove_agent_V4_t; - -#define PD_CALL_EXTERNALAGENTS_ABDICATE_V4 3 -typedef struct { - pd_Ticker_t ticker; -} pd_externalagents_abdicate_V4_t; - -#define PD_CALL_EXTERNALAGENTS_CHANGE_GROUP_V4 4 -typedef struct { - pd_Ticker_t ticker; - pd_IdentityId_t agent; - pd_AgentGroup_t group; -} pd_externalagents_change_group_V4_t; - -#define PD_CALL_EXTERNALAGENTS_ACCEPT_BECOME_AGENT_V4 5 -typedef struct { - pd_u64_t auth_id; -} pd_externalagents_accept_become_agent_V4_t; - -#define PD_CALL_EXTERNALAGENTS_CREATE_GROUP_AND_ADD_AUTH_V4 6 -typedef struct { - pd_Ticker_t ticker; - pd_ExtrinsicPermissions_t perms; - pd_IdentityId_t target; - pd_OptionMoment_t expiry; -} pd_externalagents_create_group_and_add_auth_V4_t; - -#define PD_CALL_EXTERNALAGENTS_CREATE_AND_CHANGE_CUSTOM_GROUP_V4 7 -typedef struct { - pd_Ticker_t ticker; - pd_ExtrinsicPermissions_t perms; - pd_IdentityId_t agent; -} pd_externalagents_create_and_change_custom_group_V4_t; - -#define PD_CALL_RELAYER_SET_PAYING_KEY_V4 0 -typedef struct { - pd_AccountId_t user_key; - pd_Balance_t polyx_limit; -} pd_relayer_set_paying_key_V4_t; - -#define PD_CALL_RELAYER_ACCEPT_PAYING_KEY_V4 1 -typedef struct { - pd_u64_t auth_id; -} pd_relayer_accept_paying_key_V4_t; - -#define PD_CALL_RELAYER_REMOVE_PAYING_KEY_V4 2 -typedef struct { - pd_AccountId_t user_key; - pd_AccountId_t paying_key; -} pd_relayer_remove_paying_key_V4_t; - -#define PD_CALL_RELAYER_UPDATE_POLYX_LIMIT_V4 3 -typedef struct { - pd_AccountId_t user_key; - pd_Balance_t polyx_limit; -} pd_relayer_update_polyx_limit_V4_t; - -#define PD_CALL_RELAYER_INCREASE_POLYX_LIMIT_V4 4 -typedef struct { - pd_AccountId_t user_key; - pd_Balance_t amount; -} pd_relayer_increase_polyx_limit_V4_t; - -#define PD_CALL_RELAYER_DECREASE_POLYX_LIMIT_V4 5 -typedef struct { - pd_AccountId_t user_key; - pd_Balance_t amount; -} pd_relayer_decrease_polyx_limit_V4_t; - -#define PD_CALL_CONTRACTS_CALL_OLD_WEIGHT_V4 0 -typedef struct { - pd_AccountIdLookupOfT_t dest; - pd_CompactBalance_t amount; - pd_Compactu64_t gas_limit; - pd_OptionCompactBalanceOf_t storage_deposit_limit; - pd_Bytes_t data; -} pd_contracts_call_old_weight_V4_t; - -#define PD_CALL_CONTRACTS_INSTANTIATE_WITH_CODE_OLD_WEIGHT_V4 1 -typedef struct { - pd_CompactBalance_t amount; - pd_Compactu64_t gas_limit; - pd_OptionCompactBalanceOf_t storage_deposit_limit; - pd_Bytes_t code; - pd_Bytes_t data; - pd_Bytes_t salt; -} pd_contracts_instantiate_with_code_old_weight_V4_t; - -#define PD_CALL_CONTRACTS_INSTANTIATE_OLD_WEIGHT_V4 2 -typedef struct { - pd_CompactBalance_t amount; - pd_Compactu64_t gas_limit; - pd_OptionCompactBalanceOf_t storage_deposit_limit; - pd_CodeHash_t code_hash; - pd_Bytes_t data; - pd_Bytes_t salt; -} pd_contracts_instantiate_old_weight_V4_t; - -#define PD_CALL_CONTRACTS_UPLOAD_CODE_V4 3 -typedef struct { - pd_Bytes_t code; - pd_OptionCompactBalanceOf_t storage_deposit_limit; - pd_Determinism_t determinism; -} pd_contracts_upload_code_V4_t; - -#define PD_CALL_CONTRACTS_REMOVE_CODE_V4 4 -typedef struct { - pd_CodeHash_t code_hash; -} pd_contracts_remove_code_V4_t; - -#define PD_CALL_CONTRACTS_SET_CODE_V4 5 -typedef struct { - pd_AccountIdLookupOfT_t dest; - pd_CodeHash_t code_hash; -} pd_contracts_set_code_V4_t; - -#define PD_CALL_CONTRACTS_INSTANTIATE_WITH_CODE_V4 7 -typedef struct { - pd_CompactBalance_t amount; - pd_Weight_t gas_limit; - pd_OptionCompactBalanceOf_t storage_deposit_limit; - pd_Bytes_t code; - pd_Bytes_t data; - pd_Bytes_t salt; -} pd_contracts_instantiate_with_code_V4_t; - -#define PD_CALL_POLYMESHCONTRACTS_INSTANTIATE_WITH_CODE_PERMS_V4 0 -typedef struct { - pd_Balance_t endowment; - pd_Weight_t gas_limit; - pd_OptionBalance_t storage_deposit_limit; - pd_Vecu8_t code; - pd_Vecu8_t data; - pd_Vecu8_t salt; - pd_Permissions_t perms; -} pd_polymeshcontracts_instantiate_with_code_perms_V4_t; - -#define PD_CALL_POLYMESHCONTRACTS_INSTANTIATE_WITH_HASH_PERMS_V4 1 -typedef struct { - pd_Balance_t endowment; - pd_Weight_t gas_limit; - pd_OptionBalance_t storage_deposit_limit; - pd_CodeHash_t code_hash; - pd_Vecu8_t data; - pd_Vecu8_t salt; - pd_Permissions_t perms; -} pd_polymeshcontracts_instantiate_with_hash_perms_V4_t; - -#define PD_CALL_POLYMESHCONTRACTS_UPDATE_CALL_RUNTIME_WHITELIST_V4 2 -typedef struct { - pd_VecTupleExtrinsicIdbool_t updates; -} pd_polymeshcontracts_update_call_runtime_whitelist_V4_t; - -#define PD_CALL_POLYMESHCONTRACTS_INSTANTIATE_WITH_CODE_AS_PRIMARY_KEY_V4 3 -typedef struct { - pd_Balance_t endowment; - pd_Weight_t gas_limit; - pd_OptionBalance_t storage_deposit_limit; - pd_Vecu8_t code; - pd_Vecu8_t data; - pd_Vecu8_t salt; -} pd_polymeshcontracts_instantiate_with_code_as_primary_key_V4_t; - -#define PD_CALL_POLYMESHCONTRACTS_INSTANTIATE_WITH_HASH_AS_PRIMARY_KEY_V4 4 -typedef struct { - pd_Balance_t endowment; - pd_Weight_t gas_limit; - pd_OptionBalance_t storage_deposit_limit; - pd_CodeHash_t code_hash; - pd_Vecu8_t data; - pd_Vecu8_t salt; -} pd_polymeshcontracts_instantiate_with_hash_as_primary_key_V4_t; - -#define PD_CALL_POLYMESHCONTRACTS_UPGRADE_API_V4 5 -typedef struct { - pd_Api_t api; - pd_NextUpgradeT_t next_upgrade; -} pd_polymeshcontracts_upgrade_api_V4_t; - -#define PD_CALL_PREIMAGE_NOTE_PREIMAGE_V4 0 -typedef struct { - pd_Vecu8_t bytes; -} pd_preimage_note_preimage_V4_t; - -#define PD_CALL_PREIMAGE_UNNOTE_PREIMAGE_V4 1 -typedef struct { - pd_Hash_t hash; -} pd_preimage_unnote_preimage_V4_t; - -#define PD_CALL_PREIMAGE_REQUEST_PREIMAGE_V4 2 -typedef struct { - pd_Hash_t hash; -} pd_preimage_request_preimage_V4_t; - -#define PD_CALL_PREIMAGE_UNREQUEST_PREIMAGE_V4 3 -typedef struct { - pd_Hash_t hash; -} pd_preimage_unrequest_preimage_V4_t; - -#define PD_CALL_NFT_CREATE_NFT_COLLECTION_V4 0 -typedef struct { - pd_Ticker_t ticker; - pd_OptionNonFungibleType_t nft_type; - pd_VecAssetMetadataKey_t collection_keys; -} pd_nft_create_nft_collection_V4_t; - -#define PD_CALL_NFT_ISSUE_NFT_V4 1 -typedef struct { - pd_Ticker_t ticker; - pd_VecNFTMetadataAttribute_t nft_metadata_attributes; - pd_PortfolioKind_t portfolio_kind; -} pd_nft_issue_nft_V4_t; - -#define PD_CALL_NFT_REDEEM_NFT_V4 2 -typedef struct { - pd_Ticker_t ticker; - pd_NFTId_t nft_id; - pd_PortfolioKind_t portfolio_kind; -} pd_nft_redeem_nft_V4_t; - -#endif - -typedef union { -#ifdef SUBSTRATE_PARSER_FULL -#ifndef TARGET_NANOS - pd_asset_add_mandatory_mediators_V4_t asset_add_mandatory_mediators_V4; - pd_asset_remove_mandatory_mediators_V4_t asset_remove_mandatory_mediators_V4; - pd_portfolio_allow_identity_to_create_portfolios_V4_t portfolio_allow_identity_to_create_portfolios_V4; - pd_portfolio_revoke_create_portfolios_permission_V4_t portfolio_revoke_create_portfolios_permission_V4; - pd_portfolio_create_custody_portfolio_V4_t portfolio_create_custody_portfolio_V4; - pd_settlement_affirm_with_receipts_with_count_V4_t settlement_affirm_with_receipts_with_count_V4; - pd_settlement_affirm_instruction_with_count_V4_t settlement_affirm_instruction_with_count_V4; - pd_settlement_reject_instruction_with_count_V4_t settlement_reject_instruction_with_count_V4; - pd_settlement_withdraw_affirmation_with_count_V4_t settlement_withdraw_affirmation_with_count_V4; - pd_settlement_add_instruction_with_mediators_V4_t settlement_add_instruction_with_mediators_V4; - pd_settlement_add_and_affirm_with_mediators_V4_t settlement_add_and_affirm_with_mediators_V4; - pd_settlement_affirm_instruction_as_mediator_V4_t settlement_affirm_instruction_as_mediator_V4; - pd_settlement_withdraw_affirmation_as_mediator_V4_t settlement_withdraw_affirmation_as_mediator_V4; - pd_settlement_reject_instruction_as_mediator_V4_t settlement_reject_instruction_as_mediator_V4; - pd_nft_controller_transfer_V4_t nft_controller_transfer_V4; -#endif - pd_bridge_batch_propose_bridge_tx_V4_t bridge_batch_propose_bridge_tx_V4; - pd_bridge_propose_bridge_tx_V4_t bridge_propose_bridge_tx_V4; - pd_bridge_handle_bridge_tx_V4_t bridge_handle_bridge_tx_V4; - pd_bridge_freeze_txs_V4_t bridge_freeze_txs_V4; - pd_bridge_unfreeze_txs_V4_t bridge_unfreeze_txs_V4; - pd_bridge_handle_scheduled_bridge_tx_V4_t bridge_handle_scheduled_bridge_tx_V4; - pd_bridge_add_freeze_admin_V4_t bridge_add_freeze_admin_V4; - pd_bridge_remove_freeze_admin_V4_t bridge_remove_freeze_admin_V4; - pd_bridge_remove_txs_V4_t bridge_remove_txs_V4; - pd_asset_controller_transfer_V4_t asset_controller_transfer_V4; - pd_asset_register_custom_asset_type_V4_t asset_register_custom_asset_type_V4; - pd_asset_create_asset_with_custom_type_V4_t asset_create_asset_with_custom_type_V4; - pd_asset_set_asset_metadata_V4_t asset_set_asset_metadata_V4; - pd_asset_set_asset_metadata_details_V4_t asset_set_asset_metadata_details_V4; - pd_asset_register_and_set_local_asset_metadata_V4_t asset_register_and_set_local_asset_metadata_V4; - pd_asset_register_asset_metadata_local_type_V4_t asset_register_asset_metadata_local_type_V4; - pd_asset_register_asset_metadata_global_type_V4_t asset_register_asset_metadata_global_type_V4; - pd_asset_redeem_from_portfolio_V4_t asset_redeem_from_portfolio_V4; - pd_asset_update_asset_type_V4_t asset_update_asset_type_V4; - pd_asset_remove_local_metadata_key_V4_t asset_remove_local_metadata_key_V4; - pd_asset_remove_metadata_value_V4_t asset_remove_metadata_value_V4; - pd_asset_exempt_ticker_affirmation_V4_t asset_exempt_ticker_affirmation_V4; - pd_asset_remove_ticker_affirmation_exemption_V4_t asset_remove_ticker_affirmation_exemption_V4; - pd_asset_pre_approve_ticker_V4_t asset_pre_approve_ticker_V4; - pd_asset_remove_ticker_pre_approval_V4_t asset_remove_ticker_pre_approval_V4; - pd_portfolio_quit_portfolio_custody_V4_t portfolio_quit_portfolio_custody_V4; - pd_portfolio_accept_portfolio_custody_V4_t portfolio_accept_portfolio_custody_V4; - pd_portfolio_pre_approve_portfolio_V4_t portfolio_pre_approve_portfolio_V4; - pd_portfolio_remove_portfolio_pre_approval_V4_t portfolio_remove_portfolio_pre_approval_V4; - pd_settlement_update_venue_details_V4_t settlement_update_venue_details_V4; - pd_settlement_update_venue_type_V4_t settlement_update_venue_type_V4; - pd_settlement_update_venue_signers_V4_t settlement_update_venue_signers_V4; - pd_settlement_execute_manual_instruction_V4_t settlement_execute_manual_instruction_V4; - pd_sto_create_fundraiser_V4_t sto_create_fundraiser_V4; - pd_sto_invest_V4_t sto_invest_V4; - pd_sto_freeze_fundraiser_V4_t sto_freeze_fundraiser_V4; - pd_sto_unfreeze_fundraiser_V4_t sto_unfreeze_fundraiser_V4; - pd_sto_modify_fundraiser_window_V4_t sto_modify_fundraiser_window_V4; - pd_sto_stop_V4_t sto_stop_V4; - pd_utility_batch_all_V4_t utility_batch_all_V4; - pd_utility_dispatch_as_V4_t utility_dispatch_as_V4; - pd_utility_force_batch_V4_t utility_force_batch_V4; - pd_utility_with_weight_V4_t utility_with_weight_V4; - pd_utility_batch_old_V4_t utility_batch_old_V4; - pd_utility_as_derivative_V4_t utility_as_derivative_V4; - pd_externalagents_create_group_V4_t externalagents_create_group_V4; - pd_externalagents_set_group_permissions_V4_t externalagents_set_group_permissions_V4; - pd_externalagents_remove_agent_V4_t externalagents_remove_agent_V4; - pd_externalagents_abdicate_V4_t externalagents_abdicate_V4; - pd_externalagents_change_group_V4_t externalagents_change_group_V4; - pd_externalagents_accept_become_agent_V4_t externalagents_accept_become_agent_V4; - pd_externalagents_create_group_and_add_auth_V4_t externalagents_create_group_and_add_auth_V4; - pd_externalagents_create_and_change_custom_group_V4_t externalagents_create_and_change_custom_group_V4; - pd_relayer_set_paying_key_V4_t relayer_set_paying_key_V4; - pd_relayer_accept_paying_key_V4_t relayer_accept_paying_key_V4; - pd_relayer_remove_paying_key_V4_t relayer_remove_paying_key_V4; - pd_relayer_update_polyx_limit_V4_t relayer_update_polyx_limit_V4; - pd_relayer_increase_polyx_limit_V4_t relayer_increase_polyx_limit_V4; - pd_relayer_decrease_polyx_limit_V4_t relayer_decrease_polyx_limit_V4; - pd_contracts_call_old_weight_V4_t contracts_call_old_weight_V4; - pd_contracts_instantiate_with_code_old_weight_V4_t contracts_instantiate_with_code_old_weight_V4; - pd_contracts_instantiate_old_weight_V4_t contracts_instantiate_old_weight_V4; - pd_contracts_upload_code_V4_t contracts_upload_code_V4; - pd_contracts_remove_code_V4_t contracts_remove_code_V4; - pd_contracts_set_code_V4_t contracts_set_code_V4; - pd_contracts_instantiate_with_code_V4_t contracts_instantiate_with_code_V4; - pd_polymeshcontracts_instantiate_with_code_perms_V4_t polymeshcontracts_instantiate_with_code_perms_V4; - pd_polymeshcontracts_instantiate_with_hash_perms_V4_t polymeshcontracts_instantiate_with_hash_perms_V4; - pd_polymeshcontracts_update_call_runtime_whitelist_V4_t polymeshcontracts_update_call_runtime_whitelist_V4; - pd_polymeshcontracts_instantiate_with_code_as_primary_key_V4_t polymeshcontracts_instantiate_with_code_as_primary_key_V4; - pd_polymeshcontracts_instantiate_with_hash_as_primary_key_V4_t polymeshcontracts_instantiate_with_hash_as_primary_key_V4; - pd_polymeshcontracts_upgrade_api_V4_t polymeshcontracts_upgrade_api_V4; - pd_preimage_note_preimage_V4_t preimage_note_preimage_V4; - pd_preimage_unnote_preimage_V4_t preimage_unnote_preimage_V4; - pd_preimage_request_preimage_V4_t preimage_request_preimage_V4; - pd_preimage_unrequest_preimage_V4_t preimage_unrequest_preimage_V4; - pd_nft_create_nft_collection_V4_t nft_create_nft_collection_V4; - pd_nft_issue_nft_V4_t nft_issue_nft_V4; - pd_nft_redeem_nft_V4_t nft_redeem_nft_V4; -#endif -} pd_MethodBasic_V4_t; - -#define PD_CALL_BALANCES_TRANSFER_V4 0 -typedef struct { - pd_LookupasStaticLookupSource_t dest; - pd_CompactBalance_t amount; -} pd_balances_transfer_V4_t; - -#define PD_CALL_BALANCES_TRANSFER_WITH_MEMO_V4 1 -typedef struct { - pd_LookupasStaticLookupSource_t dest; - pd_CompactBalance_t amount; - pd_OptionMemo_t memo; -} pd_balances_transfer_with_memo_V4_t; - -#define PD_CALL_IDENTITY_ACCEPT_PRIMARY_KEY_V4 2 -typedef struct { - pd_u64_t rotation_auth_id; - pd_Optionu64_t optional_cdd_auth_id; -} pd_identity_accept_primary_key_V4_t; - -#define PD_CALL_IDENTITY_JOIN_IDENTITY_AS_KEY_V4 4 -typedef struct { - pd_u64_t auth_id; -} pd_identity_join_identity_as_key_V4_t; - -#define PD_CALL_IDENTITY_LEAVE_IDENTITY_AS_KEY_V4 5 -typedef struct { -} pd_identity_leave_identity_as_key_V4_t; - -#define PD_CALL_IDENTITY_ADD_CLAIM_V4 6 -typedef struct { - pd_IdentityId_t target; - pd_Claim_t claim; - pd_OptionMoment_t expiry; -} pd_identity_add_claim_V4_t; - -#define PD_CALL_IDENTITY_REVOKE_CLAIM_V4 7 -typedef struct { - pd_IdentityId_t target; - pd_Claim_t claim; -} pd_identity_revoke_claim_V4_t; - -#define PD_CALL_IDENTITY_FREEZE_SECONDARY_KEYS_V4 8 -typedef struct { -} pd_identity_freeze_secondary_keys_V4_t; - -#define PD_CALL_IDENTITY_UNFREEZE_SECONDARY_KEYS_V4 9 -typedef struct { -} pd_identity_unfreeze_secondary_keys_V4_t; - -#define PD_CALL_IDENTITY_ADD_AUTHORIZATION_V4 10 -typedef struct { - pd_SignatoryAccountId_t target; - pd_AuthorizationDataAccountId_t data; - pd_OptionMoment_t expiry; -} pd_identity_add_authorization_V4_t; - -#define PD_CALL_IDENTITY_REMOVE_AUTHORIZATION_V4 11 -typedef struct { - pd_SignatoryAccountId_t target; - pd_u64_t auth_id; - pd_bool_t _auth_issuer_pays; -} pd_identity_remove_authorization_V4_t; - -#define PD_CALL_IDENTITY_ADD_SECONDARY_KEYS_WITH_AUTHORIZATION_V4 16 -typedef struct { - pd_VecSecondaryKeyWithAuthAccountId_t additional_keys; - pd_Moment_t expires_at; -} pd_identity_add_secondary_keys_with_authorization_V4_t; - -#define PD_CALL_IDENTITY_REMOVE_SECONDARY_KEYS_V4 18 -typedef struct { - pd_VecAccountId_t keys_to_remove; -} pd_identity_remove_secondary_keys_V4_t; - -#define PD_CALL_MULTISIG_CREATE_MULTISIG_V4 0 -typedef struct { - pd_VecSignatoryAccountId_t signers; - pd_u64_t sigs_required; -} pd_multisig_create_multisig_V4_t; - -#define PD_CALL_MULTISIG_CREATE_OR_APPROVE_PROPOSAL_AS_KEY_V4 2 -typedef struct { - pd_AccountId_t multisig; - pd_Proposal_t proposal; - pd_OptionMoment_t expiry; - pd_bool_t auto_close; -} pd_multisig_create_or_approve_proposal_as_key_V4_t; - -#define PD_CALL_MULTISIG_CREATE_PROPOSAL_AS_KEY_V4 4 -typedef struct { - pd_AccountId_t multisig; - pd_Proposal_t proposal; - pd_OptionMoment_t expiry; - pd_bool_t auto_close; -} pd_multisig_create_proposal_as_key_V4_t; - -#define PD_CALL_MULTISIG_APPROVE_AS_KEY_V4 6 -typedef struct { - pd_AccountId_t multisig; - pd_u64_t proposal_id; -} pd_multisig_approve_as_key_V4_t; - -#define PD_CALL_MULTISIG_REJECT_AS_KEY_V4 8 -typedef struct { - pd_AccountId_t multisig; - pd_u64_t proposal_id; -} pd_multisig_reject_as_key_V4_t; - -#define PD_CALL_MULTISIG_ACCEPT_MULTISIG_SIGNER_AS_KEY_V4 10 -typedef struct { - pd_u64_t auth_id; -} pd_multisig_accept_multisig_signer_as_key_V4_t; - -#define PD_CALL_MULTISIG_ADD_MULTISIG_SIGNER_V4 11 -typedef struct { - pd_SignatoryAccountId_t signer; -} pd_multisig_add_multisig_signer_V4_t; - -#define PD_CALL_MULTISIG_REMOVE_MULTISIG_SIGNER_V4 12 -typedef struct { - pd_SignatoryAccountId_t signer; -} pd_multisig_remove_multisig_signer_V4_t; - -#define PD_CALL_MULTISIG_ADD_MULTISIG_SIGNERS_VIA_CREATOR_V4 13 -typedef struct { - pd_AccountId_t multisig; - pd_VecSignatoryAccountId_t signers; -} pd_multisig_add_multisig_signers_via_creator_V4_t; - -#define PD_CALL_MULTISIG_REMOVE_MULTISIG_SIGNERS_VIA_CREATOR_V4 14 -typedef struct { - pd_AccountId_t multisig; - pd_VecSignatoryAccountId_t signers; -} pd_multisig_remove_multisig_signers_via_creator_V4_t; - -#define PD_CALL_MULTISIG_CHANGE_SIGS_REQUIRED_V4 15 -typedef struct { - pd_u64_t sigs_required; -} pd_multisig_change_sigs_required_V4_t; - -#define PD_CALL_MULTISIG_MAKE_MULTISIG_PRIMARY_V4 17 -typedef struct { - pd_AccountId_t multisig; - pd_Optionu64_t optional_cdd_auth_id; -} pd_multisig_make_multisig_primary_V4_t; - -#define PD_CALL_STAKING_BOND_V4 0 -typedef struct { - pd_AccountIdLookupOfT_t controller; - pd_CompactBalance_t amount; - pd_RewardDestination_t payee; -} pd_staking_bond_V4_t; - -#define PD_CALL_STAKING_BOND_EXTRA_V4 1 -typedef struct { - pd_CompactBalance_t amount; -} pd_staking_bond_extra_V4_t; - -#define PD_CALL_STAKING_UNBOND_V4 2 -typedef struct { - pd_CompactBalance_t amount; -} pd_staking_unbond_V4_t; - -#define PD_CALL_STAKING_WITHDRAW_UNBONDED_V4 3 -typedef struct { - pd_u32_t num_slashing_spans; -} pd_staking_withdraw_unbonded_V4_t; - -#define PD_CALL_STAKING_VALIDATE_V4 4 -typedef struct { - pd_ValidatorPrefs_t prefs; -} pd_staking_validate_V4_t; - -#define PD_CALL_STAKING_NOMINATE_V4 5 -typedef struct { - pd_VecAccountIdLookupOfT_t targets; -} pd_staking_nominate_V4_t; - -#define PD_CALL_STAKING_CHILL_V4 6 -typedef struct { -} pd_staking_chill_V4_t; - -#define PD_CALL_STAKING_SET_PAYEE_V4 7 -typedef struct { - pd_RewardDestination_t payee; -} pd_staking_set_payee_V4_t; - -#define PD_CALL_STAKING_SET_CONTROLLER_V4 8 -typedef struct { - pd_AccountIdLookupOfT_t controller; -} pd_staking_set_controller_V4_t; - -#define PD_CALL_STAKING_REBOND_V4 24 -typedef struct { - pd_CompactBalance_t amount; -} pd_staking_rebond_V4_t; - -#define PD_CALL_PIPS_PROPOSE_V4 6 -typedef struct { - pd_Proposal_t proposal; - pd_Balance_t deposit; - pd_OptionUrl_t url; - pd_OptionPipDescription_t description; -} pd_pips_propose_V4_t; - -#define PD_CALL_PIPS_VOTE_V4 7 -typedef struct { - pd_PipId_t id; - pd_bool_t aye_or_nay; - pd_Balance_t deposit; -} pd_pips_vote_V4_t; - -#define PD_CALL_UTILITY_BATCH_V4 0 -typedef struct { - pd_VecCall_t calls; -} pd_utility_batch_V4_t; - -#define PD_CALL_UTILITY_BATCH_ATOMIC_V4 7 -typedef struct { - pd_VecCall_t calls; -} pd_utility_batch_atomic_V4_t; - -#define PD_CALL_UTILITY_BATCH_OPTIMISTIC_V4 8 -typedef struct { - pd_VecCall_t calls; -} pd_utility_batch_optimistic_V4_t; - -#ifdef SUBSTRATE_PARSER_FULL -#ifndef TARGET_NANOS -#define PD_CALL_CORPORATEACTION_SET_MAX_DETAILS_LENGTH_V4 0 -typedef struct { - pd_u32_t length; -} pd_corporateaction_set_max_details_length_V4_t; -#define PD_CALL_CORPORATEACTION_SET_DEFAULT_TARGETS_V4 1 -typedef struct { - pd_Ticker_t ticker; - pd_TargetIdentities_t targets; -} pd_corporateaction_set_default_targets_V4_t; -#define PD_CALL_CORPORATEACTION_SET_DEFAULT_WITHHOLDING_TAX_V4 2 -typedef struct { - pd_Ticker_t ticker; - pd_Tax_t tax; -} pd_corporateaction_set_default_withholding_tax_V4_t; -#define PD_CALL_CORPORATEACTION_SET_DID_WITHHOLDING_TAX_V4 3 -typedef struct { - pd_Ticker_t ticker; - pd_IdentityId_t taxed_did; - pd_OptionTax_t tax; -} pd_corporateaction_set_did_withholding_tax_V4_t; -#define PD_CALL_CORPORATEACTION_INITIATE_CORPORATE_ACTION_V4 4 -typedef struct { - pd_Ticker_t ticker; - pd_CAKind_t kind; - pd_Moment_t decl_date; - pd_OptionRecordDateSpec_t record_date; - pd_CADetails_t details; - pd_OptionTargetIdentities_t targets; - pd_OptionTax_t default_withholding_tax; - pd_OptionVecTupleIdentityIdTax_t withholding_tax; -} pd_corporateaction_initiate_corporate_action_V4_t; -#define PD_CALL_CORPORATEACTION_LINK_CA_DOC_V4 5 -typedef struct { - pd_CAId_t id; - pd_VecDocumentId_t docs; -} pd_corporateaction_link_ca_doc_V4_t; -#define PD_CALL_CORPORATEACTION_REMOVE_CA_V4 6 -typedef struct { - pd_CAId_t ca_id; -} pd_corporateaction_remove_ca_V4_t; -#define PD_CALL_CORPORATEACTION_CHANGE_RECORD_DATE_V4 7 -typedef struct { - pd_CAId_t ca_id; - pd_OptionRecordDateSpec_t record_date; -} pd_corporateaction_change_record_date_V4_t; -#define PD_CALL_CORPORATEACTION_INITIATE_CORPORATE_ACTION_AND_DISTRIBUTE_V4 8 -typedef struct { - pd_InitiateCorporateActionArgs_t ca_args; - pd_OptionPortfolioNumber_t portfolio; - pd_Ticker_t currency; - pd_Balance_t per_share; - pd_Balance_t amount; - pd_Moment_t payment_at; - pd_OptionMoment_t expires_at; -} pd_corporateaction_initiate_corporate_action_and_distribute_V4_t; -#define PD_CALL_CORPORATEBALLOT_ATTACH_BALLOT_V4 0 -typedef struct { - pd_CAId_t ca_id; - pd_BallotTimeRange_t range; - pd_BallotMeta_t meta; - pd_bool_t rcv; -} pd_corporateballot_attach_ballot_V4_t; -#define PD_CALL_CORPORATEBALLOT_VOTE_V4 1 -typedef struct { - pd_CAId_t ca_id; - pd_VecBallotVote_t votes; -} pd_corporateballot_vote_V4_t; -#define PD_CALL_CORPORATEBALLOT_CHANGE_END_V4 2 -typedef struct { - pd_CAId_t ca_id; - pd_Moment_t end; -} pd_corporateballot_change_end_V4_t; -#define PD_CALL_CORPORATEBALLOT_CHANGE_META_V4 3 -typedef struct { - pd_CAId_t ca_id; - pd_BallotMeta_t meta; -} pd_corporateballot_change_meta_V4_t; -#define PD_CALL_CORPORATEBALLOT_CHANGE_RCV_V4 4 -typedef struct { - pd_CAId_t ca_id; - pd_bool_t rcv; -} pd_corporateballot_change_rcv_V4_t; -#define PD_CALL_CORPORATEBALLOT_REMOVE_BALLOT_V4 5 -typedef struct { - pd_CAId_t ca_id; -} pd_corporateballot_remove_ballot_V4_t; -#define PD_CALL_PIPS_ENACT_SNAPSHOT_RESULTS_V4 14 -typedef struct { - pd_VecTuplePipIdSnapshotResult_t results; -} pd_pips_enact_snapshot_results_V4_t; -#endif -#define PD_CALL_SYSTEM_REMARK_V4 0 -typedef struct { - pd_Bytes_t remark; -} pd_system_remark_V4_t; - -#define PD_CALL_SYSTEM_SET_HEAP_PAGES_V4 1 -typedef struct { - pd_u64_t pages; -} pd_system_set_heap_pages_V4_t; - -#define PD_CALL_SYSTEM_SET_CODE_V4 2 -typedef struct { - pd_Bytes_t code; -} pd_system_set_code_V4_t; - -#define PD_CALL_SYSTEM_SET_CODE_WITHOUT_CHECKS_V4 3 -typedef struct { - pd_Vecu8_t code; -} pd_system_set_code_without_checks_V4_t; - -#define PD_CALL_SYSTEM_REMARK_WITH_EVENT_V4 7 -typedef struct { - pd_Bytes_t remark; -} pd_system_remark_with_event_V4_t; - -#define PD_CALL_TIMESTAMP_SET_V4 0 -typedef struct { - pd_Compactu64_t now; -} pd_timestamp_set_V4_t; - -#define PD_CALL_INDICES_CLAIM_V4 0 -typedef struct { - pd_AccountIndex_t index; -} pd_indices_claim_V4_t; - -#define PD_CALL_INDICES_TRANSFER_V4 1 -typedef struct { - pd_AccountIdLookupOfT_t new_; - pd_AccountIndex_t index; -} pd_indices_transfer_V4_t; - -#define PD_CALL_INDICES_FREE_V4 2 -typedef struct { - pd_AccountIndex_t index; -} pd_indices_free_V4_t; - -#define PD_CALL_INDICES_FORCE_TRANSFER_V4 3 -typedef struct { - pd_AccountIdLookupOfT_t new_; - pd_AccountIndex_t index; - pd_bool_t freeze; -} pd_indices_force_transfer_V4_t; - -#define PD_CALL_INDICES_FREEZE_V4 4 -typedef struct { - pd_AccountIndex_t index; -} pd_indices_freeze_V4_t; - -#define PD_CALL_BALANCES_DEPOSIT_BLOCK_REWARD_RESERVE_BALANCE_V4 2 -typedef struct { - pd_CompactBalance_t amount; -} pd_balances_deposit_block_reward_reserve_balance_V4_t; - -#define PD_CALL_BALANCES_SET_BALANCE_V4 3 -typedef struct { - pd_LookupasStaticLookupSource_t who; - pd_CompactBalance_t new_free; - pd_CompactBalance_t new_reserved; -} pd_balances_set_balance_V4_t; - -#define PD_CALL_BALANCES_FORCE_TRANSFER_V4 4 -typedef struct { - pd_LookupasStaticLookupSource_t source; - pd_LookupasStaticLookupSource_t dest; - pd_CompactBalance_t amount; -} pd_balances_force_transfer_V4_t; - -#define PD_CALL_BALANCES_BURN_ACCOUNT_BALANCE_V4 5 -typedef struct { - pd_Balance_t amount; -} pd_balances_burn_account_balance_V4_t; - -#define PD_CALL_IDENTITY_CDD_REGISTER_DID_V4 0 -typedef struct { - pd_AccountId_t target_account; - pd_VecSecondaryKeyAccountId_t secondary_keys; -} pd_identity_cdd_register_did_V4_t; - -#define PD_CALL_IDENTITY_INVALIDATE_CDD_CLAIMS_V4 1 -typedef struct { - pd_IdentityId_t cdd; - pd_Moment_t disable_from; - pd_OptionMoment_t expiry; -} pd_identity_invalidate_cdd_claims_V4_t; - -#define PD_CALL_IDENTITY_CHANGE_CDD_REQUIREMENT_FOR_MK_ROTATION_V4 3 -typedef struct { - pd_bool_t auth_required; -} pd_identity_change_cdd_requirement_for_mk_rotation_V4_t; - -#define PD_CALL_IDENTITY_GC_ADD_CDD_CLAIM_V4 12 -typedef struct { - pd_IdentityId_t target; -} pd_identity_gc_add_cdd_claim_V4_t; - -#define PD_CALL_IDENTITY_GC_REVOKE_CDD_CLAIM_V4 13 -typedef struct { - pd_IdentityId_t target; -} pd_identity_gc_revoke_cdd_claim_V4_t; - -#define PD_CALL_IDENTITY_REVOKE_CLAIM_BY_INDEX_V4 14 -typedef struct { - pd_IdentityId_t target; - pd_ClaimType_t claim_type; - pd_OptionScope_t scope; -} pd_identity_revoke_claim_by_index_V4_t; - -#define PD_CALL_IDENTITY_ROTATE_PRIMARY_KEY_TO_SECONDARY_V4 15 -typedef struct { - pd_u64_t auth_id; - pd_Optionu64_t optional_cdd_auth_id; -} pd_identity_rotate_primary_key_to_secondary_V4_t; - -#define PD_CALL_IDENTITY_SET_SECONDARY_KEY_PERMISSIONS_V4 17 -typedef struct { - pd_AccountId_t key; - pd_Permissions_t perms; -} pd_identity_set_secondary_key_permissions_V4_t; - -#define PD_CALL_IDENTITY_REGISTER_CUSTOM_CLAIM_TYPE_V4 19 -typedef struct { - pd_Vecu8_t ty; -} pd_identity_register_custom_claim_type_V4_t; - -#define PD_CALL_IDENTITY_CDD_REGISTER_DID_WITH_CDD_V4 20 -typedef struct { - pd_AccountId_t target_account; - pd_VecSecondaryKeyAccountId_t secondary_keys; - pd_OptionMoment_t expiry; -} pd_identity_cdd_register_did_with_cdd_V4_t; - -#define PD_CALL_IDENTITY_CREATE_CHILD_IDENTITY_V4 21 -typedef struct { - pd_AccountId_t secondary_key; -} pd_identity_create_child_identity_V4_t; - -#define PD_CALL_IDENTITY_CREATE_CHILD_IDENTITIES_V4 22 -typedef struct { - pd_VecCreateChildIdentityWithAuthAccountId_t child_keys; - pd_Moment_t expires_at; -} pd_identity_create_child_identities_V4_t; - -#define PD_CALL_IDENTITY_UNLINK_CHILD_IDENTITY_V4 23 -typedef struct { - pd_IdentityId_t child_did; -} pd_identity_unlink_child_identity_V4_t; - -#define PD_CALL_CDDSERVICEPROVIDERS_SET_ACTIVE_MEMBERS_LIMIT_V4 0 -typedef struct { - pd_MemberCount_t limit; -} pd_cddserviceproviders_set_active_members_limit_V4_t; - -#define PD_CALL_CDDSERVICEPROVIDERS_DISABLE_MEMBER_V4 1 -typedef struct { - pd_IdentityId_t who; - pd_OptionMoment_t expiry; - pd_OptionMoment_t at; -} pd_cddserviceproviders_disable_member_V4_t; - -#define PD_CALL_CDDSERVICEPROVIDERS_ADD_MEMBER_V4 2 -typedef struct { - pd_IdentityId_t who; -} pd_cddserviceproviders_add_member_V4_t; - -#define PD_CALL_CDDSERVICEPROVIDERS_REMOVE_MEMBER_V4 3 -typedef struct { - pd_IdentityId_t who; -} pd_cddserviceproviders_remove_member_V4_t; - -#define PD_CALL_CDDSERVICEPROVIDERS_SWAP_MEMBER_V4 4 -typedef struct { - pd_IdentityId_t remove; - pd_IdentityId_t add; -} pd_cddserviceproviders_swap_member_V4_t; - -#define PD_CALL_CDDSERVICEPROVIDERS_RESET_MEMBERS_V4 5 -typedef struct { - pd_VecIdentityId_t members; -} pd_cddserviceproviders_reset_members_V4_t; - -#define PD_CALL_CDDSERVICEPROVIDERS_ABDICATE_MEMBERSHIP_V4 6 -typedef struct { -} pd_cddserviceproviders_abdicate_membership_V4_t; - -#define PD_CALL_POLYMESHCOMMITTEE_SET_VOTE_THRESHOLD_V4 0 -typedef struct { - pd_u32_t n; - pd_u32_t d; -} pd_polymeshcommittee_set_vote_threshold_V4_t; - -#define PD_CALL_POLYMESHCOMMITTEE_SET_RELEASE_COORDINATOR_V4 1 -typedef struct { - pd_IdentityId_t id; -} pd_polymeshcommittee_set_release_coordinator_V4_t; - -#define PD_CALL_POLYMESHCOMMITTEE_SET_EXPIRES_AFTER_V4 2 -typedef struct { - pd_MaybeBlockBlockNumber_t expiry; -} pd_polymeshcommittee_set_expires_after_V4_t; - -#define PD_CALL_POLYMESHCOMMITTEE_VOTE_OR_PROPOSE_V4 3 -typedef struct { - pd_bool_t approve; - pd_Proposal_t call; -} pd_polymeshcommittee_vote_or_propose_V4_t; - -#define PD_CALL_POLYMESHCOMMITTEE_VOTE_V4 4 -typedef struct { - pd_Hash_t proposal; - pd_ProposalIndex_t index; - pd_bool_t approve; -} pd_polymeshcommittee_vote_V4_t; - -#define PD_CALL_COMMITTEEMEMBERSHIP_SET_ACTIVE_MEMBERS_LIMIT_V4 0 -typedef struct { - pd_MemberCount_t limit; -} pd_committeemembership_set_active_members_limit_V4_t; - -#define PD_CALL_COMMITTEEMEMBERSHIP_DISABLE_MEMBER_V4 1 -typedef struct { - pd_IdentityId_t who; - pd_OptionMoment_t expiry; - pd_OptionMoment_t at; -} pd_committeemembership_disable_member_V4_t; - -#define PD_CALL_COMMITTEEMEMBERSHIP_ADD_MEMBER_V4 2 -typedef struct { - pd_IdentityId_t who; -} pd_committeemembership_add_member_V4_t; - -#define PD_CALL_COMMITTEEMEMBERSHIP_REMOVE_MEMBER_V4 3 -typedef struct { - pd_IdentityId_t who; -} pd_committeemembership_remove_member_V4_t; - -#define PD_CALL_COMMITTEEMEMBERSHIP_SWAP_MEMBER_V4 4 -typedef struct { - pd_IdentityId_t remove; - pd_IdentityId_t add; -} pd_committeemembership_swap_member_V4_t; - -#define PD_CALL_COMMITTEEMEMBERSHIP_RESET_MEMBERS_V4 5 -typedef struct { - pd_VecIdentityId_t members; -} pd_committeemembership_reset_members_V4_t; - -#define PD_CALL_COMMITTEEMEMBERSHIP_ABDICATE_MEMBERSHIP_V4 6 -typedef struct { -} pd_committeemembership_abdicate_membership_V4_t; - -#define PD_CALL_TECHNICALCOMMITTEE_SET_VOTE_THRESHOLD_V4 0 -typedef struct { - pd_u32_t n; - pd_u32_t d; -} pd_technicalcommittee_set_vote_threshold_V4_t; - -#define PD_CALL_TECHNICALCOMMITTEE_SET_RELEASE_COORDINATOR_V4 1 -typedef struct { - pd_IdentityId_t id; -} pd_technicalcommittee_set_release_coordinator_V4_t; - -#define PD_CALL_TECHNICALCOMMITTEE_SET_EXPIRES_AFTER_V4 2 -typedef struct { - pd_MaybeBlockBlockNumber_t expiry; -} pd_technicalcommittee_set_expires_after_V4_t; - -#define PD_CALL_TECHNICALCOMMITTEE_VOTE_OR_PROPOSE_V4 3 -typedef struct { - pd_bool_t approve; - pd_Proposal_t call; -} pd_technicalcommittee_vote_or_propose_V4_t; - -#define PD_CALL_TECHNICALCOMMITTEE_VOTE_V4 4 -typedef struct { - pd_Hash_t proposal; - pd_ProposalIndex_t index; - pd_bool_t approve; -} pd_technicalcommittee_vote_V4_t; - -#define PD_CALL_TECHNICALCOMMITTEEMEMBERSHIP_SET_ACTIVE_MEMBERS_LIMIT_V4 0 -typedef struct { - pd_MemberCount_t limit; -} pd_technicalcommitteemembership_set_active_members_limit_V4_t; - -#define PD_CALL_TECHNICALCOMMITTEEMEMBERSHIP_DISABLE_MEMBER_V4 1 -typedef struct { - pd_IdentityId_t who; - pd_OptionMoment_t expiry; - pd_OptionMoment_t at; -} pd_technicalcommitteemembership_disable_member_V4_t; - -#define PD_CALL_TECHNICALCOMMITTEEMEMBERSHIP_ADD_MEMBER_V4 2 -typedef struct { - pd_IdentityId_t who; -} pd_technicalcommitteemembership_add_member_V4_t; - -#define PD_CALL_TECHNICALCOMMITTEEMEMBERSHIP_REMOVE_MEMBER_V4 3 -typedef struct { - pd_IdentityId_t who; -} pd_technicalcommitteemembership_remove_member_V4_t; - -#define PD_CALL_TECHNICALCOMMITTEEMEMBERSHIP_SWAP_MEMBER_V4 4 -typedef struct { - pd_IdentityId_t remove; - pd_IdentityId_t add; -} pd_technicalcommitteemembership_swap_member_V4_t; - -#define PD_CALL_TECHNICALCOMMITTEEMEMBERSHIP_RESET_MEMBERS_V4 5 -typedef struct { - pd_VecIdentityId_t members; -} pd_technicalcommitteemembership_reset_members_V4_t; - -#define PD_CALL_TECHNICALCOMMITTEEMEMBERSHIP_ABDICATE_MEMBERSHIP_V4 6 -typedef struct { -} pd_technicalcommitteemembership_abdicate_membership_V4_t; - -#define PD_CALL_UPGRADECOMMITTEE_SET_VOTE_THRESHOLD_V4 0 -typedef struct { - pd_u32_t n; - pd_u32_t d; -} pd_upgradecommittee_set_vote_threshold_V4_t; - -#define PD_CALL_UPGRADECOMMITTEE_SET_RELEASE_COORDINATOR_V4 1 -typedef struct { - pd_IdentityId_t id; -} pd_upgradecommittee_set_release_coordinator_V4_t; - -#define PD_CALL_UPGRADECOMMITTEE_SET_EXPIRES_AFTER_V4 2 -typedef struct { - pd_MaybeBlockBlockNumber_t expiry; -} pd_upgradecommittee_set_expires_after_V4_t; - -#define PD_CALL_UPGRADECOMMITTEE_VOTE_OR_PROPOSE_V4 3 -typedef struct { - pd_bool_t approve; - pd_Proposal_t call; -} pd_upgradecommittee_vote_or_propose_V4_t; - -#define PD_CALL_UPGRADECOMMITTEE_VOTE_V4 4 -typedef struct { - pd_Hash_t proposal; - pd_ProposalIndex_t index; - pd_bool_t approve; -} pd_upgradecommittee_vote_V4_t; - -#define PD_CALL_UPGRADECOMMITTEEMEMBERSHIP_SET_ACTIVE_MEMBERS_LIMIT_V4 0 -typedef struct { - pd_MemberCount_t limit; -} pd_upgradecommitteemembership_set_active_members_limit_V4_t; - -#define PD_CALL_UPGRADECOMMITTEEMEMBERSHIP_DISABLE_MEMBER_V4 1 -typedef struct { - pd_IdentityId_t who; - pd_OptionMoment_t expiry; - pd_OptionMoment_t at; -} pd_upgradecommitteemembership_disable_member_V4_t; - -#define PD_CALL_UPGRADECOMMITTEEMEMBERSHIP_ADD_MEMBER_V4 2 -typedef struct { - pd_IdentityId_t who; -} pd_upgradecommitteemembership_add_member_V4_t; - -#define PD_CALL_UPGRADECOMMITTEEMEMBERSHIP_REMOVE_MEMBER_V4 3 -typedef struct { - pd_IdentityId_t who; -} pd_upgradecommitteemembership_remove_member_V4_t; - -#define PD_CALL_UPGRADECOMMITTEEMEMBERSHIP_SWAP_MEMBER_V4 4 -typedef struct { - pd_IdentityId_t remove; - pd_IdentityId_t add; -} pd_upgradecommitteemembership_swap_member_V4_t; - -#define PD_CALL_UPGRADECOMMITTEEMEMBERSHIP_RESET_MEMBERS_V4 5 -typedef struct { - pd_VecIdentityId_t members; -} pd_upgradecommitteemembership_reset_members_V4_t; - -#define PD_CALL_UPGRADECOMMITTEEMEMBERSHIP_ABDICATE_MEMBERSHIP_V4 6 -typedef struct { -} pd_upgradecommitteemembership_abdicate_membership_V4_t; - -#define PD_CALL_MULTISIG_CREATE_OR_APPROVE_PROPOSAL_AS_IDENTITY_V4 1 -typedef struct { - pd_AccountId_t multisig; - pd_Proposal_t proposal; - pd_OptionMoment_t expiry; - pd_bool_t auto_close; -} pd_multisig_create_or_approve_proposal_as_identity_V4_t; - -#define PD_CALL_MULTISIG_CREATE_PROPOSAL_AS_IDENTITY_V4 3 -typedef struct { - pd_AccountId_t multisig; - pd_Proposal_t proposal; - pd_OptionMoment_t expiry; - pd_bool_t auto_close; -} pd_multisig_create_proposal_as_identity_V4_t; - -#define PD_CALL_MULTISIG_APPROVE_AS_IDENTITY_V4 5 -typedef struct { - pd_AccountId_t multisig; - pd_u64_t proposal_id; -} pd_multisig_approve_as_identity_V4_t; - -#define PD_CALL_MULTISIG_REJECT_AS_IDENTITY_V4 7 -typedef struct { - pd_AccountId_t multisig; - pd_u64_t proposal_id; -} pd_multisig_reject_as_identity_V4_t; - -#define PD_CALL_MULTISIG_ACCEPT_MULTISIG_SIGNER_AS_IDENTITY_V4 9 -typedef struct { - pd_u64_t _auth_id; -} pd_multisig_accept_multisig_signer_as_identity_V4_t; - -#define PD_CALL_MULTISIG_MAKE_MULTISIG_SECONDARY_V4 16 -typedef struct { - pd_AccountId_t multisig; -} pd_multisig_make_multisig_secondary_V4_t; - -#define PD_CALL_MULTISIG_EXECUTE_SCHEDULED_PROPOSAL_V4 18 -typedef struct { - pd_AccountId_t multisig; - pd_u64_t proposal_id; - pd_IdentityId_t multisig_did; - pd_Weight_t _proposal_weight; -} pd_multisig_execute_scheduled_proposal_V4_t; - -#define PD_CALL_MULTISIG_CHANGE_SIGS_REQUIRED_VIA_CREATOR_V4 19 -typedef struct { - pd_AccountId_t multisig_account; - pd_u64_t signatures_required; -} pd_multisig_change_sigs_required_via_creator_V4_t; - -#define PD_CALL_MULTISIG_REMOVE_CREATOR_CONTROLS_V4 20 -typedef struct { - pd_AccountId_t multisig_account; -} pd_multisig_remove_creator_controls_V4_t; - -#define PD_CALL_BRIDGE_CHANGE_CONTROLLER_V4 0 -typedef struct { - pd_AccountId_t controller; -} pd_bridge_change_controller_V4_t; - -#define PD_CALL_BRIDGE_CHANGE_ADMIN_V4 1 -typedef struct { - pd_AccountId_t admin; -} pd_bridge_change_admin_V4_t; - -#define PD_CALL_BRIDGE_CHANGE_TIMELOCK_V4 2 -typedef struct { - pd_BlockNumber_t timelock; -} pd_bridge_change_timelock_V4_t; - -#define PD_CALL_BRIDGE_FREEZE_V4 3 -typedef struct { -} pd_bridge_freeze_V4_t; - -#define PD_CALL_BRIDGE_UNFREEZE_V4 4 -typedef struct { -} pd_bridge_unfreeze_V4_t; - -#define PD_CALL_BRIDGE_CHANGE_BRIDGE_LIMIT_V4 5 -typedef struct { - pd_Balance_t amount; - pd_BlockNumber_t duration; -} pd_bridge_change_bridge_limit_V4_t; - -#define PD_CALL_BRIDGE_CHANGE_BRIDGE_EXEMPTED_V4 6 -typedef struct { - pd_VecTupleIdentityIdbool_t exempted; -} pd_bridge_change_bridge_exempted_V4_t; - -#define PD_CALL_BRIDGE_FORCE_HANDLE_BRIDGE_TX_V4 7 -typedef struct { - pd_BridgeTxAccountId_t bridge_tx; -} pd_bridge_force_handle_bridge_tx_V4_t; - -#define PD_CALL_STAKING_SET_VALIDATOR_COUNT_V4 9 -typedef struct { - pd_Compactu32_t new_; -} pd_staking_set_validator_count_V4_t; - -#define PD_CALL_STAKING_INCREASE_VALIDATOR_COUNT_V4 10 -typedef struct { - pd_Compactu32_t additional; -} pd_staking_increase_validator_count_V4_t; - -#define PD_CALL_STAKING_SCALE_VALIDATOR_COUNT_V4 11 -typedef struct { - pd_Percent_t factor; -} pd_staking_scale_validator_count_V4_t; - -#define PD_CALL_STAKING_ADD_PERMISSIONED_VALIDATOR_V4 12 -typedef struct { - pd_IdentityId_t identity; - pd_Optionu32_t intended_count; -} pd_staking_add_permissioned_validator_V4_t; - -#define PD_CALL_STAKING_REMOVE_PERMISSIONED_VALIDATOR_V4 13 -typedef struct { - pd_IdentityId_t identity; -} pd_staking_remove_permissioned_validator_V4_t; - -#define PD_CALL_STAKING_VALIDATE_CDD_EXPIRY_NOMINATORS_V4 14 -typedef struct { - pd_VecAccountId_t targets; -} pd_staking_validate_cdd_expiry_nominators_V4_t; - -#define PD_CALL_STAKING_SET_COMMISSION_CAP_V4 15 -typedef struct { - pd_Perbill_t new_cap; -} pd_staking_set_commission_cap_V4_t; - -#define PD_CALL_STAKING_SET_MIN_BOND_THRESHOLD_V4 16 -typedef struct { - pd_Balance_t new_value; -} pd_staking_set_min_bond_threshold_V4_t; - -#define PD_CALL_STAKING_FORCE_NO_ERAS_V4 17 -typedef struct { -} pd_staking_force_no_eras_V4_t; - -#define PD_CALL_STAKING_FORCE_NEW_ERA_V4 18 -typedef struct { -} pd_staking_force_new_era_V4_t; - -#define PD_CALL_STAKING_SET_INVULNERABLES_V4 19 -typedef struct { - pd_VecAccountId_t invulnerables; -} pd_staking_set_invulnerables_V4_t; - -#define PD_CALL_STAKING_FORCE_UNSTAKE_V4 20 -typedef struct { - pd_AccountId_t stash; - pd_u32_t num_slashing_spans; -} pd_staking_force_unstake_V4_t; - -#define PD_CALL_STAKING_FORCE_NEW_ERA_ALWAYS_V4 21 -typedef struct { -} pd_staking_force_new_era_always_V4_t; - -#define PD_CALL_STAKING_CANCEL_DEFERRED_SLASH_V4 22 -typedef struct { - pd_EraIndex_t era; - pd_Vecu32_t slash_indices; -} pd_staking_cancel_deferred_slash_V4_t; - -#define PD_CALL_STAKING_PAYOUT_STAKERS_V4 23 -typedef struct { - pd_AccountId_t validator_stash; - pd_EraIndex_t era; -} pd_staking_payout_stakers_V4_t; - -#define PD_CALL_STAKING_SET_HISTORY_DEPTH_V4 25 -typedef struct { - pd_Compactu32_t new_history_depth; - pd_Compactu32_t era_items_deleted; -} pd_staking_set_history_depth_V4_t; - -#define PD_CALL_STAKING_REAP_STASH_V4 26 -typedef struct { - pd_AccountId_t stash; - pd_u32_t num_slashing_spans; -} pd_staking_reap_stash_V4_t; - -#define PD_CALL_STAKING_PAYOUT_STAKERS_BY_SYSTEM_V4 29 -typedef struct { - pd_AccountId_t validator_stash; - pd_EraIndex_t era; -} pd_staking_payout_stakers_by_system_V4_t; - -#define PD_CALL_STAKING_CHANGE_SLASHING_ALLOWED_FOR_V4 30 -typedef struct { - pd_SlashingSwitch_t slashing_switch; -} pd_staking_change_slashing_allowed_for_V4_t; - -#define PD_CALL_STAKING_UPDATE_PERMISSIONED_VALIDATOR_INTENDED_COUNT_V4 31 -typedef struct { - pd_IdentityId_t identity; - pd_u32_t new_intended_count; -} pd_staking_update_permissioned_validator_intended_count_V4_t; - -#define PD_CALL_STAKING_CHILL_FROM_GOVERNANCE_V4 32 -typedef struct { - pd_IdentityId_t identity; - pd_VecAccountId_t stash_keys; -} pd_staking_chill_from_governance_V4_t; - -#define PD_CALL_SESSION_SET_KEYS_V4 0 -typedef struct { - pd_Keys_t keys; - pd_Bytes_t proof; -} pd_session_set_keys_V4_t; - -#define PD_CALL_SESSION_PURGE_KEYS_V4 1 -typedef struct { -} pd_session_purge_keys_V4_t; - -#define PD_CALL_ASSET_REGISTER_TICKER_V4 0 -typedef struct { - pd_Ticker_t ticker; -} pd_asset_register_ticker_V4_t; - -#define PD_CALL_ASSET_ACCEPT_TICKER_TRANSFER_V4 1 -typedef struct { - pd_u64_t auth_id; -} pd_asset_accept_ticker_transfer_V4_t; - -#define PD_CALL_ASSET_ACCEPT_ASSET_OWNERSHIP_TRANSFER_V4 2 -typedef struct { - pd_u64_t auth_id; -} pd_asset_accept_asset_ownership_transfer_V4_t; - -#define PD_CALL_ASSET_CREATE_ASSET_V4 3 -typedef struct { - pd_AssetName_t name; - pd_Ticker_t ticker; - pd_bool_t divisible; - pd_AssetType_t asset_type; - pd_VecAssetIdentifier_t identifiers; - pd_OptionFundingRoundName_t funding_round; -} pd_asset_create_asset_V4_t; - -#define PD_CALL_ASSET_FREEZE_V4 4 -typedef struct { - pd_Ticker_t ticker; -} pd_asset_freeze_V4_t; - -#define PD_CALL_ASSET_UNFREEZE_V4 5 -typedef struct { - pd_Ticker_t ticker; -} pd_asset_unfreeze_V4_t; - -#define PD_CALL_ASSET_RENAME_ASSET_V4 6 -typedef struct { - pd_Ticker_t ticker; - pd_AssetName_t name; -} pd_asset_rename_asset_V4_t; - -#define PD_CALL_ASSET_ISSUE_V4 7 -typedef struct { - pd_Ticker_t ticker; - pd_BalanceNoSymbol_t amount; - pd_PortfolioKind_t portfolio_kind; -} pd_asset_issue_V4_t; - -#define PD_CALL_ASSET_REDEEM_V4 8 -typedef struct { - pd_Ticker_t ticker; - pd_BalanceNoSymbol_t amount; -} pd_asset_redeem_V4_t; - -#define PD_CALL_ASSET_MAKE_DIVISIBLE_V4 9 -typedef struct { - pd_Ticker_t ticker; -} pd_asset_make_divisible_V4_t; - -#define PD_CALL_ASSET_ADD_DOCUMENTS_V4 10 -typedef struct { - pd_VecDocument_t docs; - pd_Ticker_t ticker; -} pd_asset_add_documents_V4_t; - -#define PD_CALL_ASSET_REMOVE_DOCUMENTS_V4 11 -typedef struct { - pd_VecDocumentId_t ids; - pd_Ticker_t ticker; -} pd_asset_remove_documents_V4_t; - -#define PD_CALL_ASSET_SET_FUNDING_ROUND_V4 12 -typedef struct { - pd_Ticker_t ticker; - pd_FundingRoundName_t name; -} pd_asset_set_funding_round_V4_t; - -#define PD_CALL_ASSET_UPDATE_IDENTIFIERS_V4 13 -typedef struct { - pd_Ticker_t ticker; - pd_VecAssetIdentifier_t asset_identifiers; -} pd_asset_update_identifiers_V4_t; - -#define PD_CALL_CAPITALDISTRIBUTION_DISTRIBUTE_V4 0 -typedef struct { - pd_CAId_t ca_id; - pd_OptionPortfolioNumber_t portfolio; - pd_Ticker_t currency; - pd_Balance_t per_share; - pd_Balance_t amount; - pd_Moment_t payment_at; - pd_OptionMoment_t expires_at; -} pd_capitaldistribution_distribute_V4_t; - -#define PD_CALL_CAPITALDISTRIBUTION_CLAIM_V4 1 -typedef struct { - pd_CAId_t ca_id; -} pd_capitaldistribution_claim_V4_t; - -#define PD_CALL_CAPITALDISTRIBUTION_PUSH_BENEFIT_V4 2 -typedef struct { - pd_CAId_t ca_id; - pd_IdentityId_t holder; -} pd_capitaldistribution_push_benefit_V4_t; - -#define PD_CALL_CAPITALDISTRIBUTION_RECLAIM_V4 3 -typedef struct { - pd_CAId_t ca_id; -} pd_capitaldistribution_reclaim_V4_t; - -#define PD_CALL_CAPITALDISTRIBUTION_REMOVE_DISTRIBUTION_V4 4 -typedef struct { - pd_CAId_t ca_id; -} pd_capitaldistribution_remove_distribution_V4_t; - -#define PD_CALL_CHECKPOINT_CREATE_CHECKPOINT_V4 0 -typedef struct { - pd_Ticker_t ticker; -} pd_checkpoint_create_checkpoint_V4_t; - -#define PD_CALL_CHECKPOINT_SET_SCHEDULES_MAX_COMPLEXITY_V4 1 -typedef struct { - pd_u64_t max_complexity; -} pd_checkpoint_set_schedules_max_complexity_V4_t; - -#define PD_CALL_CHECKPOINT_CREATE_SCHEDULE_V4 2 -typedef struct { - pd_Ticker_t ticker; - pd_ScheduleCheckpoints_t schedule; -} pd_checkpoint_create_schedule_V4_t; - -#define PD_CALL_CHECKPOINT_REMOVE_SCHEDULE_V4 3 -typedef struct { - pd_Ticker_t ticker; - pd_ScheduleId_t id; -} pd_checkpoint_remove_schedule_V4_t; - -#define PD_CALL_COMPLIANCEMANAGER_ADD_COMPLIANCE_REQUIREMENT_V4 0 -typedef struct { - pd_Ticker_t ticker; - pd_VecCondition_t sender_conditions; - pd_VecCondition_t receiver_conditions; -} pd_compliancemanager_add_compliance_requirement_V4_t; - -#define PD_CALL_COMPLIANCEMANAGER_REMOVE_COMPLIANCE_REQUIREMENT_V4 1 -typedef struct { - pd_Ticker_t ticker; - pd_u32_t id; -} pd_compliancemanager_remove_compliance_requirement_V4_t; - -#define PD_CALL_COMPLIANCEMANAGER_REPLACE_ASSET_COMPLIANCE_V4 2 -typedef struct { - pd_Ticker_t ticker; - pd_VecComplianceRequirement_t asset_compliance; -} pd_compliancemanager_replace_asset_compliance_V4_t; - -#define PD_CALL_COMPLIANCEMANAGER_RESET_ASSET_COMPLIANCE_V4 3 -typedef struct { - pd_Ticker_t ticker; -} pd_compliancemanager_reset_asset_compliance_V4_t; - -#define PD_CALL_COMPLIANCEMANAGER_PAUSE_ASSET_COMPLIANCE_V4 4 -typedef struct { - pd_Ticker_t ticker; -} pd_compliancemanager_pause_asset_compliance_V4_t; - -#define PD_CALL_COMPLIANCEMANAGER_RESUME_ASSET_COMPLIANCE_V4 5 -typedef struct { - pd_Ticker_t ticker; -} pd_compliancemanager_resume_asset_compliance_V4_t; - -#define PD_CALL_COMPLIANCEMANAGER_ADD_DEFAULT_TRUSTED_CLAIM_ISSUER_V4 6 -typedef struct { - pd_Ticker_t ticker; - pd_TrustedIssuer_t issuer; -} pd_compliancemanager_add_default_trusted_claim_issuer_V4_t; - -#define PD_CALL_COMPLIANCEMANAGER_REMOVE_DEFAULT_TRUSTED_CLAIM_ISSUER_V4 7 -typedef struct { - pd_Ticker_t ticker; - pd_IdentityId_t issuer; -} pd_compliancemanager_remove_default_trusted_claim_issuer_V4_t; - -#define PD_CALL_COMPLIANCEMANAGER_CHANGE_COMPLIANCE_REQUIREMENT_V4 8 -typedef struct { - pd_Ticker_t ticker; - pd_ComplianceRequirement_t new_req; -} pd_compliancemanager_change_compliance_requirement_V4_t; - -#define PD_CALL_PIPS_SET_PRUNE_HISTORICAL_PIPS_V4 0 -typedef struct { - pd_bool_t prune; -} pd_pips_set_prune_historical_pips_V4_t; - -#define PD_CALL_PIPS_SET_MIN_PROPOSAL_DEPOSIT_V4 1 -typedef struct { - pd_Balance_t deposit; -} pd_pips_set_min_proposal_deposit_V4_t; - -#define PD_CALL_PIPS_SET_DEFAULT_ENACTMENT_PERIOD_V4 2 -typedef struct { - pd_BlockNumber_t duration; -} pd_pips_set_default_enactment_period_V4_t; - -#define PD_CALL_PIPS_SET_PENDING_PIP_EXPIRY_V4 3 -typedef struct { - pd_MaybeBlockBlockNumber_t expiry; -} pd_pips_set_pending_pip_expiry_V4_t; - -#define PD_CALL_PIPS_SET_MAX_PIP_SKIP_COUNT_V4 4 -typedef struct { - pd_SkippedCount_t max; -} pd_pips_set_max_pip_skip_count_V4_t; - -#define PD_CALL_PIPS_SET_ACTIVE_PIP_LIMIT_V4 5 -typedef struct { - pd_u32_t limit; -} pd_pips_set_active_pip_limit_V4_t; - -#define PD_CALL_PIPS_APPROVE_COMMITTEE_PROPOSAL_V4 8 -typedef struct { - pd_PipId_t id; -} pd_pips_approve_committee_proposal_V4_t; - -#define PD_CALL_PIPS_REJECT_PROPOSAL_V4 9 -typedef struct { - pd_PipId_t id; -} pd_pips_reject_proposal_V4_t; - -#define PD_CALL_PIPS_PRUNE_PROPOSAL_V4 10 -typedef struct { - pd_PipId_t id; -} pd_pips_prune_proposal_V4_t; - -#define PD_CALL_PIPS_RESCHEDULE_EXECUTION_V4 11 -typedef struct { - pd_PipId_t id; - pd_OptionBlockNumber_t until; -} pd_pips_reschedule_execution_V4_t; - -#define PD_CALL_PIPS_CLEAR_SNAPSHOT_V4 12 -typedef struct { -} pd_pips_clear_snapshot_V4_t; - -#define PD_CALL_PIPS_SNAPSHOT_V4 13 -typedef struct { -} pd_pips_snapshot_V4_t; - -#define PD_CALL_PIPS_EXECUTE_SCHEDULED_PIP_V4 15 -typedef struct { - pd_PipId_t id; -} pd_pips_execute_scheduled_pip_V4_t; - -#define PD_CALL_PIPS_EXPIRE_SCHEDULED_PIP_V4 16 -typedef struct { - pd_IdentityId_t did; - pd_PipId_t id; -} pd_pips_expire_scheduled_pip_V4_t; - -#define PD_CALL_PORTFOLIO_CREATE_PORTFOLIO_V4 0 -typedef struct { - pd_PortfolioName_t name; -} pd_portfolio_create_portfolio_V4_t; - -#define PD_CALL_PORTFOLIO_DELETE_PORTFOLIO_V4 1 -typedef struct { - pd_PortfolioNumber_t num; -} pd_portfolio_delete_portfolio_V4_t; - -#define PD_CALL_PORTFOLIO_RENAME_PORTFOLIO_V4 2 -typedef struct { - pd_PortfolioNumber_t num; - pd_PortfolioName_t to_name; -} pd_portfolio_rename_portfolio_V4_t; - -#define PD_CALL_PORTFOLIO_MOVE_PORTFOLIO_FUNDS_V4 5 -typedef struct { - pd_PortfolioId_t from; - pd_PortfolioId_t to; - pd_VecFund_t funds; -} pd_portfolio_move_portfolio_funds_V4_t; - -#define PD_CALL_PROTOCOLFEE_CHANGE_COEFFICIENT_V4 0 -typedef struct { - pd_PosRatio_t coefficient; -} pd_protocolfee_change_coefficient_V4_t; - -#define PD_CALL_SETTLEMENT_CREATE_VENUE_V4 0 -typedef struct { - pd_VenueDetails_t details; - pd_VecAccountId_t signers; - pd_VenueType_t typ; -} pd_settlement_create_venue_V4_t; - -#define PD_CALL_SETTLEMENT_AFFIRM_WITH_RECEIPTS_V4 3 -typedef struct { - pd_InstructionId_t id; - pd_VecReceiptDetails_t receipt_details; - pd_VecPortfolioId_t portfolios; -} pd_settlement_affirm_with_receipts_V4_t; - -#define PD_CALL_SETTLEMENT_SET_VENUE_FILTERING_V4 4 -typedef struct { - pd_Ticker_t ticker; - pd_bool_t enabled; -} pd_settlement_set_venue_filtering_V4_t; - -#define PD_CALL_SETTLEMENT_ALLOW_VENUES_V4 5 -typedef struct { - pd_Ticker_t ticker; - pd_VecVenueId_t venues; -} pd_settlement_allow_venues_V4_t; - -#define PD_CALL_SETTLEMENT_DISALLOW_VENUES_V4 6 -typedef struct { - pd_Ticker_t ticker; - pd_VecVenueId_t venues; -} pd_settlement_disallow_venues_V4_t; - -#define PD_CALL_SETTLEMENT_ADD_INSTRUCTION_V4 9 -typedef struct { - pd_VenueId_t venue_id; - pd_SettlementTypeBlockNumber_t settlement_type; - pd_OptionMoment_t trade_date; - pd_OptionMoment_t value_date; - pd_VecLeg_t legs; - pd_OptionMemo_t instruction_memo; -} pd_settlement_add_instruction_V4_t; - -#define PD_CALL_SETTLEMENT_ADD_AND_AFFIRM_INSTRUCTION_V4 10 -typedef struct { - pd_VenueId_t venue_id; - pd_SettlementTypeBlockNumber_t settlement_type; - pd_OptionMoment_t trade_date; - pd_OptionMoment_t value_date; - pd_VecLeg_t legs; - pd_VecPortfolioId_t portfolios; - pd_OptionMemo_t instruction_memo; -} pd_settlement_add_and_affirm_instruction_V4_t; - -#define PD_CALL_SETTLEMENT_AFFIRM_INSTRUCTION_V4 11 -typedef struct { - pd_InstructionId_t id; - pd_VecPortfolioId_t portfolios; -} pd_settlement_affirm_instruction_V4_t; - -#define PD_CALL_SETTLEMENT_WITHDRAW_AFFIRMATION_V4 12 -typedef struct { - pd_InstructionId_t id; - pd_VecPortfolioId_t portfolios; -} pd_settlement_withdraw_affirmation_V4_t; - -#define PD_CALL_SETTLEMENT_REJECT_INSTRUCTION_V4 13 -typedef struct { - pd_InstructionId_t id; - pd_PortfolioId_t portfolio; -} pd_settlement_reject_instruction_V4_t; - -#define PD_CALL_SETTLEMENT_EXECUTE_SCHEDULED_INSTRUCTION_V4 14 -typedef struct { - pd_InstructionId_t id; - pd_Weight_t weight_limit; -} pd_settlement_execute_scheduled_instruction_V4_t; - -#define PD_CALL_TREASURY_DISBURSEMENT_V4 0 -typedef struct { - pd_VecBeneficiary_t beneficiaries; -} pd_treasury_disbursement_V4_t; - -#define PD_CALL_TREASURY_REIMBURSEMENT_V4 1 -typedef struct { - pd_Balance_t amount; -} pd_treasury_reimbursement_V4_t; - -#define PD_CALL_UTILITY_RELAY_TX_V4 1 -typedef struct { - pd_AccountId_t target; - pd_OffChainSignature_t signature; - pd_UniqueCall_t call; -} pd_utility_relay_tx_V4_t; - -#define PD_CALL_CONTRACTS_CALL_V4 6 -typedef struct { - pd_AccountIdLookupOfT_t dest; - pd_CompactBalance_t amount; - pd_Weight_t gas_limit; - pd_OptionCompactBalanceOf_t storage_deposit_limit; - pd_Bytes_t data; -} pd_contracts_call_V4_t; - -#define PD_CALL_CONTRACTS_INSTANTIATE_V4 8 -typedef struct { - pd_CompactBalance_t amount; - pd_Weight_t gas_limit; - pd_OptionCompactBalanceOf_t storage_deposit_limit; - pd_CodeHash_t code_hash; - pd_Bytes_t data; - pd_Bytes_t salt; -} pd_contracts_instantiate_V4_t; - -#endif - -typedef union { - pd_balances_transfer_V4_t balances_transfer_V4; - pd_balances_transfer_with_memo_V4_t balances_transfer_with_memo_V4; - pd_identity_accept_primary_key_V4_t identity_accept_primary_key_V4; - pd_identity_join_identity_as_key_V4_t identity_join_identity_as_key_V4; - pd_identity_leave_identity_as_key_V4_t identity_leave_identity_as_key_V4; - pd_identity_add_claim_V4_t identity_add_claim_V4; - pd_identity_revoke_claim_V4_t identity_revoke_claim_V4; - pd_identity_freeze_secondary_keys_V4_t identity_freeze_secondary_keys_V4; - pd_identity_unfreeze_secondary_keys_V4_t identity_unfreeze_secondary_keys_V4; - pd_identity_add_authorization_V4_t identity_add_authorization_V4; - pd_identity_remove_authorization_V4_t identity_remove_authorization_V4; - pd_identity_add_secondary_keys_with_authorization_V4_t identity_add_secondary_keys_with_authorization_V4; - pd_identity_remove_secondary_keys_V4_t identity_remove_secondary_keys_V4; - pd_multisig_create_multisig_V4_t multisig_create_multisig_V4; - pd_multisig_create_or_approve_proposal_as_key_V4_t multisig_create_or_approve_proposal_as_key_V4; - pd_multisig_create_proposal_as_key_V4_t multisig_create_proposal_as_key_V4; - pd_multisig_approve_as_key_V4_t multisig_approve_as_key_V4; - pd_multisig_reject_as_key_V4_t multisig_reject_as_key_V4; - pd_multisig_accept_multisig_signer_as_key_V4_t multisig_accept_multisig_signer_as_key_V4; - pd_multisig_add_multisig_signer_V4_t multisig_add_multisig_signer_V4; - pd_multisig_remove_multisig_signer_V4_t multisig_remove_multisig_signer_V4; - pd_multisig_add_multisig_signers_via_creator_V4_t multisig_add_multisig_signers_via_creator_V4; - pd_multisig_remove_multisig_signers_via_creator_V4_t multisig_remove_multisig_signers_via_creator_V4; - pd_multisig_change_sigs_required_V4_t multisig_change_sigs_required_V4; - pd_multisig_make_multisig_primary_V4_t multisig_make_multisig_primary_V4; - pd_staking_bond_V4_t staking_bond_V4; - pd_staking_bond_extra_V4_t staking_bond_extra_V4; - pd_staking_unbond_V4_t staking_unbond_V4; - pd_staking_withdraw_unbonded_V4_t staking_withdraw_unbonded_V4; - pd_staking_validate_V4_t staking_validate_V4; - pd_staking_nominate_V4_t staking_nominate_V4; - pd_staking_chill_V4_t staking_chill_V4; - pd_staking_set_payee_V4_t staking_set_payee_V4; - pd_staking_set_controller_V4_t staking_set_controller_V4; - pd_staking_rebond_V4_t staking_rebond_V4; - pd_pips_propose_V4_t pips_propose_V4; - pd_pips_vote_V4_t pips_vote_V4; - pd_utility_batch_V4_t utility_batch_V4; - pd_utility_batch_atomic_V4_t utility_batch_atomic_V4; - pd_utility_batch_optimistic_V4_t utility_batch_optimistic_V4; -#ifdef SUBSTRATE_PARSER_FULL -#ifndef TARGET_NANOS - pd_corporateaction_set_max_details_length_V4_t corporateaction_set_max_details_length_V4; - pd_corporateaction_set_default_targets_V4_t corporateaction_set_default_targets_V4; - pd_corporateaction_set_default_withholding_tax_V4_t corporateaction_set_default_withholding_tax_V4; - pd_corporateaction_set_did_withholding_tax_V4_t corporateaction_set_did_withholding_tax_V4; - pd_corporateaction_initiate_corporate_action_V4_t corporateaction_initiate_corporate_action_V4; - pd_corporateaction_link_ca_doc_V4_t corporateaction_link_ca_doc_V4; - pd_corporateaction_remove_ca_V4_t corporateaction_remove_ca_V4; - pd_corporateaction_change_record_date_V4_t corporateaction_change_record_date_V4; - pd_corporateaction_initiate_corporate_action_and_distribute_V4_t corporateaction_initiate_corporate_action_and_distribute_V4; - pd_corporateballot_attach_ballot_V4_t corporateballot_attach_ballot_V4; - pd_corporateballot_vote_V4_t corporateballot_vote_V4; - pd_corporateballot_change_end_V4_t corporateballot_change_end_V4; - pd_corporateballot_change_meta_V4_t corporateballot_change_meta_V4; - pd_corporateballot_change_rcv_V4_t corporateballot_change_rcv_V4; - pd_corporateballot_remove_ballot_V4_t corporateballot_remove_ballot_V4; - pd_pips_enact_snapshot_results_V4_t pips_enact_snapshot_results_V4; -#endif - pd_system_remark_V4_t system_remark_V4; - pd_system_set_heap_pages_V4_t system_set_heap_pages_V4; - pd_system_set_code_V4_t system_set_code_V4; - pd_system_set_code_without_checks_V4_t system_set_code_without_checks_V4; - pd_system_remark_with_event_V4_t system_remark_with_event_V4; - pd_timestamp_set_V4_t timestamp_set_V4; - pd_indices_claim_V4_t indices_claim_V4; - pd_indices_transfer_V4_t indices_transfer_V4; - pd_indices_free_V4_t indices_free_V4; - pd_indices_force_transfer_V4_t indices_force_transfer_V4; - pd_indices_freeze_V4_t indices_freeze_V4; - pd_balances_deposit_block_reward_reserve_balance_V4_t balances_deposit_block_reward_reserve_balance_V4; - pd_balances_set_balance_V4_t balances_set_balance_V4; - pd_balances_force_transfer_V4_t balances_force_transfer_V4; - pd_balances_burn_account_balance_V4_t balances_burn_account_balance_V4; - pd_identity_cdd_register_did_V4_t identity_cdd_register_did_V4; - pd_identity_invalidate_cdd_claims_V4_t identity_invalidate_cdd_claims_V4; - pd_identity_change_cdd_requirement_for_mk_rotation_V4_t identity_change_cdd_requirement_for_mk_rotation_V4; - pd_identity_gc_add_cdd_claim_V4_t identity_gc_add_cdd_claim_V4; - pd_identity_gc_revoke_cdd_claim_V4_t identity_gc_revoke_cdd_claim_V4; - pd_identity_revoke_claim_by_index_V4_t identity_revoke_claim_by_index_V4; - pd_identity_rotate_primary_key_to_secondary_V4_t identity_rotate_primary_key_to_secondary_V4; - pd_identity_set_secondary_key_permissions_V4_t identity_set_secondary_key_permissions_V4; - pd_identity_register_custom_claim_type_V4_t identity_register_custom_claim_type_V4; - pd_identity_cdd_register_did_with_cdd_V4_t identity_cdd_register_did_with_cdd_V4; - pd_identity_create_child_identity_V4_t identity_create_child_identity_V4; - pd_identity_create_child_identities_V4_t identity_create_child_identities_V4; - pd_identity_unlink_child_identity_V4_t identity_unlink_child_identity_V4; - pd_cddserviceproviders_set_active_members_limit_V4_t cddserviceproviders_set_active_members_limit_V4; - pd_cddserviceproviders_disable_member_V4_t cddserviceproviders_disable_member_V4; - pd_cddserviceproviders_add_member_V4_t cddserviceproviders_add_member_V4; - pd_cddserviceproviders_remove_member_V4_t cddserviceproviders_remove_member_V4; - pd_cddserviceproviders_swap_member_V4_t cddserviceproviders_swap_member_V4; - pd_cddserviceproviders_reset_members_V4_t cddserviceproviders_reset_members_V4; - pd_cddserviceproviders_abdicate_membership_V4_t cddserviceproviders_abdicate_membership_V4; - pd_polymeshcommittee_set_vote_threshold_V4_t polymeshcommittee_set_vote_threshold_V4; - pd_polymeshcommittee_set_release_coordinator_V4_t polymeshcommittee_set_release_coordinator_V4; - pd_polymeshcommittee_set_expires_after_V4_t polymeshcommittee_set_expires_after_V4; - pd_polymeshcommittee_vote_or_propose_V4_t polymeshcommittee_vote_or_propose_V4; - pd_polymeshcommittee_vote_V4_t polymeshcommittee_vote_V4; - pd_committeemembership_set_active_members_limit_V4_t committeemembership_set_active_members_limit_V4; - pd_committeemembership_disable_member_V4_t committeemembership_disable_member_V4; - pd_committeemembership_add_member_V4_t committeemembership_add_member_V4; - pd_committeemembership_remove_member_V4_t committeemembership_remove_member_V4; - pd_committeemembership_swap_member_V4_t committeemembership_swap_member_V4; - pd_committeemembership_reset_members_V4_t committeemembership_reset_members_V4; - pd_committeemembership_abdicate_membership_V4_t committeemembership_abdicate_membership_V4; - pd_technicalcommittee_set_vote_threshold_V4_t technicalcommittee_set_vote_threshold_V4; - pd_technicalcommittee_set_release_coordinator_V4_t technicalcommittee_set_release_coordinator_V4; - pd_technicalcommittee_set_expires_after_V4_t technicalcommittee_set_expires_after_V4; - pd_technicalcommittee_vote_or_propose_V4_t technicalcommittee_vote_or_propose_V4; - pd_technicalcommittee_vote_V4_t technicalcommittee_vote_V4; - pd_technicalcommitteemembership_set_active_members_limit_V4_t technicalcommitteemembership_set_active_members_limit_V4; - pd_technicalcommitteemembership_disable_member_V4_t technicalcommitteemembership_disable_member_V4; - pd_technicalcommitteemembership_add_member_V4_t technicalcommitteemembership_add_member_V4; - pd_technicalcommitteemembership_remove_member_V4_t technicalcommitteemembership_remove_member_V4; - pd_technicalcommitteemembership_swap_member_V4_t technicalcommitteemembership_swap_member_V4; - pd_technicalcommitteemembership_reset_members_V4_t technicalcommitteemembership_reset_members_V4; - pd_technicalcommitteemembership_abdicate_membership_V4_t technicalcommitteemembership_abdicate_membership_V4; - pd_upgradecommittee_set_vote_threshold_V4_t upgradecommittee_set_vote_threshold_V4; - pd_upgradecommittee_set_release_coordinator_V4_t upgradecommittee_set_release_coordinator_V4; - pd_upgradecommittee_set_expires_after_V4_t upgradecommittee_set_expires_after_V4; - pd_upgradecommittee_vote_or_propose_V4_t upgradecommittee_vote_or_propose_V4; - pd_upgradecommittee_vote_V4_t upgradecommittee_vote_V4; - pd_upgradecommitteemembership_set_active_members_limit_V4_t upgradecommitteemembership_set_active_members_limit_V4; - pd_upgradecommitteemembership_disable_member_V4_t upgradecommitteemembership_disable_member_V4; - pd_upgradecommitteemembership_add_member_V4_t upgradecommitteemembership_add_member_V4; - pd_upgradecommitteemembership_remove_member_V4_t upgradecommitteemembership_remove_member_V4; - pd_upgradecommitteemembership_swap_member_V4_t upgradecommitteemembership_swap_member_V4; - pd_upgradecommitteemembership_reset_members_V4_t upgradecommitteemembership_reset_members_V4; - pd_upgradecommitteemembership_abdicate_membership_V4_t upgradecommitteemembership_abdicate_membership_V4; - pd_multisig_create_or_approve_proposal_as_identity_V4_t multisig_create_or_approve_proposal_as_identity_V4; - pd_multisig_create_proposal_as_identity_V4_t multisig_create_proposal_as_identity_V4; - pd_multisig_approve_as_identity_V4_t multisig_approve_as_identity_V4; - pd_multisig_reject_as_identity_V4_t multisig_reject_as_identity_V4; - pd_multisig_accept_multisig_signer_as_identity_V4_t multisig_accept_multisig_signer_as_identity_V4; - pd_multisig_make_multisig_secondary_V4_t multisig_make_multisig_secondary_V4; - pd_multisig_execute_scheduled_proposal_V4_t multisig_execute_scheduled_proposal_V4; - pd_multisig_change_sigs_required_via_creator_V4_t multisig_change_sigs_required_via_creator_V4; - pd_multisig_remove_creator_controls_V4_t multisig_remove_creator_controls_V4; - pd_bridge_change_controller_V4_t bridge_change_controller_V4; - pd_bridge_change_admin_V4_t bridge_change_admin_V4; - pd_bridge_change_timelock_V4_t bridge_change_timelock_V4; - pd_bridge_freeze_V4_t bridge_freeze_V4; - pd_bridge_unfreeze_V4_t bridge_unfreeze_V4; - pd_bridge_change_bridge_limit_V4_t bridge_change_bridge_limit_V4; - pd_bridge_change_bridge_exempted_V4_t bridge_change_bridge_exempted_V4; - pd_bridge_force_handle_bridge_tx_V4_t bridge_force_handle_bridge_tx_V4; - pd_staking_set_validator_count_V4_t staking_set_validator_count_V4; - pd_staking_increase_validator_count_V4_t staking_increase_validator_count_V4; - pd_staking_scale_validator_count_V4_t staking_scale_validator_count_V4; - pd_staking_add_permissioned_validator_V4_t staking_add_permissioned_validator_V4; - pd_staking_remove_permissioned_validator_V4_t staking_remove_permissioned_validator_V4; - pd_staking_validate_cdd_expiry_nominators_V4_t staking_validate_cdd_expiry_nominators_V4; - pd_staking_set_commission_cap_V4_t staking_set_commission_cap_V4; - pd_staking_set_min_bond_threshold_V4_t staking_set_min_bond_threshold_V4; - pd_staking_force_no_eras_V4_t staking_force_no_eras_V4; - pd_staking_force_new_era_V4_t staking_force_new_era_V4; - pd_staking_set_invulnerables_V4_t staking_set_invulnerables_V4; - pd_staking_force_unstake_V4_t staking_force_unstake_V4; - pd_staking_force_new_era_always_V4_t staking_force_new_era_always_V4; - pd_staking_cancel_deferred_slash_V4_t staking_cancel_deferred_slash_V4; - pd_staking_payout_stakers_V4_t staking_payout_stakers_V4; - pd_staking_set_history_depth_V4_t staking_set_history_depth_V4; - pd_staking_reap_stash_V4_t staking_reap_stash_V4; - pd_staking_payout_stakers_by_system_V4_t staking_payout_stakers_by_system_V4; - pd_staking_change_slashing_allowed_for_V4_t staking_change_slashing_allowed_for_V4; - pd_staking_update_permissioned_validator_intended_count_V4_t staking_update_permissioned_validator_intended_count_V4; - pd_staking_chill_from_governance_V4_t staking_chill_from_governance_V4; - pd_session_set_keys_V4_t session_set_keys_V4; - pd_session_purge_keys_V4_t session_purge_keys_V4; - pd_asset_register_ticker_V4_t asset_register_ticker_V4; - pd_asset_accept_ticker_transfer_V4_t asset_accept_ticker_transfer_V4; - pd_asset_accept_asset_ownership_transfer_V4_t asset_accept_asset_ownership_transfer_V4; - pd_asset_create_asset_V4_t asset_create_asset_V4; - pd_asset_freeze_V4_t asset_freeze_V4; - pd_asset_unfreeze_V4_t asset_unfreeze_V4; - pd_asset_rename_asset_V4_t asset_rename_asset_V4; - pd_asset_issue_V4_t asset_issue_V4; - pd_asset_redeem_V4_t asset_redeem_V4; - pd_asset_make_divisible_V4_t asset_make_divisible_V4; - pd_asset_add_documents_V4_t asset_add_documents_V4; - pd_asset_remove_documents_V4_t asset_remove_documents_V4; - pd_asset_set_funding_round_V4_t asset_set_funding_round_V4; - pd_asset_update_identifiers_V4_t asset_update_identifiers_V4; - pd_capitaldistribution_distribute_V4_t capitaldistribution_distribute_V4; - pd_capitaldistribution_claim_V4_t capitaldistribution_claim_V4; - pd_capitaldistribution_push_benefit_V4_t capitaldistribution_push_benefit_V4; - pd_capitaldistribution_reclaim_V4_t capitaldistribution_reclaim_V4; - pd_capitaldistribution_remove_distribution_V4_t capitaldistribution_remove_distribution_V4; - pd_checkpoint_create_checkpoint_V4_t checkpoint_create_checkpoint_V4; - pd_checkpoint_set_schedules_max_complexity_V4_t checkpoint_set_schedules_max_complexity_V4; - pd_checkpoint_create_schedule_V4_t checkpoint_create_schedule_V4; - pd_checkpoint_remove_schedule_V4_t checkpoint_remove_schedule_V4; - pd_compliancemanager_add_compliance_requirement_V4_t compliancemanager_add_compliance_requirement_V4; - pd_compliancemanager_remove_compliance_requirement_V4_t compliancemanager_remove_compliance_requirement_V4; - pd_compliancemanager_replace_asset_compliance_V4_t compliancemanager_replace_asset_compliance_V4; - pd_compliancemanager_reset_asset_compliance_V4_t compliancemanager_reset_asset_compliance_V4; - pd_compliancemanager_pause_asset_compliance_V4_t compliancemanager_pause_asset_compliance_V4; - pd_compliancemanager_resume_asset_compliance_V4_t compliancemanager_resume_asset_compliance_V4; - pd_compliancemanager_add_default_trusted_claim_issuer_V4_t compliancemanager_add_default_trusted_claim_issuer_V4; - pd_compliancemanager_remove_default_trusted_claim_issuer_V4_t compliancemanager_remove_default_trusted_claim_issuer_V4; - pd_compliancemanager_change_compliance_requirement_V4_t compliancemanager_change_compliance_requirement_V4; - pd_pips_set_prune_historical_pips_V4_t pips_set_prune_historical_pips_V4; - pd_pips_set_min_proposal_deposit_V4_t pips_set_min_proposal_deposit_V4; - pd_pips_set_default_enactment_period_V4_t pips_set_default_enactment_period_V4; - pd_pips_set_pending_pip_expiry_V4_t pips_set_pending_pip_expiry_V4; - pd_pips_set_max_pip_skip_count_V4_t pips_set_max_pip_skip_count_V4; - pd_pips_set_active_pip_limit_V4_t pips_set_active_pip_limit_V4; - pd_pips_approve_committee_proposal_V4_t pips_approve_committee_proposal_V4; - pd_pips_reject_proposal_V4_t pips_reject_proposal_V4; - pd_pips_prune_proposal_V4_t pips_prune_proposal_V4; - pd_pips_reschedule_execution_V4_t pips_reschedule_execution_V4; - pd_pips_clear_snapshot_V4_t pips_clear_snapshot_V4; - pd_pips_snapshot_V4_t pips_snapshot_V4; - pd_pips_execute_scheduled_pip_V4_t pips_execute_scheduled_pip_V4; - pd_pips_expire_scheduled_pip_V4_t pips_expire_scheduled_pip_V4; - pd_portfolio_create_portfolio_V4_t portfolio_create_portfolio_V4; - pd_portfolio_delete_portfolio_V4_t portfolio_delete_portfolio_V4; - pd_portfolio_rename_portfolio_V4_t portfolio_rename_portfolio_V4; - pd_portfolio_move_portfolio_funds_V4_t portfolio_move_portfolio_funds_V4; - pd_protocolfee_change_coefficient_V4_t protocolfee_change_coefficient_V4; - pd_settlement_create_venue_V4_t settlement_create_venue_V4; - pd_settlement_affirm_with_receipts_V4_t settlement_affirm_with_receipts_V4; - pd_settlement_set_venue_filtering_V4_t settlement_set_venue_filtering_V4; - pd_settlement_allow_venues_V4_t settlement_allow_venues_V4; - pd_settlement_disallow_venues_V4_t settlement_disallow_venues_V4; - pd_settlement_add_instruction_V4_t settlement_add_instruction_V4; - pd_settlement_add_and_affirm_instruction_V4_t settlement_add_and_affirm_instruction_V4; - pd_settlement_affirm_instruction_V4_t settlement_affirm_instruction_V4; - pd_settlement_withdraw_affirmation_V4_t settlement_withdraw_affirmation_V4; - pd_settlement_reject_instruction_V4_t settlement_reject_instruction_V4; - pd_settlement_execute_scheduled_instruction_V4_t settlement_execute_scheduled_instruction_V4; - pd_treasury_disbursement_V4_t treasury_disbursement_V4; - pd_treasury_reimbursement_V4_t treasury_reimbursement_V4; - pd_utility_relay_tx_V4_t utility_relay_tx_V4; - pd_contracts_call_V4_t contracts_call_V4; - pd_contracts_instantiate_V4_t contracts_instantiate_V4; -#endif -} pd_MethodNested_V4_t; - -typedef union { - pd_MethodBasic_V4_t basic; - pd_MethodNested_V4_t nested; -} pd_Method_V4_t; - -#ifdef __cplusplus -} -#pragma clang diagnostic pop -#endif diff --git a/app/src/substrate/substrate_methods_V7.h b/app/src/substrate/substrate_methods_V7.h new file mode 100644 index 0000000..0eff1c4 --- /dev/null +++ b/app/src/substrate/substrate_methods_V7.h @@ -0,0 +1,2300 @@ +/******************************************************************************* + * (c) 2019 - 2024 Zondax AG + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + ********************************************************************************/ +#pragma once + +#ifdef __cplusplus +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wextern-c-compat" + +extern "C" { +#endif + +#include "substrate_types.h" +#include "substrate_types_V7.h" +#include +#include +#ifdef LEDGER_SPECIFIC +#include "bolos_target.h" +#endif + +#define PD_CALL_SYSTEM_V7 0 +#define PD_CALL_TIMESTAMP_V7 2 +#define PD_CALL_INDICES_V7 3 +#define PD_CALL_BALANCES_V7 5 +#define PD_CALL_IDENTITY_V7 7 +#define PD_CALL_CDDSERVICEPROVIDERS_V7 8 +#define PD_CALL_POLYMESHCOMMITTEE_V7 9 +#define PD_CALL_COMMITTEEMEMBERSHIP_V7 10 +#define PD_CALL_TECHNICALCOMMITTEE_V7 11 +#define PD_CALL_TECHNICALCOMMITTEEMEMBERSHIP_V7 12 +#define PD_CALL_UPGRADECOMMITTEE_V7 13 +#define PD_CALL_UPGRADECOMMITTEEMEMBERSHIP_V7 14 +#define PD_CALL_MULTISIG_V7 15 +#define PD_CALL_STAKING_V7 17 +#define PD_CALL_SESSION_V7 19 +#define PD_CALL_SUDO_V7 25 +#define PD_CALL_ASSET_V7 26 +#define PD_CALL_CAPITALDISTRIBUTION_V7 27 +#define PD_CALL_CHECKPOINT_V7 28 +#define PD_CALL_COMPLIANCEMANAGER_V7 29 +#define PD_CALL_CORPORATEACTION_V7 30 +#define PD_CALL_CORPORATEBALLOT_V7 31 +#define PD_CALL_PIPS_V7 33 +#define PD_CALL_PORTFOLIO_V7 34 +#define PD_CALL_PROTOCOLFEE_V7 35 +#define PD_CALL_SETTLEMENT_V7 37 +#define PD_CALL_STO_V7 39 +#define PD_CALL_TREASURY_V7 40 +#define PD_CALL_UTILITY_V7 41 +#define PD_CALL_EXTERNALAGENTS_V7 43 +#define PD_CALL_RELAYER_V7 44 +#define PD_CALL_CONTRACTS_V7 46 +#define PD_CALL_POLYMESHCONTRACTS_V7 47 +#define PD_CALL_PREIMAGE_V7 48 +#define PD_CALL_NFT_V7 49 +#define PD_CALL_ELECTIONPROVIDERMULTIPHASE_V7 50 + +#ifdef SUBSTRATE_PARSER_FULL +#ifndef TARGET_NANOS +#define PD_CALL_ASSET_ADD_MANDATORY_MEDIATORS_V7 29 +typedef struct { + pd_AssetID_t asset_id; + pd_BoundedBTreeSetIdentityIdMaxAssetMediators_t mediators; +} pd_asset_add_mandatory_mediators_V7_t; +#define PD_CALL_ASSET_REMOVE_MANDATORY_MEDIATORS_V7 30 +typedef struct { + pd_AssetID_t asset_id; + pd_BoundedBTreeSetIdentityIdMaxAssetMediators_t mediators; +} pd_asset_remove_mandatory_mediators_V7_t; +#define PD_CALL_PORTFOLIO_ALLOW_IDENTITY_TO_CREATE_PORTFOLIOS_V7 8 +typedef struct { + pd_IdentityId_t trusted_identity; +} pd_portfolio_allow_identity_to_create_portfolios_V7_t; +#define PD_CALL_PORTFOLIO_REVOKE_CREATE_PORTFOLIOS_PERMISSION_V7 9 +typedef struct { + pd_IdentityId_t identity; +} pd_portfolio_revoke_create_portfolios_permission_V7_t; +#define PD_CALL_PORTFOLIO_CREATE_CUSTODY_PORTFOLIO_V7 10 +typedef struct { + pd_IdentityId_t portfolio_owner_id; + pd_PortfolioName_t portfolio_name; +} pd_portfolio_create_custody_portfolio_V7_t; +#define PD_CALL_SETTLEMENT_AFFIRM_WITH_RECEIPTS_WITH_COUNT_V7 15 +typedef struct { + pd_InstructionId_t id; + pd_VecReceiptDetails_t receipt_details; + pd_VecPortfolioId_t portfolios; + pd_OptionAffirmationCount_t number_of_assets; +} pd_settlement_affirm_with_receipts_with_count_V7_t; +#define PD_CALL_SETTLEMENT_AFFIRM_INSTRUCTION_WITH_COUNT_V7 16 +typedef struct { + pd_InstructionId_t id; + pd_VecPortfolioId_t portfolios; + pd_OptionAffirmationCount_t number_of_assets; +} pd_settlement_affirm_instruction_with_count_V7_t; +#define PD_CALL_SETTLEMENT_REJECT_INSTRUCTION_WITH_COUNT_V7 17 +typedef struct { + pd_InstructionId_t id; + pd_PortfolioId_t portfolio; + pd_OptionAssetCount_t number_of_assets; +} pd_settlement_reject_instruction_with_count_V7_t; +#define PD_CALL_SETTLEMENT_WITHDRAW_AFFIRMATION_WITH_COUNT_V7 18 +typedef struct { + pd_InstructionId_t id; + pd_VecPortfolioId_t portfolios; + pd_OptionAffirmationCount_t number_of_assets; +} pd_settlement_withdraw_affirmation_with_count_V7_t; +#define PD_CALL_SETTLEMENT_ADD_INSTRUCTION_WITH_MEDIATORS_V7 19 +typedef struct { + pd_OptionVenueId_t venue_id; + pd_SettlementTypeBlockNumber_t settlement_type; + pd_OptionMoment_t trade_date; + pd_OptionMoment_t value_date; + pd_VecLeg_t legs; + pd_OptionMemo_t instruction_memo; + pd_BoundedBTreeSetIdentityIdMaxInstructionMediators_t mediators; +} pd_settlement_add_instruction_with_mediators_V7_t; +#define PD_CALL_SETTLEMENT_ADD_AND_AFFIRM_WITH_MEDIATORS_V7 20 +typedef struct { + pd_OptionVenueId_t venue_id; + pd_SettlementTypeBlockNumber_t settlement_type; + pd_OptionMoment_t trade_date; + pd_OptionMoment_t value_date; + pd_VecLeg_t legs; + pd_VecPortfolioId_t portfolios; + pd_OptionMemo_t instruction_memo; + pd_BoundedBTreeSetIdentityIdMaxInstructionMediators_t mediators; +} pd_settlement_add_and_affirm_with_mediators_V7_t; +#define PD_CALL_SETTLEMENT_AFFIRM_INSTRUCTION_AS_MEDIATOR_V7 21 +typedef struct { + pd_InstructionId_t instruction_id; + pd_OptionMoment_t expiry; +} pd_settlement_affirm_instruction_as_mediator_V7_t; +#define PD_CALL_SETTLEMENT_WITHDRAW_AFFIRMATION_AS_MEDIATOR_V7 22 +typedef struct { + pd_InstructionId_t instruction_id; +} pd_settlement_withdraw_affirmation_as_mediator_V7_t; +#define PD_CALL_SETTLEMENT_REJECT_INSTRUCTION_AS_MEDIATOR_V7 23 +typedef struct { + pd_InstructionId_t instruction_id; + pd_OptionAssetCount_t number_of_assets; +} pd_settlement_reject_instruction_as_mediator_V7_t; +#define PD_CALL_NFT_CONTROLLER_TRANSFER_V7 3 +typedef struct { + pd_NFTs_t nfts; + pd_PortfolioId_t source_portfolio; + pd_PortfolioKind_t callers_portfolio_kind; +} pd_nft_controller_transfer_V7_t; +#endif + +#define PD_CALL_SUDO_SUDO_V7 0 +typedef struct { + pd_Call_t call; +} pd_sudo_sudo_V7_t; + +#define PD_CALL_SUDO_SUDO_UNCHECKED_WEIGHT_V7 1 +typedef struct { + pd_Call_t call; + pd_Weight_t _weight; +} pd_sudo_sudo_unchecked_weight_V7_t; + +#define PD_CALL_SUDO_SET_KEY_V7 2 +typedef struct { + pd_LookupasStaticLookupSource_t new_; +} pd_sudo_set_key_V7_t; + +#define PD_CALL_SUDO_SUDO_AS_V7 3 +typedef struct { + pd_LookupasStaticLookupSource_t who; + pd_Call_t call; +} pd_sudo_sudo_as_V7_t; + +#define PD_CALL_ASSET_REGISTER_UNIQUE_TICKER_V7 0 +typedef struct { + pd_Ticker_t ticker; +} pd_asset_register_unique_ticker_V7_t; + +#define PD_CALL_ASSET_CONTROLLER_TRANSFER_V7 14 +typedef struct { + pd_AssetID_t asset_id; + pd_BalanceNoSymbol_t amount; + pd_PortfolioId_t from_portfolio; +} pd_asset_controller_transfer_V7_t; + +#define PD_CALL_ASSET_REGISTER_CUSTOM_ASSET_TYPE_V7 15 +typedef struct { + pd_Vecu8_t ty; +} pd_asset_register_custom_asset_type_V7_t; + +#define PD_CALL_ASSET_CREATE_ASSET_WITH_CUSTOM_TYPE_V7 16 +typedef struct { + pd_AssetName_t asset_name; + pd_bool_t divisible; + pd_Vecu8_t custom_asset_type; + pd_VecAssetIdentifier_t asset_identifiers; + pd_OptionFundingRoundName_t funding_round_name; +} pd_asset_create_asset_with_custom_type_V7_t; + +#define PD_CALL_ASSET_SET_ASSET_METADATA_V7 17 +typedef struct { + pd_AssetID_t asset_id; + pd_AssetMetadataKey_t key; + pd_AssetMetadataValue_t value; + pd_OptionAssetMetadataValueDetailMoment_t detail; +} pd_asset_set_asset_metadata_V7_t; + +#define PD_CALL_ASSET_SET_ASSET_METADATA_DETAILS_V7 18 +typedef struct { + pd_AssetID_t asset_id; + pd_AssetMetadataKey_t key; + pd_AssetMetadataValueDetailMoment_t detail; +} pd_asset_set_asset_metadata_details_V7_t; + +#define PD_CALL_ASSET_REGISTER_AND_SET_LOCAL_ASSET_METADATA_V7 19 +typedef struct { + pd_AssetID_t asset_id; + pd_AssetMetadataName_t name; + pd_AssetMetadataSpec_t spec; + pd_AssetMetadataValue_t value; + pd_OptionAssetMetadataValueDetailMoment_t detail; +} pd_asset_register_and_set_local_asset_metadata_V7_t; + +#define PD_CALL_ASSET_REGISTER_ASSET_METADATA_LOCAL_TYPE_V7 20 +typedef struct { + pd_AssetID_t asset_id; + pd_AssetMetadataName_t name; + pd_AssetMetadataSpec_t spec; +} pd_asset_register_asset_metadata_local_type_V7_t; + +#define PD_CALL_ASSET_REGISTER_ASSET_METADATA_GLOBAL_TYPE_V7 21 +typedef struct { + pd_AssetMetadataName_t name; + pd_AssetMetadataSpec_t spec; +} pd_asset_register_asset_metadata_global_type_V7_t; + +#define PD_CALL_ASSET_UPDATE_ASSET_TYPE_V7 22 +typedef struct { + pd_AssetID_t asset_id; + pd_AssetType_t asset_type; +} pd_asset_update_asset_type_V7_t; + +#define PD_CALL_ASSET_REMOVE_LOCAL_METADATA_KEY_V7 23 +typedef struct { + pd_AssetID_t asset_id; + pd_AssetMetadataLocalKey_t local_key; +} pd_asset_remove_local_metadata_key_V7_t; + +#define PD_CALL_ASSET_REMOVE_METADATA_VALUE_V7 24 +typedef struct { + pd_AssetID_t asset_id; + pd_AssetMetadataKey_t metadata_key; +} pd_asset_remove_metadata_value_V7_t; + +#define PD_CALL_ASSET_EXEMPT_ASSET_AFFIRMATION_V7 25 +typedef struct { + pd_AssetID_t asset_id; +} pd_asset_exempt_asset_affirmation_V7_t; + +#define PD_CALL_ASSET_REMOVE_ASSET_AFFIRMATION_EXEMPTION_V7 26 +typedef struct { + pd_AssetID_t asset_id; +} pd_asset_remove_asset_affirmation_exemption_V7_t; + +#define PD_CALL_ASSET_PRE_APPROVE_ASSET_V7 27 +typedef struct { + pd_AssetID_t asset_id; +} pd_asset_pre_approve_asset_V7_t; + +#define PD_CALL_ASSET_REMOVE_ASSET_PRE_APPROVAL_V7 28 +typedef struct { + pd_AssetID_t asset_id; +} pd_asset_remove_asset_pre_approval_V7_t; + +#define PD_CALL_ASSET_LINK_TICKER_TO_ASSET_ID_V7 31 +typedef struct { + pd_Ticker_t ticker; + pd_AssetID_t asset_id; +} pd_asset_link_ticker_to_asset_id_V7_t; + +#define PD_CALL_PORTFOLIO_QUIT_PORTFOLIO_CUSTODY_V7 3 +typedef struct { + pd_PortfolioId_t pid; +} pd_portfolio_quit_portfolio_custody_V7_t; + +#define PD_CALL_PORTFOLIO_ACCEPT_PORTFOLIO_CUSTODY_V7 4 +typedef struct { + pd_u64_t auth_id; +} pd_portfolio_accept_portfolio_custody_V7_t; + +#define PD_CALL_PORTFOLIO_PRE_APPROVE_PORTFOLIO_V7 6 +typedef struct { + pd_AssetID_t asset_id; + pd_PortfolioId_t portfolio_id; +} pd_portfolio_pre_approve_portfolio_V7_t; + +#define PD_CALL_PORTFOLIO_REMOVE_PORTFOLIO_PRE_APPROVAL_V7 7 +typedef struct { + pd_AssetID_t asset_id; + pd_PortfolioId_t portfolio_id; +} pd_portfolio_remove_portfolio_pre_approval_V7_t; + +#define PD_CALL_SETTLEMENT_UPDATE_VENUE_DETAILS_V7 1 +typedef struct { + pd_VenueId_t id; + pd_VenueDetails_t details; +} pd_settlement_update_venue_details_V7_t; + +#define PD_CALL_SETTLEMENT_UPDATE_VENUE_TYPE_V7 2 +typedef struct { + pd_VenueId_t id; + pd_VenueType_t typ; +} pd_settlement_update_venue_type_V7_t; + +#define PD_CALL_SETTLEMENT_UPDATE_VENUE_SIGNERS_V7 7 +typedef struct { + pd_VenueId_t id; + pd_VecAccountId_t signers; + pd_bool_t add_signers; +} pd_settlement_update_venue_signers_V7_t; + +#define PD_CALL_SETTLEMENT_EXECUTE_MANUAL_INSTRUCTION_V7 8 +typedef struct { + pd_InstructionId_t id; + pd_OptionPortfolioId_t portfolio; + pd_u32_t fungible_transfers; + pd_u32_t nfts_transfers; + pd_u32_t offchain_transfers; + pd_OptionWeight_t weight_limit; +} pd_settlement_execute_manual_instruction_V7_t; + +#define PD_CALL_STO_CREATE_FUNDRAISER_V7 0 +typedef struct { + pd_PortfolioId_t offering_portfolio; + pd_AssetID_t offering_asset; + pd_PortfolioId_t raising_portfolio; + pd_AssetID_t raising_asset; + pd_VecPriceTier_t tiers; + pd_VenueId_t venue_id; + pd_OptionMoment_t start; + pd_OptionMoment_t end; + pd_BalanceNoSymbol_t minimum_investment; + pd_FundraiserName_t fundraiser_name; +} pd_sto_create_fundraiser_V7_t; + +#define PD_CALL_STO_INVEST_V7 1 +typedef struct { + pd_PortfolioId_t investment_portfolio; + pd_PortfolioId_t funding_portfolio; + pd_AssetID_t offering_asset; + pd_FundraiserId_t id; + pd_BalanceNoSymbol_t purchase_amount; + pd_OptionBalance_t max_price; + pd_OptionReceiptDetails_t receipt; +} pd_sto_invest_V7_t; + +#define PD_CALL_STO_FREEZE_FUNDRAISER_V7 2 +typedef struct { + pd_AssetID_t offering_asset; + pd_FundraiserId_t id; +} pd_sto_freeze_fundraiser_V7_t; + +#define PD_CALL_STO_UNFREEZE_FUNDRAISER_V7 3 +typedef struct { + pd_AssetID_t offering_asset; + pd_FundraiserId_t id; +} pd_sto_unfreeze_fundraiser_V7_t; + +#define PD_CALL_STO_MODIFY_FUNDRAISER_WINDOW_V7 4 +typedef struct { + pd_AssetID_t offering_asset; + pd_FundraiserId_t id; + pd_Moment_t start; + pd_OptionMoment_t end; +} pd_sto_modify_fundraiser_window_V7_t; + +#define PD_CALL_STO_STOP_V7 5 +typedef struct { + pd_AssetID_t offering_asset; + pd_FundraiserId_t id; +} pd_sto_stop_V7_t; + +#define PD_CALL_UTILITY_BATCH_ALL_V7 2 +typedef struct { + pd_VecCall_t calls; +} pd_utility_batch_all_V7_t; + +#define PD_CALL_UTILITY_DISPATCH_AS_V7 3 +typedef struct { + pd_BoxPalletsOrigin_t as_origin; + pd_Call_t call; +} pd_utility_dispatch_as_V7_t; + +#define PD_CALL_UTILITY_FORCE_BATCH_V7 4 +typedef struct { + pd_VecCall_t calls; +} pd_utility_force_batch_V7_t; + +#define PD_CALL_UTILITY_WITH_WEIGHT_V7 5 +typedef struct { + pd_Call_t call; + pd_Weight_t weight; +} pd_utility_with_weight_V7_t; + +#define PD_CALL_UTILITY_BATCH_OLD_V7 6 +typedef struct { + pd_VecCall_t calls; +} pd_utility_batch_old_V7_t; + +#define PD_CALL_EXTERNALAGENTS_CREATE_GROUP_V7 0 +typedef struct { + pd_AssetID_t asset_id; + pd_ExtrinsicPermissions_t perms; +} pd_externalagents_create_group_V7_t; + +#define PD_CALL_EXTERNALAGENTS_SET_GROUP_PERMISSIONS_V7 1 +typedef struct { + pd_AssetID_t asset_id; + pd_AGId_t id; + pd_ExtrinsicPermissions_t perms; +} pd_externalagents_set_group_permissions_V7_t; + +#define PD_CALL_EXTERNALAGENTS_REMOVE_AGENT_V7 2 +typedef struct { + pd_AssetID_t asset_id; + pd_IdentityId_t agent; +} pd_externalagents_remove_agent_V7_t; + +#define PD_CALL_EXTERNALAGENTS_ABDICATE_V7 3 +typedef struct { + pd_AssetID_t asset_id; +} pd_externalagents_abdicate_V7_t; + +#define PD_CALL_EXTERNALAGENTS_CHANGE_GROUP_V7 4 +typedef struct { + pd_AssetID_t asset_id; + pd_IdentityId_t agent; + pd_AgentGroup_t group; +} pd_externalagents_change_group_V7_t; + +#define PD_CALL_EXTERNALAGENTS_ACCEPT_BECOME_AGENT_V7 5 +typedef struct { + pd_u64_t auth_id; +} pd_externalagents_accept_become_agent_V7_t; + +#define PD_CALL_EXTERNALAGENTS_CREATE_GROUP_AND_ADD_AUTH_V7 6 +typedef struct { + pd_AssetID_t asset_id; + pd_ExtrinsicPermissions_t perms; + pd_IdentityId_t target; + pd_OptionMoment_t expiry; +} pd_externalagents_create_group_and_add_auth_V7_t; + +#define PD_CALL_EXTERNALAGENTS_CREATE_AND_CHANGE_CUSTOM_GROUP_V7 7 +typedef struct { + pd_AssetID_t asset_id; + pd_ExtrinsicPermissions_t perms; + pd_IdentityId_t agent; +} pd_externalagents_create_and_change_custom_group_V7_t; + +#define PD_CALL_RELAYER_SET_PAYING_KEY_V7 0 +typedef struct { + pd_AccountId_t user_key; + pd_Balance_t polyx_limit; +} pd_relayer_set_paying_key_V7_t; + +#define PD_CALL_RELAYER_ACCEPT_PAYING_KEY_V7 1 +typedef struct { + pd_u64_t auth_id; +} pd_relayer_accept_paying_key_V7_t; + +#define PD_CALL_RELAYER_REMOVE_PAYING_KEY_V7 2 +typedef struct { + pd_AccountId_t user_key; + pd_AccountId_t paying_key; +} pd_relayer_remove_paying_key_V7_t; + +#define PD_CALL_RELAYER_UPDATE_POLYX_LIMIT_V7 3 +typedef struct { + pd_AccountId_t user_key; + pd_Balance_t polyx_limit; +} pd_relayer_update_polyx_limit_V7_t; + +#define PD_CALL_RELAYER_INCREASE_POLYX_LIMIT_V7 4 +typedef struct { + pd_AccountId_t user_key; + pd_Balance_t amount; +} pd_relayer_increase_polyx_limit_V7_t; + +#define PD_CALL_RELAYER_DECREASE_POLYX_LIMIT_V7 5 +typedef struct { + pd_AccountId_t user_key; + pd_Balance_t amount; +} pd_relayer_decrease_polyx_limit_V7_t; + +#define PD_CALL_CONTRACTS_CALL_OLD_WEIGHT_V7 0 +typedef struct { + pd_AccountIdLookupOfT_t dest; + pd_CompactBalance_t amount; + pd_Compactu64_t gas_limit; + pd_OptionCompactBalanceOf_t storage_deposit_limit; + pd_Bytes_t data; +} pd_contracts_call_old_weight_V7_t; + +#define PD_CALL_CONTRACTS_INSTANTIATE_WITH_CODE_OLD_WEIGHT_V7 1 +typedef struct { + pd_CompactBalance_t amount; + pd_Compactu64_t gas_limit; + pd_OptionCompactBalanceOf_t storage_deposit_limit; + pd_Bytes_t code; + pd_Bytes_t data; + pd_Bytes_t salt; +} pd_contracts_instantiate_with_code_old_weight_V7_t; + +#define PD_CALL_CONTRACTS_INSTANTIATE_OLD_WEIGHT_V7 2 +typedef struct { + pd_CompactBalance_t amount; + pd_Compactu64_t gas_limit; + pd_OptionCompactBalanceOf_t storage_deposit_limit; + pd_CodeHash_t code_hash; + pd_Bytes_t data; + pd_Bytes_t salt; +} pd_contracts_instantiate_old_weight_V7_t; + +#define PD_CALL_CONTRACTS_UPLOAD_CODE_V7 3 +typedef struct { + pd_Bytes_t code; + pd_OptionCompactBalanceOf_t storage_deposit_limit; + pd_Determinism_t determinism; +} pd_contracts_upload_code_V7_t; + +#define PD_CALL_CONTRACTS_REMOVE_CODE_V7 4 +typedef struct { + pd_CodeHash_t code_hash; +} pd_contracts_remove_code_V7_t; + +#define PD_CALL_CONTRACTS_SET_CODE_V7 5 +typedef struct { + pd_AccountIdLookupOfT_t dest; + pd_CodeHash_t code_hash; +} pd_contracts_set_code_V7_t; + +#define PD_CALL_CONTRACTS_INSTANTIATE_WITH_CODE_V7 7 +typedef struct { + pd_CompactBalance_t amount; + pd_Weight_t gas_limit; + pd_OptionCompactBalanceOf_t storage_deposit_limit; + pd_Bytes_t code; + pd_Bytes_t data; + pd_Bytes_t salt; +} pd_contracts_instantiate_with_code_V7_t; + +#define PD_CALL_POLYMESHCONTRACTS_INSTANTIATE_WITH_CODE_PERMS_V7 0 +typedef struct { + pd_Balance_t endowment; + pd_Weight_t gas_limit; + pd_OptionBalance_t storage_deposit_limit; + pd_Vecu8_t code; + pd_Vecu8_t data; + pd_Vecu8_t salt; + pd_Permissions_t perms; +} pd_polymeshcontracts_instantiate_with_code_perms_V7_t; + +#define PD_CALL_POLYMESHCONTRACTS_INSTANTIATE_WITH_HASH_PERMS_V7 1 +typedef struct { + pd_Balance_t endowment; + pd_Weight_t gas_limit; + pd_OptionBalance_t storage_deposit_limit; + pd_CodeHash_t code_hash; + pd_Vecu8_t data; + pd_Vecu8_t salt; + pd_Permissions_t perms; +} pd_polymeshcontracts_instantiate_with_hash_perms_V7_t; + +#define PD_CALL_POLYMESHCONTRACTS_UPDATE_CALL_RUNTIME_WHITELIST_V7 2 +typedef struct { + pd_VecTupleExtrinsicIdbool_t updates; +} pd_polymeshcontracts_update_call_runtime_whitelist_V7_t; + +#define PD_CALL_POLYMESHCONTRACTS_INSTANTIATE_WITH_CODE_AS_PRIMARY_KEY_V7 3 +typedef struct { + pd_Balance_t endowment; + pd_Weight_t gas_limit; + pd_OptionBalance_t storage_deposit_limit; + pd_Vecu8_t code; + pd_Vecu8_t data; + pd_Vecu8_t salt; +} pd_polymeshcontracts_instantiate_with_code_as_primary_key_V7_t; + +#define PD_CALL_POLYMESHCONTRACTS_INSTANTIATE_WITH_HASH_AS_PRIMARY_KEY_V7 4 +typedef struct { + pd_Balance_t endowment; + pd_Weight_t gas_limit; + pd_OptionBalance_t storage_deposit_limit; + pd_CodeHash_t code_hash; + pd_Vecu8_t data; + pd_Vecu8_t salt; +} pd_polymeshcontracts_instantiate_with_hash_as_primary_key_V7_t; + +#define PD_CALL_POLYMESHCONTRACTS_UPGRADE_API_V7 5 +typedef struct { + pd_Api_t api; + pd_NextUpgradeT_t next_upgrade; +} pd_polymeshcontracts_upgrade_api_V7_t; + +#define PD_CALL_PREIMAGE_NOTE_PREIMAGE_V7 0 +typedef struct { + pd_Vecu8_t bytes; +} pd_preimage_note_preimage_V7_t; + +#define PD_CALL_PREIMAGE_UNNOTE_PREIMAGE_V7 1 +typedef struct { + pd_Hash_t hash; +} pd_preimage_unnote_preimage_V7_t; + +#define PD_CALL_PREIMAGE_REQUEST_PREIMAGE_V7 2 +typedef struct { + pd_Hash_t hash; +} pd_preimage_request_preimage_V7_t; + +#define PD_CALL_PREIMAGE_UNREQUEST_PREIMAGE_V7 3 +typedef struct { + pd_Hash_t hash; +} pd_preimage_unrequest_preimage_V7_t; + +#define PD_CALL_NFT_CREATE_NFT_COLLECTION_V7 0 +typedef struct { + pd_OptionAssetID_t asset_id; + pd_OptionNonFungibleType_t nft_type; + pd_VecAssetMetadataKey_t collection_keys; +} pd_nft_create_nft_collection_V7_t; + +#define PD_CALL_NFT_ISSUE_NFT_V7 1 +typedef struct { + pd_AssetID_t asset_id; + pd_VecNFTMetadataAttribute_t nft_metadata_attributes; + pd_PortfolioKind_t portfolio_kind; +} pd_nft_issue_nft_V7_t; + +#define PD_CALL_NFT_REDEEM_NFT_V7 2 +typedef struct { + pd_AssetID_t asset_id; + pd_NFTId_t nft_id; + pd_PortfolioKind_t portfolio_kind; + pd_Optionu8_t number_of_keys; +} pd_nft_redeem_nft_V7_t; + +#define PD_CALL_ELECTIONPROVIDERMULTIPHASE_SUBMIT_UNSIGNED_V7 0 +typedef struct { + pd_BoxRawSolutionSolutionOfMinerConfig_t raw_solution; + pd_SolutionOrSnapshotSize_t witness; +} pd_electionprovidermultiphase_submit_unsigned_V7_t; + +#define PD_CALL_ELECTIONPROVIDERMULTIPHASE_SET_MINIMUM_UNTRUSTED_SCORE_V7 1 +typedef struct { + pd_OptionElectionScore_t maybe_next_score; +} pd_electionprovidermultiphase_set_minimum_untrusted_score_V7_t; + +#define PD_CALL_ELECTIONPROVIDERMULTIPHASE_SET_EMERGENCY_ELECTION_RESULT_V7 2 +typedef struct { + pd_SupportsAccountId_t supports; +} pd_electionprovidermultiphase_set_emergency_election_result_V7_t; + +#define PD_CALL_ELECTIONPROVIDERMULTIPHASE_SUBMIT_V7 3 +typedef struct { + pd_BoxRawSolutionSolutionOfMinerConfig_t raw_solution; +} pd_electionprovidermultiphase_submit_V7_t; + +#define PD_CALL_ELECTIONPROVIDERMULTIPHASE_GOVERNANCE_FALLBACK_V7 4 +typedef struct { + pd_Optionu32_t maybe_max_voters; + pd_Optionu32_t maybe_max_targets; +} pd_electionprovidermultiphase_governance_fallback_V7_t; + +#endif + +typedef union { +#ifdef SUBSTRATE_PARSER_FULL +#ifndef TARGET_NANOS + pd_asset_add_mandatory_mediators_V7_t asset_add_mandatory_mediators_V7; + pd_asset_remove_mandatory_mediators_V7_t asset_remove_mandatory_mediators_V7; + pd_portfolio_allow_identity_to_create_portfolios_V7_t portfolio_allow_identity_to_create_portfolios_V7; + pd_portfolio_revoke_create_portfolios_permission_V7_t portfolio_revoke_create_portfolios_permission_V7; + pd_portfolio_create_custody_portfolio_V7_t portfolio_create_custody_portfolio_V7; + pd_settlement_affirm_with_receipts_with_count_V7_t settlement_affirm_with_receipts_with_count_V7; + pd_settlement_affirm_instruction_with_count_V7_t settlement_affirm_instruction_with_count_V7; + pd_settlement_reject_instruction_with_count_V7_t settlement_reject_instruction_with_count_V7; + pd_settlement_withdraw_affirmation_with_count_V7_t settlement_withdraw_affirmation_with_count_V7; + pd_settlement_add_instruction_with_mediators_V7_t settlement_add_instruction_with_mediators_V7; + pd_settlement_add_and_affirm_with_mediators_V7_t settlement_add_and_affirm_with_mediators_V7; + pd_settlement_affirm_instruction_as_mediator_V7_t settlement_affirm_instruction_as_mediator_V7; + pd_settlement_withdraw_affirmation_as_mediator_V7_t settlement_withdraw_affirmation_as_mediator_V7; + pd_settlement_reject_instruction_as_mediator_V7_t settlement_reject_instruction_as_mediator_V7; + pd_nft_controller_transfer_V7_t nft_controller_transfer_V7; +#endif + pd_sudo_sudo_V7_t sudo_sudo_V7; + pd_sudo_sudo_unchecked_weight_V7_t sudo_sudo_unchecked_weight_V7; + pd_sudo_set_key_V7_t sudo_set_key_V7; + pd_sudo_sudo_as_V7_t sudo_sudo_as_V7; + pd_asset_register_unique_ticker_V7_t asset_register_unique_ticker_V7; + pd_asset_controller_transfer_V7_t asset_controller_transfer_V7; + pd_asset_register_custom_asset_type_V7_t asset_register_custom_asset_type_V7; + pd_asset_create_asset_with_custom_type_V7_t asset_create_asset_with_custom_type_V7; + pd_asset_set_asset_metadata_V7_t asset_set_asset_metadata_V7; + pd_asset_set_asset_metadata_details_V7_t asset_set_asset_metadata_details_V7; + pd_asset_register_and_set_local_asset_metadata_V7_t asset_register_and_set_local_asset_metadata_V7; + pd_asset_register_asset_metadata_local_type_V7_t asset_register_asset_metadata_local_type_V7; + pd_asset_register_asset_metadata_global_type_V7_t asset_register_asset_metadata_global_type_V7; + pd_asset_update_asset_type_V7_t asset_update_asset_type_V7; + pd_asset_remove_local_metadata_key_V7_t asset_remove_local_metadata_key_V7; + pd_asset_remove_metadata_value_V7_t asset_remove_metadata_value_V7; + pd_asset_exempt_asset_affirmation_V7_t asset_exempt_asset_affirmation_V7; + pd_asset_remove_asset_affirmation_exemption_V7_t asset_remove_asset_affirmation_exemption_V7; + pd_asset_pre_approve_asset_V7_t asset_pre_approve_asset_V7; + pd_asset_remove_asset_pre_approval_V7_t asset_remove_asset_pre_approval_V7; + pd_asset_link_ticker_to_asset_id_V7_t asset_link_ticker_to_asset_id_V7; + pd_portfolio_quit_portfolio_custody_V7_t portfolio_quit_portfolio_custody_V7; + pd_portfolio_accept_portfolio_custody_V7_t portfolio_accept_portfolio_custody_V7; + pd_portfolio_pre_approve_portfolio_V7_t portfolio_pre_approve_portfolio_V7; + pd_portfolio_remove_portfolio_pre_approval_V7_t portfolio_remove_portfolio_pre_approval_V7; + pd_settlement_update_venue_details_V7_t settlement_update_venue_details_V7; + pd_settlement_update_venue_type_V7_t settlement_update_venue_type_V7; + pd_settlement_update_venue_signers_V7_t settlement_update_venue_signers_V7; + pd_settlement_execute_manual_instruction_V7_t settlement_execute_manual_instruction_V7; + pd_sto_create_fundraiser_V7_t sto_create_fundraiser_V7; + pd_sto_invest_V7_t sto_invest_V7; + pd_sto_freeze_fundraiser_V7_t sto_freeze_fundraiser_V7; + pd_sto_unfreeze_fundraiser_V7_t sto_unfreeze_fundraiser_V7; + pd_sto_modify_fundraiser_window_V7_t sto_modify_fundraiser_window_V7; + pd_sto_stop_V7_t sto_stop_V7; + pd_utility_batch_all_V7_t utility_batch_all_V7; + pd_utility_dispatch_as_V7_t utility_dispatch_as_V7; + pd_utility_force_batch_V7_t utility_force_batch_V7; + pd_utility_with_weight_V7_t utility_with_weight_V7; + pd_utility_batch_old_V7_t utility_batch_old_V7; + pd_externalagents_create_group_V7_t externalagents_create_group_V7; + pd_externalagents_set_group_permissions_V7_t externalagents_set_group_permissions_V7; + pd_externalagents_remove_agent_V7_t externalagents_remove_agent_V7; + pd_externalagents_abdicate_V7_t externalagents_abdicate_V7; + pd_externalagents_change_group_V7_t externalagents_change_group_V7; + pd_externalagents_accept_become_agent_V7_t externalagents_accept_become_agent_V7; + pd_externalagents_create_group_and_add_auth_V7_t externalagents_create_group_and_add_auth_V7; + pd_externalagents_create_and_change_custom_group_V7_t externalagents_create_and_change_custom_group_V7; + pd_relayer_set_paying_key_V7_t relayer_set_paying_key_V7; + pd_relayer_accept_paying_key_V7_t relayer_accept_paying_key_V7; + pd_relayer_remove_paying_key_V7_t relayer_remove_paying_key_V7; + pd_relayer_update_polyx_limit_V7_t relayer_update_polyx_limit_V7; + pd_relayer_increase_polyx_limit_V7_t relayer_increase_polyx_limit_V7; + pd_relayer_decrease_polyx_limit_V7_t relayer_decrease_polyx_limit_V7; + pd_contracts_call_old_weight_V7_t contracts_call_old_weight_V7; + pd_contracts_instantiate_with_code_old_weight_V7_t contracts_instantiate_with_code_old_weight_V7; + pd_contracts_instantiate_old_weight_V7_t contracts_instantiate_old_weight_V7; + pd_contracts_upload_code_V7_t contracts_upload_code_V7; + pd_contracts_remove_code_V7_t contracts_remove_code_V7; + pd_contracts_set_code_V7_t contracts_set_code_V7; + pd_contracts_instantiate_with_code_V7_t contracts_instantiate_with_code_V7; + pd_polymeshcontracts_instantiate_with_code_perms_V7_t polymeshcontracts_instantiate_with_code_perms_V7; + pd_polymeshcontracts_instantiate_with_hash_perms_V7_t polymeshcontracts_instantiate_with_hash_perms_V7; + pd_polymeshcontracts_update_call_runtime_whitelist_V7_t polymeshcontracts_update_call_runtime_whitelist_V7; + pd_polymeshcontracts_instantiate_with_code_as_primary_key_V7_t polymeshcontracts_instantiate_with_code_as_primary_key_V7; + pd_polymeshcontracts_instantiate_with_hash_as_primary_key_V7_t polymeshcontracts_instantiate_with_hash_as_primary_key_V7; + pd_polymeshcontracts_upgrade_api_V7_t polymeshcontracts_upgrade_api_V7; + pd_preimage_note_preimage_V7_t preimage_note_preimage_V7; + pd_preimage_unnote_preimage_V7_t preimage_unnote_preimage_V7; + pd_preimage_request_preimage_V7_t preimage_request_preimage_V7; + pd_preimage_unrequest_preimage_V7_t preimage_unrequest_preimage_V7; + pd_nft_create_nft_collection_V7_t nft_create_nft_collection_V7; + pd_nft_issue_nft_V7_t nft_issue_nft_V7; + pd_nft_redeem_nft_V7_t nft_redeem_nft_V7; + pd_electionprovidermultiphase_submit_unsigned_V7_t electionprovidermultiphase_submit_unsigned_V7; + pd_electionprovidermultiphase_set_minimum_untrusted_score_V7_t electionprovidermultiphase_set_minimum_untrusted_score_V7; + pd_electionprovidermultiphase_set_emergency_election_result_V7_t electionprovidermultiphase_set_emergency_election_result_V7; + pd_electionprovidermultiphase_submit_V7_t electionprovidermultiphase_submit_V7; + pd_electionprovidermultiphase_governance_fallback_V7_t electionprovidermultiphase_governance_fallback_V7; +#endif +} pd_MethodBasic_V7_t; + +#define PD_CALL_BALANCES_TRANSFER_V7 0 +typedef struct { + pd_LookupasStaticLookupSource_t dest; + pd_CompactBalance_t amount; +} pd_balances_transfer_V7_t; + +#define PD_CALL_BALANCES_TRANSFER_WITH_MEMO_V7 1 +typedef struct { + pd_LookupasStaticLookupSource_t dest; + pd_CompactBalance_t amount; + pd_OptionMemo_t memo; +} pd_balances_transfer_with_memo_V7_t; + +#define PD_CALL_IDENTITY_ACCEPT_PRIMARY_KEY_V7 2 +typedef struct { + pd_u64_t rotation_auth_id; + pd_Optionu64_t optional_cdd_auth_id; +} pd_identity_accept_primary_key_V7_t; + +#define PD_CALL_IDENTITY_JOIN_IDENTITY_AS_KEY_V7 4 +typedef struct { + pd_u64_t auth_id; +} pd_identity_join_identity_as_key_V7_t; + +#define PD_CALL_IDENTITY_LEAVE_IDENTITY_AS_KEY_V7 5 +typedef struct { +} pd_identity_leave_identity_as_key_V7_t; + +#define PD_CALL_IDENTITY_ADD_CLAIM_V7 6 +typedef struct { + pd_IdentityId_t target; + pd_Claim_t claim; + pd_OptionMoment_t expiry; +} pd_identity_add_claim_V7_t; + +#define PD_CALL_IDENTITY_REVOKE_CLAIM_V7 7 +typedef struct { + pd_IdentityId_t target; + pd_Claim_t claim; +} pd_identity_revoke_claim_V7_t; + +#define PD_CALL_IDENTITY_FREEZE_SECONDARY_KEYS_V7 8 +typedef struct { +} pd_identity_freeze_secondary_keys_V7_t; + +#define PD_CALL_IDENTITY_UNFREEZE_SECONDARY_KEYS_V7 9 +typedef struct { +} pd_identity_unfreeze_secondary_keys_V7_t; + +#define PD_CALL_IDENTITY_ADD_AUTHORIZATION_V7 10 +typedef struct { + pd_SignatoryAccountId_t target; + pd_AuthorizationDataAccountId_t data; + pd_OptionMoment_t expiry; +} pd_identity_add_authorization_V7_t; + +#define PD_CALL_IDENTITY_REMOVE_AUTHORIZATION_V7 11 +typedef struct { + pd_SignatoryAccountId_t target; + pd_u64_t auth_id; + pd_bool_t _auth_issuer_pays; +} pd_identity_remove_authorization_V7_t; + +#define PD_CALL_IDENTITY_ADD_SECONDARY_KEYS_WITH_AUTHORIZATION_V7 16 +typedef struct { + pd_VecSecondaryKeyWithAuthAccountId_t additional_keys; + pd_Moment_t expires_at; +} pd_identity_add_secondary_keys_with_authorization_V7_t; + +#define PD_CALL_IDENTITY_REMOVE_SECONDARY_KEYS_V7 18 +typedef struct { + pd_VecAccountId_t keys_to_remove; +} pd_identity_remove_secondary_keys_V7_t; + +#define PD_CALL_MULTISIG_CREATE_MULTISIG_V7 0 +typedef struct { + pd_BoundedVecAccountIdMaxSigners_t signers; + pd_u64_t sigs_required; + pd_OptionPermissions_t permissions; +} pd_multisig_create_multisig_V7_t; + +#define PD_CALL_MULTISIG_CHANGE_SIGS_REQUIRED_V7 9 +typedef struct { + pd_u64_t sigs_required; +} pd_multisig_change_sigs_required_V7_t; + +#define PD_CALL_STAKING_BOND_V7 0 +typedef struct { + pd_AccountIdLookupOfT_t controller; + pd_CompactBalance_t amount; + pd_RewardDestination_t payee; +} pd_staking_bond_V7_t; + +#define PD_CALL_STAKING_BOND_EXTRA_V7 1 +typedef struct { + pd_CompactBalance_t amount; +} pd_staking_bond_extra_V7_t; + +#define PD_CALL_STAKING_UNBOND_V7 2 +typedef struct { + pd_CompactBalance_t amount; +} pd_staking_unbond_V7_t; + +#define PD_CALL_STAKING_WITHDRAW_UNBONDED_V7 3 +typedef struct { + pd_u32_t num_slashing_spans; +} pd_staking_withdraw_unbonded_V7_t; + +#define PD_CALL_STAKING_VALIDATE_V7 4 +typedef struct { + pd_ValidatorPrefs_t prefs; +} pd_staking_validate_V7_t; + +#define PD_CALL_STAKING_NOMINATE_V7 5 +typedef struct { + pd_VecAccountIdLookupOfT_t targets; +} pd_staking_nominate_V7_t; + +#define PD_CALL_STAKING_CHILL_V7 6 +typedef struct { +} pd_staking_chill_V7_t; + +#define PD_CALL_STAKING_SET_PAYEE_V7 7 +typedef struct { + pd_RewardDestination_t payee; +} pd_staking_set_payee_V7_t; + +#define PD_CALL_STAKING_SET_CONTROLLER_V7 8 +typedef struct { + pd_AccountIdLookupOfT_t controller; +} pd_staking_set_controller_V7_t; + +#define PD_CALL_STAKING_REBOND_V7 19 +typedef struct { + pd_CompactBalance_t amount; +} pd_staking_rebond_V7_t; + +#define PD_CALL_PIPS_PROPOSE_V7 6 +typedef struct { + pd_Proposal_t proposal; + pd_Balance_t deposit; + pd_OptionUrl_t url; + pd_OptionPipDescription_t description; +} pd_pips_propose_V7_t; + +#define PD_CALL_PIPS_VOTE_V7 7 +typedef struct { + pd_PipId_t id; + pd_bool_t aye_or_nay; + pd_Balance_t deposit; +} pd_pips_vote_V7_t; + +#define PD_CALL_UTILITY_BATCH_V7 0 +typedef struct { + pd_VecCall_t calls; +} pd_utility_batch_V7_t; + +#define PD_CALL_UTILITY_BATCH_ATOMIC_V7 7 +typedef struct { + pd_VecCall_t calls; +} pd_utility_batch_atomic_V7_t; + +#define PD_CALL_UTILITY_BATCH_OPTIMISTIC_V7 8 +typedef struct { + pd_VecCall_t calls; +} pd_utility_batch_optimistic_V7_t; + +#ifdef SUBSTRATE_PARSER_FULL +#ifndef TARGET_NANOS +#define PD_CALL_CORPORATEACTION_SET_MAX_DETAILS_LENGTH_V7 0 +typedef struct { + pd_u32_t length; +} pd_corporateaction_set_max_details_length_V7_t; +#define PD_CALL_CORPORATEACTION_SET_DEFAULT_TARGETS_V7 1 +typedef struct { + pd_AssetID_t asset_id; + pd_TargetIdentities_t targets; +} pd_corporateaction_set_default_targets_V7_t; +#define PD_CALL_CORPORATEACTION_SET_DEFAULT_WITHHOLDING_TAX_V7 2 +typedef struct { + pd_AssetID_t asset_id; + pd_Tax_t tax; +} pd_corporateaction_set_default_withholding_tax_V7_t; +#define PD_CALL_CORPORATEACTION_SET_DID_WITHHOLDING_TAX_V7 3 +typedef struct { + pd_AssetID_t asset_id; + pd_IdentityId_t taxed_did; + pd_OptionTax_t tax; +} pd_corporateaction_set_did_withholding_tax_V7_t; +#define PD_CALL_CORPORATEACTION_INITIATE_CORPORATE_ACTION_V7 4 +typedef struct { + pd_AssetID_t asset_id; + pd_CAKind_t kind; + pd_Moment_t decl_date; + pd_OptionRecordDateSpec_t record_date; + pd_CADetails_t details; + pd_OptionTargetIdentities_t targets; + pd_OptionTax_t default_withholding_tax; + pd_OptionVecTupleIdentityIdTax_t withholding_tax; +} pd_corporateaction_initiate_corporate_action_V7_t; +#define PD_CALL_CORPORATEACTION_LINK_CA_DOC_V7 5 +typedef struct { + pd_CAId_t id; + pd_VecDocumentId_t docs; +} pd_corporateaction_link_ca_doc_V7_t; +#define PD_CALL_CORPORATEACTION_REMOVE_CA_V7 6 +typedef struct { + pd_CAId_t ca_id; +} pd_corporateaction_remove_ca_V7_t; +#define PD_CALL_CORPORATEACTION_CHANGE_RECORD_DATE_V7 7 +typedef struct { + pd_CAId_t ca_id; + pd_OptionRecordDateSpec_t record_date; +} pd_corporateaction_change_record_date_V7_t; +#define PD_CALL_CORPORATEACTION_INITIATE_CORPORATE_ACTION_AND_DISTRIBUTE_V7 8 +typedef struct { + pd_InitiateCorporateActionArgs_t ca_args; + pd_OptionPortfolioNumber_t portfolio; + pd_AssetID_t currency; + pd_Balance_t per_share; + pd_Balance_t amount; + pd_Moment_t payment_at; + pd_OptionMoment_t expires_at; +} pd_corporateaction_initiate_corporate_action_and_distribute_V7_t; +#define PD_CALL_CORPORATEBALLOT_ATTACH_BALLOT_V7 0 +typedef struct { + pd_CAId_t ca_id; + pd_BallotTimeRange_t range; + pd_BallotMeta_t meta; + pd_bool_t rcv; +} pd_corporateballot_attach_ballot_V7_t; +#define PD_CALL_CORPORATEBALLOT_VOTE_V7 1 +typedef struct { + pd_CAId_t ca_id; + pd_VecBallotVote_t votes; +} pd_corporateballot_vote_V7_t; +#define PD_CALL_CORPORATEBALLOT_CHANGE_END_V7 2 +typedef struct { + pd_CAId_t ca_id; + pd_Moment_t end; +} pd_corporateballot_change_end_V7_t; +#define PD_CALL_CORPORATEBALLOT_CHANGE_META_V7 3 +typedef struct { + pd_CAId_t ca_id; + pd_BallotMeta_t meta; +} pd_corporateballot_change_meta_V7_t; +#define PD_CALL_CORPORATEBALLOT_CHANGE_RCV_V7 4 +typedef struct { + pd_CAId_t ca_id; + pd_bool_t rcv; +} pd_corporateballot_change_rcv_V7_t; +#define PD_CALL_CORPORATEBALLOT_REMOVE_BALLOT_V7 5 +typedef struct { + pd_CAId_t ca_id; +} pd_corporateballot_remove_ballot_V7_t; +#define PD_CALL_PIPS_ENACT_SNAPSHOT_RESULTS_V7 14 +typedef struct { + pd_VecTuplePipIdSnapshotResult_t results; +} pd_pips_enact_snapshot_results_V7_t; +#endif +#define PD_CALL_SYSTEM_REMARK_V7 0 +typedef struct { + pd_Bytes_t remark; +} pd_system_remark_V7_t; + +#define PD_CALL_SYSTEM_SET_HEAP_PAGES_V7 1 +typedef struct { + pd_u64_t pages; +} pd_system_set_heap_pages_V7_t; + +#define PD_CALL_SYSTEM_SET_CODE_V7 2 +typedef struct { + pd_Bytes_t code; +} pd_system_set_code_V7_t; + +#define PD_CALL_SYSTEM_SET_CODE_WITHOUT_CHECKS_V7 3 +typedef struct { + pd_Vecu8_t code; +} pd_system_set_code_without_checks_V7_t; + +#define PD_CALL_SYSTEM_REMARK_WITH_EVENT_V7 7 +typedef struct { + pd_Bytes_t remark; +} pd_system_remark_with_event_V7_t; + +#define PD_CALL_TIMESTAMP_SET_V7 0 +typedef struct { + pd_Compactu64_t now; +} pd_timestamp_set_V7_t; + +#define PD_CALL_INDICES_CLAIM_V7 0 +typedef struct { + pd_AccountIndex_t index; +} pd_indices_claim_V7_t; + +#define PD_CALL_INDICES_TRANSFER_V7 1 +typedef struct { + pd_AccountIdLookupOfT_t new_; + pd_AccountIndex_t index; +} pd_indices_transfer_V7_t; + +#define PD_CALL_INDICES_FREE_V7 2 +typedef struct { + pd_AccountIndex_t index; +} pd_indices_free_V7_t; + +#define PD_CALL_INDICES_FORCE_TRANSFER_V7 3 +typedef struct { + pd_AccountIdLookupOfT_t new_; + pd_AccountIndex_t index; + pd_bool_t freeze; +} pd_indices_force_transfer_V7_t; + +#define PD_CALL_INDICES_FREEZE_V7 4 +typedef struct { + pd_AccountIndex_t index; +} pd_indices_freeze_V7_t; + +#define PD_CALL_BALANCES_DEPOSIT_BLOCK_REWARD_RESERVE_BALANCE_V7 2 +typedef struct { + pd_CompactBalance_t amount; +} pd_balances_deposit_block_reward_reserve_balance_V7_t; + +#define PD_CALL_BALANCES_SET_BALANCE_V7 3 +typedef struct { + pd_LookupasStaticLookupSource_t who; + pd_CompactBalance_t new_free; + pd_CompactBalance_t new_reserved; +} pd_balances_set_balance_V7_t; + +#define PD_CALL_BALANCES_FORCE_TRANSFER_V7 4 +typedef struct { + pd_LookupasStaticLookupSource_t source; + pd_LookupasStaticLookupSource_t dest; + pd_CompactBalance_t amount; +} pd_balances_force_transfer_V7_t; + +#define PD_CALL_BALANCES_BURN_ACCOUNT_BALANCE_V7 5 +typedef struct { + pd_Balance_t amount; +} pd_balances_burn_account_balance_V7_t; + +#define PD_CALL_IDENTITY_CDD_REGISTER_DID_V7 0 +typedef struct { + pd_AccountId_t target_account; + pd_VecSecondaryKeyAccountId_t secondary_keys; +} pd_identity_cdd_register_did_V7_t; + +#define PD_CALL_IDENTITY_INVALIDATE_CDD_CLAIMS_V7 1 +typedef struct { + pd_IdentityId_t cdd; + pd_Moment_t disable_from; + pd_OptionMoment_t expiry; +} pd_identity_invalidate_cdd_claims_V7_t; + +#define PD_CALL_IDENTITY_CHANGE_CDD_REQUIREMENT_FOR_MK_ROTATION_V7 3 +typedef struct { + pd_bool_t auth_required; +} pd_identity_change_cdd_requirement_for_mk_rotation_V7_t; + +#define PD_CALL_IDENTITY_GC_ADD_CDD_CLAIM_V7 12 +typedef struct { + pd_IdentityId_t target; +} pd_identity_gc_add_cdd_claim_V7_t; + +#define PD_CALL_IDENTITY_GC_REVOKE_CDD_CLAIM_V7 13 +typedef struct { + pd_IdentityId_t target; +} pd_identity_gc_revoke_cdd_claim_V7_t; + +#define PD_CALL_IDENTITY_REVOKE_CLAIM_BY_INDEX_V7 14 +typedef struct { + pd_IdentityId_t target; + pd_ClaimType_t claim_type; + pd_OptionScope_t scope; +} pd_identity_revoke_claim_by_index_V7_t; + +#define PD_CALL_IDENTITY_ROTATE_PRIMARY_KEY_TO_SECONDARY_V7 15 +typedef struct { + pd_u64_t auth_id; + pd_Optionu64_t optional_cdd_auth_id; +} pd_identity_rotate_primary_key_to_secondary_V7_t; + +#define PD_CALL_IDENTITY_SET_SECONDARY_KEY_PERMISSIONS_V7 17 +typedef struct { + pd_AccountId_t key; + pd_Permissions_t perms; +} pd_identity_set_secondary_key_permissions_V7_t; + +#define PD_CALL_IDENTITY_REGISTER_CUSTOM_CLAIM_TYPE_V7 19 +typedef struct { + pd_Vecu8_t ty; +} pd_identity_register_custom_claim_type_V7_t; + +#define PD_CALL_IDENTITY_CDD_REGISTER_DID_WITH_CDD_V7 20 +typedef struct { + pd_AccountId_t target_account; + pd_VecSecondaryKeyAccountId_t secondary_keys; + pd_OptionMoment_t expiry; +} pd_identity_cdd_register_did_with_cdd_V7_t; + +#define PD_CALL_IDENTITY_CREATE_CHILD_IDENTITY_V7 21 +typedef struct { + pd_AccountId_t secondary_key; +} pd_identity_create_child_identity_V7_t; + +#define PD_CALL_IDENTITY_CREATE_CHILD_IDENTITIES_V7 22 +typedef struct { + pd_VecCreateChildIdentityWithAuthAccountId_t child_keys; + pd_Moment_t expires_at; +} pd_identity_create_child_identities_V7_t; + +#define PD_CALL_IDENTITY_UNLINK_CHILD_IDENTITY_V7 23 +typedef struct { + pd_IdentityId_t child_did; +} pd_identity_unlink_child_identity_V7_t; + +#define PD_CALL_CDDSERVICEPROVIDERS_SET_ACTIVE_MEMBERS_LIMIT_V7 0 +typedef struct { + pd_MemberCount_t limit; +} pd_cddserviceproviders_set_active_members_limit_V7_t; + +#define PD_CALL_CDDSERVICEPROVIDERS_DISABLE_MEMBER_V7 1 +typedef struct { + pd_IdentityId_t who; + pd_OptionMoment_t expiry; + pd_OptionMoment_t at; +} pd_cddserviceproviders_disable_member_V7_t; + +#define PD_CALL_CDDSERVICEPROVIDERS_ADD_MEMBER_V7 2 +typedef struct { + pd_IdentityId_t who; +} pd_cddserviceproviders_add_member_V7_t; + +#define PD_CALL_CDDSERVICEPROVIDERS_REMOVE_MEMBER_V7 3 +typedef struct { + pd_IdentityId_t who; +} pd_cddserviceproviders_remove_member_V7_t; + +#define PD_CALL_CDDSERVICEPROVIDERS_SWAP_MEMBER_V7 4 +typedef struct { + pd_IdentityId_t remove; + pd_IdentityId_t add; +} pd_cddserviceproviders_swap_member_V7_t; + +#define PD_CALL_CDDSERVICEPROVIDERS_RESET_MEMBERS_V7 5 +typedef struct { + pd_VecIdentityId_t members; +} pd_cddserviceproviders_reset_members_V7_t; + +#define PD_CALL_CDDSERVICEPROVIDERS_ABDICATE_MEMBERSHIP_V7 6 +typedef struct { +} pd_cddserviceproviders_abdicate_membership_V7_t; + +#define PD_CALL_POLYMESHCOMMITTEE_SET_VOTE_THRESHOLD_V7 0 +typedef struct { + pd_u32_t n; + pd_u32_t d; +} pd_polymeshcommittee_set_vote_threshold_V7_t; + +#define PD_CALL_POLYMESHCOMMITTEE_SET_RELEASE_COORDINATOR_V7 1 +typedef struct { + pd_IdentityId_t id; +} pd_polymeshcommittee_set_release_coordinator_V7_t; + +#define PD_CALL_POLYMESHCOMMITTEE_SET_EXPIRES_AFTER_V7 2 +typedef struct { + pd_MaybeBlockBlockNumber_t expiry; +} pd_polymeshcommittee_set_expires_after_V7_t; + +#define PD_CALL_POLYMESHCOMMITTEE_VOTE_OR_PROPOSE_V7 3 +typedef struct { + pd_bool_t approve; + pd_Proposal_t call; +} pd_polymeshcommittee_vote_or_propose_V7_t; + +#define PD_CALL_POLYMESHCOMMITTEE_VOTE_V7 4 +typedef struct { + pd_Hash_t proposal; + pd_ProposalIndex_t index; + pd_bool_t approve; +} pd_polymeshcommittee_vote_V7_t; + +#define PD_CALL_COMMITTEEMEMBERSHIP_SET_ACTIVE_MEMBERS_LIMIT_V7 0 +typedef struct { + pd_MemberCount_t limit; +} pd_committeemembership_set_active_members_limit_V7_t; + +#define PD_CALL_COMMITTEEMEMBERSHIP_DISABLE_MEMBER_V7 1 +typedef struct { + pd_IdentityId_t who; + pd_OptionMoment_t expiry; + pd_OptionMoment_t at; +} pd_committeemembership_disable_member_V7_t; + +#define PD_CALL_COMMITTEEMEMBERSHIP_ADD_MEMBER_V7 2 +typedef struct { + pd_IdentityId_t who; +} pd_committeemembership_add_member_V7_t; + +#define PD_CALL_COMMITTEEMEMBERSHIP_REMOVE_MEMBER_V7 3 +typedef struct { + pd_IdentityId_t who; +} pd_committeemembership_remove_member_V7_t; + +#define PD_CALL_COMMITTEEMEMBERSHIP_SWAP_MEMBER_V7 4 +typedef struct { + pd_IdentityId_t remove; + pd_IdentityId_t add; +} pd_committeemembership_swap_member_V7_t; + +#define PD_CALL_COMMITTEEMEMBERSHIP_RESET_MEMBERS_V7 5 +typedef struct { + pd_VecIdentityId_t members; +} pd_committeemembership_reset_members_V7_t; + +#define PD_CALL_COMMITTEEMEMBERSHIP_ABDICATE_MEMBERSHIP_V7 6 +typedef struct { +} pd_committeemembership_abdicate_membership_V7_t; + +#define PD_CALL_TECHNICALCOMMITTEE_SET_VOTE_THRESHOLD_V7 0 +typedef struct { + pd_u32_t n; + pd_u32_t d; +} pd_technicalcommittee_set_vote_threshold_V7_t; + +#define PD_CALL_TECHNICALCOMMITTEE_SET_RELEASE_COORDINATOR_V7 1 +typedef struct { + pd_IdentityId_t id; +} pd_technicalcommittee_set_release_coordinator_V7_t; + +#define PD_CALL_TECHNICALCOMMITTEE_SET_EXPIRES_AFTER_V7 2 +typedef struct { + pd_MaybeBlockBlockNumber_t expiry; +} pd_technicalcommittee_set_expires_after_V7_t; + +#define PD_CALL_TECHNICALCOMMITTEE_VOTE_OR_PROPOSE_V7 3 +typedef struct { + pd_bool_t approve; + pd_Proposal_t call; +} pd_technicalcommittee_vote_or_propose_V7_t; + +#define PD_CALL_TECHNICALCOMMITTEE_VOTE_V7 4 +typedef struct { + pd_Hash_t proposal; + pd_ProposalIndex_t index; + pd_bool_t approve; +} pd_technicalcommittee_vote_V7_t; + +#define PD_CALL_TECHNICALCOMMITTEEMEMBERSHIP_SET_ACTIVE_MEMBERS_LIMIT_V7 0 +typedef struct { + pd_MemberCount_t limit; +} pd_technicalcommitteemembership_set_active_members_limit_V7_t; + +#define PD_CALL_TECHNICALCOMMITTEEMEMBERSHIP_DISABLE_MEMBER_V7 1 +typedef struct { + pd_IdentityId_t who; + pd_OptionMoment_t expiry; + pd_OptionMoment_t at; +} pd_technicalcommitteemembership_disable_member_V7_t; + +#define PD_CALL_TECHNICALCOMMITTEEMEMBERSHIP_ADD_MEMBER_V7 2 +typedef struct { + pd_IdentityId_t who; +} pd_technicalcommitteemembership_add_member_V7_t; + +#define PD_CALL_TECHNICALCOMMITTEEMEMBERSHIP_REMOVE_MEMBER_V7 3 +typedef struct { + pd_IdentityId_t who; +} pd_technicalcommitteemembership_remove_member_V7_t; + +#define PD_CALL_TECHNICALCOMMITTEEMEMBERSHIP_SWAP_MEMBER_V7 4 +typedef struct { + pd_IdentityId_t remove; + pd_IdentityId_t add; +} pd_technicalcommitteemembership_swap_member_V7_t; + +#define PD_CALL_TECHNICALCOMMITTEEMEMBERSHIP_RESET_MEMBERS_V7 5 +typedef struct { + pd_VecIdentityId_t members; +} pd_technicalcommitteemembership_reset_members_V7_t; + +#define PD_CALL_TECHNICALCOMMITTEEMEMBERSHIP_ABDICATE_MEMBERSHIP_V7 6 +typedef struct { +} pd_technicalcommitteemembership_abdicate_membership_V7_t; + +#define PD_CALL_UPGRADECOMMITTEE_SET_VOTE_THRESHOLD_V7 0 +typedef struct { + pd_u32_t n; + pd_u32_t d; +} pd_upgradecommittee_set_vote_threshold_V7_t; + +#define PD_CALL_UPGRADECOMMITTEE_SET_RELEASE_COORDINATOR_V7 1 +typedef struct { + pd_IdentityId_t id; +} pd_upgradecommittee_set_release_coordinator_V7_t; + +#define PD_CALL_UPGRADECOMMITTEE_SET_EXPIRES_AFTER_V7 2 +typedef struct { + pd_MaybeBlockBlockNumber_t expiry; +} pd_upgradecommittee_set_expires_after_V7_t; + +#define PD_CALL_UPGRADECOMMITTEE_VOTE_OR_PROPOSE_V7 3 +typedef struct { + pd_bool_t approve; + pd_Proposal_t call; +} pd_upgradecommittee_vote_or_propose_V7_t; + +#define PD_CALL_UPGRADECOMMITTEE_VOTE_V7 4 +typedef struct { + pd_Hash_t proposal; + pd_ProposalIndex_t index; + pd_bool_t approve; +} pd_upgradecommittee_vote_V7_t; + +#define PD_CALL_UPGRADECOMMITTEEMEMBERSHIP_SET_ACTIVE_MEMBERS_LIMIT_V7 0 +typedef struct { + pd_MemberCount_t limit; +} pd_upgradecommitteemembership_set_active_members_limit_V7_t; + +#define PD_CALL_UPGRADECOMMITTEEMEMBERSHIP_DISABLE_MEMBER_V7 1 +typedef struct { + pd_IdentityId_t who; + pd_OptionMoment_t expiry; + pd_OptionMoment_t at; +} pd_upgradecommitteemembership_disable_member_V7_t; + +#define PD_CALL_UPGRADECOMMITTEEMEMBERSHIP_ADD_MEMBER_V7 2 +typedef struct { + pd_IdentityId_t who; +} pd_upgradecommitteemembership_add_member_V7_t; + +#define PD_CALL_UPGRADECOMMITTEEMEMBERSHIP_REMOVE_MEMBER_V7 3 +typedef struct { + pd_IdentityId_t who; +} pd_upgradecommitteemembership_remove_member_V7_t; + +#define PD_CALL_UPGRADECOMMITTEEMEMBERSHIP_SWAP_MEMBER_V7 4 +typedef struct { + pd_IdentityId_t remove; + pd_IdentityId_t add; +} pd_upgradecommitteemembership_swap_member_V7_t; + +#define PD_CALL_UPGRADECOMMITTEEMEMBERSHIP_RESET_MEMBERS_V7 5 +typedef struct { + pd_VecIdentityId_t members; +} pd_upgradecommitteemembership_reset_members_V7_t; + +#define PD_CALL_UPGRADECOMMITTEEMEMBERSHIP_ABDICATE_MEMBERSHIP_V7 6 +typedef struct { +} pd_upgradecommitteemembership_abdicate_membership_V7_t; + +#define PD_CALL_MULTISIG_CREATE_PROPOSAL_V7 1 +typedef struct { + pd_AccountId_t multisig; + pd_BoxTasConfigProposal_t proposal; + pd_OptionMoment_t expiry; +} pd_multisig_create_proposal_V7_t; + +#define PD_CALL_MULTISIG_APPROVE_V7 2 +typedef struct { + pd_AccountId_t multisig; + pd_u64_t proposal_id; + pd_OptionWeight_t max_weight; +} pd_multisig_approve_V7_t; + +#define PD_CALL_MULTISIG_REJECT_V7 3 +typedef struct { + pd_AccountId_t multisig; + pd_u64_t proposal_id; +} pd_multisig_reject_V7_t; + +#define PD_CALL_MULTISIG_ACCEPT_MULTISIG_SIGNER_V7 4 +typedef struct { + pd_u64_t auth_id; +} pd_multisig_accept_multisig_signer_V7_t; + +#define PD_CALL_MULTISIG_ADD_MULTISIG_SIGNERS_V7 5 +typedef struct { + pd_BoundedVecAccountIdMaxSigners_t signers; +} pd_multisig_add_multisig_signers_V7_t; + +#define PD_CALL_MULTISIG_REMOVE_MULTISIG_SIGNERS_V7 6 +typedef struct { + pd_BoundedVecAccountIdMaxSigners_t signers; +} pd_multisig_remove_multisig_signers_V7_t; + +#define PD_CALL_MULTISIG_ADD_MULTISIG_SIGNERS_VIA_ADMIN_V7 7 +typedef struct { + pd_AccountId_t multisig; + pd_BoundedVecAccountIdMaxSigners_t signers; +} pd_multisig_add_multisig_signers_via_admin_V7_t; + +#define PD_CALL_MULTISIG_REMOVE_MULTISIG_SIGNERS_VIA_ADMIN_V7 8 +typedef struct { + pd_AccountId_t multisig; + pd_BoundedVecAccountIdMaxSigners_t signers; +} pd_multisig_remove_multisig_signers_via_admin_V7_t; + +#define PD_CALL_MULTISIG_CHANGE_SIGS_REQUIRED_VIA_ADMIN_V7 10 +typedef struct { + pd_AccountId_t multisig; + pd_u64_t signatures_required; +} pd_multisig_change_sigs_required_via_admin_V7_t; + +#define PD_CALL_MULTISIG_ADD_ADMIN_V7 11 +typedef struct { + pd_IdentityId_t admin_did; +} pd_multisig_add_admin_V7_t; + +#define PD_CALL_MULTISIG_REMOVE_ADMIN_VIA_ADMIN_V7 12 +typedef struct { + pd_AccountId_t multisig; +} pd_multisig_remove_admin_via_admin_V7_t; + +#define PD_CALL_MULTISIG_REMOVE_PAYER_V7 13 +typedef struct { +} pd_multisig_remove_payer_V7_t; + +#define PD_CALL_MULTISIG_REMOVE_PAYER_VIA_PAYER_V7 14 +typedef struct { + pd_AccountId_t multisig; +} pd_multisig_remove_payer_via_payer_V7_t; + +#define PD_CALL_MULTISIG_APPROVE_JOIN_IDENTITY_V7 15 +typedef struct { + pd_AccountId_t multisig; + pd_u64_t auth_id; +} pd_multisig_approve_join_identity_V7_t; + +#define PD_CALL_MULTISIG_JOIN_IDENTITY_V7 16 +typedef struct { + pd_u64_t auth_id; +} pd_multisig_join_identity_V7_t; + +#define PD_CALL_STAKING_SET_VALIDATOR_COUNT_V7 9 +typedef struct { + pd_Compactu32_t new_; +} pd_staking_set_validator_count_V7_t; + +#define PD_CALL_STAKING_INCREASE_VALIDATOR_COUNT_V7 10 +typedef struct { + pd_Compactu32_t additional; +} pd_staking_increase_validator_count_V7_t; + +#define PD_CALL_STAKING_SCALE_VALIDATOR_COUNT_V7 11 +typedef struct { + pd_Percent_t factor; +} pd_staking_scale_validator_count_V7_t; + +#define PD_CALL_STAKING_FORCE_NO_ERAS_V7 12 +typedef struct { +} pd_staking_force_no_eras_V7_t; + +#define PD_CALL_STAKING_FORCE_NEW_ERA_V7 13 +typedef struct { +} pd_staking_force_new_era_V7_t; + +#define PD_CALL_STAKING_SET_INVULNERABLES_V7 14 +typedef struct { + pd_VecAccountId_t invulnerables; +} pd_staking_set_invulnerables_V7_t; + +#define PD_CALL_STAKING_FORCE_UNSTAKE_V7 15 +typedef struct { + pd_AccountId_t stash; + pd_u32_t num_slashing_spans; +} pd_staking_force_unstake_V7_t; + +#define PD_CALL_STAKING_FORCE_NEW_ERA_ALWAYS_V7 16 +typedef struct { +} pd_staking_force_new_era_always_V7_t; + +#define PD_CALL_STAKING_CANCEL_DEFERRED_SLASH_V7 17 +typedef struct { + pd_EraIndex_t era; + pd_Vecu32_t slash_indices; +} pd_staking_cancel_deferred_slash_V7_t; + +#define PD_CALL_STAKING_PAYOUT_STAKERS_V7 18 +typedef struct { + pd_AccountId_t validator_stash; + pd_EraIndex_t era; +} pd_staking_payout_stakers_V7_t; + +#define PD_CALL_STAKING_REAP_STASH_V7 20 +typedef struct { + pd_AccountId_t stash; + pd_u32_t num_slashing_spans; +} pd_staking_reap_stash_V7_t; + +#define PD_CALL_STAKING_KICK_V7 21 +typedef struct { + pd_VecAccountIdLookupOfT_t who; +} pd_staking_kick_V7_t; + +#define PD_CALL_STAKING_SET_STAKING_CONFIGS_V7 22 +typedef struct { + pd_ConfigOpBalanceOfT_t min_nominator_bond; + pd_ConfigOpBalanceOfT_t min_validator_bond; + pd_ConfigOpu32_t max_nominator_count; + pd_ConfigOpu32_t max_validator_count; + pd_ConfigOpPercent_t chill_threshold; + pd_ConfigOpPerbill_t min_commission; +} pd_staking_set_staking_configs_V7_t; + +#define PD_CALL_STAKING_CHILL_OTHER_V7 23 +typedef struct { + pd_AccountId_t controller; +} pd_staking_chill_other_V7_t; + +#define PD_CALL_STAKING_FORCE_APPLY_MIN_COMMISSION_V7 24 +typedef struct { + pd_AccountId_t validator_stash; +} pd_staking_force_apply_min_commission_V7_t; + +#define PD_CALL_STAKING_SET_MIN_COMMISSION_V7 25 +typedef struct { + pd_Perbill_t new_; +} pd_staking_set_min_commission_V7_t; + +#define PD_CALL_STAKING_ADD_PERMISSIONED_VALIDATOR_V7 26 +typedef struct { + pd_IdentityId_t identity; + pd_Optionu32_t intended_count; +} pd_staking_add_permissioned_validator_V7_t; + +#define PD_CALL_STAKING_REMOVE_PERMISSIONED_VALIDATOR_V7 27 +typedef struct { + pd_IdentityId_t identity; +} pd_staking_remove_permissioned_validator_V7_t; + +#define PD_CALL_STAKING_VALIDATE_CDD_EXPIRY_NOMINATORS_V7 28 +typedef struct { + pd_VecAccountId_t targets; +} pd_staking_validate_cdd_expiry_nominators_V7_t; + +#define PD_CALL_STAKING_PAYOUT_STAKERS_BY_SYSTEM_V7 29 +typedef struct { + pd_AccountId_t validator_stash; + pd_EraIndex_t era; +} pd_staking_payout_stakers_by_system_V7_t; + +#define PD_CALL_STAKING_CHANGE_SLASHING_ALLOWED_FOR_V7 30 +typedef struct { + pd_SlashingSwitch_t slashing_switch; +} pd_staking_change_slashing_allowed_for_V7_t; + +#define PD_CALL_STAKING_UPDATE_PERMISSIONED_VALIDATOR_INTENDED_COUNT_V7 31 +typedef struct { + pd_IdentityId_t identity; + pd_u32_t new_intended_count; +} pd_staking_update_permissioned_validator_intended_count_V7_t; + +#define PD_CALL_STAKING_CHILL_FROM_GOVERNANCE_V7 32 +typedef struct { + pd_IdentityId_t identity; + pd_VecAccountId_t stash_keys; +} pd_staking_chill_from_governance_V7_t; + +#define PD_CALL_STAKING_SET_COMMISSION_CAP_V7 33 +typedef struct { + pd_Perbill_t new_cap; +} pd_staking_set_commission_cap_V7_t; + +#define PD_CALL_SESSION_SET_KEYS_V7 0 +typedef struct { + pd_Keys_t keys; + pd_Bytes_t proof; +} pd_session_set_keys_V7_t; + +#define PD_CALL_SESSION_PURGE_KEYS_V7 1 +typedef struct { +} pd_session_purge_keys_V7_t; + +#define PD_CALL_ASSET_ACCEPT_TICKER_TRANSFER_V7 1 +typedef struct { + pd_u64_t auth_id; +} pd_asset_accept_ticker_transfer_V7_t; + +#define PD_CALL_ASSET_ACCEPT_ASSET_OWNERSHIP_TRANSFER_V7 2 +typedef struct { + pd_u64_t auth_id; +} pd_asset_accept_asset_ownership_transfer_V7_t; + +#define PD_CALL_ASSET_CREATE_ASSET_V7 3 +typedef struct { + pd_AssetName_t asset_name; + pd_bool_t divisible; + pd_AssetType_t asset_type; + pd_VecAssetIdentifier_t asset_identifiers; + pd_OptionFundingRoundName_t funding_round_name; +} pd_asset_create_asset_V7_t; + +#define PD_CALL_ASSET_FREEZE_V7 4 +typedef struct { + pd_AssetID_t asset_id; +} pd_asset_freeze_V7_t; + +#define PD_CALL_ASSET_UNFREEZE_V7 5 +typedef struct { + pd_AssetID_t asset_id; +} pd_asset_unfreeze_V7_t; + +#define PD_CALL_ASSET_RENAME_ASSET_V7 6 +typedef struct { + pd_AssetID_t asset_id; + pd_AssetName_t asset_name; +} pd_asset_rename_asset_V7_t; + +#define PD_CALL_ASSET_ISSUE_V7 7 +typedef struct { + pd_AssetID_t asset_id; + pd_BalanceNoSymbol_t amount; + pd_PortfolioKind_t portfolio_kind; +} pd_asset_issue_V7_t; + +#define PD_CALL_ASSET_REDEEM_V7 8 +typedef struct { + pd_AssetID_t asset_id; + pd_BalanceNoSymbol_t amount; + pd_PortfolioKind_t portfolio_kind; +} pd_asset_redeem_V7_t; + +#define PD_CALL_ASSET_MAKE_DIVISIBLE_V7 9 +typedef struct { + pd_AssetID_t asset_id; +} pd_asset_make_divisible_V7_t; + +#define PD_CALL_ASSET_ADD_DOCUMENTS_V7 10 +typedef struct { + pd_VecDocument_t docs; + pd_AssetID_t asset_id; +} pd_asset_add_documents_V7_t; + +#define PD_CALL_ASSET_REMOVE_DOCUMENTS_V7 11 +typedef struct { + pd_VecDocumentId_t docs_id; + pd_AssetID_t asset_id; +} pd_asset_remove_documents_V7_t; + +#define PD_CALL_ASSET_SET_FUNDING_ROUND_V7 12 +typedef struct { + pd_AssetID_t asset_id; + pd_FundingRoundName_t founding_round_name; +} pd_asset_set_funding_round_V7_t; + +#define PD_CALL_ASSET_UPDATE_IDENTIFIERS_V7 13 +typedef struct { + pd_AssetID_t asset_id; + pd_VecAssetIdentifier_t asset_identifiers; +} pd_asset_update_identifiers_V7_t; + +#define PD_CALL_CAPITALDISTRIBUTION_DISTRIBUTE_V7 0 +typedef struct { + pd_CAId_t ca_id; + pd_OptionPortfolioNumber_t portfolio; + pd_AssetID_t currency; + pd_Balance_t per_share; + pd_Balance_t amount; + pd_Moment_t payment_at; + pd_OptionMoment_t expires_at; +} pd_capitaldistribution_distribute_V7_t; + +#define PD_CALL_CAPITALDISTRIBUTION_CLAIM_V7 1 +typedef struct { + pd_CAId_t ca_id; +} pd_capitaldistribution_claim_V7_t; + +#define PD_CALL_CAPITALDISTRIBUTION_PUSH_BENEFIT_V7 2 +typedef struct { + pd_CAId_t ca_id; + pd_IdentityId_t holder; +} pd_capitaldistribution_push_benefit_V7_t; + +#define PD_CALL_CAPITALDISTRIBUTION_RECLAIM_V7 3 +typedef struct { + pd_CAId_t ca_id; +} pd_capitaldistribution_reclaim_V7_t; + +#define PD_CALL_CAPITALDISTRIBUTION_REMOVE_DISTRIBUTION_V7 4 +typedef struct { + pd_CAId_t ca_id; +} pd_capitaldistribution_remove_distribution_V7_t; + +#define PD_CALL_CHECKPOINT_CREATE_CHECKPOINT_V7 0 +typedef struct { + pd_AssetID_t asset_id; +} pd_checkpoint_create_checkpoint_V7_t; + +#define PD_CALL_CHECKPOINT_SET_SCHEDULES_MAX_COMPLEXITY_V7 1 +typedef struct { + pd_u64_t max_complexity; +} pd_checkpoint_set_schedules_max_complexity_V7_t; + +#define PD_CALL_CHECKPOINT_CREATE_SCHEDULE_V7 2 +typedef struct { + pd_AssetID_t asset_id; + pd_ScheduleCheckpoints_t schedule; +} pd_checkpoint_create_schedule_V7_t; + +#define PD_CALL_CHECKPOINT_REMOVE_SCHEDULE_V7 3 +typedef struct { + pd_AssetID_t asset_id; + pd_ScheduleId_t id; +} pd_checkpoint_remove_schedule_V7_t; + +#define PD_CALL_COMPLIANCEMANAGER_ADD_COMPLIANCE_REQUIREMENT_V7 0 +typedef struct { + pd_AssetID_t asset_id; + pd_VecCondition_t sender_conditions; + pd_VecCondition_t receiver_conditions; +} pd_compliancemanager_add_compliance_requirement_V7_t; + +#define PD_CALL_COMPLIANCEMANAGER_REMOVE_COMPLIANCE_REQUIREMENT_V7 1 +typedef struct { + pd_AssetID_t asset_id; + pd_u32_t id; +} pd_compliancemanager_remove_compliance_requirement_V7_t; + +#define PD_CALL_COMPLIANCEMANAGER_REPLACE_ASSET_COMPLIANCE_V7 2 +typedef struct { + pd_AssetID_t asset_id; + pd_VecComplianceRequirement_t asset_compliance; +} pd_compliancemanager_replace_asset_compliance_V7_t; + +#define PD_CALL_COMPLIANCEMANAGER_RESET_ASSET_COMPLIANCE_V7 3 +typedef struct { + pd_AssetID_t asset_id; +} pd_compliancemanager_reset_asset_compliance_V7_t; + +#define PD_CALL_COMPLIANCEMANAGER_PAUSE_ASSET_COMPLIANCE_V7 4 +typedef struct { + pd_AssetID_t asset_id; +} pd_compliancemanager_pause_asset_compliance_V7_t; + +#define PD_CALL_COMPLIANCEMANAGER_RESUME_ASSET_COMPLIANCE_V7 5 +typedef struct { + pd_AssetID_t asset_id; +} pd_compliancemanager_resume_asset_compliance_V7_t; + +#define PD_CALL_COMPLIANCEMANAGER_ADD_DEFAULT_TRUSTED_CLAIM_ISSUER_V7 6 +typedef struct { + pd_AssetID_t asset_id; + pd_TrustedIssuer_t issuer; +} pd_compliancemanager_add_default_trusted_claim_issuer_V7_t; + +#define PD_CALL_COMPLIANCEMANAGER_REMOVE_DEFAULT_TRUSTED_CLAIM_ISSUER_V7 7 +typedef struct { + pd_AssetID_t asset_id; + pd_IdentityId_t issuer; +} pd_compliancemanager_remove_default_trusted_claim_issuer_V7_t; + +#define PD_CALL_COMPLIANCEMANAGER_CHANGE_COMPLIANCE_REQUIREMENT_V7 8 +typedef struct { + pd_AssetID_t asset_id; + pd_ComplianceRequirement_t new_req; +} pd_compliancemanager_change_compliance_requirement_V7_t; + +#define PD_CALL_PIPS_SET_PRUNE_HISTORICAL_PIPS_V7 0 +typedef struct { + pd_bool_t prune; +} pd_pips_set_prune_historical_pips_V7_t; + +#define PD_CALL_PIPS_SET_MIN_PROPOSAL_DEPOSIT_V7 1 +typedef struct { + pd_Balance_t deposit; +} pd_pips_set_min_proposal_deposit_V7_t; + +#define PD_CALL_PIPS_SET_DEFAULT_ENACTMENT_PERIOD_V7 2 +typedef struct { + pd_BlockNumber_t duration; +} pd_pips_set_default_enactment_period_V7_t; + +#define PD_CALL_PIPS_SET_PENDING_PIP_EXPIRY_V7 3 +typedef struct { + pd_MaybeBlockBlockNumber_t expiry; +} pd_pips_set_pending_pip_expiry_V7_t; + +#define PD_CALL_PIPS_SET_MAX_PIP_SKIP_COUNT_V7 4 +typedef struct { + pd_SkippedCount_t max; +} pd_pips_set_max_pip_skip_count_V7_t; + +#define PD_CALL_PIPS_SET_ACTIVE_PIP_LIMIT_V7 5 +typedef struct { + pd_u32_t limit; +} pd_pips_set_active_pip_limit_V7_t; + +#define PD_CALL_PIPS_APPROVE_COMMITTEE_PROPOSAL_V7 8 +typedef struct { + pd_PipId_t id; +} pd_pips_approve_committee_proposal_V7_t; + +#define PD_CALL_PIPS_REJECT_PROPOSAL_V7 9 +typedef struct { + pd_PipId_t id; +} pd_pips_reject_proposal_V7_t; + +#define PD_CALL_PIPS_PRUNE_PROPOSAL_V7 10 +typedef struct { + pd_PipId_t id; +} pd_pips_prune_proposal_V7_t; + +#define PD_CALL_PIPS_RESCHEDULE_EXECUTION_V7 11 +typedef struct { + pd_PipId_t id; + pd_OptionBlockNumber_t until; +} pd_pips_reschedule_execution_V7_t; + +#define PD_CALL_PIPS_CLEAR_SNAPSHOT_V7 12 +typedef struct { +} pd_pips_clear_snapshot_V7_t; + +#define PD_CALL_PIPS_SNAPSHOT_V7 13 +typedef struct { +} pd_pips_snapshot_V7_t; + +#define PD_CALL_PIPS_EXECUTE_SCHEDULED_PIP_V7 15 +typedef struct { + pd_PipId_t id; +} pd_pips_execute_scheduled_pip_V7_t; + +#define PD_CALL_PIPS_EXPIRE_SCHEDULED_PIP_V7 16 +typedef struct { + pd_IdentityId_t did; + pd_PipId_t id; +} pd_pips_expire_scheduled_pip_V7_t; + +#define PD_CALL_PORTFOLIO_CREATE_PORTFOLIO_V7 0 +typedef struct { + pd_PortfolioName_t name; +} pd_portfolio_create_portfolio_V7_t; + +#define PD_CALL_PORTFOLIO_DELETE_PORTFOLIO_V7 1 +typedef struct { + pd_PortfolioNumber_t num; +} pd_portfolio_delete_portfolio_V7_t; + +#define PD_CALL_PORTFOLIO_RENAME_PORTFOLIO_V7 2 +typedef struct { + pd_PortfolioNumber_t num; + pd_PortfolioName_t to_name; +} pd_portfolio_rename_portfolio_V7_t; + +#define PD_CALL_PORTFOLIO_MOVE_PORTFOLIO_FUNDS_V7 5 +typedef struct { + pd_PortfolioId_t from; + pd_PortfolioId_t to; + pd_VecFund_t funds; +} pd_portfolio_move_portfolio_funds_V7_t; + +#define PD_CALL_PROTOCOLFEE_CHANGE_COEFFICIENT_V7 0 +typedef struct { + pd_PosRatio_t coefficient; +} pd_protocolfee_change_coefficient_V7_t; + +#define PD_CALL_SETTLEMENT_CREATE_VENUE_V7 0 +typedef struct { + pd_VenueDetails_t details; + pd_VecAccountId_t signers; + pd_VenueType_t typ; +} pd_settlement_create_venue_V7_t; + +#define PD_CALL_SETTLEMENT_AFFIRM_WITH_RECEIPTS_V7 3 +typedef struct { + pd_InstructionId_t id; + pd_VecReceiptDetails_t receipt_details; + pd_VecPortfolioId_t portfolios; +} pd_settlement_affirm_with_receipts_V7_t; + +#define PD_CALL_SETTLEMENT_SET_VENUE_FILTERING_V7 4 +typedef struct { + pd_AssetID_t asset_id; + pd_bool_t enabled; +} pd_settlement_set_venue_filtering_V7_t; + +#define PD_CALL_SETTLEMENT_ALLOW_VENUES_V7 5 +typedef struct { + pd_AssetID_t asset_id; + pd_VecVenueId_t venues; +} pd_settlement_allow_venues_V7_t; + +#define PD_CALL_SETTLEMENT_DISALLOW_VENUES_V7 6 +typedef struct { + pd_AssetID_t asset_id; + pd_VecVenueId_t venues; +} pd_settlement_disallow_venues_V7_t; + +#define PD_CALL_SETTLEMENT_ADD_INSTRUCTION_V7 9 +typedef struct { + pd_OptionVenueId_t venue_id; + pd_SettlementTypeBlockNumber_t settlement_type; + pd_OptionMoment_t trade_date; + pd_OptionMoment_t value_date; + pd_VecLeg_t legs; + pd_OptionMemo_t instruction_memo; +} pd_settlement_add_instruction_V7_t; + +#define PD_CALL_SETTLEMENT_ADD_AND_AFFIRM_INSTRUCTION_V7 10 +typedef struct { + pd_OptionVenueId_t venue_id; + pd_SettlementTypeBlockNumber_t settlement_type; + pd_OptionMoment_t trade_date; + pd_OptionMoment_t value_date; + pd_VecLeg_t legs; + pd_VecPortfolioId_t portfolios; + pd_OptionMemo_t instruction_memo; +} pd_settlement_add_and_affirm_instruction_V7_t; + +#define PD_CALL_SETTLEMENT_AFFIRM_INSTRUCTION_V7 11 +typedef struct { + pd_InstructionId_t id; + pd_VecPortfolioId_t portfolios; +} pd_settlement_affirm_instruction_V7_t; + +#define PD_CALL_SETTLEMENT_WITHDRAW_AFFIRMATION_V7 12 +typedef struct { + pd_InstructionId_t id; + pd_VecPortfolioId_t portfolios; +} pd_settlement_withdraw_affirmation_V7_t; + +#define PD_CALL_SETTLEMENT_REJECT_INSTRUCTION_V7 13 +typedef struct { + pd_InstructionId_t id; + pd_PortfolioId_t portfolio; +} pd_settlement_reject_instruction_V7_t; + +#define PD_CALL_SETTLEMENT_EXECUTE_SCHEDULED_INSTRUCTION_V7 14 +typedef struct { + pd_InstructionId_t id; + pd_Weight_t weight_limit; +} pd_settlement_execute_scheduled_instruction_V7_t; + +#define PD_CALL_TREASURY_DISBURSEMENT_V7 0 +typedef struct { + pd_VecBeneficiary_t beneficiaries; +} pd_treasury_disbursement_V7_t; + +#define PD_CALL_TREASURY_REIMBURSEMENT_V7 1 +typedef struct { + pd_Balance_t amount; +} pd_treasury_reimbursement_V7_t; + +#define PD_CALL_UTILITY_RELAY_TX_V7 1 +typedef struct { + pd_AccountId_t target; + pd_OffChainSignature_t signature; + pd_UniqueCall_t call; +} pd_utility_relay_tx_V7_t; + +#define PD_CALL_CONTRACTS_CALL_V7 6 +typedef struct { + pd_AccountIdLookupOfT_t dest; + pd_CompactBalance_t amount; + pd_Weight_t gas_limit; + pd_OptionCompactBalanceOf_t storage_deposit_limit; + pd_Bytes_t data; +} pd_contracts_call_V7_t; + +#define PD_CALL_CONTRACTS_INSTANTIATE_V7 8 +typedef struct { + pd_CompactBalance_t amount; + pd_Weight_t gas_limit; + pd_OptionCompactBalanceOf_t storage_deposit_limit; + pd_CodeHash_t code_hash; + pd_Bytes_t data; + pd_Bytes_t salt; +} pd_contracts_instantiate_V7_t; + +#endif + +typedef union { + pd_balances_transfer_V7_t balances_transfer_V7; + pd_balances_transfer_with_memo_V7_t balances_transfer_with_memo_V7; + pd_identity_accept_primary_key_V7_t identity_accept_primary_key_V7; + pd_identity_join_identity_as_key_V7_t identity_join_identity_as_key_V7; + pd_identity_leave_identity_as_key_V7_t identity_leave_identity_as_key_V7; + pd_identity_add_claim_V7_t identity_add_claim_V7; + pd_identity_revoke_claim_V7_t identity_revoke_claim_V7; + pd_identity_freeze_secondary_keys_V7_t identity_freeze_secondary_keys_V7; + pd_identity_unfreeze_secondary_keys_V7_t identity_unfreeze_secondary_keys_V7; + pd_identity_add_authorization_V7_t identity_add_authorization_V7; + pd_identity_remove_authorization_V7_t identity_remove_authorization_V7; + pd_identity_add_secondary_keys_with_authorization_V7_t identity_add_secondary_keys_with_authorization_V7; + pd_identity_remove_secondary_keys_V7_t identity_remove_secondary_keys_V7; + pd_multisig_create_multisig_V7_t multisig_create_multisig_V7; + pd_multisig_change_sigs_required_V7_t multisig_change_sigs_required_V7; + pd_staking_bond_V7_t staking_bond_V7; + pd_staking_bond_extra_V7_t staking_bond_extra_V7; + pd_staking_unbond_V7_t staking_unbond_V7; + pd_staking_withdraw_unbonded_V7_t staking_withdraw_unbonded_V7; + pd_staking_validate_V7_t staking_validate_V7; + pd_staking_nominate_V7_t staking_nominate_V7; + pd_staking_chill_V7_t staking_chill_V7; + pd_staking_set_payee_V7_t staking_set_payee_V7; + pd_staking_set_controller_V7_t staking_set_controller_V7; + pd_staking_rebond_V7_t staking_rebond_V7; + pd_pips_propose_V7_t pips_propose_V7; + pd_pips_vote_V7_t pips_vote_V7; + pd_utility_batch_V7_t utility_batch_V7; + pd_utility_batch_atomic_V7_t utility_batch_atomic_V7; + pd_utility_batch_optimistic_V7_t utility_batch_optimistic_V7; +#ifdef SUBSTRATE_PARSER_FULL +#ifndef TARGET_NANOS + pd_corporateaction_set_max_details_length_V7_t corporateaction_set_max_details_length_V7; + pd_corporateaction_set_default_targets_V7_t corporateaction_set_default_targets_V7; + pd_corporateaction_set_default_withholding_tax_V7_t corporateaction_set_default_withholding_tax_V7; + pd_corporateaction_set_did_withholding_tax_V7_t corporateaction_set_did_withholding_tax_V7; + pd_corporateaction_initiate_corporate_action_V7_t corporateaction_initiate_corporate_action_V7; + pd_corporateaction_link_ca_doc_V7_t corporateaction_link_ca_doc_V7; + pd_corporateaction_remove_ca_V7_t corporateaction_remove_ca_V7; + pd_corporateaction_change_record_date_V7_t corporateaction_change_record_date_V7; + pd_corporateaction_initiate_corporate_action_and_distribute_V7_t corporateaction_initiate_corporate_action_and_distribute_V7; + pd_corporateballot_attach_ballot_V7_t corporateballot_attach_ballot_V7; + pd_corporateballot_vote_V7_t corporateballot_vote_V7; + pd_corporateballot_change_end_V7_t corporateballot_change_end_V7; + pd_corporateballot_change_meta_V7_t corporateballot_change_meta_V7; + pd_corporateballot_change_rcv_V7_t corporateballot_change_rcv_V7; + pd_corporateballot_remove_ballot_V7_t corporateballot_remove_ballot_V7; + pd_pips_enact_snapshot_results_V7_t pips_enact_snapshot_results_V7; +#endif + pd_system_remark_V7_t system_remark_V7; + pd_system_set_heap_pages_V7_t system_set_heap_pages_V7; + pd_system_set_code_V7_t system_set_code_V7; + pd_system_set_code_without_checks_V7_t system_set_code_without_checks_V7; + pd_system_remark_with_event_V7_t system_remark_with_event_V7; + pd_timestamp_set_V7_t timestamp_set_V7; + pd_indices_claim_V7_t indices_claim_V7; + pd_indices_transfer_V7_t indices_transfer_V7; + pd_indices_free_V7_t indices_free_V7; + pd_indices_force_transfer_V7_t indices_force_transfer_V7; + pd_indices_freeze_V7_t indices_freeze_V7; + pd_balances_deposit_block_reward_reserve_balance_V7_t balances_deposit_block_reward_reserve_balance_V7; + pd_balances_set_balance_V7_t balances_set_balance_V7; + pd_balances_force_transfer_V7_t balances_force_transfer_V7; + pd_balances_burn_account_balance_V7_t balances_burn_account_balance_V7; + pd_identity_cdd_register_did_V7_t identity_cdd_register_did_V7; + pd_identity_invalidate_cdd_claims_V7_t identity_invalidate_cdd_claims_V7; + pd_identity_change_cdd_requirement_for_mk_rotation_V7_t identity_change_cdd_requirement_for_mk_rotation_V7; + pd_identity_gc_add_cdd_claim_V7_t identity_gc_add_cdd_claim_V7; + pd_identity_gc_revoke_cdd_claim_V7_t identity_gc_revoke_cdd_claim_V7; + pd_identity_revoke_claim_by_index_V7_t identity_revoke_claim_by_index_V7; + pd_identity_rotate_primary_key_to_secondary_V7_t identity_rotate_primary_key_to_secondary_V7; + pd_identity_set_secondary_key_permissions_V7_t identity_set_secondary_key_permissions_V7; + pd_identity_register_custom_claim_type_V7_t identity_register_custom_claim_type_V7; + pd_identity_cdd_register_did_with_cdd_V7_t identity_cdd_register_did_with_cdd_V7; + pd_identity_create_child_identity_V7_t identity_create_child_identity_V7; + pd_identity_create_child_identities_V7_t identity_create_child_identities_V7; + pd_identity_unlink_child_identity_V7_t identity_unlink_child_identity_V7; + pd_cddserviceproviders_set_active_members_limit_V7_t cddserviceproviders_set_active_members_limit_V7; + pd_cddserviceproviders_disable_member_V7_t cddserviceproviders_disable_member_V7; + pd_cddserviceproviders_add_member_V7_t cddserviceproviders_add_member_V7; + pd_cddserviceproviders_remove_member_V7_t cddserviceproviders_remove_member_V7; + pd_cddserviceproviders_swap_member_V7_t cddserviceproviders_swap_member_V7; + pd_cddserviceproviders_reset_members_V7_t cddserviceproviders_reset_members_V7; + pd_cddserviceproviders_abdicate_membership_V7_t cddserviceproviders_abdicate_membership_V7; + pd_polymeshcommittee_set_vote_threshold_V7_t polymeshcommittee_set_vote_threshold_V7; + pd_polymeshcommittee_set_release_coordinator_V7_t polymeshcommittee_set_release_coordinator_V7; + pd_polymeshcommittee_set_expires_after_V7_t polymeshcommittee_set_expires_after_V7; + pd_polymeshcommittee_vote_or_propose_V7_t polymeshcommittee_vote_or_propose_V7; + pd_polymeshcommittee_vote_V7_t polymeshcommittee_vote_V7; + pd_committeemembership_set_active_members_limit_V7_t committeemembership_set_active_members_limit_V7; + pd_committeemembership_disable_member_V7_t committeemembership_disable_member_V7; + pd_committeemembership_add_member_V7_t committeemembership_add_member_V7; + pd_committeemembership_remove_member_V7_t committeemembership_remove_member_V7; + pd_committeemembership_swap_member_V7_t committeemembership_swap_member_V7; + pd_committeemembership_reset_members_V7_t committeemembership_reset_members_V7; + pd_committeemembership_abdicate_membership_V7_t committeemembership_abdicate_membership_V7; + pd_technicalcommittee_set_vote_threshold_V7_t technicalcommittee_set_vote_threshold_V7; + pd_technicalcommittee_set_release_coordinator_V7_t technicalcommittee_set_release_coordinator_V7; + pd_technicalcommittee_set_expires_after_V7_t technicalcommittee_set_expires_after_V7; + pd_technicalcommittee_vote_or_propose_V7_t technicalcommittee_vote_or_propose_V7; + pd_technicalcommittee_vote_V7_t technicalcommittee_vote_V7; + pd_technicalcommitteemembership_set_active_members_limit_V7_t technicalcommitteemembership_set_active_members_limit_V7; + pd_technicalcommitteemembership_disable_member_V7_t technicalcommitteemembership_disable_member_V7; + pd_technicalcommitteemembership_add_member_V7_t technicalcommitteemembership_add_member_V7; + pd_technicalcommitteemembership_remove_member_V7_t technicalcommitteemembership_remove_member_V7; + pd_technicalcommitteemembership_swap_member_V7_t technicalcommitteemembership_swap_member_V7; + pd_technicalcommitteemembership_reset_members_V7_t technicalcommitteemembership_reset_members_V7; + pd_technicalcommitteemembership_abdicate_membership_V7_t technicalcommitteemembership_abdicate_membership_V7; + pd_upgradecommittee_set_vote_threshold_V7_t upgradecommittee_set_vote_threshold_V7; + pd_upgradecommittee_set_release_coordinator_V7_t upgradecommittee_set_release_coordinator_V7; + pd_upgradecommittee_set_expires_after_V7_t upgradecommittee_set_expires_after_V7; + pd_upgradecommittee_vote_or_propose_V7_t upgradecommittee_vote_or_propose_V7; + pd_upgradecommittee_vote_V7_t upgradecommittee_vote_V7; + pd_upgradecommitteemembership_set_active_members_limit_V7_t upgradecommitteemembership_set_active_members_limit_V7; + pd_upgradecommitteemembership_disable_member_V7_t upgradecommitteemembership_disable_member_V7; + pd_upgradecommitteemembership_add_member_V7_t upgradecommitteemembership_add_member_V7; + pd_upgradecommitteemembership_remove_member_V7_t upgradecommitteemembership_remove_member_V7; + pd_upgradecommitteemembership_swap_member_V7_t upgradecommitteemembership_swap_member_V7; + pd_upgradecommitteemembership_reset_members_V7_t upgradecommitteemembership_reset_members_V7; + pd_upgradecommitteemembership_abdicate_membership_V7_t upgradecommitteemembership_abdicate_membership_V7; + pd_multisig_create_proposal_V7_t multisig_create_proposal_V7; + pd_multisig_approve_V7_t multisig_approve_V7; + pd_multisig_reject_V7_t multisig_reject_V7; + pd_multisig_accept_multisig_signer_V7_t multisig_accept_multisig_signer_V7; + pd_multisig_add_multisig_signers_V7_t multisig_add_multisig_signers_V7; + pd_multisig_remove_multisig_signers_V7_t multisig_remove_multisig_signers_V7; + pd_multisig_add_multisig_signers_via_admin_V7_t multisig_add_multisig_signers_via_admin_V7; + pd_multisig_remove_multisig_signers_via_admin_V7_t multisig_remove_multisig_signers_via_admin_V7; + pd_multisig_change_sigs_required_via_admin_V7_t multisig_change_sigs_required_via_admin_V7; + pd_multisig_add_admin_V7_t multisig_add_admin_V7; + pd_multisig_remove_admin_via_admin_V7_t multisig_remove_admin_via_admin_V7; + pd_multisig_remove_payer_V7_t multisig_remove_payer_V7; + pd_multisig_remove_payer_via_payer_V7_t multisig_remove_payer_via_payer_V7; + pd_multisig_approve_join_identity_V7_t multisig_approve_join_identity_V7; + pd_multisig_join_identity_V7_t multisig_join_identity_V7; + pd_staking_set_validator_count_V7_t staking_set_validator_count_V7; + pd_staking_increase_validator_count_V7_t staking_increase_validator_count_V7; + pd_staking_scale_validator_count_V7_t staking_scale_validator_count_V7; + pd_staking_force_no_eras_V7_t staking_force_no_eras_V7; + pd_staking_force_new_era_V7_t staking_force_new_era_V7; + pd_staking_set_invulnerables_V7_t staking_set_invulnerables_V7; + pd_staking_force_unstake_V7_t staking_force_unstake_V7; + pd_staking_force_new_era_always_V7_t staking_force_new_era_always_V7; + pd_staking_cancel_deferred_slash_V7_t staking_cancel_deferred_slash_V7; + pd_staking_payout_stakers_V7_t staking_payout_stakers_V7; + pd_staking_reap_stash_V7_t staking_reap_stash_V7; + pd_staking_kick_V7_t staking_kick_V7; + pd_staking_set_staking_configs_V7_t staking_set_staking_configs_V7; + pd_staking_chill_other_V7_t staking_chill_other_V7; + pd_staking_force_apply_min_commission_V7_t staking_force_apply_min_commission_V7; + pd_staking_set_min_commission_V7_t staking_set_min_commission_V7; + pd_staking_add_permissioned_validator_V7_t staking_add_permissioned_validator_V7; + pd_staking_remove_permissioned_validator_V7_t staking_remove_permissioned_validator_V7; + pd_staking_validate_cdd_expiry_nominators_V7_t staking_validate_cdd_expiry_nominators_V7; + pd_staking_payout_stakers_by_system_V7_t staking_payout_stakers_by_system_V7; + pd_staking_change_slashing_allowed_for_V7_t staking_change_slashing_allowed_for_V7; + pd_staking_update_permissioned_validator_intended_count_V7_t staking_update_permissioned_validator_intended_count_V7; + pd_staking_chill_from_governance_V7_t staking_chill_from_governance_V7; + pd_staking_set_commission_cap_V7_t staking_set_commission_cap_V7; + pd_session_set_keys_V7_t session_set_keys_V7; + pd_session_purge_keys_V7_t session_purge_keys_V7; + pd_asset_accept_ticker_transfer_V7_t asset_accept_ticker_transfer_V7; + pd_asset_accept_asset_ownership_transfer_V7_t asset_accept_asset_ownership_transfer_V7; + pd_asset_create_asset_V7_t asset_create_asset_V7; + pd_asset_freeze_V7_t asset_freeze_V7; + pd_asset_unfreeze_V7_t asset_unfreeze_V7; + pd_asset_rename_asset_V7_t asset_rename_asset_V7; + pd_asset_issue_V7_t asset_issue_V7; + pd_asset_redeem_V7_t asset_redeem_V7; + pd_asset_make_divisible_V7_t asset_make_divisible_V7; + pd_asset_add_documents_V7_t asset_add_documents_V7; + pd_asset_remove_documents_V7_t asset_remove_documents_V7; + pd_asset_set_funding_round_V7_t asset_set_funding_round_V7; + pd_asset_update_identifiers_V7_t asset_update_identifiers_V7; + pd_capitaldistribution_distribute_V7_t capitaldistribution_distribute_V7; + pd_capitaldistribution_claim_V7_t capitaldistribution_claim_V7; + pd_capitaldistribution_push_benefit_V7_t capitaldistribution_push_benefit_V7; + pd_capitaldistribution_reclaim_V7_t capitaldistribution_reclaim_V7; + pd_capitaldistribution_remove_distribution_V7_t capitaldistribution_remove_distribution_V7; + pd_checkpoint_create_checkpoint_V7_t checkpoint_create_checkpoint_V7; + pd_checkpoint_set_schedules_max_complexity_V7_t checkpoint_set_schedules_max_complexity_V7; + pd_checkpoint_create_schedule_V7_t checkpoint_create_schedule_V7; + pd_checkpoint_remove_schedule_V7_t checkpoint_remove_schedule_V7; + pd_compliancemanager_add_compliance_requirement_V7_t compliancemanager_add_compliance_requirement_V7; + pd_compliancemanager_remove_compliance_requirement_V7_t compliancemanager_remove_compliance_requirement_V7; + pd_compliancemanager_replace_asset_compliance_V7_t compliancemanager_replace_asset_compliance_V7; + pd_compliancemanager_reset_asset_compliance_V7_t compliancemanager_reset_asset_compliance_V7; + pd_compliancemanager_pause_asset_compliance_V7_t compliancemanager_pause_asset_compliance_V7; + pd_compliancemanager_resume_asset_compliance_V7_t compliancemanager_resume_asset_compliance_V7; + pd_compliancemanager_add_default_trusted_claim_issuer_V7_t compliancemanager_add_default_trusted_claim_issuer_V7; + pd_compliancemanager_remove_default_trusted_claim_issuer_V7_t compliancemanager_remove_default_trusted_claim_issuer_V7; + pd_compliancemanager_change_compliance_requirement_V7_t compliancemanager_change_compliance_requirement_V7; + pd_pips_set_prune_historical_pips_V7_t pips_set_prune_historical_pips_V7; + pd_pips_set_min_proposal_deposit_V7_t pips_set_min_proposal_deposit_V7; + pd_pips_set_default_enactment_period_V7_t pips_set_default_enactment_period_V7; + pd_pips_set_pending_pip_expiry_V7_t pips_set_pending_pip_expiry_V7; + pd_pips_set_max_pip_skip_count_V7_t pips_set_max_pip_skip_count_V7; + pd_pips_set_active_pip_limit_V7_t pips_set_active_pip_limit_V7; + pd_pips_approve_committee_proposal_V7_t pips_approve_committee_proposal_V7; + pd_pips_reject_proposal_V7_t pips_reject_proposal_V7; + pd_pips_prune_proposal_V7_t pips_prune_proposal_V7; + pd_pips_reschedule_execution_V7_t pips_reschedule_execution_V7; + pd_pips_clear_snapshot_V7_t pips_clear_snapshot_V7; + pd_pips_snapshot_V7_t pips_snapshot_V7; + pd_pips_execute_scheduled_pip_V7_t pips_execute_scheduled_pip_V7; + pd_pips_expire_scheduled_pip_V7_t pips_expire_scheduled_pip_V7; + pd_portfolio_create_portfolio_V7_t portfolio_create_portfolio_V7; + pd_portfolio_delete_portfolio_V7_t portfolio_delete_portfolio_V7; + pd_portfolio_rename_portfolio_V7_t portfolio_rename_portfolio_V7; + pd_portfolio_move_portfolio_funds_V7_t portfolio_move_portfolio_funds_V7; + pd_protocolfee_change_coefficient_V7_t protocolfee_change_coefficient_V7; + pd_settlement_create_venue_V7_t settlement_create_venue_V7; + pd_settlement_affirm_with_receipts_V7_t settlement_affirm_with_receipts_V7; + pd_settlement_set_venue_filtering_V7_t settlement_set_venue_filtering_V7; + pd_settlement_allow_venues_V7_t settlement_allow_venues_V7; + pd_settlement_disallow_venues_V7_t settlement_disallow_venues_V7; + pd_settlement_add_instruction_V7_t settlement_add_instruction_V7; + pd_settlement_add_and_affirm_instruction_V7_t settlement_add_and_affirm_instruction_V7; + pd_settlement_affirm_instruction_V7_t settlement_affirm_instruction_V7; + pd_settlement_withdraw_affirmation_V7_t settlement_withdraw_affirmation_V7; + pd_settlement_reject_instruction_V7_t settlement_reject_instruction_V7; + pd_settlement_execute_scheduled_instruction_V7_t settlement_execute_scheduled_instruction_V7; + pd_treasury_disbursement_V7_t treasury_disbursement_V7; + pd_treasury_reimbursement_V7_t treasury_reimbursement_V7; + pd_utility_relay_tx_V7_t utility_relay_tx_V7; + pd_contracts_call_V7_t contracts_call_V7; + pd_contracts_instantiate_V7_t contracts_instantiate_V7; +#endif +} pd_MethodNested_V7_t; + +typedef union { + pd_MethodBasic_V7_t basic; + pd_MethodNested_V7_t nested; +} pd_Method_V7_t; + +#ifdef __cplusplus +} +#pragma clang diagnostic pop +#endif diff --git a/app/src/substrate/substrate_types.c b/app/src/substrate/substrate_types.c index 375747c..26d2d65 100644 --- a/app/src/substrate/substrate_types.c +++ b/app/src/substrate/substrate_types.c @@ -109,16 +109,16 @@ parser_error_t _readCallImpl(parser_context_t* c, pd_Call_t* v, pd_MethodNested_ /////////////////////////////////// /////////////////////////////////// -parser_error_t _readIdentityId(parser_context_t* c, pd_IdentityId_t* v) { - GEN_DEF_READARRAY(32) -} - -parser_error_t _readTicker(parser_context_t* c, pd_Ticker_t* v) +parser_error_t _readAssetID(parser_context_t* c, pd_AssetID_t* v) { - v->_len = 12; + v->_len = 16; GEN_DEF_READARRAY(v->_len) } +parser_error_t _readIdentityId(parser_context_t* c, pd_IdentityId_t* v) { + GEN_DEF_READARRAY(32) +} + parser_error_t _readScope(parser_context_t* c, pd_Scope_t* v) { CHECK_INPUT() @@ -128,7 +128,7 @@ parser_error_t _readScope(parser_context_t* c, pd_Scope_t* v) CHECK_ERROR(_readIdentityId(c, &v->identity)) break; case 1: - CHECK_ERROR(_readTicker(c, &v->ticker)) + CHECK_ERROR(_readAssetID(c, &v->assetId)) break; case 2: { compactInt_t clen; @@ -209,6 +209,14 @@ parser_error_t _readTupleU32Scope(parser_context_t* c, pd_TupleU32Scope_t* v) return parser_ok; } +parser_error_t _readAccountId(parser_context_t* c, pd_AccountId_t* v) { + GEN_DEF_READARRAY(32) +} + +parser_error_t _readBalanceNoSymbol(parser_context_t* c, pd_BalanceNoSymbol_t* v) { + GEN_DEF_READARRAY(16) +} + parser_error_t _readClaim(parser_context_t* c, pd_Claim_t* v) { CHECK_INPUT() @@ -361,6 +369,14 @@ parser_error_t _readTrustedIssuer(parser_context_t* c, pd_TrustedIssuer_t* v) return parser_ok; } +parser_error_t _readTupleAccountId32u128(parser_context_t* c, pd_TupleAccountId32u128_t* v) +{ + CHECK_INPUT() + CHECK_ERROR(_readAccountId(c, &v->accountId)) + CHECK_ERROR(_readBalanceNoSymbol(c, &v->value)) + return parser_ok; +} + parser_error_t _readChoiceTitle(parser_context_t* c, pd_ChoiceTitle_t* v) { CHECK_INPUT() @@ -435,7 +451,7 @@ parser_error_t _readAssetPermissions(parser_context_t* c, pd_AssetPermissions_t* break; case 1: // These case 2: // Except - CHECK_ERROR(_readVecTicker(c, &v->contained)) + CHECK_ERROR(_readVecAssetID(c, &v->contained)) break; default: return parser_unexpected_value; @@ -443,10 +459,6 @@ parser_error_t _readAssetPermissions(parser_context_t* c, pd_AssetPermissions_t* return parser_ok; } -parser_error_t _readBalanceNoSymbol(parser_context_t* c, pd_BalanceNoSymbol_t* v) { - GEN_DEF_READARRAY(16) -} - parser_error_t _readCheckpointId(parser_context_t* c, pd_CheckpointId_t* v) { return _readUInt64(c, &v->value); @@ -574,6 +586,14 @@ parser_error_t _readScheduleId(parser_context_t* c, pd_ScheduleId_t* v) return _readUInt64(c, &v->value); } +parser_error_t _readSpNposElectionsSupport(parser_context_t* c, pd_SpNposElectionsSupport_t* v) +{ + CHECK_INPUT() + CHECK_ERROR(_readBalanceNoSymbol(c, &v->total)) + CHECK_ERROR(_readVecTupleAccountId32u128(c, &v->voters)) + return parser_ok; +} + parser_error_t _readTargetTreatment(parser_context_t* c, pd_TargetTreatment_t* v) { CHECK_INPUT() @@ -581,6 +601,12 @@ parser_error_t _readTargetTreatment(parser_context_t* c, pd_TargetTreatment_t* v return parser_ok; } +parser_error_t _readTicker(parser_context_t* c, pd_Ticker_t* v) +{ + v->_len = 12; + GEN_DEF_READARRAY(v->_len) +} + parser_error_t _readTupleIdentityIdTax(parser_context_t* c, pd_TupleIdentityIdTax_t* v) { CHECK_INPUT() @@ -589,10 +615,6 @@ parser_error_t _readTupleIdentityIdTax(parser_context_t* c, pd_TupleIdentityIdTa return parser_ok; } -parser_error_t _readAccountId(parser_context_t* c, pd_AccountId_t* v) { - GEN_DEF_READARRAY(32) -} - parser_error_t _readAgentGroup(parser_context_t* c, pd_AgentGroup_t* v) { CHECK_INPUT() @@ -738,7 +760,7 @@ parser_error_t _readDocumentUri(parser_context_t* c, pd_DocumentUri_t* v) parser_error_t _readFundFungible(parser_context_t* c, pd_FundFungible_t* v) { CHECK_INPUT() - CHECK_ERROR(_readTicker(c, &v->ticker)) + CHECK_ERROR(_readAssetID(c, &v->assetId)) CHECK_ERROR(_readBalanceNoSymbol(c, &v->amount)) CHECK_ERROR(_readOptionMemo(c, &v->memo)) return parser_ok; @@ -747,22 +769,18 @@ parser_error_t _readFundFungible(parser_context_t* c, pd_FundFungible_t* v) parser_error_t _readFundNonFungible(parser_context_t* c, pd_FundNonFungible_t* v) { CHECK_INPUT() - CHECK_ERROR(_readTicker(c, &v->ticker)) + CHECK_ERROR(_readAssetID(c, &v->assetId)) CHECK_ERROR(_readVecu64(c, &v->ids)) CHECK_ERROR(_readOptionMemo(c, &v->memo)) return parser_ok; } -parser_error_t _readHash(parser_context_t* c, pd_Hash_t* v) { - GEN_DEF_READARRAY(32) -} - parser_error_t _readLegFungible(parser_context_t* c, pd_LegFungible_t* v) { CHECK_INPUT() CHECK_ERROR(_readPortfolioId(c, &v->sender)) CHECK_ERROR(_readPortfolioId(c, &v->receiver)) - CHECK_ERROR(_readTicker(c, &v->ticker)) + CHECK_ERROR(_readAssetID(c, &v->assetId)) CHECK_ERROR(_readBalanceNoSymbol(c, &v->amount)) return parser_ok; } @@ -772,7 +790,7 @@ parser_error_t _readLegNonFungible(parser_context_t* c, pd_LegNonFungible_t* v) CHECK_INPUT() CHECK_ERROR(_readPortfolioId(c, &v->sender)) CHECK_ERROR(_readPortfolioId(c, &v->receiver)) - CHECK_ERROR(_readTicker(c, &v->ticker)) + CHECK_ERROR(_readAssetID(c, &v->assetId)) CHECK_ERROR(_readVecu64(c, &v->ids)) return parser_ok; } @@ -865,6 +883,14 @@ parser_error_t _readTargetIdentities(parser_context_t* c, pd_TargetIdentities_t* return parser_ok; } +parser_error_t _readTupleAccountId32SpNposElectionsSupport(parser_context_t* c, pd_TupleAccountId32SpNposElectionsSupport_t* v) +{ + CHECK_INPUT() + CHECK_ERROR(_readAccountId(c, &v->accountId)) + CHECK_ERROR(_readSpNposElectionsSupport(c, &v->support)) + return parser_ok; +} + parser_error_t _readu8_array_32(parser_context_t* c, pd_u8_array_32_t* v) { GEN_DEF_READARRAY(32) } @@ -977,7 +1003,7 @@ parser_error_t _readBallotVote(parser_context_t* c, pd_BallotVote_t* v) parser_error_t _readBecomeAgent(parser_context_t* c, pd_BecomeAgent_t* v) { CHECK_INPUT() - CHECK_ERROR(_readTicker(c, &v->ticker)); + CHECK_ERROR(_readAssetID(c, &v->assetId)); CHECK_ERROR(_readAgentGroup(c, &v->agentGroup)); return parser_ok; } @@ -990,18 +1016,6 @@ parser_error_t _readBeneficiary(parser_context_t* c, pd_Beneficiary_t* v) return parser_ok; } -parser_error_t _readBridgeTxAccountId(parser_context_t* c, pd_BridgeTxAccountId_t* v) -{ - CHECK_INPUT() - - CHECK_ERROR(_readUInt32(c, &v->nonce)) - CHECK_ERROR(_readAccountId(c, &v->recipient)) - CHECK_ERROR(_readBalance(c, &v->value)) - CHECK_ERROR(_readHash(c, &v->txHash)) - - return parser_ok; -} - parser_error_t _readCAKind(parser_context_t* c, pd_CAKind_t* v) { CHECK_INPUT() @@ -1092,6 +1106,15 @@ parser_error_t _readDocument(parser_context_t* c, pd_Document_t* v) return parser_ok; } +parser_error_t _readElectionScore(parser_context_t* c, pd_ElectionScore_t* v) +{ + CHECK_INPUT() + CHECK_ERROR(_readBalance(c, &v->minimalStake)) + CHECK_ERROR(_readBalance(c, &v->sumStake)) + CHECK_ERROR(_readBalance(c, &v->sumStakeSquared)) + return parser_ok; +} + parser_error_t _readFund(parser_context_t* c, pd_Fund_t* v) { CHECK_INPUT() @@ -1123,6 +1146,10 @@ parser_error_t _readFundingRoundName(parser_context_t* c, pd_FundingRoundName_t* return parser_ok; } +parser_error_t _readHash(parser_context_t* c, pd_Hash_t* v) { + GEN_DEF_READARRAY(32) +} + parser_error_t _readLeg(parser_context_t* c, pd_Leg_t* v) { CHECK_INPUT() @@ -1174,6 +1201,20 @@ parser_error_t _readNonFungibleType(parser_context_t* c, pd_NonFungibleType_t* v return parser_ok; } +parser_error_t _readPerbill(parser_context_t* c, pd_Perbill_t* v) +{ + CHECK_INPUT() + CHECK_ERROR(_readUInt32(c, &v->value)) + return parser_ok; +} + +parser_error_t _readPercent(parser_context_t* c, pd_Percent_t* v) +{ + CHECK_INPUT() + CHECK_ERROR(_readUInt8(c, &v->value)) + return parser_ok; +} + parser_error_t _readPipDescription(parser_context_t* c, pd_PipDescription_t* v) { CHECK_INPUT() @@ -1225,25 +1266,6 @@ parser_error_t _readSecondaryKeyWithAuthAccountId(parser_context_t* c, pd_Second return parser_ok; } -parser_error_t _readSignatoryAccountId(parser_context_t* c, pd_SignatoryAccountId_t* v) -{ - CHECK_INPUT() - CHECK_ERROR(_readUInt8(c, &v->value)) - - switch (v->value) { - case 0: - CHECK_ERROR(_readIdentityId(c, &v->identity)) - break; - case 1: - CHECK_ERROR(_readAccountId(c, &v->account)) - break; - default: - return parser_unexpected_value; - } - - return parser_ok; -} - parser_error_t _readSystemOrigin(parser_context_t* c, pd_SystemOrigin_t* v) { CHECK_INPUT() @@ -1270,14 +1292,6 @@ parser_error_t _readTupleExtrinsicIdbool(parser_context_t* c, pd_TupleExtrinsicI return parser_ok; } -parser_error_t _readTupleIdentityIdbool(parser_context_t* c, pd_TupleIdentityIdbool_t* v) -{ - CHECK_INPUT() - CHECK_ERROR(_readIdentityId(c, &v->identity)) - CHECK_ERROR(_readBool(c, &v->val)) - return parser_ok; -} - parser_error_t _readTuplePipIdSnapshotResult(parser_context_t* c, pd_TuplePipIdSnapshotResult_t* v) { CHECK_INPUT() @@ -1384,7 +1398,7 @@ parser_error_t _readAuthorizationDataAccountId(parser_context_t* c, pd_Authoriza CHECK_ERROR(_readAccountId(c, &v->accountId)) break; case 4: // TransferAssetOwnership - CHECK_ERROR(_readTicker(c, &v->ticker)) + CHECK_ERROR(_readAssetID(c, &v->assetId)) break; case 5: // JoinIdentity CHECK_ERROR(_readPermissions(c, &v->permissions)) @@ -1443,6 +1457,13 @@ parser_error_t _readBoundedBTreeSetIdentityIdMaxInstructionMediators(parser_cont return parser_ok; } +parser_error_t _readBoundedVecAccountIdMaxSigners(parser_context_t* c, pd_BoundedVecAccountIdMaxSigners_t* v) +{ + CHECK_INPUT() + CHECK_ERROR(_readVecAccountId(c, &v->contained)) + return parser_ok; +} + parser_error_t _readBoxPalletsOrigin(parser_context_t* c, pd_BoxPalletsOrigin_t* v) { CHECK_INPUT() @@ -1467,10 +1488,24 @@ parser_error_t _readBoxPalletsOrigin(parser_context_t* c, pd_BoxPalletsOrigin_t* return parser_ok; } +parser_error_t _readBoxRawSolutionSolutionOfMinerConfig(parser_context_t* c, pd_BoxRawSolutionSolutionOfMinerConfig_t* v) +{ + CHECK_INPUT() + CHECK_ERROR(_readVecCompactu32(c, &v->solution)) + CHECK_ERROR(_readElectionScore(c, &v->score)) + CHECK_ERROR(_readUInt32(c, &v->round)) + return parser_ok; +} + +parser_error_t _readBoxTasConfigProposal(parser_context_t* c, pd_BoxTasConfigProposal_t* v) +{ + return _readCall(c, &v->call); +} + parser_error_t _readCAId(parser_context_t* c, pd_CAId_t* v) { CHECK_INPUT() - CHECK_ERROR(_readTicker(c, &v->ticker)) + CHECK_ERROR(_readAssetID(c, &v->assetId)) CHECK_ERROR(_readLocalCAId(c, &v->local_id)) return parser_ok; } @@ -1482,10 +1517,61 @@ parser_error_t _readCodeHash(parser_context_t* c, pd_CodeHash_t* v) return parser_ok; } +parser_error_t _readConfigOpBalanceOfT(parser_context_t* c, pd_ConfigOpBalanceOfT_t* v) +{ + CHECK_INPUT() + CHECK_ERROR(_readUInt8(c, &v->value)) + switch (v->value) { + case 0: // Noop + case 2: // Remove + break; + case 1: + CHECK_ERROR(_readBalance(c, &v->set)) + break; + default: + return parser_unexpected_value; + } + return parser_ok; +} + +parser_error_t _readConfigOpPerbill(parser_context_t* c, pd_ConfigOpPerbill_t* v) +{ + CHECK_INPUT() + CHECK_ERROR(_readUInt8(c, &v->value)) + switch (v->value) { + case 0: // Noop + case 2: // Remove + break; + case 1: + CHECK_ERROR(_readPerbill(c, &v->set)) + break; + default: + return parser_unexpected_value; + } + return parser_ok; +} + +parser_error_t _readConfigOpPercent(parser_context_t* c, pd_ConfigOpPercent_t* v) +{ + CHECK_INPUT() + CHECK_ERROR(_readUInt8(c, &v->value)) + switch (v->value) { + case 0: // Noop + case 2: // Remove + break; + case 1: + CHECK_ERROR(_readPercent(c, &v->set)) + break; + default: + return parser_unexpected_value; + } + return parser_ok; +} + parser_error_t _readInitiateCorporateActionArgs(parser_context_t* c, pd_InitiateCorporateActionArgs_t* v) { CHECK_INPUT() - CHECK_ERROR(_readTicker(c, &v->ticker)) + CHECK_ERROR(_readAssetID(c, &v->assetId)) CHECK_ERROR(_readCAKind(c, &v->kind)) CHECK_ERROR(_readUInt64(c, &v->declDate)) CHECK_ERROR(_readOptionRecordDateSpec(c, &v->recordDate)) @@ -1544,7 +1630,7 @@ parser_error_t _readMaybeBlockBlockNumber(parser_context_t* c, pd_MaybeBlockBloc parser_error_t _readNFTs(parser_context_t* c, pd_NFTs_t* v) { CHECK_INPUT() - CHECK_ERROR(_readTicker(c, &v->ticker)) + CHECK_ERROR(_readAssetID(c, &v->assetId)) CHECK_ERROR(_readVecNFTId(c, &v->ids)) return parser_ok; } @@ -1610,6 +1696,32 @@ parser_error_t _readSettlementTypeBlockNumber(parser_context_t* c, pd_Settlement return parser_ok; } +parser_error_t _readSignatoryAccountId(parser_context_t* c, pd_SignatoryAccountId_t* v) +{ + CHECK_INPUT() + CHECK_ERROR(_readUInt8(c, &v->value)) + + switch (v->value) { + case 0: + CHECK_ERROR(_readIdentityId(c, &v->identity)) + break; + case 1: + CHECK_ERROR(_readAccountId(c, &v->account)) + break; + default: + return parser_unexpected_value; + } + + return parser_ok; +} + +parser_error_t _readSupportsAccountId(parser_context_t* c, pd_SupportsAccountId_t* v) +{ + CHECK_INPUT() + CHECK_ERROR(_readVecTupleAccountId32SpNposElectionsSupport(c, &v->tupleAccSupport)) + return parser_ok; +} + parser_error_t _readUniqueCall(parser_context_t* c, pd_UniqueCall_t* v) { CHECK_INPUT() @@ -1702,6 +1814,23 @@ parser_error_t _readCADetails(parser_context_t* c, pd_CADetails_t* v) return parser_ok; } +parser_error_t _readConfigOpu32(parser_context_t* c, pd_ConfigOpu32_t* v) +{ + CHECK_INPUT() + CHECK_ERROR(_readUInt8(c, &v->value)) + switch (v->value) { + case 0: // Noop + case 2: // Remove + break; + case 1: + CHECK_ERROR(_readUInt32(c, &v->set)) + break; + default: + return parser_unexpected_value; + } + return parser_ok; +} + parser_error_t _readDeterminism(parser_context_t* c, pd_Determinism_t* v) { CHECK_INPUT() @@ -1756,20 +1885,6 @@ parser_error_t _readMemberCount(parser_context_t* c, pd_MemberCount_t* v) return parser_ok; } -parser_error_t _readPerbill(parser_context_t* c, pd_Perbill_t* v) -{ - CHECK_INPUT() - CHECK_ERROR(_readUInt32(c, &v->value)) - return parser_ok; -} - -parser_error_t _readPercent(parser_context_t* c, pd_Percent_t* v) -{ - CHECK_INPUT() - CHECK_ERROR(_readUInt8(c, &v->value)) - return parser_ok; -} - parser_error_t _readPortfolioName(parser_context_t* c, pd_PortfolioName_t* v) { CHECK_INPUT() @@ -1814,6 +1929,14 @@ parser_error_t _readSlashingSwitch(parser_context_t* c, pd_SlashingSwitch_t* v) return parser_ok; } +parser_error_t _readSolutionOrSnapshotSize(parser_context_t* c, pd_SolutionOrSnapshotSize_t* v) +{ + CHECK_INPUT() + CHECK_ERROR(_readUInt32(c, &v->voters)) + CHECK_ERROR(_readUInt32(c, &v->targets)) + return parser_ok; +} + parser_error_t _readVenueDetails(parser_context_t* c, pd_VenueDetails_t* v) { CHECK_INPUT() @@ -1852,6 +1975,10 @@ parser_error_t _readVecClaim(parser_context_t* c, pd_VecClaim_t* v) { GEN_DEF_READVECTOR(Claim) } +parser_error_t _readVecAssetID(parser_context_t* c, pd_VecAssetID_t* v) { + GEN_DEF_READVECTOR(AssetID) +} + parser_error_t _readVecPalletPermissions(parser_context_t* c, pd_VecPalletPermissions_t* v) { GEN_DEF_READVECTOR(PalletPermissions) } @@ -1860,14 +1987,14 @@ parser_error_t _readVecPortfolioId(parser_context_t* c, pd_VecPortfolioId_t* v) GEN_DEF_READVECTOR(PortfolioId) } -parser_error_t _readVecTicker(parser_context_t* c, pd_VecTicker_t* v) { - GEN_DEF_READVECTOR(Ticker) -} - parser_error_t _readVecTrustedIssuer(parser_context_t* c, pd_VecTrustedIssuer_t* v) { GEN_DEF_READVECTOR(TrustedIssuer) } +parser_error_t _readVecTupleAccountId32u128(parser_context_t* c, pd_VecTupleAccountId32u128_t* v) { + GEN_DEF_READVECTOR(TupleAccountId32u128) +} + parser_error_t _readVecChoiceTitle(parser_context_t* c, pd_VecChoiceTitle_t* v) { GEN_DEF_READVECTOR(ChoiceTitle) } @@ -1888,6 +2015,14 @@ parser_error_t _readVecTupleIdentityIdTax(parser_context_t* c, pd_VecTupleIdenti GEN_DEF_READVECTOR(TupleIdentityIdTax) } +parser_error_t _readVecAccountId(parser_context_t* c, pd_VecAccountId_t* v) { + GEN_DEF_READVECTOR(AccountId) +} + +parser_error_t _readVecCompactu32(parser_context_t* c, pd_VecCompactu32_t* v) { + GEN_DEF_READVECTOR(Compactu32) +} + parser_error_t _readVecMotion(parser_context_t* c, pd_VecMotion_t* v) { GEN_DEF_READVECTOR(Motion) } @@ -1896,6 +2031,10 @@ parser_error_t _readVecNFTId(parser_context_t* c, pd_VecNFTId_t* v) { GEN_DEF_READVECTOR(NFTId) } +parser_error_t _readVecTupleAccountId32SpNposElectionsSupport(parser_context_t* c, pd_VecTupleAccountId32SpNposElectionsSupport_t* v) { + GEN_DEF_READVECTOR(TupleAccountId32SpNposElectionsSupport) +} + parser_error_t _readVecAccountIdLookupOfT(parser_context_t* c, pd_VecAccountIdLookupOfT_t* v) { GEN_DEF_READVECTOR(AccountIdLookupOfT) } @@ -1908,10 +2047,6 @@ parser_error_t _readVecBeneficiary(parser_context_t* c, pd_VecBeneficiary_t* v) GEN_DEF_READVECTOR(Beneficiary) } -parser_error_t _readVecBridgeTxAccountId(parser_context_t* c, pd_VecBridgeTxAccountId_t* v) { - GEN_DEF_READVECTOR(BridgeTxAccountId) -} - parser_error_t _readVecComplianceRequirement(parser_context_t* c, pd_VecComplianceRequirement_t* v) { GEN_DEF_READVECTOR(ComplianceRequirement) } @@ -1952,26 +2087,14 @@ parser_error_t _readVecSecondaryKeyWithAuthAccountId(parser_context_t* c, pd_Vec GEN_DEF_READVECTOR(SecondaryKeyWithAuthAccountId) } -parser_error_t _readVecSignatoryAccountId(parser_context_t* c, pd_VecSignatoryAccountId_t* v) { - GEN_DEF_READVECTOR(SignatoryAccountId) -} - parser_error_t _readVecTupleExtrinsicIdbool(parser_context_t* c, pd_VecTupleExtrinsicIdbool_t* v) { GEN_DEF_READVECTOR(TupleExtrinsicIdbool) } -parser_error_t _readVecTupleIdentityIdbool(parser_context_t* c, pd_VecTupleIdentityIdbool_t* v) { - GEN_DEF_READVECTOR(TupleIdentityIdbool) -} - parser_error_t _readVecTuplePipIdSnapshotResult(parser_context_t* c, pd_VecTuplePipIdSnapshotResult_t* v) { GEN_DEF_READVECTOR(TuplePipIdSnapshotResult) } -parser_error_t _readVecAccountId(parser_context_t* c, pd_VecAccountId_t* v) { - GEN_DEF_READVECTOR(AccountId) -} - parser_error_t _readVecAssetIdentifier(parser_context_t* c, pd_VecAssetIdentifier_t* v) { GEN_DEF_READVECTOR(AssetIdentifier) } @@ -2126,32 +2249,52 @@ parser_error_t _readOptionAssetMetadataValueDetailMoment(parser_context_t* c, pd return parser_ok; } -parser_error_t _readOptionPortfolioId(parser_context_t* c, pd_OptionPortfolioId_t* v) +parser_error_t _readOptionElectionScore(parser_context_t* c, pd_OptionElectionScore_t* v) { CHECK_INPUT() CHECK_ERROR(_readUInt8(c, &v->some)) if (v->some > 0) { - CHECK_ERROR(_readPortfolioId(c, &v->contained)) + CHECK_ERROR(_readElectionScore(c, &v->contained)) } return parser_ok; } -parser_error_t _readOptionReceiptDetails(parser_context_t* c, pd_OptionReceiptDetails_t* v) +parser_error_t _readOptionPermissions(parser_context_t* c, pd_OptionPermissions_t* v) { CHECK_INPUT() CHECK_ERROR(_readUInt8(c, &v->some)) if (v->some > 0) { - CHECK_ERROR(_readReceiptDetails(c, &v->contained)) + CHECK_ERROR(_readPermissions(c, &v->contained)) } return parser_ok; } -parser_error_t _readOptionTax(parser_context_t* c, pd_OptionTax_t* v) +parser_error_t _readOptionPortfolioId(parser_context_t* c, pd_OptionPortfolioId_t* v) { CHECK_INPUT() CHECK_ERROR(_readUInt8(c, &v->some)) if (v->some > 0) { - CHECK_ERROR(_readTax(c, &v->contained)) + CHECK_ERROR(_readPortfolioId(c, &v->contained)) + } + return parser_ok; +} + +parser_error_t _readOptionReceiptDetails(parser_context_t* c, pd_OptionReceiptDetails_t* v) +{ + CHECK_INPUT() + CHECK_ERROR(_readUInt8(c, &v->some)) + if (v->some > 0) { + CHECK_ERROR(_readReceiptDetails(c, &v->contained)) + } + return parser_ok; +} + +parser_error_t _readOptionTax(parser_context_t* c, pd_OptionTax_t* v) +{ + CHECK_INPUT() + CHECK_ERROR(_readUInt8(c, &v->some)) + if (v->some > 0) { + CHECK_ERROR(_readTax(c, &v->contained)) } return parser_ok; } @@ -2176,6 +2319,16 @@ parser_error_t _readOptionAssetCount(parser_context_t* c, pd_OptionAssetCount_t* return parser_ok; } +parser_error_t _readOptionAssetID(parser_context_t* c, pd_OptionAssetID_t* v) +{ + CHECK_INPUT() + CHECK_ERROR(_readUInt8(c, &v->some)) + if (v->some > 0) { + CHECK_ERROR(_readAssetID(c, &v->contained)) + } + return parser_ok; +} + parser_error_t _readOptionBalance(parser_context_t* c, pd_OptionBalance_t* v) { CHECK_INPUT() @@ -2256,6 +2409,16 @@ parser_error_t _readOptionUrl(parser_context_t* c, pd_OptionUrl_t* v) return parser_ok; } +parser_error_t _readOptionVenueId(parser_context_t* c, pd_OptionVenueId_t* v) +{ + CHECK_INPUT() + CHECK_ERROR(_readUInt8(c, &v->some)) + if (v->some > 0) { + CHECK_ERROR(_readVenueId(c, &v->contained)) + } + return parser_ok; +} + parser_error_t _readOptionu32(parser_context_t* c, pd_Optionu32_t* v) { CHECK_INPUT() @@ -2276,6 +2439,16 @@ parser_error_t _readOptionu64(parser_context_t* c, pd_Optionu64_t* v) return parser_ok; } +parser_error_t _readOptionu8(parser_context_t* c, pd_Optionu8_t* v) +{ + CHECK_INPUT() + CHECK_ERROR(_readUInt8(c, &v->some)) + if (v->some > 0) { + CHECK_ERROR(_readu8(c, &v->contained)) + } + return parser_ok; +} + /////////////////////////////////// /////////////////////////////////// /////////////////////////////////// @@ -2397,17 +2570,8 @@ parser_error_t _toStringCompactu64( /////////////////////////////////// /////////////////////////////////// -parser_error_t _toStringIdentityId( - const pd_IdentityId_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) { - GEN_DEF_TOSTRING_ARRAY(32) -} - -parser_error_t _toStringTicker( - const pd_Ticker_t* v, +parser_error_t _toStringAssetID( + const pd_AssetID_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -2427,9 +2591,19 @@ parser_error_t _toStringTicker( } else { pageStringHex(outValue, outValueLen, (const char*)v->_ptr, strLen, pageIdx, pageCount); } + return parser_ok; } +parser_error_t _toStringIdentityId( + const pd_IdentityId_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) { + GEN_DEF_TOSTRING_ARRAY(32) +} + parser_error_t _toStringScope( const pd_Scope_t* v, char* outValue, @@ -2443,7 +2617,7 @@ parser_error_t _toStringScope( _toStringIdentityId(&v->identity, outValue, outValueLen, pageIdx, pageCount); break; case 1: - _toStringTicker(&v->ticker, outValue, outValueLen, pageIdx, pageCount); + _toStringAssetID(&v->assetId, outValue, outValueLen, pageIdx, pageCount); break; case 2: GEN_DEF_TOSTRING_ARRAY(v->_len) @@ -2696,6 +2870,49 @@ parser_error_t _toStringTupleU32Scope( return parser_display_idx_out_of_range; } +parser_error_t _toStringAccountId( + const pd_AccountId_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + return _toStringPubkeyAsAddress(v->_ptr, outValue, outValueLen, pageIdx, pageCount); +} + +parser_error_t _toStringBalanceNoSymbol( + const pd_BalanceNoSymbol_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + + char bufferUI[200]; + memset(outValue, 0, outValueLen); + memset(bufferUI, 0, sizeof(bufferUI)); + *pageCount = 1; + + uint8_t bcdOut[100]; + const uint16_t bcdOutLen = sizeof(bcdOut); + + bignumLittleEndian_to_bcd(bcdOut, bcdOutLen, v->_ptr, 16); + if (!bignumLittleEndian_bcdprint(bufferUI, sizeof(bufferUI), bcdOut, bcdOutLen)) { + return parser_unexpected_buffer_end; + } + + // Format number + if (intstr_to_fpstr_inplace(bufferUI, sizeof(bufferUI), COIN_AMOUNT_DECIMAL_PLACES) == 0) { + return parser_unexpected_value; + } + + number_inplace_trimming(bufferUI, 1); + + pageString(outValue, outValueLen, bufferUI, pageIdx, pageCount); + return parser_ok; +} + parser_error_t _toStringClaim( const pd_Claim_t* v, char* outValue, @@ -3027,6 +3244,43 @@ parser_error_t _toStringTrustedIssuer( return parser_display_idx_out_of_range; } +parser_error_t _toStringTupleAccountId32u128( + const pd_TupleAccountId32u128_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + + // First measure number of pages + uint8_t pages[2] = { 0 }; + CHECK_ERROR(_toStringAccountId(&v->accountId, outValue, outValueLen, 0, &pages[0])) + CHECK_ERROR(_toStringBalanceNoSymbol(&v->value, outValue, outValueLen, 0, &pages[1])) + + *pageCount = 0; + for (uint8_t i = 0; i < (uint8_t)sizeof(pages); i++) { + *pageCount += pages[i]; + } + + if (pageIdx >= *pageCount) { + return parser_display_idx_out_of_range; + } + + if (pageIdx < pages[0]) { + CHECK_ERROR(_toStringAccountId(&v->accountId, outValue, outValueLen, pageIdx, &pages[0])) + return parser_ok; + } + pageIdx -= pages[0]; + + if (pageIdx < pages[1]) { + CHECK_ERROR(_toStringBalanceNoSymbol(&v->value, outValue, outValueLen, pageIdx, &pages[1])) + return parser_ok; + } + + return parser_display_idx_out_of_range; +} + parser_error_t _toStringChoiceTitle( const pd_ChoiceTitle_t* v, char* outValue, @@ -3148,14 +3402,14 @@ parser_error_t _toStringAssetPermissions( GEN_DEF_TOSTRING_ENUM("Whole") break; case 1: // These - CHECK_ERROR(_toStringVecTicker(&v->contained, outValue, outValueLen, 0, pageCount);) + CHECK_ERROR(_toStringVecAssetID(&v->contained, outValue, outValueLen, 0, pageCount);) GEN_DEF_TOSTRING_ENUM("These") - CHECK_ERROR(_toStringVecTicker(&v->contained, outValue, outValueLen, pageIdx, &_dummy);) + CHECK_ERROR(_toStringVecAssetID(&v->contained, outValue, outValueLen, pageIdx, &_dummy);) break; case 2: // Except - CHECK_ERROR(_toStringVecTicker(&v->contained, outValue, outValueLen, 0, pageCount);) + CHECK_ERROR(_toStringVecAssetID(&v->contained, outValue, outValueLen, 0, pageCount);) GEN_DEF_TOSTRING_ENUM("Except") - CHECK_ERROR(_toStringVecTicker(&v->contained, outValue, outValueLen, pageIdx, &_dummy);) + CHECK_ERROR(_toStringVecAssetID(&v->contained, outValue, outValueLen, pageIdx, &_dummy);) break; default: return parser_unexpected_value; @@ -3164,39 +3418,6 @@ parser_error_t _toStringAssetPermissions( return parser_ok; } -parser_error_t _toStringBalanceNoSymbol( - const pd_BalanceNoSymbol_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - - char bufferUI[200]; - memset(outValue, 0, outValueLen); - memset(bufferUI, 0, sizeof(bufferUI)); - *pageCount = 1; - - uint8_t bcdOut[100]; - const uint16_t bcdOutLen = sizeof(bcdOut); - - bignumLittleEndian_to_bcd(bcdOut, bcdOutLen, v->_ptr, 16); - if (!bignumLittleEndian_bcdprint(bufferUI, sizeof(bufferUI), bcdOut, bcdOutLen)) { - return parser_unexpected_buffer_end; - } - - // Format number - if (intstr_to_fpstr_inplace(bufferUI, sizeof(bufferUI), COIN_AMOUNT_DECIMAL_PLACES) == 0) { - return parser_unexpected_value; - } - - number_inplace_trimming(bufferUI, 1); - - pageString(outValue, outValueLen, bufferUI, pageIdx, pageCount); - return parser_ok; -} - parser_error_t _toStringCheckpointId( const pd_CheckpointId_t* v, char* outValue, @@ -3438,6 +3659,43 @@ parser_error_t _toStringScheduleId( return _toStringu64(&v->value, outValue, outValueLen, pageIdx, pageCount); } +parser_error_t _toStringSpNposElectionsSupport( + const pd_SpNposElectionsSupport_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + + // First measure number of pages + uint8_t pages[2] = { 0 }; + CHECK_ERROR(_toStringBalanceNoSymbol(&v->total, outValue, outValueLen, 0, &pages[0])) + CHECK_ERROR(_toStringVecTupleAccountId32u128(&v->voters, outValue, outValueLen, 0, &pages[1])) + + *pageCount = 0; + for (uint8_t i = 0; i < (uint8_t)sizeof(pages); i++) { + *pageCount += pages[i]; + } + + if (pageIdx >= *pageCount) { + return parser_display_idx_out_of_range; + } + + if (pageIdx < pages[0]) { + CHECK_ERROR(_toStringBalanceNoSymbol(&v->total, outValue, outValueLen, pageIdx, &pages[0])) + return parser_ok; + } + pageIdx -= pages[0]; + + if (pageIdx < pages[1]) { + CHECK_ERROR(_toStringVecTupleAccountId32u128(&v->voters, outValue, outValueLen, pageIdx, &pages[1])) + return parser_ok; + } + + return parser_display_idx_out_of_range; +} + parser_error_t _toStringTargetTreatment( const pd_TargetTreatment_t* v, char* outValue, @@ -3461,6 +3719,30 @@ parser_error_t _toStringTargetTreatment( return parser_ok; } +parser_error_t _toStringTicker( + const pd_Ticker_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + if (v->_len > UINT16_MAX) { + return parser_value_out_of_range; + } + const uint16_t strLen = (uint16_t)v->_len; + bool allPrintable = true; + for (uint16_t i = 0; i < strLen; i++) { + allPrintable &= IS_PRINTABLE(v->_ptr[i]); + } + if (allPrintable) { + pageStringExt(outValue, outValueLen, (const char*)v->_ptr, strLen, pageIdx, pageCount); + } else { + pageStringHex(outValue, outValueLen, (const char*)v->_ptr, strLen, pageIdx, pageCount); + } + return parser_ok; +} + parser_error_t _toStringTupleIdentityIdTax( const pd_TupleIdentityIdTax_t* v, char* outValue, @@ -3498,16 +3780,6 @@ parser_error_t _toStringTupleIdentityIdTax( return parser_display_idx_out_of_range; } -parser_error_t _toStringAccountId( - const pd_AccountId_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - return _toStringPubkeyAsAddress(v->_ptr, outValue, outValueLen, pageIdx, pageCount); -} - parser_error_t _toStringAgentGroup( const pd_AgentGroup_t* v, char* outValue, @@ -3755,7 +4027,7 @@ parser_error_t _toStringFundFungible( // First measure number of pages uint8_t pages[3] = { 0 }; - CHECK_ERROR(_toStringTicker(&v->ticker, outValue, outValueLen, 0, &pages[0])) + CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, 0, &pages[0])) CHECK_ERROR(_toStringBalanceNoSymbol(&v->amount, outValue, outValueLen, 0, &pages[1])) CHECK_ERROR(_toStringOptionMemo(&v->memo, outValue, outValueLen, 0, &pages[2])) @@ -3769,7 +4041,7 @@ parser_error_t _toStringFundFungible( } if (pageIdx < pages[0]) { - CHECK_ERROR(_toStringTicker(&v->ticker, outValue, outValueLen, pageIdx, &pages[0])) + CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, pageIdx, &pages[0])) return parser_ok; } pageIdx -= pages[0]; @@ -3799,7 +4071,7 @@ parser_error_t _toStringFundNonFungible( // First measure number of pages uint8_t pages[3] = { 0 }; - CHECK_ERROR(_toStringTicker(&v->ticker, outValue, outValueLen, 0, &pages[0])) + CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, 0, &pages[0])) CHECK_ERROR(_toStringVecu64(&v->ids, outValue, outValueLen, 0, &pages[1])) CHECK_ERROR(_toStringOptionMemo(&v->memo, outValue, outValueLen, 0, &pages[2])) @@ -3813,7 +4085,7 @@ parser_error_t _toStringFundNonFungible( } if (pageIdx < pages[0]) { - CHECK_ERROR(_toStringTicker(&v->ticker, outValue, outValueLen, pageIdx, &pages[0])) + CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, pageIdx, &pages[0])) return parser_ok; } pageIdx -= pages[0]; @@ -3832,15 +4104,6 @@ parser_error_t _toStringFundNonFungible( return parser_display_idx_out_of_range; } -parser_error_t _toStringHash( - const pd_Hash_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) { - GEN_DEF_TOSTRING_ARRAY(32) -} - parser_error_t _toStringLegFungible( const pd_LegFungible_t* v, char* outValue, @@ -3854,7 +4117,7 @@ parser_error_t _toStringLegFungible( uint8_t pages[4] = { 0 }; CHECK_ERROR(_toStringPortfolioId(&v->sender, outValue, outValueLen, 0, &pages[0])) CHECK_ERROR(_toStringPortfolioId(&v->receiver, outValue, outValueLen, 0, &pages[1])) - CHECK_ERROR(_toStringTicker(&v->ticker, outValue, outValueLen, 0, &pages[2])) + CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, 0, &pages[2])) CHECK_ERROR(_toStringBalanceNoSymbol(&v->amount, outValue, outValueLen, 0, &pages[3])) *pageCount = 0; @@ -3879,7 +4142,7 @@ parser_error_t _toStringLegFungible( pageIdx -= pages[1]; if (pageIdx < pages[2]) { - CHECK_ERROR(_toStringTicker(&v->ticker, outValue, outValueLen, pageIdx, &pages[2])) + CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, pageIdx, &pages[2])) return parser_ok; } pageIdx -= pages[2]; @@ -3905,7 +4168,7 @@ parser_error_t _toStringLegNonFungible( uint8_t pages[4] = { 0 }; CHECK_ERROR(_toStringPortfolioId(&v->sender, outValue, outValueLen, 0, &pages[0])) CHECK_ERROR(_toStringPortfolioId(&v->receiver, outValue, outValueLen, 0, &pages[1])) - CHECK_ERROR(_toStringTicker(&v->ticker, outValue, outValueLen, 0, &pages[2])) + CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, 0, &pages[2])) CHECK_ERROR(_toStringVecu64(&v->ids, outValue, outValueLen, 0, &pages[3])) *pageCount = 0; @@ -3930,7 +4193,7 @@ parser_error_t _toStringLegNonFungible( pageIdx -= pages[1]; if (pageIdx < pages[2]) { - CHECK_ERROR(_toStringTicker(&v->ticker, outValue, outValueLen, pageIdx, &pages[2])) + CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, pageIdx, &pages[2])) return parser_ok; } pageIdx -= pages[2]; @@ -4211,15 +4474,52 @@ parser_error_t _toStringTargetIdentities( return parser_display_idx_out_of_range; } -parser_error_t _toStringu8_array_32( - const pd_u8_array_32_t* v, +parser_error_t _toStringTupleAccountId32SpNposElectionsSupport( + const pd_TupleAccountId32SpNposElectionsSupport_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, - uint8_t* pageCount) { - GEN_DEF_TOSTRING_ARRAY(32) -} - + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + + // First measure number of pages + uint8_t pages[2] = { 0 }; + CHECK_ERROR(_toStringAccountId(&v->accountId, outValue, outValueLen, 0, &pages[0])) + CHECK_ERROR(_toStringSpNposElectionsSupport(&v->support, outValue, outValueLen, 0, &pages[1])) + + *pageCount = 0; + for (uint8_t i = 0; i < (uint8_t)sizeof(pages); i++) { + *pageCount += pages[i]; + } + + if (pageIdx >= *pageCount) { + return parser_display_idx_out_of_range; + } + + if (pageIdx < pages[0]) { + CHECK_ERROR(_toStringAccountId(&v->accountId, outValue, outValueLen, pageIdx, &pages[0])) + return parser_ok; + } + pageIdx -= pages[0]; + + if (pageIdx < pages[1]) { + CHECK_ERROR(_toStringSpNposElectionsSupport(&v->support, outValue, outValueLen, pageIdx, &pages[1])) + return parser_ok; + } + + return parser_display_idx_out_of_range; +} + +parser_error_t _toStringu8_array_32( + const pd_u8_array_32_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) { + GEN_DEF_TOSTRING_ARRAY(32) +} + parser_error_t _toStringAccountIdLookupOfT( const pd_AccountIdLookupOfT_t* v, char* outValue, @@ -4504,7 +4804,7 @@ parser_error_t _toStringBecomeAgent( // First measure number of pages uint8_t pages[2] = { 0 }; - CHECK_ERROR(_toStringTicker(&v->ticker, outValue, outValueLen, 0, &pages[0])) + CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, 0, &pages[0])) CHECK_ERROR(_toStringAgentGroup(&v->agentGroup, outValue, outValueLen, 0, &pages[1])) *pageCount = 0; @@ -4517,7 +4817,7 @@ parser_error_t _toStringBecomeAgent( } if (pageIdx < pages[0]) { - CHECK_ERROR(_toStringTicker(&v->ticker, outValue, outValueLen, pageIdx, &pages[0])) + CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, pageIdx, &pages[0])) return parser_ok; } pageIdx -= pages[0]; @@ -4567,57 +4867,6 @@ parser_error_t _toStringBeneficiary( return parser_display_idx_out_of_range; } -parser_error_t _toStringBridgeTxAccountId( - const pd_BridgeTxAccountId_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - - // First measure number of pages - uint8_t pages[4] = { 0 }; - CHECK_ERROR(_toStringu32(&v->nonce, outValue, outValueLen, 0, &pages[0])) - CHECK_ERROR(_toStringAccountId(&v->recipient, outValue, outValueLen, 0, &pages[1])) - CHECK_ERROR(_toStringBalance(&v->value, outValue, outValueLen, 0, &pages[2])) - CHECK_ERROR(_toStringHash(&v->txHash, outValue, outValueLen, 0, &pages[3])) - - *pageCount = 0; - for (uint8_t i = 0; i < (uint8_t)sizeof(pages); i++) { - *pageCount += pages[i]; - } - - if (pageIdx >= *pageCount) { - return parser_display_idx_out_of_range; - } - - if (pageIdx < pages[0]) { - CHECK_ERROR(_toStringu32(&v->nonce, outValue, outValueLen, pageIdx, &pages[0])) - return parser_ok; - } - pageIdx -= pages[0]; - - if (pageIdx < pages[1]) { - CHECK_ERROR(_toStringAccountId(&v->recipient, outValue, outValueLen, pageIdx, &pages[1])) - return parser_ok; - } - pageIdx -= pages[1]; - - if (pageIdx < pages[2]) { - CHECK_ERROR(_toStringBalance(&v->value, outValue, outValueLen, pageIdx, &pages[2])) - return parser_ok; - } - pageIdx -= pages[2]; - - if (pageIdx < pages[3]) { - CHECK_ERROR(_toStringHash(&v->txHash, outValue, outValueLen, pageIdx, &pages[3])) - return parser_ok; - } - - return parser_display_idx_out_of_range; -} - parser_error_t _toStringCAKind( const pd_CAKind_t* v, char* outValue, @@ -4948,6 +5197,50 @@ parser_error_t _toStringDocument( return parser_display_idx_out_of_range; } +parser_error_t _toStringElectionScore( + const pd_ElectionScore_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + + // First measure number of pages + uint8_t pages[3] = { 0 }; + CHECK_ERROR(_toStringBalance(&v->minimalStake, outValue, outValueLen, 0, &pages[0])) + CHECK_ERROR(_toStringBalance(&v->sumStake, outValue, outValueLen, 0, &pages[1])) + CHECK_ERROR(_toStringBalance(&v->sumStakeSquared, outValue, outValueLen, 0, &pages[2])) + + *pageCount = 0; + for (uint8_t i = 0; i < (uint8_t)sizeof(pages); i++) { + *pageCount += pages[i]; + } + + if (pageIdx >= *pageCount) { + return parser_display_idx_out_of_range; + } + + if (pageIdx < pages[0]) { + CHECK_ERROR(_toStringBalance(&v->minimalStake, outValue, outValueLen, pageIdx, &pages[0])) + return parser_ok; + } + pageIdx -= pages[0]; + + if (pageIdx < pages[1]) { + CHECK_ERROR(_toStringBalance(&v->sumStake, outValue, outValueLen, pageIdx, &pages[1])) + return parser_ok; + } + pageIdx -= pages[1]; + + if (pageIdx < pages[2]) { + CHECK_ERROR(_toStringBalance(&v->sumStakeSquared, outValue, outValueLen, pageIdx, &pages[2])) + return parser_ok; + } + + return parser_display_idx_out_of_range; +} + parser_error_t _toStringFund( const pd_Fund_t* v, char* outValue, @@ -4993,6 +5286,15 @@ parser_error_t _toStringFundingRoundName( return parser_ok; } +parser_error_t _toStringHash( + const pd_Hash_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) { + GEN_DEF_TOSTRING_ARRAY(32) +} + parser_error_t _toStringLeg( const pd_Leg_t* v, char* outValue, @@ -5096,6 +5398,44 @@ parser_error_t _toStringNonFungibleType( return parser_ok; } +parser_error_t _toStringPerbill( + const pd_Perbill_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + char bufferUI[100] = { 0 }; + char ratioBuffer[80] = { 0 }; + memset(outValue, 0, outValueLen); + *pageCount = 1; + + if (fpuint64_to_str(ratioBuffer, sizeof(ratioBuffer), v->value, 7) == 0) { + return parser_unexpected_value; + } + + snprintf(bufferUI, sizeof(bufferUI), "%s%%", ratioBuffer); + pageString(outValue, outValueLen, bufferUI, pageIdx, pageCount); + return parser_ok; +} + +parser_error_t _toStringPercent( + const pd_Percent_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + char bufferUI[50]; + char bufferRatio[50]; + + uint64_to_str(bufferRatio, sizeof(bufferRatio), v->value); + + snprintf(bufferUI, sizeof(bufferUI), "%s%%", bufferRatio); + pageString(outValue, outValueLen, bufferUI, pageIdx, pageCount); + return parser_ok; +} + parser_error_t _toStringPipDescription( const pd_PipDescription_t* v, char* outValue, @@ -5303,28 +5643,6 @@ parser_error_t _toStringSecondaryKeyWithAuthAccountId( return parser_display_idx_out_of_range; } -parser_error_t _toStringSignatoryAccountId( - const pd_SignatoryAccountId_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - switch (v->value) { - case 0: - _toStringIdentityId(&v->identity, outValue, outValueLen, pageIdx, pageCount); - break; - case 1: - _toStringAccountId(&v->account, outValue, outValueLen, pageIdx, pageCount); - break; - default: - return parser_unexpected_value; - } - - return parser_ok; -} - parser_error_t _toStringSystemOrigin( const pd_SystemOrigin_t* v, char* outValue, @@ -5394,43 +5712,6 @@ parser_error_t _toStringTupleExtrinsicIdbool( return parser_display_idx_out_of_range; } -parser_error_t _toStringTupleIdentityIdbool( - const pd_TupleIdentityIdbool_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - CLEAN_AND_CHECK() - - // First measure number of pages - uint8_t pages[2] = { 0 }; - CHECK_ERROR(_toStringIdentityId(&v->identity, outValue, outValueLen, 0, &pages[0])) - CHECK_ERROR(_toStringbool(&v->val, outValue, outValueLen, 0, &pages[1])) - - *pageCount = 0; - for (uint8_t i = 0; i < (uint8_t)sizeof(pages); i++) { - *pageCount += pages[i]; - } - - if (pageIdx >= *pageCount) { - return parser_display_idx_out_of_range; - } - - if (pageIdx < pages[0]) { - CHECK_ERROR(_toStringIdentityId(&v->identity, outValue, outValueLen, pageIdx, &pages[0])) - return parser_ok; - } - pageIdx -= pages[0]; - - if (pageIdx < pages[1]) { - CHECK_ERROR(_toStringbool(&v->val, outValue, outValueLen, pageIdx, &pages[1])) - return parser_ok; - } - - return parser_display_idx_out_of_range; -} - parser_error_t _toStringTuplePipIdSnapshotResult( const pd_TuplePipIdSnapshotResult_t* v, char* outValue, @@ -5738,9 +6019,9 @@ parser_error_t _toStringAuthorizationDataAccountId( CHECK_ERROR(_toStringAccountId(&v->accountId, outValue, outValueLen, pageIdx, &_dummy);) break; case 4: // TransferAssetOwnership - CHECK_ERROR(_toStringTicker(&v->ticker, outValue, outValueLen, 0, pageCount);) + CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, 0, pageCount);) GEN_DEF_TOSTRING_ENUM("TransferAssetOwnership") - CHECK_ERROR(_toStringTicker(&v->ticker, outValue, outValueLen, pageIdx, &_dummy);) + CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, pageIdx, &_dummy);) break; case 5: // JoinIdentity CHECK_ERROR(_toStringPermissions(&v->permissions, outValue, outValueLen, 0, pageCount);) @@ -5918,6 +6199,36 @@ parser_error_t _toStringBoundedBTreeSetIdentityIdMaxInstructionMediators( return parser_display_idx_out_of_range; } +parser_error_t _toStringBoundedVecAccountIdMaxSigners( + const pd_BoundedVecAccountIdMaxSigners_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + + // First measure number of pages + uint8_t pages[1] = { 0 }; + CHECK_ERROR(_toStringVecAccountId(&v->contained, outValue, outValueLen, 0, &pages[0])) + + *pageCount = 0; + for (uint8_t i = 0; i < (uint8_t)sizeof(pages); i++) { + *pageCount += pages[i]; + } + + if (pageIdx >= *pageCount) { + return parser_display_idx_out_of_range; + } + + if (pageIdx < pages[0]) { + CHECK_ERROR(_toStringVecAccountId(&v->contained, outValue, outValueLen, pageIdx, &pages[0])) + return parser_ok; + } + + return parser_display_idx_out_of_range; +} + parser_error_t _toStringBoxPalletsOrigin( const pd_BoxPalletsOrigin_t* v, char* outValue, @@ -5958,8 +6269,8 @@ parser_error_t _toStringBoxPalletsOrigin( return parser_ok; } -parser_error_t _toStringCAId( - const pd_CAId_t* v, +parser_error_t _toStringBoxRawSolutionSolutionOfMinerConfig( + const pd_BoxRawSolutionSolutionOfMinerConfig_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, @@ -5968,9 +6279,10 @@ parser_error_t _toStringCAId( CLEAN_AND_CHECK() // First measure number of pages - uint8_t pages[2] = { 0 }; - CHECK_ERROR(_toStringTicker(&v->ticker, outValue, outValueLen, 0, &pages[0])) - CHECK_ERROR(_toStringLocalCAId(&v->local_id, outValue, outValueLen, 0, &pages[1])) + uint8_t pages[3] = { 0 }; + CHECK_ERROR(_toStringVecCompactu32(&v->solution, outValue, outValueLen, 0, &pages[0])) + CHECK_ERROR(_toStringElectionScore(&v->score, outValue, outValueLen, 0, &pages[1])) + CHECK_ERROR(_toStringu32(&v->round, outValue, outValueLen, 0, &pages[2])) *pageCount = 0; for (uint8_t i = 0; i < (uint8_t)sizeof(pages); i++) { @@ -5982,20 +6294,73 @@ parser_error_t _toStringCAId( } if (pageIdx < pages[0]) { - CHECK_ERROR(_toStringTicker(&v->ticker, outValue, outValueLen, pageIdx, &pages[0])) + CHECK_ERROR(_toStringVecCompactu32(&v->solution, outValue, outValueLen, pageIdx, &pages[0])) return parser_ok; } pageIdx -= pages[0]; if (pageIdx < pages[1]) { - CHECK_ERROR(_toStringLocalCAId(&v->local_id, outValue, outValueLen, pageIdx, &pages[1])) + CHECK_ERROR(_toStringElectionScore(&v->score, outValue, outValueLen, pageIdx, &pages[1])) + return parser_ok; + } + pageIdx -= pages[1]; + + if (pageIdx < pages[2]) { + CHECK_ERROR(_toStringu32(&v->round, outValue, outValueLen, pageIdx, &pages[2])) return parser_ok; } return parser_display_idx_out_of_range; } -parser_error_t _toStringCodeHash( +parser_error_t _toStringBoxTasConfigProposal( + const pd_BoxTasConfigProposal_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + return _toStringCall(&v->call, outValue, outValueLen, pageIdx, pageCount); +} + +parser_error_t _toStringCAId( + const pd_CAId_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + + // First measure number of pages + uint8_t pages[2] = { 0 }; + CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, 0, &pages[0])) + CHECK_ERROR(_toStringLocalCAId(&v->local_id, outValue, outValueLen, 0, &pages[1])) + + *pageCount = 0; + for (uint8_t i = 0; i < (uint8_t)sizeof(pages); i++) { + *pageCount += pages[i]; + } + + if (pageIdx >= *pageCount) { + return parser_display_idx_out_of_range; + } + + if (pageIdx < pages[0]) { + CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, pageIdx, &pages[0])) + return parser_ok; + } + pageIdx -= pages[0]; + + if (pageIdx < pages[1]) { + CHECK_ERROR(_toStringLocalCAId(&v->local_id, outValue, outValueLen, pageIdx, &pages[1])) + return parser_ok; + } + + return parser_display_idx_out_of_range; +} + +parser_error_t _toStringCodeHash( const pd_CodeHash_t* v, char* outValue, uint16_t outValueLen, @@ -6005,6 +6370,81 @@ parser_error_t _toStringCodeHash( return _toStringHash(&v->hash, outValue, outValueLen, pageIdx, pageCount); } +parser_error_t _toStringConfigOpBalanceOfT( + const pd_ConfigOpBalanceOfT_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + *pageCount = 1; + switch (v->value) { + case 0: + snprintf(outValue, outValueLen, "Noop"); + break; + case 1: + CHECK_ERROR(_toStringBalance(&v->set, outValue, outValueLen, pageIdx, pageCount)) + break; + case 2: + snprintf(outValue, outValueLen, "Remove"); + break; + default: + return parser_unexpected_value; + } + return parser_ok; +} + +parser_error_t _toStringConfigOpPerbill( + const pd_ConfigOpPerbill_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + *pageCount = 1; + switch (v->value) { + case 0: + snprintf(outValue, outValueLen, "Noop"); + break; + case 1: + CHECK_ERROR(_toStringPerbill(&v->set, outValue, outValueLen, pageIdx, pageCount)) + break; + case 2: + snprintf(outValue, outValueLen, "Remove"); + break; + default: + return parser_unexpected_value; + } + return parser_ok; +} + +parser_error_t _toStringConfigOpPercent( + const pd_ConfigOpPercent_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + *pageCount = 1; + switch (v->value) { + case 0: + snprintf(outValue, outValueLen, "Noop"); + break; + case 1: + CHECK_ERROR(_toStringPercent(&v->set, outValue, outValueLen, pageIdx, pageCount)) + break; + case 2: + snprintf(outValue, outValueLen, "Remove"); + break; + default: + return parser_unexpected_value; + } + return parser_ok; +} + parser_error_t _toStringInitiateCorporateActionArgs( const pd_InitiateCorporateActionArgs_t* v, char* outValue, @@ -6016,7 +6456,7 @@ parser_error_t _toStringInitiateCorporateActionArgs( // First measure number of pages uint8_t pages[8] = { 0 }; - CHECK_ERROR(_toStringTicker(&v->ticker, outValue, outValueLen, 0, &pages[0])) + CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, 0, &pages[0])) CHECK_ERROR(_toStringCAKind(&v->kind, outValue, outValueLen, 0, &pages[1])) CHECK_ERROR(_toStringu64(&v->declDate, outValue, outValueLen, 0, &pages[2])) CHECK_ERROR(_toStringOptionRecordDateSpec(&v->recordDate, outValue, outValueLen, 0, &pages[3])) @@ -6035,7 +6475,7 @@ parser_error_t _toStringInitiateCorporateActionArgs( } if (pageIdx < pages[0]) { - CHECK_ERROR(_toStringTicker(&v->ticker, outValue, outValueLen, pageIdx, &pages[0])) + CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, pageIdx, &pages[0])) return parser_ok; } pageIdx -= pages[0]; @@ -6151,7 +6591,7 @@ parser_error_t _toStringNFTs( // First measure number of pages uint8_t pages[2] = { 0 }; - CHECK_ERROR(_toStringTicker(&v->ticker, outValue, outValueLen, 0, &pages[0])) + CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, 0, &pages[0])) CHECK_ERROR(_toStringVecNFTId(&v->ids, outValue, outValueLen, 0, &pages[1])) *pageCount = 0; @@ -6164,7 +6604,7 @@ parser_error_t _toStringNFTs( } if (pageIdx < pages[0]) { - CHECK_ERROR(_toStringTicker(&v->ticker, outValue, outValueLen, pageIdx, &pages[0])) + CHECK_ERROR(_toStringAssetID(&v->assetId, outValue, outValueLen, pageIdx, &pages[0])) return parser_ok; } pageIdx -= pages[0]; @@ -6288,6 +6728,58 @@ parser_error_t _toStringSettlementTypeBlockNumber( return parser_ok; } +parser_error_t _toStringSignatoryAccountId( + const pd_SignatoryAccountId_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + switch (v->value) { + case 0: + _toStringIdentityId(&v->identity, outValue, outValueLen, pageIdx, pageCount); + break; + case 1: + _toStringAccountId(&v->account, outValue, outValueLen, pageIdx, pageCount); + break; + default: + return parser_unexpected_value; + } + + return parser_ok; +} + +parser_error_t _toStringSupportsAccountId( + const pd_SupportsAccountId_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + + // First measure number of pages + uint8_t pages[1] = { 0 }; + CHECK_ERROR(_toStringVecTupleAccountId32SpNposElectionsSupport(&v->tupleAccSupport, outValue, outValueLen, 0, &pages[0])) + + *pageCount = 0; + for (uint8_t i = 0; i < (uint8_t)sizeof(pages); i++) { + *pageCount += pages[i]; + } + + if (pageIdx >= *pageCount) { + return parser_display_idx_out_of_range; + } + + if (pageIdx < pages[0]) { + CHECK_ERROR(_toStringVecTupleAccountId32SpNposElectionsSupport(&v->tupleAccSupport, outValue, outValueLen, pageIdx, &pages[0])) + return parser_ok; + } + + return parser_display_idx_out_of_range; +} + parser_error_t _toStringUniqueCall( const pd_UniqueCall_t* v, char* outValue, @@ -6474,6 +6966,31 @@ parser_error_t _toStringCADetails( return parser_ok; } +parser_error_t _toStringConfigOpu32( + const pd_ConfigOpu32_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + *pageCount = 1; + switch (v->value) { + case 0: + snprintf(outValue, outValueLen, "Noop"); + break; + case 1: + CHECK_ERROR(_toStringu32(&v->set, outValue, outValueLen, pageIdx, pageCount)) + break; + case 2: + snprintf(outValue, outValueLen, "Remove"); + break; + default: + return parser_unexpected_value; + } + return parser_ok; +} + parser_error_t _toStringDeterminism( const pd_Determinism_t* v, char* outValue, @@ -6484,10 +7001,10 @@ parser_error_t _toStringDeterminism( CLEAN_AND_CHECK() UNUSED(pageIdx); switch (v->value) { - case 0: // Enforced + case 0: // Deterministic snprintf(outValue, outValueLen, "Deterministic"); break; - case 1: // Relaxed + case 1: // AllowIndeterminism snprintf(outValue, outValueLen, "AllowIndeterminism"); break; default: @@ -6569,44 +7086,6 @@ parser_error_t _toStringMemberCount( return _toStringu32(&v->value, outValue, outValueLen, pageIdx, pageCount); } -parser_error_t _toStringPerbill( - const pd_Perbill_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - char bufferUI[100] = { 0 }; - char ratioBuffer[80] = { 0 }; - memset(outValue, 0, outValueLen); - *pageCount = 1; - - if (fpuint64_to_str(ratioBuffer, sizeof(ratioBuffer), v->value, 7) == 0) { - return parser_unexpected_value; - } - - snprintf(bufferUI, sizeof(bufferUI), "%s%%", ratioBuffer); - pageString(outValue, outValueLen, bufferUI, pageIdx, pageCount); - return parser_ok; -} - -parser_error_t _toStringPercent( - const pd_Percent_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - char bufferUI[50]; - char bufferRatio[50]; - - uint64_to_str(bufferRatio, sizeof(bufferRatio), v->value); - - snprintf(bufferUI, sizeof(bufferUI), "%s%%", bufferRatio); - pageString(outValue, outValueLen, bufferUI, pageIdx, pageCount); - return parser_ok; -} - parser_error_t _toStringPortfolioName( const pd_PortfolioName_t* v, char* outValue, @@ -6715,6 +7194,43 @@ parser_error_t _toStringSlashingSwitch( return parser_ok; } +parser_error_t _toStringSolutionOrSnapshotSize( + const pd_SolutionOrSnapshotSize_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + + // First measure number of pages + uint8_t pages[2] = { 0 }; + CHECK_ERROR(_toStringu32(&v->voters, outValue, outValueLen, 0, &pages[0])) + CHECK_ERROR(_toStringu32(&v->targets, outValue, outValueLen, 0, &pages[1])) + + *pageCount = 0; + for (uint8_t i = 0; i < (uint8_t)sizeof(pages); i++) { + *pageCount += pages[i]; + } + + if (pageIdx >= *pageCount) { + return parser_display_idx_out_of_range; + } + + if (pageIdx < pages[0]) { + CHECK_ERROR(_toStringu32(&v->voters, outValue, outValueLen, pageIdx, &pages[0])) + return parser_ok; + } + pageIdx -= pages[0]; + + if (pageIdx < pages[1]) { + CHECK_ERROR(_toStringu32(&v->targets, outValue, outValueLen, pageIdx, &pages[1])) + return parser_ok; + } + + return parser_display_idx_out_of_range; +} + parser_error_t _toStringVenueDetails( const pd_VenueDetails_t* v, char* outValue, @@ -6796,6 +7312,16 @@ parser_error_t _toStringVecClaim( GEN_DEF_TOSTRING_VECTOR(Claim); } +parser_error_t _toStringVecAssetID( + const pd_VecAssetID_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + GEN_DEF_TOSTRING_VECTOR(AssetID); +} + parser_error_t _toStringVecPalletPermissions( const pd_VecPalletPermissions_t* v, char* outValue, @@ -6816,24 +7342,24 @@ parser_error_t _toStringVecPortfolioId( GEN_DEF_TOSTRING_VECTOR(PortfolioId); } -parser_error_t _toStringVecTicker( - const pd_VecTicker_t* v, +parser_error_t _toStringVecTrustedIssuer( + const pd_VecTrustedIssuer_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, uint8_t* pageCount) { - GEN_DEF_TOSTRING_VECTOR(Ticker); + GEN_DEF_TOSTRING_VECTOR(TrustedIssuer); } -parser_error_t _toStringVecTrustedIssuer( - const pd_VecTrustedIssuer_t* v, +parser_error_t _toStringVecTupleAccountId32u128( + const pd_VecTupleAccountId32u128_t* v, char* outValue, uint16_t outValueLen, uint8_t pageIdx, uint8_t* pageCount) { - GEN_DEF_TOSTRING_VECTOR(TrustedIssuer); + GEN_DEF_TOSTRING_VECTOR(TupleAccountId32u128); } parser_error_t _toStringVecChoiceTitle( @@ -6886,6 +7412,26 @@ parser_error_t _toStringVecTupleIdentityIdTax( GEN_DEF_TOSTRING_VECTOR(TupleIdentityIdTax); } +parser_error_t _toStringVecAccountId( + const pd_VecAccountId_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + GEN_DEF_TOSTRING_VECTOR(AccountId); +} + +parser_error_t _toStringVecCompactu32( + const pd_VecCompactu32_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + GEN_DEF_TOSTRING_VECTOR(Compactu32); +} + parser_error_t _toStringVecMotion( const pd_VecMotion_t* v, char* outValue, @@ -6906,6 +7452,16 @@ parser_error_t _toStringVecNFTId( GEN_DEF_TOSTRING_VECTOR(NFTId); } +parser_error_t _toStringVecTupleAccountId32SpNposElectionsSupport( + const pd_VecTupleAccountId32SpNposElectionsSupport_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + GEN_DEF_TOSTRING_VECTOR(TupleAccountId32SpNposElectionsSupport); +} + parser_error_t _toStringVecAccountIdLookupOfT( const pd_VecAccountIdLookupOfT_t* v, char* outValue, @@ -6936,16 +7492,6 @@ parser_error_t _toStringVecBeneficiary( GEN_DEF_TOSTRING_VECTOR(Beneficiary); } -parser_error_t _toStringVecBridgeTxAccountId( - const pd_VecBridgeTxAccountId_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - GEN_DEF_TOSTRING_VECTOR(BridgeTxAccountId); -} - parser_error_t _toStringVecComplianceRequirement( const pd_VecComplianceRequirement_t* v, char* outValue, @@ -7046,16 +7592,6 @@ parser_error_t _toStringVecSecondaryKeyWithAuthAccountId( GEN_DEF_TOSTRING_VECTOR(SecondaryKeyWithAuthAccountId); } -parser_error_t _toStringVecSignatoryAccountId( - const pd_VecSignatoryAccountId_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - GEN_DEF_TOSTRING_VECTOR(SignatoryAccountId); -} - parser_error_t _toStringVecTupleExtrinsicIdbool( const pd_VecTupleExtrinsicIdbool_t* v, char* outValue, @@ -7066,16 +7602,6 @@ parser_error_t _toStringVecTupleExtrinsicIdbool( GEN_DEF_TOSTRING_VECTOR(TupleExtrinsicIdbool); } -parser_error_t _toStringVecTupleIdentityIdbool( - const pd_VecTupleIdentityIdbool_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - GEN_DEF_TOSTRING_VECTOR(TupleIdentityIdbool); -} - parser_error_t _toStringVecTuplePipIdSnapshotResult( const pd_VecTuplePipIdSnapshotResult_t* v, char* outValue, @@ -7086,16 +7612,6 @@ parser_error_t _toStringVecTuplePipIdSnapshotResult( GEN_DEF_TOSTRING_VECTOR(TuplePipIdSnapshotResult); } -parser_error_t _toStringVecAccountId( - const pd_VecAccountId_t* v, - char* outValue, - uint16_t outValueLen, - uint8_t pageIdx, - uint8_t* pageCount) -{ - GEN_DEF_TOSTRING_VECTOR(AccountId); -} - parser_error_t _toStringVecAssetIdentifier( const pd_VecAssetIdentifier_t* v, char* outValue, @@ -7429,6 +7945,48 @@ parser_error_t _toStringOptionAssetMetadataValueDetailMoment( return parser_ok; } +parser_error_t _toStringOptionElectionScore( + const pd_OptionElectionScore_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + + *pageCount = 1; + if (v->some > 0) { + CHECK_ERROR(_toStringElectionScore( + &v->contained, + outValue, outValueLen, + pageIdx, pageCount)); + } else { + snprintf(outValue, outValueLen, "None"); + } + return parser_ok; +} + +parser_error_t _toStringOptionPermissions( + const pd_OptionPermissions_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + + *pageCount = 1; + if (v->some > 0) { + CHECK_ERROR(_toStringPermissions( + &v->contained, + outValue, outValueLen, + pageIdx, pageCount)); + } else { + snprintf(outValue, outValueLen, "None"); + } + return parser_ok; +} + parser_error_t _toStringOptionPortfolioId( const pd_OptionPortfolioId_t* v, char* outValue, @@ -7534,6 +8092,27 @@ parser_error_t _toStringOptionAssetCount( return parser_ok; } +parser_error_t _toStringOptionAssetID( + const pd_OptionAssetID_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + + *pageCount = 1; + if (v->some > 0) { + CHECK_ERROR(_toStringAssetID( + &v->contained, + outValue, outValueLen, + pageIdx, pageCount)); + } else { + snprintf(outValue, outValueLen, "None"); + } + return parser_ok; +} + parser_error_t _toStringOptionBalance( const pd_OptionBalance_t* v, char* outValue, @@ -7702,6 +8281,27 @@ parser_error_t _toStringOptionUrl( return parser_ok; } +parser_error_t _toStringOptionVenueId( + const pd_OptionVenueId_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + + *pageCount = 1; + if (v->some > 0) { + CHECK_ERROR(_toStringVenueId( + &v->contained, + outValue, outValueLen, + pageIdx, pageCount)); + } else { + snprintf(outValue, outValueLen, "None"); + } + return parser_ok; +} + parser_error_t _toStringOptionu32( const pd_Optionu32_t* v, char* outValue, @@ -7744,6 +8344,27 @@ parser_error_t _toStringOptionu64( return parser_ok; } +parser_error_t _toStringOptionu8( + const pd_Optionu8_t* v, + char* outValue, + uint16_t outValueLen, + uint8_t pageIdx, + uint8_t* pageCount) +{ + CLEAN_AND_CHECK() + + *pageCount = 1; + if (v->some > 0) { + CHECK_ERROR(_toStringu8( + &v->contained, + outValue, outValueLen, + pageIdx, pageCount)); + } else { + snprintf(outValue, outValueLen, "None"); + } + return parser_ok; +} + /////////////////////////////////// /////////////////////////////////// /////////////////////////////////// diff --git a/app/src/substrate/substrate_types.h b/app/src/substrate/substrate_types.h index ea0d534..f91f792 100644 --- a/app/src/substrate/substrate_types.h +++ b/app/src/substrate/substrate_types.h @@ -119,19 +119,19 @@ typedef struct { } pd_CompactBalance_t; typedef struct { + uint64_t _len; const uint8_t* _ptr; -} pd_IdentityId_t; +} pd_AssetID_t; typedef struct { - uint64_t _len; const uint8_t* _ptr; -} pd_Ticker_t; +} pd_IdentityId_t; typedef struct { uint8_t value; union { pd_IdentityId_t identity; - pd_Ticker_t ticker; + pd_AssetID_t assetId; uint64_t _len; const uint8_t* _ptr; }; @@ -195,6 +195,14 @@ typedef struct { uint64_t _lenBuffer; } pd_VecDispatchableName_t; +typedef struct { + const uint8_t* _ptr; +} pd_AccountId_t; + +typedef struct { + const uint8_t* _ptr; +} pd_BalanceNoSymbol_t; + typedef struct { uint8_t value; union { @@ -250,6 +258,12 @@ typedef struct { pd_TrustedFor_t trustedFor; } pd_TrustedIssuer_t; +typedef struct { + pd_AccountId_t accountId; + pd_BalanceNoSymbol_t value; + +} pd_TupleAccountId32u128_t; + typedef struct { uint64_t _len; const uint8_t* _ptr; @@ -291,6 +305,12 @@ typedef struct { pd_Permill_t value; } pd_Tax_t; +typedef struct { + uint64_t _len; + const uint8_t* _ptr; + uint64_t _lenBuffer; +} pd_VecAssetID_t; + typedef struct { uint64_t _len; const uint8_t* _ptr; @@ -307,23 +327,19 @@ typedef struct { uint64_t _len; const uint8_t* _ptr; uint64_t _lenBuffer; -} pd_VecTicker_t; +} pd_VecTrustedIssuer_t; typedef struct { uint64_t _len; const uint8_t* _ptr; uint64_t _lenBuffer; -} pd_VecTrustedIssuer_t; +} pd_VecTupleAccountId32u128_t; typedef struct { uint8_t value; - pd_VecTicker_t contained; + pd_VecAssetID_t contained; } pd_AssetPermissions_t; -typedef struct { - const uint8_t* _ptr; -} pd_BalanceNoSymbol_t; - typedef struct { uint64_t value; } pd_CheckpointId_t; @@ -384,10 +400,21 @@ typedef struct { uint64_t value; } pd_ScheduleId_t; +typedef struct { + pd_BalanceNoSymbol_t total; + pd_VecTupleAccountId32u128_t voters; + +} pd_SpNposElectionsSupport_t; + typedef struct { uint8_t value; } pd_TargetTreatment_t; +typedef struct { + uint64_t _len; + const uint8_t* _ptr; +} pd_Ticker_t; + typedef struct { pd_IdentityId_t id; pd_Tax_t tax; @@ -411,10 +438,6 @@ typedef struct { uint64_t _lenBuffer; } pd_Vecu64_t; -typedef struct { - const uint8_t* _ptr; -} pd_AccountId_t; - typedef struct { uint8_t value; uint32_t custom; @@ -466,32 +489,28 @@ typedef struct { } pd_DocumentUri_t; typedef struct { - pd_Ticker_t ticker; + pd_AssetID_t assetId; pd_BalanceNoSymbol_t amount; pd_OptionMemo_t memo; } pd_FundFungible_t; typedef struct { - pd_Ticker_t ticker; + pd_AssetID_t assetId; pd_Vecu64_t ids; pd_OptionMemo_t memo; } pd_FundNonFungible_t; -typedef struct { - const uint8_t* _ptr; -} pd_Hash_t; - typedef struct { pd_PortfolioId_t sender; pd_PortfolioId_t receiver; - pd_Ticker_t ticker; + pd_AssetID_t assetId; pd_BalanceNoSymbol_t amount; } pd_LegFungible_t; typedef struct { pd_PortfolioId_t sender; pd_PortfolioId_t receiver; - pd_Ticker_t ticker; + pd_AssetID_t assetId; pd_Vecu64_t ids; } pd_LegNonFungible_t; @@ -568,6 +587,12 @@ typedef struct { pd_TargetTreatment_t treatment; } pd_TargetIdentities_t; +typedef struct { + pd_AccountId_t accountId; + pd_SpNposElectionsSupport_t support; + +} pd_TupleAccountId32SpNposElectionsSupport_t; + typedef struct { uint64_t _len; const uint8_t* _ptr; @@ -632,7 +657,7 @@ typedef struct { } pd_BallotVote_t; typedef struct { - pd_Ticker_t ticker; + pd_AssetID_t assetId; pd_AgentGroup_t agentGroup; } pd_BecomeAgent_t; @@ -641,13 +666,6 @@ typedef struct { pd_Balance_t balance; } pd_Beneficiary_t; -typedef struct { - uint32_t nonce; - pd_AccountId_t recipient; - pd_Balance_t value; - pd_Hash_t txHash; -} pd_BridgeTxAccountId_t; - typedef struct { uint8_t value; } pd_CAKind_t; @@ -698,6 +716,12 @@ typedef struct { pd_OptionMoment_t filing_date; } pd_Document_t; +typedef struct { + pd_Balance_t minimalStake; + pd_Balance_t sumStake; + pd_Balance_t sumStakeSquared; +} pd_ElectionScore_t; + typedef struct { uint8_t value; union { @@ -711,6 +735,10 @@ typedef struct { const uint8_t* _ptr; } pd_FundingRoundName_t; +typedef struct { + const uint8_t* _ptr; +} pd_Hash_t; + typedef struct { uint8_t value; union { @@ -759,6 +787,14 @@ typedef struct { pd_VecTupleIdentityIdTax_t contained; } pd_OptionVecTupleIdentityIdTax_t; +typedef struct { + uint32_t value; +} pd_Perbill_t; + +typedef struct { + uint8_t value; +} pd_Percent_t; + typedef struct { uint64_t _len; const uint8_t* _ptr; @@ -789,14 +825,6 @@ typedef struct { pd_Signature_t auth_signature; } pd_SecondaryKeyWithAuthAccountId_t; -typedef struct { - uint8_t value; - union { - pd_IdentityId_t identity; - pd_AccountId_t account; - }; -} pd_SignatoryAccountId_t; - typedef struct { uint8_t value; pd_AccountId_t _signed; @@ -808,11 +836,6 @@ typedef struct { pd_bool_t _bool; } pd_TupleExtrinsicIdbool_t; -typedef struct { - pd_IdentityId_t identity; - pd_bool_t val; -} pd_TupleIdentityIdbool_t; - typedef struct { pd_PipId_t pip_id; pd_SnapshotResult_t snapshot_result; @@ -823,6 +846,18 @@ typedef struct { const uint8_t* _ptr; } pd_Url_t; +typedef struct { + uint64_t _len; + const uint8_t* _ptr; + uint64_t _lenBuffer; +} pd_VecAccountId_t; + +typedef struct { + uint64_t _len; + const uint8_t* _ptr; + uint64_t _lenBuffer; +} pd_VecCompactu32_t; + typedef struct { uint64_t _len; const uint8_t* _ptr; @@ -835,6 +870,12 @@ typedef struct { uint64_t _lenBuffer; } pd_VecNFTId_t; +typedef struct { + uint64_t _len; + const uint8_t* _ptr; + uint64_t _lenBuffer; +} pd_VecTupleAccountId32SpNposElectionsSupport_t; + typedef struct { uint64_t value; } pd_VenueId_t; @@ -879,6 +920,7 @@ typedef struct { pd_IdentityId_t identityId; pd_AccountId_t accountId; pd_Ticker_t ticker; + pd_AssetID_t assetId; pd_Permissions_t permissions; pd_PortfolioId_t portfolioId; pd_BecomeAgent_t becomeAgent; @@ -908,6 +950,10 @@ typedef struct { pd_VecIdentityId_t identities; } pd_BoundedBTreeSetIdentityIdMaxInstructionMediators_t; +typedef struct { + pd_VecAccountId_t contained; +} pd_BoundedVecAccountIdMaxSigners_t; + typedef struct { uint8_t value; union { @@ -917,7 +963,19 @@ typedef struct { } pd_BoxPalletsOrigin_t; typedef struct { - pd_Ticker_t ticker; + // TODO: find what type is correct for "solution" + pd_VecCompactu32_t solution; + pd_ElectionScore_t score; + uint32_t round; + +} pd_BoxRawSolutionSolutionOfMinerConfig_t; + +typedef struct { + pd_Call_t call; +} pd_BoxTasConfigProposal_t; + +typedef struct { + pd_AssetID_t assetId; pd_LocalCAId_t local_id; } pd_CAId_t; @@ -926,7 +984,22 @@ typedef struct { } pd_CodeHash_t; typedef struct { - pd_Ticker_t ticker; + uint8_t value; + pd_Balance_t set; +} pd_ConfigOpBalanceOfT_t; + +typedef struct { + uint8_t value; + pd_Perbill_t set; +} pd_ConfigOpPerbill_t; + +typedef struct { + uint8_t value; + pd_Percent_t set; +} pd_ConfigOpPercent_t; + +typedef struct { + pd_AssetID_t assetId; pd_CAKind_t kind; uint64_t declDate; pd_OptionRecordDateSpec_t recordDate; @@ -952,7 +1025,7 @@ typedef struct { } pd_MaybeBlockBlockNumber_t; typedef struct { - pd_Ticker_t ticker; + pd_AssetID_t assetId; pd_VecNFTId_t ids; } pd_NFTs_t; @@ -971,6 +1044,16 @@ typedef struct { pd_AssetMetadataValueDetailMoment_t contained; } pd_OptionAssetMetadataValueDetailMoment_t; +typedef struct { + uint8_t some; + pd_ElectionScore_t contained; +} pd_OptionElectionScore_t; + +typedef struct { + uint8_t some; + pd_Permissions_t contained; +} pd_OptionPermissions_t; + typedef struct { uint8_t some; pd_PortfolioId_t contained; @@ -1009,6 +1092,19 @@ typedef struct { pd_BlockNumber_t blockNumber; } pd_SettlementTypeBlockNumber_t; +typedef struct { + uint8_t value; + union { + pd_IdentityId_t identity; + pd_AccountId_t account; + }; +} pd_SignatoryAccountId_t; + +typedef struct { + pd_VecTupleAccountId32SpNposElectionsSupport_t tupleAccSupport; + +} pd_SupportsAccountId_t; + typedef struct { uint64_t nonce; pd_Call_t call; @@ -1037,12 +1133,6 @@ typedef struct { uint64_t _lenBuffer; } pd_VecBeneficiary_t; -typedef struct { - uint64_t _len; - const uint8_t* _ptr; - uint64_t _lenBuffer; -} pd_VecBridgeTxAccountId_t; - typedef struct { uint64_t _len; const uint8_t* _ptr; @@ -1110,24 +1200,12 @@ typedef struct { uint64_t _lenBuffer; } pd_VecSecondaryKeyWithAuthAccountId_t; -typedef struct { - uint64_t _len; - const uint8_t* _ptr; - uint64_t _lenBuffer; -} pd_VecSignatoryAccountId_t; - typedef struct { uint64_t _len; const uint8_t* _ptr; uint64_t _lenBuffer; } pd_VecTupleExtrinsicIdbool_t; -typedef struct { - uint64_t _len; - const uint8_t* _ptr; - uint64_t _lenBuffer; -} pd_VecTupleIdentityIdbool_t; - typedef struct { uint64_t _len; const uint8_t* _ptr; @@ -1156,6 +1234,11 @@ typedef struct { const uint8_t* _ptr; } pd_CADetails_t; +typedef struct { + uint8_t value; + uint32_t set; +} pd_ConfigOpu32_t; + typedef struct { uint8_t value; } pd_Determinism_t; @@ -1190,6 +1273,11 @@ typedef struct { pd_AssetCount_t contained; } pd_OptionAssetCount_t; +typedef struct { + uint8_t some; + pd_AssetID_t contained; +} pd_OptionAssetID_t; + typedef struct { uint8_t some; pd_Balance_t contained; @@ -1230,6 +1318,11 @@ typedef struct { pd_Url_t contained; } pd_OptionUrl_t; +typedef struct { + uint8_t some; + pd_VenueId_t contained; +} pd_OptionVenueId_t; + typedef struct { uint8_t some; pd_u32_t contained; @@ -1241,12 +1334,9 @@ typedef struct { } pd_Optionu64_t; typedef struct { - uint32_t value; -} pd_Perbill_t; - -typedef struct { - uint8_t value; -} pd_Percent_t; + uint8_t some; + pd_u8_t contained; +} pd_Optionu8_t; typedef struct { uint64_t _len; @@ -1271,10 +1361,10 @@ typedef struct { } pd_SlashingSwitch_t; typedef struct { - uint64_t _len; - const uint8_t* _ptr; - uint64_t _lenBuffer; -} pd_VecAccountId_t; + uint32_t voters; + uint32_t targets; + +} pd_SolutionOrSnapshotSize_t; typedef struct { uint64_t _len; diff --git a/app/src/substrate/substrate_types_V4.h b/app/src/substrate/substrate_types_V7.h similarity index 95% rename from app/src/substrate/substrate_types_V4.h rename to app/src/substrate/substrate_types_V7.h index 01f386a..60c1159 100644 --- a/app/src/substrate/substrate_types_V4.h +++ b/app/src/substrate/substrate_types_V7.h @@ -23,7 +23,7 @@ extern "C" { #include #include -// Versioned types functions for tx version V4 +// Versioned types functions for tx version V7 #ifdef __cplusplus } diff --git a/tests/testcases_current.json b/tests/testcases_current.json index 0d0ee3e..333153c 100644 --- a/tests/testcases_current.json +++ b/tests/testcases_current.json @@ -2,420 +2,393 @@ { "index": 1, "name": "System_Remark", - "blob": "000001013a83a7ff5037a23c0e43affbcc635966aa16484bf4aad5570831c098d7eaa04956dffa80bb93e6f18a1f496c3102ad749a5bd8d8be953c82c1e75595318b35bcd50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "000080c878e7402f4abf94866f8ba269a0122786b8cefaf7e3a6b9dab902d1c556e081d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | System : Remark", - "1 | Remark [1/4] : 3a83a7ff5037a23c0e43affbcc635966aa1648", - "1 | Remark [2/4] : 4bf4aad5570831c098d7eaa04956dffa80bb93", - "1 | Remark [3/4] : e6f18a1f496c3102ad749a5bd8d8be953c82c1", - "1 | Remark [4/4] : e75595318b35bc", - "2 | Tip : POLYX 5552342.355555" + "1 | Remark [1/2] : c878e7402f4abf94866f8ba269a0122786b8ce", + "1 | Remark [2/2] : faf7e3a6b9dab902d1c556e081", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | System : Remark", - "1 | Remark [1/4] : 3a83a7ff5037a23c0e43affbcc635966aa1648", - "1 | Remark [2/4] : 4bf4aad5570831c098d7eaa04956dffa80bb93", - "1 | Remark [3/4] : e6f18a1f496c3102ad749a5bd8d8be953c82c1", - "1 | Remark [4/4] : e75595318b35bc", + "1 | Remark [1/2] : c878e7402f4abf94866f8ba269a0122786b8ce", + "1 | Remark [2/2] : faf7e3a6b9dab902d1c556e081", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 1", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 2, "name": "System_Remark", - "blob": "000001013a83a7ff5037a23c0e43affbcc635966aa16484bf4aad5570831c098d7eaa04956dffa80bb93e6f18a1f496c3102ad749a5bd8d8be953c82c1e75595318b35bcd503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0000010129759502463b5c016d8288888c9051c4a455d1a411513f7c1d86faf7544a093d1e2a09bbe0f58b78a006af87b315e35bac13acee5517cf093bd20a0124904ac5d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | System : Remark", - "1 | Remark [1/4] : 3a83a7ff5037a23c0e43affbcc635966aa1648", - "1 | Remark [2/4] : 4bf4aad5570831c098d7eaa04956dffa80bb93", - "1 | Remark [3/4] : e6f18a1f496c3102ad749a5bd8d8be953c82c1", - "1 | Remark [4/4] : e75595318b35bc", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Remark [1/4] : 29759502463b5c016d8288888c9051c4a455d1", + "1 | Remark [2/4] : a411513f7c1d86faf7544a093d1e2a09bbe0f5", + "1 | Remark [3/4] : 8b78a006af87b315e35bac13acee5517cf093b", + "1 | Remark [4/4] : d20a0124904ac5", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | System : Remark", - "1 | Remark [1/4] : 3a83a7ff5037a23c0e43affbcc635966aa1648", - "1 | Remark [2/4] : 4bf4aad5570831c098d7eaa04956dffa80bb93", - "1 | Remark [3/4] : e6f18a1f496c3102ad749a5bd8d8be953c82c1", - "1 | Remark [4/4] : e75595318b35bc", + "1 | Remark [1/4] : 29759502463b5c016d8288888c9051c4a455d1", + "1 | Remark [2/4] : a411513f7c1d86faf7544a093d1e2a09bbe0f5", + "1 | Remark [3/4] : 8b78a006af87b315e35bac13acee5517cf093b", + "1 | Remark [4/4] : d20a0124904ac5", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 0", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 3, "name": "System_Remark", - "blob": "000001028f485f68684be25d1a195e85f8b42aed8a3488ce1c71bd1d6399f10c8869f0283e80f26c4a12287c5ee3899c96e83379c414ae5892906f3eca7a80d642a93989ff62cd2052046cbade0a430fe0152db131367bccfb060061bd30700e6ed84becbc323880d56e25b2bb8fea9a1a22b8de3253e6083d4d304d26183733d6ef07b9d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "00000101d8d1357065e78f8829b81f3452a8459d657970f8914a665313385d44b29bfac8c91e901099b2f388bf2cca959da4122d3a34eac8c84dfa07d1998118835864c3d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | System : Remark", - "1 | Remark [1/7] : 8f485f68684be25d1a195e85f8b42aed8a3488", - "1 | Remark [2/7] : ce1c71bd1d6399f10c8869f0283e80f26c4a12", - "1 | Remark [3/7] : 287c5ee3899c96e83379c414ae5892906f3eca", - "1 | Remark [4/7] : 7a80d642a93989ff62cd2052046cbade0a430f", - "1 | Remark [5/7] : e0152db131367bccfb060061bd30700e6ed84b", - "1 | Remark [6/7] : ecbc323880d56e25b2bb8fea9a1a22b8de3253", - "1 | Remark [7/7] : e6083d4d304d26183733d6ef07b9", - "2 | Tip : POLYX 55.555555" + "1 | Remark [1/4] : d8d1357065e78f8829b81f3452a8459d657970", + "1 | Remark [2/4] : f8914a665313385d44b29bfac8c91e901099b2", + "1 | Remark [3/4] : f388bf2cca959da4122d3a34eac8c84dfa07d1", + "1 | Remark [4/4] : 998118835864c3", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | System : Remark", - "1 | Remark [1/7] : 8f485f68684be25d1a195e85f8b42aed8a3488", - "1 | Remark [2/7] : ce1c71bd1d6399f10c8869f0283e80f26c4a12", - "1 | Remark [3/7] : 287c5ee3899c96e83379c414ae5892906f3eca", - "1 | Remark [4/7] : 7a80d642a93989ff62cd2052046cbade0a430f", - "1 | Remark [5/7] : e0152db131367bccfb060061bd30700e6ed84b", - "1 | Remark [6/7] : ecbc323880d56e25b2bb8fea9a1a22b8de3253", - "1 | Remark [7/7] : e6083d4d304d26183733d6ef07b9", + "1 | Remark [1/4] : d8d1357065e78f8829b81f3452a8459d657970", + "1 | Remark [2/4] : f8914a665313385d44b29bfac8c91e901099b2", + "1 | Remark [3/4] : f388bf2cca959da4122d3a34eac8c84dfa07d1", + "1 | Remark [4/4] : 998118835864c3", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 2339", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 4, "name": "System_Remark", - "blob": "00000101a6d7930112b16e3b8649dcfe3a9c66cc2c34847d0dd05ad9f7d105ae3adad3d9e84cc085526559dea4a34add6b321ea04abd79fc38aad51749d93ec0031c63c8d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0000010129759502463b5c016d8288888c9051c4a455d1a411513f7c1d86faf7544a093d1e2a09bbe0f58b78a006af87b315e35bac13acee5517cf093bd20a0124904ac5d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | System : Remark", - "1 | Remark [1/4] : a6d7930112b16e3b8649dcfe3a9c66cc2c3484", - "1 | Remark [2/4] : 7d0dd05ad9f7d105ae3adad3d9e84cc0855265", - "1 | Remark [3/4] : 59dea4a34add6b321ea04abd79fc38aad51749", - "1 | Remark [4/4] : d93ec0031c63c8", - "2 | Tip : POLYX 1234.56789" + "1 | Remark [1/4] : 29759502463b5c016d8288888c9051c4a455d1", + "1 | Remark [2/4] : a411513f7c1d86faf7544a093d1e2a09bbe0f5", + "1 | Remark [3/4] : 8b78a006af87b315e35bac13acee5517cf093b", + "1 | Remark [4/4] : d20a0124904ac5", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | System : Remark", - "1 | Remark [1/4] : a6d7930112b16e3b8649dcfe3a9c66cc2c3484", - "1 | Remark [2/4] : 7d0dd05ad9f7d105ae3adad3d9e84cc0855265", - "1 | Remark [3/4] : 59dea4a34add6b321ea04abd79fc38aad51749", - "1 | Remark [4/4] : d93ec0031c63c8", + "1 | Remark [1/4] : 29759502463b5c016d8288888c9051c4a455d1", + "1 | Remark [2/4] : a411513f7c1d86faf7544a093d1e2a09bbe0f5", + "1 | Remark [3/4] : 8b78a006af87b315e35bac13acee5517cf093b", + "1 | Remark [4/4] : d20a0124904ac5", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 1", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 5, "name": "System_Remark", - "blob": "00000102965b7d155e8cb6a82bb929ccb41cc96beac1273eba57b670a322cd901353b196d7090b56178e08f6efc8fbae1df13ace60e6d185adb85cae014c15b232c733ea25b96f90e9203f407d9bcabfae6f9cb64f5a00df0c6ca9bb269ee367c13113722d0c787183849ba5d93b3476a7f2fd961d26503178b044f90f0384e7bd24c1f8d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "00000102d2ce880b42c502e3ae6db5cbdb4644d41929aaf1473b3dffacebfe059c2410288ad0a2b82b7fec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a643ca3d75f249d6aff034afa699cb0f81638a8fec3ac9306b7a68e50aef4b18c58f123b750d4dd9033d5d2ac77de3e6faa49e76688e8768e038da2c68d18c8fbb71153e2ee911bd503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | System : Remark", - "1 | Remark [1/7] : 965b7d155e8cb6a82bb929ccb41cc96beac127", - "1 | Remark [2/7] : 3eba57b670a322cd901353b196d7090b56178e", - "1 | Remark [3/7] : 08f6efc8fbae1df13ace60e6d185adb85cae01", - "1 | Remark [4/7] : 4c15b232c733ea25b96f90e9203f407d9bcabf", - "1 | Remark [5/7] : ae6f9cb64f5a00df0c6ca9bb269ee367c13113", - "1 | Remark [6/7] : 722d0c787183849ba5d93b3476a7f2fd961d26", - "1 | Remark [7/7] : 503178b044f90f0384e7bd24c1f8", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Remark [1/7] : d2ce880b42c502e3ae6db5cbdb4644d41929aa", + "1 | Remark [2/7] : f1473b3dffacebfe059c2410288ad0a2b82b7f", + "1 | Remark [3/7] : ec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a", + "1 | Remark [4/7] : 643ca3d75f249d6aff034afa699cb0f81638a8", + "1 | Remark [5/7] : fec3ac9306b7a68e50aef4b18c58f123b750d4", + "1 | Remark [6/7] : dd9033d5d2ac77de3e6faa49e76688e8768e03", + "1 | Remark [7/7] : 8da2c68d18c8fbb71153e2ee911b", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | System : Remark", - "1 | Remark [1/7] : 965b7d155e8cb6a82bb929ccb41cc96beac127", - "1 | Remark [2/7] : 3eba57b670a322cd901353b196d7090b56178e", - "1 | Remark [3/7] : 08f6efc8fbae1df13ace60e6d185adb85cae01", - "1 | Remark [4/7] : 4c15b232c733ea25b96f90e9203f407d9bcabf", - "1 | Remark [5/7] : ae6f9cb64f5a00df0c6ca9bb269ee367c13113", - "1 | Remark [6/7] : 722d0c787183849ba5d93b3476a7f2fd961d26", - "1 | Remark [7/7] : 503178b044f90f0384e7bd24c1f8", + "1 | Remark [1/7] : d2ce880b42c502e3ae6db5cbdb4644d41929aa", + "1 | Remark [2/7] : f1473b3dffacebfe059c2410288ad0a2b82b7f", + "1 | Remark [3/7] : ec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a", + "1 | Remark [4/7] : 643ca3d75f249d6aff034afa699cb0f81638a8", + "1 | Remark [5/7] : fec3ac9306b7a68e50aef4b18c58f123b750d4", + "1 | Remark [6/7] : dd9033d5d2ac77de3e6faa49e76688e8768e03", + "1 | Remark [7/7] : 8da2c68d18c8fbb71153e2ee911b", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 50283", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 6, "name": "System_Set_heap_pages", - "blob": "00016400000000000000d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "00012309000000000000d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | System : Set heap pages", - "1 | Pages : 100", - "2 | Tip : POLYX 0.000987" + "1 | Pages : 2339", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | System : Set heap pages", - "1 | Pages : 100", + "1 | Pages : 2339", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 1", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 7, "name": "System_Set_heap_pages", - "blob": "00010000000000000000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "00012309000000000000d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | System : Set heap pages", - "1 | Pages : 0", - "2 | Tip : POLYX 55.555555" + "1 | Pages : 2339", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | System : Set heap pages", - "1 | Pages : 0", + "1 | Pages : 2339", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 1", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 8, "name": "System_Set_heap_pages", - "blob": "00016bc4000000000000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "00010100000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | System : Set heap pages", - "1 | Pages : 50283", - "2 | Tip : POLYX 55.555555" + "1 | Pages : 1", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | System : Set heap pages", - "1 | Pages : 50283", + "1 | Pages : 1", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 1", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 9, "name": "System_Set_heap_pages", - "blob": "00016400000000000000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "00010000000000000000d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | System : Set heap pages", - "1 | Pages : 100", - "2 | Tip : POLYX 1234.56789" + "1 | Pages : 0", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | System : Set heap pages", - "1 | Pages : 100", + "1 | Pages : 0", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 100", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 10, "name": "System_Set_heap_pages", - "blob": "00010000000000000000d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "00016bc4000000000000d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | System : Set heap pages", - "1 | Pages : 0", - "2 | Tip : POLYX 55.555555" + "1 | Pages : 50283", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | System : Set heap pages", - "1 | Pages : 0", + "1 | Pages : 50283", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 11, "name": "System_Set_code", - "blob": "000201028f485f68684be25d1a195e85f8b42aed8a3488ce1c71bd1d6399f10c8869f0283e80f26c4a12287c5ee3899c96e83379c414ae5892906f3eca7a80d642a93989ff62cd2052046cbade0a430fe0152db131367bccfb060061bd30700e6ed84becbc323880d56e25b2bb8fea9a1a22b8de3253e6083d4d304d26183733d6ef07b9d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "00020102d2ce880b42c502e3ae6db5cbdb4644d41929aaf1473b3dffacebfe059c2410288ad0a2b82b7fec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a643ca3d75f249d6aff034afa699cb0f81638a8fec3ac9306b7a68e50aef4b18c58f123b750d4dd9033d5d2ac77de3e6faa49e76688e8768e038da2c68d18c8fbb71153e2ee911bd50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | System : Set code", - "1 | Code [1/7] : 8f485f68684be25d1a195e85f8b42aed8a3488", - "1 | Code [2/7] : ce1c71bd1d6399f10c8869f0283e80f26c4a12", - "1 | Code [3/7] : 287c5ee3899c96e83379c414ae5892906f3eca", - "1 | Code [4/7] : 7a80d642a93989ff62cd2052046cbade0a430f", - "1 | Code [5/7] : e0152db131367bccfb060061bd30700e6ed84b", - "1 | Code [6/7] : ecbc323880d56e25b2bb8fea9a1a22b8de3253", - "1 | Code [7/7] : e6083d4d304d26183733d6ef07b9", + "1 | Code [1/7] : d2ce880b42c502e3ae6db5cbdb4644d41929aa", + "1 | Code [2/7] : f1473b3dffacebfe059c2410288ad0a2b82b7f", + "1 | Code [3/7] : ec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a", + "1 | Code [4/7] : 643ca3d75f249d6aff034afa699cb0f81638a8", + "1 | Code [5/7] : fec3ac9306b7a68e50aef4b18c58f123b750d4", + "1 | Code [6/7] : dd9033d5d2ac77de3e6faa49e76688e8768e03", + "1 | Code [7/7] : 8da2c68d18c8fbb71153e2ee911b", "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | System : Set code", - "1 | Code [1/7] : 8f485f68684be25d1a195e85f8b42aed8a3488", - "1 | Code [2/7] : ce1c71bd1d6399f10c8869f0283e80f26c4a12", - "1 | Code [3/7] : 287c5ee3899c96e83379c414ae5892906f3eca", - "1 | Code [4/7] : 7a80d642a93989ff62cd2052046cbade0a430f", - "1 | Code [5/7] : e0152db131367bccfb060061bd30700e6ed84b", - "1 | Code [6/7] : ecbc323880d56e25b2bb8fea9a1a22b8de3253", - "1 | Code [7/7] : e6083d4d304d26183733d6ef07b9", + "1 | Code [1/7] : d2ce880b42c502e3ae6db5cbdb4644d41929aa", + "1 | Code [2/7] : f1473b3dffacebfe059c2410288ad0a2b82b7f", + "1 | Code [3/7] : ec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a", + "1 | Code [4/7] : 643ca3d75f249d6aff034afa699cb0f81638a8", + "1 | Code [5/7] : fec3ac9306b7a68e50aef4b18c58f123b750d4", + "1 | Code [6/7] : dd9033d5d2ac77de3e6faa49e76688e8768e03", + "1 | Code [7/7] : 8da2c68d18c8fbb71153e2ee911b", "2 | Chain : Polymesh", "3 | Nonce : 100", "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 12, "name": "System_Set_code", - "blob": "000201028f485f68684be25d1a195e85f8b42aed8a3488ce1c71bd1d6399f10c8869f0283e80f26c4a12287c5ee3899c96e83379c414ae5892906f3eca7a80d642a93989ff62cd2052046cbade0a430fe0152db131367bccfb060061bd30700e6ed84becbc323880d56e25b2bb8fea9a1a22b8de3253e6083d4d304d26183733d6ef07b9d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "000280c878e7402f4abf94866f8ba269a0122786b8cefaf7e3a6b9dab902d1c556e081d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | System : Set code", - "1 | Code [1/7] : 8f485f68684be25d1a195e85f8b42aed8a3488", - "1 | Code [2/7] : ce1c71bd1d6399f10c8869f0283e80f26c4a12", - "1 | Code [3/7] : 287c5ee3899c96e83379c414ae5892906f3eca", - "1 | Code [4/7] : 7a80d642a93989ff62cd2052046cbade0a430f", - "1 | Code [5/7] : e0152db131367bccfb060061bd30700e6ed84b", - "1 | Code [6/7] : ecbc323880d56e25b2bb8fea9a1a22b8de3253", - "1 | Code [7/7] : e6083d4d304d26183733d6ef07b9", - "2 | Tip : POLYX 5552342.355555" + "1 | Code [1/2] : c878e7402f4abf94866f8ba269a0122786b8ce", + "1 | Code [2/2] : faf7e3a6b9dab902d1c556e081", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | System : Set code", - "1 | Code [1/7] : 8f485f68684be25d1a195e85f8b42aed8a3488", - "1 | Code [2/7] : ce1c71bd1d6399f10c8869f0283e80f26c4a12", - "1 | Code [3/7] : 287c5ee3899c96e83379c414ae5892906f3eca", - "1 | Code [4/7] : 7a80d642a93989ff62cd2052046cbade0a430f", - "1 | Code [5/7] : e0152db131367bccfb060061bd30700e6ed84b", - "1 | Code [6/7] : ecbc323880d56e25b2bb8fea9a1a22b8de3253", - "1 | Code [7/7] : e6083d4d304d26183733d6ef07b9", + "1 | Code [1/2] : c878e7402f4abf94866f8ba269a0122786b8ce", + "1 | Code [2/2] : faf7e3a6b9dab902d1c556e081", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 100", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 13, "name": "System_Set_code", - "blob": "000201013a83a7ff5037a23c0e43affbcc635966aa16484bf4aad5570831c098d7eaa04956dffa80bb93e6f18a1f496c3102ad749a5bd8d8be953c82c1e75595318b35bcd503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "000201016b88a19afd977906ff6da6fdec075611bceccda551c0e710eb786ccf06fd38a72e1ff529a16f3efcc069f803c63240320b883ecde5c375fbd83b1c8d8b6f6c2fd503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | System : Set code", - "1 | Code [1/4] : 3a83a7ff5037a23c0e43affbcc635966aa1648", - "1 | Code [2/4] : 4bf4aad5570831c098d7eaa04956dffa80bb93", - "1 | Code [3/4] : e6f18a1f496c3102ad749a5bd8d8be953c82c1", - "1 | Code [4/4] : e75595318b35bc" + "1 | Code [1/4] : 6b88a19afd977906ff6da6fdec075611bceccd", + "1 | Code [2/4] : a551c0e710eb786ccf06fd38a72e1ff529a16f", + "1 | Code [3/4] : 3efcc069f803c63240320b883ecde5c375fbd8", + "1 | Code [4/4] : 3b1c8d8b6f6c2f" ], "output_expert": [ "0 | System : Set code", - "1 | Code [1/4] : 3a83a7ff5037a23c0e43affbcc635966aa1648", - "1 | Code [2/4] : 4bf4aad5570831c098d7eaa04956dffa80bb93", - "1 | Code [3/4] : e6f18a1f496c3102ad749a5bd8d8be953c82c1", - "1 | Code [4/4] : e75595318b35bc", + "1 | Code [1/4] : 6b88a19afd977906ff6da6fdec075611bceccd", + "1 | Code [2/4] : a551c0e710eb786ccf06fd38a72e1ff529a16f", + "1 | Code [3/4] : 3efcc069f803c63240320b883ecde5c375fbd8", + "1 | Code [4/4] : 3b1c8d8b6f6c2f", "2 | Chain : Polymesh", - "3 | Nonce : 1", + "3 | Nonce : 50283", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 14, "name": "System_Set_code", - "blob": "00020102965b7d155e8cb6a82bb929ccb41cc96beac1273eba57b670a322cd901353b196d7090b56178e08f6efc8fbae1df13ace60e6d185adb85cae014c15b232c733ea25b96f90e9203f407d9bcabfae6f9cb64f5a00df0c6ca9bb269ee367c13113722d0c787183849ba5d93b3476a7f2fd961d26503178b044f90f0384e7bd24c1f8d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "000201016b88a19afd977906ff6da6fdec075611bceccda551c0e710eb786ccf06fd38a72e1ff529a16f3efcc069f803c63240320b883ecde5c375fbd83b1c8d8b6f6c2fd503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | System : Set code", - "1 | Code [1/7] : 965b7d155e8cb6a82bb929ccb41cc96beac127", - "1 | Code [2/7] : 3eba57b670a322cd901353b196d7090b56178e", - "1 | Code [3/7] : 08f6efc8fbae1df13ace60e6d185adb85cae01", - "1 | Code [4/7] : 4c15b232c733ea25b96f90e9203f407d9bcabf", - "1 | Code [5/7] : ae6f9cb64f5a00df0c6ca9bb269ee367c13113", - "1 | Code [6/7] : 722d0c787183849ba5d93b3476a7f2fd961d26", - "1 | Code [7/7] : 503178b044f90f0384e7bd24c1f8" + "1 | Code [1/4] : 6b88a19afd977906ff6da6fdec075611bceccd", + "1 | Code [2/4] : a551c0e710eb786ccf06fd38a72e1ff529a16f", + "1 | Code [3/4] : 3efcc069f803c63240320b883ecde5c375fbd8", + "1 | Code [4/4] : 3b1c8d8b6f6c2f", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | System : Set code", - "1 | Code [1/7] : 965b7d155e8cb6a82bb929ccb41cc96beac127", - "1 | Code [2/7] : 3eba57b670a322cd901353b196d7090b56178e", - "1 | Code [3/7] : 08f6efc8fbae1df13ace60e6d185adb85cae01", - "1 | Code [4/7] : 4c15b232c733ea25b96f90e9203f407d9bcabf", - "1 | Code [5/7] : ae6f9cb64f5a00df0c6ca9bb269ee367c13113", - "1 | Code [6/7] : 722d0c787183849ba5d93b3476a7f2fd961d26", - "1 | Code [7/7] : 503178b044f90f0384e7bd24c1f8", + "1 | Code [1/4] : 6b88a19afd977906ff6da6fdec075611bceccd", + "1 | Code [2/4] : a551c0e710eb786ccf06fd38a72e1ff529a16f", + "1 | Code [3/4] : 3efcc069f803c63240320b883ecde5c375fbd8", + "1 | Code [4/4] : 3b1c8d8b6f6c2f", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 100", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 15, "name": "System_Set_code", - "blob": "000201013a83a7ff5037a23c0e43affbcc635966aa16484bf4aad5570831c098d7eaa04956dffa80bb93e6f18a1f496c3102ad749a5bd8d8be953c82c1e75595318b35bcd503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "000280c878e7402f4abf94866f8ba269a0122786b8cefaf7e3a6b9dab902d1c556e081d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | System : Set code", - "1 | Code [1/4] : 3a83a7ff5037a23c0e43affbcc635966aa1648", - "1 | Code [2/4] : 4bf4aad5570831c098d7eaa04956dffa80bb93", - "1 | Code [3/4] : e6f18a1f496c3102ad749a5bd8d8be953c82c1", - "1 | Code [4/4] : e75595318b35bc", - "2 | Tip : POLYX 55.555555" + "1 | Code [1/2] : c878e7402f4abf94866f8ba269a0122786b8ce", + "1 | Code [2/2] : faf7e3a6b9dab902d1c556e081", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | System : Set code", - "1 | Code [1/4] : 3a83a7ff5037a23c0e43affbcc635966aa1648", - "1 | Code [2/4] : 4bf4aad5570831c098d7eaa04956dffa80bb93", - "1 | Code [3/4] : e6f18a1f496c3102ad749a5bd8d8be953c82c1", - "1 | Code [4/4] : e75595318b35bc", + "1 | Code [1/2] : c878e7402f4abf94866f8ba269a0122786b8ce", + "1 | Code [2/2] : faf7e3a6b9dab902d1c556e081", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 1", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 16, "name": "System_Set_code_without_checks", - "blob": "0003100d0c1323d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0003100d0c1323d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | System : Set code without checks", "1 | Code [1/4] : 13", "1 | Code [2/4] : 12", "1 | Code [3/4] : 19", "1 | Code [4/4] : 35", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | System : Set code without checks", @@ -424,26 +397,26 @@ "1 | Code [3/4] : 19", "1 | Code [4/4] : 35", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 2339", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 17, "name": "System_Set_code_without_checks", - "blob": "0003100c293435d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0003100c293435d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | System : Set code without checks", "1 | Code [1/4] : 12", "1 | Code [2/4] : 41", "1 | Code [3/4] : 52", "1 | Code [4/4] : 53", - "2 | Tip : POLYX 5552342.355555" + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | System : Set code without checks", @@ -452,18 +425,19 @@ "1 | Code [3/4] : 52", "1 | Code [4/4] : 53", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 100", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 18, "name": "System_Set_code_without_checks", - "blob": "0003100c293435d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0003100c293435d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | System : Set code without checks", "1 | Code [1/4] : 12", @@ -479,51 +453,53 @@ "1 | Code [3/4] : 52", "1 | Code [4/4] : 53", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 0", "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 19, "name": "System_Set_code_without_checks", - "blob": "000310200b200bd5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0003100c293435d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | System : Set code without checks", - "1 | Code [1/4] : 32", - "1 | Code [2/4] : 11", - "1 | Code [3/4] : 32", - "1 | Code [4/4] : 11", - "2 | Tip : POLYX 1234.56789" + "1 | Code [1/4] : 12", + "1 | Code [2/4] : 41", + "1 | Code [3/4] : 52", + "1 | Code [4/4] : 53", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | System : Set code without checks", - "1 | Code [1/4] : 32", - "1 | Code [2/4] : 11", - "1 | Code [3/4] : 32", - "1 | Code [4/4] : 11", + "1 | Code [1/4] : 12", + "1 | Code [2/4] : 41", + "1 | Code [3/4] : 52", + "1 | Code [4/4] : 53", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 20, "name": "System_Set_code_without_checks", - "blob": "0003100e2a0c49d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0003100e2a0c49d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | System : Set code without checks", "1 | Code [1/4] : 14", "1 | Code [2/4] : 42", "1 | Code [3/4] : 12", - "1 | Code [4/4] : 73" + "1 | Code [4/4] : 73", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | System : Set code without checks", @@ -532,2197 +508,2167 @@ "1 | Code [3/4] : 12", "1 | Code [4/4] : 73", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 21, "name": "System_Remark_with_event", - "blob": "000701016d0908114ac84677d153d7368feda69cef573eb81308a080f038a74d25a93fef148316d9d6f23f39d32353dccc05e3e15a573a8e62a74bbe1366bf9014cce144d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0007010129759502463b5c016d8288888c9051c4a455d1a411513f7c1d86faf7544a093d1e2a09bbe0f58b78a006af87b315e35bac13acee5517cf093bd20a0124904ac5d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | System : Remark with event", - "1 | Remark [1/4] : 6d0908114ac84677d153d7368feda69cef573e", - "1 | Remark [2/4] : b81308a080f038a74d25a93fef148316d9d6f2", - "1 | Remark [3/4] : 3f39d32353dccc05e3e15a573a8e62a74bbe13", - "1 | Remark [4/4] : 66bf9014cce144", - "2 | Tip : POLYX 1234.56789" + "1 | Remark [1/4] : 29759502463b5c016d8288888c9051c4a455d1", + "1 | Remark [2/4] : a411513f7c1d86faf7544a093d1e2a09bbe0f5", + "1 | Remark [3/4] : 8b78a006af87b315e35bac13acee5517cf093b", + "1 | Remark [4/4] : d20a0124904ac5", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | System : Remark with event", - "1 | Remark [1/4] : 6d0908114ac84677d153d7368feda69cef573e", - "1 | Remark [2/4] : b81308a080f038a74d25a93fef148316d9d6f2", - "1 | Remark [3/4] : 3f39d32353dccc05e3e15a573a8e62a74bbe13", - "1 | Remark [4/4] : 66bf9014cce144", + "1 | Remark [1/4] : 29759502463b5c016d8288888c9051c4a455d1", + "1 | Remark [2/4] : a411513f7c1d86faf7544a093d1e2a09bbe0f5", + "1 | Remark [3/4] : 8b78a006af87b315e35bac13acee5517cf093b", + "1 | Remark [4/4] : d20a0124904ac5", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 0", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 22, "name": "System_Remark_with_event", - "blob": "000701028f485f68684be25d1a195e85f8b42aed8a3488ce1c71bd1d6399f10c8869f0283e80f26c4a12287c5ee3899c96e83379c414ae5892906f3eca7a80d642a93989ff62cd2052046cbade0a430fe0152db131367bccfb060061bd30700e6ed84becbc323880d56e25b2bb8fea9a1a22b8de3253e6083d4d304d26183733d6ef07b9d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "00070102d2ce880b42c502e3ae6db5cbdb4644d41929aaf1473b3dffacebfe059c2410288ad0a2b82b7fec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a643ca3d75f249d6aff034afa699cb0f81638a8fec3ac9306b7a68e50aef4b18c58f123b750d4dd9033d5d2ac77de3e6faa49e76688e8768e038da2c68d18c8fbb71153e2ee911bd503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | System : Remark with event", - "1 | Remark [1/7] : 8f485f68684be25d1a195e85f8b42aed8a3488", - "1 | Remark [2/7] : ce1c71bd1d6399f10c8869f0283e80f26c4a12", - "1 | Remark [3/7] : 287c5ee3899c96e83379c414ae5892906f3eca", - "1 | Remark [4/7] : 7a80d642a93989ff62cd2052046cbade0a430f", - "1 | Remark [5/7] : e0152db131367bccfb060061bd30700e6ed84b", - "1 | Remark [6/7] : ecbc323880d56e25b2bb8fea9a1a22b8de3253", - "1 | Remark [7/7] : e6083d4d304d26183733d6ef07b9", - "2 | Tip : POLYX 1234.56789" + "1 | Remark [1/7] : d2ce880b42c502e3ae6db5cbdb4644d41929aa", + "1 | Remark [2/7] : f1473b3dffacebfe059c2410288ad0a2b82b7f", + "1 | Remark [3/7] : ec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a", + "1 | Remark [4/7] : 643ca3d75f249d6aff034afa699cb0f81638a8", + "1 | Remark [5/7] : fec3ac9306b7a68e50aef4b18c58f123b750d4", + "1 | Remark [6/7] : dd9033d5d2ac77de3e6faa49e76688e8768e03", + "1 | Remark [7/7] : 8da2c68d18c8fbb71153e2ee911b" ], "output_expert": [ "0 | System : Remark with event", - "1 | Remark [1/7] : 8f485f68684be25d1a195e85f8b42aed8a3488", - "1 | Remark [2/7] : ce1c71bd1d6399f10c8869f0283e80f26c4a12", - "1 | Remark [3/7] : 287c5ee3899c96e83379c414ae5892906f3eca", - "1 | Remark [4/7] : 7a80d642a93989ff62cd2052046cbade0a430f", - "1 | Remark [5/7] : e0152db131367bccfb060061bd30700e6ed84b", - "1 | Remark [6/7] : ecbc323880d56e25b2bb8fea9a1a22b8de3253", - "1 | Remark [7/7] : e6083d4d304d26183733d6ef07b9", + "1 | Remark [1/7] : d2ce880b42c502e3ae6db5cbdb4644d41929aa", + "1 | Remark [2/7] : f1473b3dffacebfe059c2410288ad0a2b82b7f", + "1 | Remark [3/7] : ec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a", + "1 | Remark [4/7] : 643ca3d75f249d6aff034afa699cb0f81638a8", + "1 | Remark [5/7] : fec3ac9306b7a68e50aef4b18c58f123b750d4", + "1 | Remark [6/7] : dd9033d5d2ac77de3e6faa49e76688e8768e03", + "1 | Remark [7/7] : 8da2c68d18c8fbb71153e2ee911b", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 23, "name": "System_Remark_with_event", - "blob": "00070101a6d7930112b16e3b8649dcfe3a9c66cc2c34847d0dd05ad9f7d105ae3adad3d9e84cc085526559dea4a34add6b321ea04abd79fc38aad51749d93ec0031c63c8d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "00070102b2019b12199bd8c5694f336189f576c8c8f5411b35d6f33faaaf68fd63d1091377b3cf2c9aba4beccafacf81dc55f29f744e5b8d0fde968939a0fa857737c3e6cbd66ea6a34a41bb9adc85657ef9bfec225ae9b86e487242e402518d5634bff9105f73fa07aa99a66f929317789925234a209f75dd3401231a403d4ee9122a30d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | System : Remark with event", - "1 | Remark [1/4] : a6d7930112b16e3b8649dcfe3a9c66cc2c3484", - "1 | Remark [2/4] : 7d0dd05ad9f7d105ae3adad3d9e84cc0855265", - "1 | Remark [3/4] : 59dea4a34add6b321ea04abd79fc38aad51749", - "1 | Remark [4/4] : d93ec0031c63c8", - "2 | Tip : POLYX 0.000987" + "1 | Remark [1/7] : b2019b12199bd8c5694f336189f576c8c8f541", + "1 | Remark [2/7] : 1b35d6f33faaaf68fd63d1091377b3cf2c9aba", + "1 | Remark [3/7] : 4beccafacf81dc55f29f744e5b8d0fde968939", + "1 | Remark [4/7] : a0fa857737c3e6cbd66ea6a34a41bb9adc8565", + "1 | Remark [5/7] : 7ef9bfec225ae9b86e487242e402518d5634bf", + "1 | Remark [6/7] : f9105f73fa07aa99a66f929317789925234a20", + "1 | Remark [7/7] : 9f75dd3401231a403d4ee9122a30", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | System : Remark with event", - "1 | Remark [1/4] : a6d7930112b16e3b8649dcfe3a9c66cc2c3484", - "1 | Remark [2/4] : 7d0dd05ad9f7d105ae3adad3d9e84cc0855265", - "1 | Remark [3/4] : 59dea4a34add6b321ea04abd79fc38aad51749", - "1 | Remark [4/4] : d93ec0031c63c8", + "1 | Remark [1/7] : b2019b12199bd8c5694f336189f576c8c8f541", + "1 | Remark [2/7] : 1b35d6f33faaaf68fd63d1091377b3cf2c9aba", + "1 | Remark [3/7] : 4beccafacf81dc55f29f744e5b8d0fde968939", + "1 | Remark [4/7] : a0fa857737c3e6cbd66ea6a34a41bb9adc8565", + "1 | Remark [5/7] : 7ef9bfec225ae9b86e487242e402518d5634bf", + "1 | Remark [6/7] : f9105f73fa07aa99a66f929317789925234a20", + "1 | Remark [7/7] : 9f75dd3401231a403d4ee9122a30", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 1", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 24, "name": "System_Remark_with_event", - "blob": "000701029e9d8059730a3ea1e80b4b58a6283a0745e95406cfc62ac95402888ad0e9fa835eec2f9b0c21ae892eb2e6e11014a634b5f43bf1e94dff6573c747c619291f393ad665d02f69f74b9c9b1a9db29116d1d0a4520a9735188f8ef86ecd9ba8a9798e552c6db1566d6650d70f7d8555ec65d1c21f6552fa566d1d4d0447958aeb36d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "000780c878e7402f4abf94866f8ba269a0122786b8cefaf7e3a6b9dab902d1c556e081d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | System : Remark with event", - "1 | Remark [1/7] : 9e9d8059730a3ea1e80b4b58a6283a0745e954", - "1 | Remark [2/7] : 06cfc62ac95402888ad0e9fa835eec2f9b0c21", - "1 | Remark [3/7] : ae892eb2e6e11014a634b5f43bf1e94dff6573", - "1 | Remark [4/7] : c747c619291f393ad665d02f69f74b9c9b1a9d", - "1 | Remark [5/7] : b29116d1d0a4520a9735188f8ef86ecd9ba8a9", - "1 | Remark [6/7] : 798e552c6db1566d6650d70f7d8555ec65d1c2", - "1 | Remark [7/7] : 1f6552fa566d1d4d0447958aeb36", - "2 | Tip : POLYX 5552342.355555" + "1 | Remark [1/2] : c878e7402f4abf94866f8ba269a0122786b8ce", + "1 | Remark [2/2] : faf7e3a6b9dab902d1c556e081" ], "output_expert": [ "0 | System : Remark with event", - "1 | Remark [1/7] : 9e9d8059730a3ea1e80b4b58a6283a0745e954", - "1 | Remark [2/7] : 06cfc62ac95402888ad0e9fa835eec2f9b0c21", - "1 | Remark [3/7] : ae892eb2e6e11014a634b5f43bf1e94dff6573", - "1 | Remark [4/7] : c747c619291f393ad665d02f69f74b9c9b1a9d", - "1 | Remark [5/7] : b29116d1d0a4520a9735188f8ef86ecd9ba8a9", - "1 | Remark [6/7] : 798e552c6db1566d6650d70f7d8555ec65d1c2", - "1 | Remark [7/7] : 1f6552fa566d1d4d0447958aeb36", + "1 | Remark [1/2] : c878e7402f4abf94866f8ba269a0122786b8ce", + "1 | Remark [2/2] : faf7e3a6b9dab902d1c556e081", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 25, "name": "System_Remark_with_event", - "blob": "00070102965b7d155e8cb6a82bb929ccb41cc96beac1273eba57b670a322cd901353b196d7090b56178e08f6efc8fbae1df13ace60e6d185adb85cae014c15b232c733ea25b96f90e9203f407d9bcabfae6f9cb64f5a00df0c6ca9bb269ee367c13113722d0c787183849ba5d93b3476a7f2fd961d26503178b044f90f0384e7bd24c1f8d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "000780c878e7402f4abf94866f8ba269a0122786b8cefaf7e3a6b9dab902d1c556e081d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | System : Remark with event", - "1 | Remark [1/7] : 965b7d155e8cb6a82bb929ccb41cc96beac127", - "1 | Remark [2/7] : 3eba57b670a322cd901353b196d7090b56178e", - "1 | Remark [3/7] : 08f6efc8fbae1df13ace60e6d185adb85cae01", - "1 | Remark [4/7] : 4c15b232c733ea25b96f90e9203f407d9bcabf", - "1 | Remark [5/7] : ae6f9cb64f5a00df0c6ca9bb269ee367c13113", - "1 | Remark [6/7] : 722d0c787183849ba5d93b3476a7f2fd961d26", - "1 | Remark [7/7] : 503178b044f90f0384e7bd24c1f8", - "2 | Tip : POLYX 55.555555" + "1 | Remark [1/2] : c878e7402f4abf94866f8ba269a0122786b8ce", + "1 | Remark [2/2] : faf7e3a6b9dab902d1c556e081", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | System : Remark with event", - "1 | Remark [1/7] : 965b7d155e8cb6a82bb929ccb41cc96beac127", - "1 | Remark [2/7] : 3eba57b670a322cd901353b196d7090b56178e", - "1 | Remark [3/7] : 08f6efc8fbae1df13ace60e6d185adb85cae01", - "1 | Remark [4/7] : 4c15b232c733ea25b96f90e9203f407d9bcabf", - "1 | Remark [5/7] : ae6f9cb64f5a00df0c6ca9bb269ee367c13113", - "1 | Remark [6/7] : 722d0c787183849ba5d93b3476a7f2fd961d26", - "1 | Remark [7/7] : 503178b044f90f0384e7bd24c1f8", + "1 | Remark [1/2] : c878e7402f4abf94866f8ba269a0122786b8ce", + "1 | Remark [2/2] : faf7e3a6b9dab902d1c556e081", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 26, "name": "Timestamp_Set", - "blob": "020088d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "02000f63c19579b664cdd503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Timestamp : Set", - "1 | Now : 34", - "2 | Tip : POLYX 55.555555" + "1 | Now : 57813105112367459", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Timestamp : Set", - "1 | Now : 34", + "1 | Now : 57813105112367459", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 50283", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 27, "name": "Timestamp_Set", - "blob": "020088d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "02000cd5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Timestamp : Set", - "1 | Now : 34", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Now : 3", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Timestamp : Set", - "1 | Now : 34", + "1 | Now : 3", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 2339", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 28, "name": "Timestamp_Set", - "blob": "0200c8d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "02000cd503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Timestamp : Set", - "1 | Now : 50", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Now : 3" ], "output_expert": [ "0 | Timestamp : Set", - "1 | Now : 50", + "1 | Now : 3", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 29, "name": "Timestamp_Set", - "blob": "0200c8d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "02000cd503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Timestamp : Set", - "1 | Now : 50" + "1 | Now : 3", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Timestamp : Set", - "1 | Now : 50", + "1 | Now : 3", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 0", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 30, "name": "Timestamp_Set", - "blob": "020014d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "02000fa113f5152f4ce5d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Timestamp : Set", - "1 | Now : 5", - "2 | Tip : POLYX 1234.56789" + "1 | Now : 64541534782296993", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Timestamp : Set", - "1 | Now : 5", + "1 | Now : 64541534782296993", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 31, "name": "Indices_Claim", - "blob": "0300a649ee93d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0300390d0a88d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Indices : Claim", - "1 | Index : 2481867174", - "2 | Tip : POLYX 55.555555" + "1 | Index : 2282360121", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Indices : Claim", - "1 | Index : 2481867174", + "1 | Index : 2282360121", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 1", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 32, "name": "Indices_Claim", - "blob": "0300a649ee93d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0300390d0a88d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Indices : Claim", - "1 | Index : 2481867174", - "2 | Tip : POLYX 1234.56789" + "1 | Index : 2282360121", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Indices : Claim", - "1 | Index : 2481867174", + "1 | Index : 2282360121", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 100", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 33, "name": "Indices_Claim", - "blob": "0300a649ee93d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0300390d0a88d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Indices : Claim", - "1 | Index : 2481867174", - "2 | Tip : POLYX 0.000987" + "1 | Index : 2282360121", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Indices : Claim", - "1 | Index : 2481867174", + "1 | Index : 2282360121", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 2339", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 34, "name": "Indices_Claim", - "blob": "0300a649ee93d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0300390d0a88d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Indices : Claim", - "1 | Index : 2481867174", - "2 | Tip : POLYX 1234.56789" + "1 | Index : 2282360121", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Indices : Claim", - "1 | Index : 2481867174", + "1 | Index : 2282360121", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 1", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 35, "name": "Indices_Claim", - "blob": "0300a649ee93d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0300390d0a88d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Indices : Claim", - "1 | Index : 2481867174", - "2 | Tip : POLYX 55.555555" + "1 | Index : 2282360121" ], "output_expert": [ "0 | Indices : Claim", - "1 | Index : 2481867174", + "1 | Index : 2282360121", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 36, "name": "Indices_Transfer", - "blob": "030102809a2cafb174b302f0f381d2705358111a9c905c258e089eb940a3046ae641e43fa649ee93d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0301028072ddb7c3e3a9f4c83f8c34281b81c22db8f925c44d9106057bf73469e2f016bd390d0a88d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Indices : Transfer", - "1 | New [1/2] : 9a2cafb174b302f0f381d2705358111a9c905c", - "1 | New [2/2] : 258e089eb940a3046ae641e43f", - "2 | Index : 2481867174", - "3 | Tip : POLYX 5552342.355555" + "1 | New [1/2] : 72ddb7c3e3a9f4c83f8c34281b81c22db8f925", + "1 | New [2/2] : c44d9106057bf73469e2f016bd", + "2 | Index : 2282360121", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Indices : Transfer", - "1 | New [1/2] : 9a2cafb174b302f0f381d2705358111a9c905c", - "1 | New [2/2] : 258e089eb940a3046ae641e43f", - "2 | Index : 2481867174", + "1 | New [1/2] : 72ddb7c3e3a9f4c83f8c34281b81c22db8f925", + "1 | New [2/2] : c44d9106057bf73469e2f016bd", + "2 | Index : 2282360121", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 50283", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 37, "name": "Indices_Transfer", - "blob": "0301031b5bf215374493b82427331e7a21c5dc7390a7f50938f6209701aa7fefa97f97a649ee93d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0301028072ddb7c3e3a9f4c83f8c34281b81c22db8f925c44d9106057bf73469e2f016bd390d0a88d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Indices : Transfer", - "1 | New [1/2] : 1b5bf215374493b82427331e7a21c5dc7390a7", - "1 | New [2/2] : f50938f6209701aa7fefa97f97", - "2 | Index : 2481867174", - "3 | Tip : POLYX 55.555555" + "1 | New [1/2] : 72ddb7c3e3a9f4c83f8c34281b81c22db8f925", + "1 | New [2/2] : c44d9106057bf73469e2f016bd", + "2 | Index : 2282360121" ], "output_expert": [ "0 | Indices : Transfer", - "1 | New [1/2] : 1b5bf215374493b82427331e7a21c5dc7390a7", - "1 | New [2/2] : f50938f6209701aa7fefa97f97", - "2 | Index : 2481867174", + "1 | New [1/2] : 72ddb7c3e3a9f4c83f8c34281b81c22db8f925", + "1 | New [2/2] : c44d9106057bf73469e2f016bd", + "2 | Index : 2282360121", "3 | Chain : Polymesh", "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 38, "name": "Indices_Transfer", - "blob": "030102809a2cafb174b302f0f381d2705358111a9c905c258e089eb940a3046ae641e43fa649ee93d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "030104a6bf6ba54d74ed24f0f22ae261a6d492b9b9a2a8390d0a88d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Indices : Transfer", - "1 | New [1/2] : 9a2cafb174b302f0f381d2705358111a9c905c", - "1 | New [2/2] : 258e089eb940a3046ae641e43f", - "2 | Index : 2481867174", - "3 | Tip : POLYX 1234.56789" + "1 | New [1/2] : a6bf6ba54d74ed24f0f22ae261a6d492b9b9a2", + "1 | New [2/2] : a8", + "2 | Index : 2282360121" ], "output_expert": [ "0 | Indices : Transfer", - "1 | New [1/2] : 9a2cafb174b302f0f381d2705358111a9c905c", - "1 | New [2/2] : 258e089eb940a3046ae641e43f", - "2 | Index : 2481867174", + "1 | New [1/2] : a6bf6ba54d74ed24f0f22ae261a6d492b9b9a2", + "1 | New [2/2] : a8", + "2 | Index : 2282360121", "3 | Chain : Polymesh", "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 39, "name": "Indices_Transfer", - "blob": "030102809a2cafb174b302f0f381d2705358111a9c905c258e089eb940a3046ae641e43fa649ee93d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "030100b91c0828d5fb63795639092cc1c662646babf96458aea56a4bceaee0e19bf709390d0a88d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Indices : Transfer", - "1 | New [1/2] : 9a2cafb174b302f0f381d2705358111a9c905c", - "1 | New [2/2] : 258e089eb940a3046ae641e43f", - "2 | Index : 2481867174", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | New [1/2] : 5GFR3T2aUHRosveDUW5ckQANDtWYVUKGjNbhRF", + "1 | New [2/2] : 6RoLCjtbjb", + "2 | Index : 2282360121", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Indices : Transfer", - "1 | New [1/2] : 9a2cafb174b302f0f381d2705358111a9c905c", - "1 | New [2/2] : 258e089eb940a3046ae641e43f", - "2 | Index : 2481867174", + "1 | New [1/2] : 5GFR3T2aUHRosveDUW5ckQANDtWYVUKGjNbhRF", + "1 | New [2/2] : 6RoLCjtbjb", + "2 | Index : 2282360121", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 1", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 40, "name": "Indices_Transfer", - "blob": "030102809a2cafb174b302f0f381d2705358111a9c905c258e089eb940a3046ae641e43fa649ee93d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "030103d9c33e50da4265e5eb0a01566304b5dc5bd824d2ed6bbc461c7d61ed59ccc065390d0a88d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Indices : Transfer", - "1 | New [1/2] : 9a2cafb174b302f0f381d2705358111a9c905c", - "1 | New [2/2] : 258e089eb940a3046ae641e43f", - "2 | Index : 2481867174", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | New [1/2] : d9c33e50da4265e5eb0a01566304b5dc5bd824", + "1 | New [2/2] : d2ed6bbc461c7d61ed59ccc065", + "2 | Index : 2282360121", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Indices : Transfer", - "1 | New [1/2] : 9a2cafb174b302f0f381d2705358111a9c905c", - "1 | New [2/2] : 258e089eb940a3046ae641e43f", - "2 | Index : 2481867174", + "1 | New [1/2] : d9c33e50da4265e5eb0a01566304b5dc5bd824", + "1 | New [2/2] : d2ed6bbc461c7d61ed59ccc065", + "2 | Index : 2282360121", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 100", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 41, "name": "Indices_Free", - "blob": "0302a649ee93d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0302390d0a88d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Indices : Free", - "1 | Index : 2481867174" + "1 | Index : 2282360121", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Indices : Free", - "1 | Index : 2481867174", + "1 | Index : 2282360121", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 2339", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 42, "name": "Indices_Free", - "blob": "0302a649ee93d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0302390d0a88d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Indices : Free", - "1 | Index : 2481867174", - "2 | Tip : POLYX 0.000987" + "1 | Index : 2282360121", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Indices : Free", - "1 | Index : 2481867174", + "1 | Index : 2282360121", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 2339", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 43, "name": "Indices_Free", - "blob": "0302a649ee93d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0302390d0a88d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Indices : Free", - "1 | Index : 2481867174" + "1 | Index : 2282360121", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Indices : Free", - "1 | Index : 2481867174", + "1 | Index : 2282360121", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 1", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 44, "name": "Indices_Free", - "blob": "0302a649ee93d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0302390d0a88d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Indices : Free", - "1 | Index : 2481867174" + "1 | Index : 2282360121", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Indices : Free", - "1 | Index : 2481867174", + "1 | Index : 2282360121", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 100", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 45, "name": "Indices_Free", - "blob": "0302a649ee93d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0302390d0a88d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Indices : Free", - "1 | Index : 2481867174", + "1 | Index : 2282360121", "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Indices : Free", - "1 | Index : 2481867174", + "1 | Index : 2282360121", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 50283", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 46, "name": "Indices_Force_transfer", - "blob": "030304c1db1bc1e1aa732243490c29461a3e63b91dd88aa649ee9301d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "030300b91c0828d5fb63795639092cc1c662646babf96458aea56a4bceaee0e19bf709390d0a8801d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Indices : Force transfer", - "1 | New [1/2] : c1db1bc1e1aa732243490c29461a3e63b91dd8", - "1 | New [2/2] : 8a", - "2 | Index : 2481867174", - "3 | Freeze : True" + "1 | New [1/2] : 5GFR3T2aUHRosveDUW5ckQANDtWYVUKGjNbhRF", + "1 | New [2/2] : 6RoLCjtbjb", + "2 | Index : 2282360121", + "3 | Freeze : True", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Indices : Force transfer", - "1 | New [1/2] : c1db1bc1e1aa732243490c29461a3e63b91dd8", - "1 | New [2/2] : 8a", - "2 | Index : 2481867174", + "1 | New [1/2] : 5GFR3T2aUHRosveDUW5ckQANDtWYVUKGjNbhRF", + "1 | New [2/2] : 6RoLCjtbjb", + "2 | Index : 2282360121", "3 | Freeze : True", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Nonce : 2339", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 47, "name": "Indices_Force_transfer", - "blob": "0303031b5bf215374493b82427331e7a21c5dc7390a7f50938f6209701aa7fefa97f97a649ee9301d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "030304a6bf6ba54d74ed24f0f22ae261a6d492b9b9a2a8390d0a8800d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Indices : Force transfer", - "1 | New [1/2] : 1b5bf215374493b82427331e7a21c5dc7390a7", - "1 | New [2/2] : f50938f6209701aa7fefa97f97", - "2 | Index : 2481867174", - "3 | Freeze : True", - "4 | Tip : POLYX 0.000987" + "1 | New [1/2] : a6bf6ba54d74ed24f0f22ae261a6d492b9b9a2", + "1 | New [2/2] : a8", + "2 | Index : 2282360121", + "3 | Freeze : False", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Indices : Force transfer", - "1 | New [1/2] : 1b5bf215374493b82427331e7a21c5dc7390a7", - "1 | New [2/2] : f50938f6209701aa7fefa97f97", - "2 | Index : 2481867174", - "3 | Freeze : True", + "1 | New [1/2] : a6bf6ba54d74ed24f0f22ae261a6d492b9b9a2", + "1 | New [2/2] : a8", + "2 | Index : 2282360121", + "3 | Freeze : False", "4 | Chain : Polymesh", "5 | Nonce : 2339", - "6 | Tip : POLYX 0.000987", + "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 48, "name": "Indices_Force_transfer", - "blob": "030300cad4a18908329105afed699a70c486711444defbe185d1ab764b4afc6db12e52a649ee9300d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0303028072ddb7c3e3a9f4c83f8c34281b81c22db8f925c44d9106057bf73469e2f016bd390d0a8800d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Indices : Force transfer", - "1 | New [1/2] : 2H2rwUD6mL4v1G3XQBkZJMxvPY74a6kFrWwyf2", - "1 | New [2/2] : 78dcRUPtaj", - "2 | Index : 2481867174", + "1 | New [1/2] : 72ddb7c3e3a9f4c83f8c34281b81c22db8f925", + "1 | New [2/2] : c44d9106057bf73469e2f016bd", + "2 | Index : 2282360121", "3 | Freeze : False", "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Indices : Force transfer", - "1 | New [1/2] : 2H2rwUD6mL4v1G3XQBkZJMxvPY74a6kFrWwyf2", - "1 | New [2/2] : 78dcRUPtaj", - "2 | Index : 2481867174", + "1 | New [1/2] : 72ddb7c3e3a9f4c83f8c34281b81c22db8f925", + "1 | New [2/2] : c44d9106057bf73469e2f016bd", + "2 | Index : 2282360121", "3 | Freeze : False", "4 | Chain : Polymesh", - "5 | Nonce : 2339", + "5 | Nonce : 100", "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 49, "name": "Indices_Force_transfer", - "blob": "0303031b5bf215374493b82427331e7a21c5dc7390a7f50938f6209701aa7fefa97f97a649ee9301d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "030300b91c0828d5fb63795639092cc1c662646babf96458aea56a4bceaee0e19bf709390d0a8800d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Indices : Force transfer", - "1 | New [1/2] : 1b5bf215374493b82427331e7a21c5dc7390a7", - "1 | New [2/2] : f50938f6209701aa7fefa97f97", - "2 | Index : 2481867174", - "3 | Freeze : True", - "4 | Tip : POLYX 1234.56789" + "1 | New [1/2] : 5GFR3T2aUHRosveDUW5ckQANDtWYVUKGjNbhRF", + "1 | New [2/2] : 6RoLCjtbjb", + "2 | Index : 2282360121", + "3 | Freeze : False", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Indices : Force transfer", - "1 | New [1/2] : 1b5bf215374493b82427331e7a21c5dc7390a7", - "1 | New [2/2] : f50938f6209701aa7fefa97f97", - "2 | Index : 2481867174", - "3 | Freeze : True", + "1 | New [1/2] : 5GFR3T2aUHRosveDUW5ckQANDtWYVUKGjNbhRF", + "1 | New [2/2] : 6RoLCjtbjb", + "2 | Index : 2282360121", + "3 | Freeze : False", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 1234.56789", + "5 | Nonce : 100", + "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 50, "name": "Indices_Force_transfer", - "blob": "0303031b5bf215374493b82427331e7a21c5dc7390a7f50938f6209701aa7fefa97f97a649ee9300d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "030304a6bf6ba54d74ed24f0f22ae261a6d492b9b9a2a8390d0a8801d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Indices : Force transfer", - "1 | New [1/2] : 1b5bf215374493b82427331e7a21c5dc7390a7", - "1 | New [2/2] : f50938f6209701aa7fefa97f97", - "2 | Index : 2481867174", - "3 | Freeze : False" + "1 | New [1/2] : a6bf6ba54d74ed24f0f22ae261a6d492b9b9a2", + "1 | New [2/2] : a8", + "2 | Index : 2282360121", + "3 | Freeze : True" ], "output_expert": [ "0 | Indices : Force transfer", - "1 | New [1/2] : 1b5bf215374493b82427331e7a21c5dc7390a7", - "1 | New [2/2] : f50938f6209701aa7fefa97f97", - "2 | Index : 2481867174", - "3 | Freeze : False", + "1 | New [1/2] : a6bf6ba54d74ed24f0f22ae261a6d492b9b9a2", + "1 | New [2/2] : a8", + "2 | Index : 2282360121", + "3 | Freeze : True", "4 | Chain : Polymesh", - "5 | Nonce : 0", + "5 | Nonce : 100", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 51, "name": "Indices_Freeze", - "blob": "0304a649ee93d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0304390d0a88d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Indices : Freeze", - "1 | Index : 2481867174", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Index : 2282360121", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Indices : Freeze", - "1 | Index : 2481867174", + "1 | Index : 2282360121", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 0", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 52, "name": "Indices_Freeze", - "blob": "0304a649ee93d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0304390d0a88d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Indices : Freeze", - "1 | Index : 2481867174", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Index : 2282360121", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Indices : Freeze", - "1 | Index : 2481867174", + "1 | Index : 2282360121", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 53, "name": "Indices_Freeze", - "blob": "0304a649ee93d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0304390d0a88d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Indices : Freeze", - "1 | Index : 2481867174", - "2 | Tip : POLYX 5552342.355555" + "1 | Index : 2282360121", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Indices : Freeze", - "1 | Index : 2481867174", + "1 | Index : 2282360121", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 54, "name": "Indices_Freeze", - "blob": "0304a649ee93d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0304390d0a88d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Indices : Freeze", - "1 | Index : 2481867174", + "1 | Index : 2282360121", "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Indices : Freeze", - "1 | Index : 2481867174", + "1 | Index : 2282360121", "2 | Chain : Polymesh", - "3 | Nonce : 100", + "3 | Nonce : 0", "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 55, "name": "Indices_Freeze", - "blob": "0304a649ee93d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0304390d0a88d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Indices : Freeze", - "1 | Index : 2481867174", - "2 | Tip : POLYX 1234.56789" + "1 | Index : 2282360121", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Indices : Freeze", - "1 | Index : 2481867174", + "1 | Index : 2282360121", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 2339", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 56, "name": "Balances_Transfer", - "blob": "0500003ecc4c1e63d0ed026660f4b5e469a5f2f7600e977aa336a5d1854f15e050a9a200d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "050000091ce05c594d329e840099597454239c36e7eda559eed65df25575e8f96b5d2e03d2029649d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Dest [2/2] : haooSwEq6N", - "2 | Amount : POLYX 0.0", - "3 | Tip : POLYX 5552342.355555" + "1 | Dest [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Dest [2/2] : FbZrSrbmf8", + "2 | Amount : POLYX 1234.56789", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Dest [2/2] : haooSwEq6N", - "2 | Amount : POLYX 0.0", + "1 | Dest [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Dest [2/2] : FbZrSrbmf8", + "2 | Amount : POLYX 1234.56789", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 50283", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 57, "name": "Balances_Transfer", - "blob": "0500003ecc4c1e63d0ed026660f4b5e469a5f2f7600e977aa336a5d1854f15e050a9a20b63ce64c10c05d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "050000091ce05c594d329e840099597454239c36e7eda559eed65df25575e8f96b5d2e00d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Dest [2/2] : haooSwEq6N", - "2 | Amount : POLYX 5552342.355555", - "3 | Tip : POLYX 55.555555" + "1 | Dest [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Dest [2/2] : FbZrSrbmf8", + "2 | Amount : POLYX 0.0", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Dest [2/2] : haooSwEq6N", - "2 | Amount : POLYX 5552342.355555", + "1 | Dest [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Dest [2/2] : FbZrSrbmf8", + "2 | Amount : POLYX 0.0", "3 | Chain : Polymesh", "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 58, "name": "Balances_Transfer", - "blob": "0500003ecc4c1e63d0ed026660f4b5e469a5f2f7600e977aa336a5d1854f15e050a9a20b63ce64c10c05d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "050000091ce05c594d329e840099597454239c36e7eda559eed65df25575e8f96b5d2e33158139ae28a3dfaac5fe1560a5e9e05cd503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Dest [2/2] : haooSwEq6N", - "2 | Amount : POLYX 5552342.355555", + "1 | Dest [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Dest [2/2] : FbZrSrbmf8", + "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "2 | Amount [2/2] : 3.456789", "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Dest [2/2] : haooSwEq6N", - "2 | Amount : POLYX 5552342.355555", + "1 | Dest [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Dest [2/2] : FbZrSrbmf8", + "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "2 | Amount [2/2] : 3.456789", "3 | Chain : Polymesh", "4 | Nonce : 100", "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 59, "name": "Balances_Transfer", - "blob": "0500003ecc4c1e63d0ed026660f4b5e469a5f2f7600e977aa336a5d1854f15e050a9a28ed73e0dd50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "050000091ce05c594d329e840099597454239c36e7eda559eed65df25575e8f96b5d2e0b63ce64c10c05d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Dest [2/2] : haooSwEq6N", - "2 | Amount : POLYX 55.555555", - "3 | Tip : POLYX 5552342.355555" + "1 | Dest [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Dest [2/2] : FbZrSrbmf8", + "2 | Amount : POLYX 5552342.355555", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Dest [2/2] : haooSwEq6N", - "2 | Amount : POLYX 55.555555", + "1 | Dest [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Dest [2/2] : FbZrSrbmf8", + "2 | Amount : POLYX 5552342.355555", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 2339", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 60, "name": "Balances_Transfer", - "blob": "0500003ecc4c1e63d0ed026660f4b5e469a5f2f7600e977aa336a5d1854f15e050a9a20b63ce64c10c05d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "050000091ce05c594d329e840099597454239c36e7eda559eed65df25575e8f96b5d2e03d2029649d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Dest [2/2] : haooSwEq6N", - "2 | Amount : POLYX 5552342.355555", + "1 | Dest [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Dest [2/2] : FbZrSrbmf8", + "2 | Amount : POLYX 1234.56789", "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Balances : Transfer", - "1 | Dest [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Dest [2/2] : haooSwEq6N", - "2 | Amount : POLYX 5552342.355555", + "1 | Dest [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Dest [2/2] : FbZrSrbmf8", + "2 | Amount : POLYX 1234.56789", "3 | Chain : Polymesh", - "4 | Nonce : 1", + "4 | Nonce : 100", "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 61, "name": "Balances_Transfer_with_memo", - "blob": "0501003ecc4c1e63d0ed026660f4b5e469a5f2f7600e977aa336a5d1854f15e050a9a233158139ae28a3dfaac5fe1560a5e9e05c01664c968727fc8fb62cd51bfa0f8ee2946af0b10beb0dc7fe48041da6090d46a6d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "050100091ce05c594d329e840099597454239c36e7eda559eed65df25575e8f96b5d2e6d0f01926c3bd1e90f231b283452fd8a7e41273aac84ab1bd49aad8a772aa6bb2025a8d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Balances : Transfer with memo", - "1 | Dest [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Dest [2/2] : haooSwEq6N", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789", - "3 | Memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "3 | Memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "4 | Tip : POLYX 1234.56789" + "1 | Dest [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Dest [2/2] : FbZrSrbmf8", + "2 | Amount : POLYX 0.000987", + "3 | Memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "3 | Memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8" ], "output_expert": [ "0 | Balances : Transfer with memo", - "1 | Dest [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Dest [2/2] : haooSwEq6N", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789", - "3 | Memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "3 | Memo [2/2] : b10beb0dc7fe48041da6090d46a6", + "1 | Dest [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Dest [2/2] : FbZrSrbmf8", + "2 | Amount : POLYX 0.000987", + "3 | Memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "3 | Memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Nonce : 1", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 62, "name": "Balances_Transfer_with_memo", - "blob": "0501003ecc4c1e63d0ed026660f4b5e469a5f2f7600e977aa336a5d1854f15e050a9a26d0f01664c968727fc8fb62cd51bfa0f8ee2946af0b10beb0dc7fe48041da6090d46a6d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "050100091ce05c594d329e840099597454239c36e7eda559eed65df25575e8f96b5d2e8ed73e0d01926c3bd1e90f231b283452fd8a7e41273aac84ab1bd49aad8a772aa6bb2025a8d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Balances : Transfer with memo", - "1 | Dest [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Dest [2/2] : haooSwEq6N", - "2 | Amount : POLYX 0.000987", - "3 | Memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "3 | Memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "1 | Dest [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Dest [2/2] : FbZrSrbmf8", + "2 | Amount : POLYX 55.555555", + "3 | Memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "3 | Memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Balances : Transfer with memo", - "1 | Dest [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Dest [2/2] : haooSwEq6N", - "2 | Amount : POLYX 0.000987", - "3 | Memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "3 | Memo [2/2] : b10beb0dc7fe48041da6090d46a6", + "1 | Dest [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Dest [2/2] : FbZrSrbmf8", + "2 | Amount : POLYX 55.555555", + "3 | Memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "3 | Memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", "4 | Chain : Polymesh", "5 | Nonce : 1", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", + "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 63, "name": "Balances_Transfer_with_memo", - "blob": "0501003ecc4c1e63d0ed026660f4b5e469a5f2f7600e977aa336a5d1854f15e050a9a20b63ce64c10c0501664c968727fc8fb62cd51bfa0f8ee2946af0b10beb0dc7fe48041da6090d46a6d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "050100091ce05c594d329e840099597454239c36e7eda559eed65df25575e8f96b5d2e03d202964901926c3bd1e90f231b283452fd8a7e41273aac84ab1bd49aad8a772aa6bb2025a8d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Balances : Transfer with memo", - "1 | Dest [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Dest [2/2] : haooSwEq6N", - "2 | Amount : POLYX 5552342.355555", - "3 | Memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "3 | Memo [2/2] : b10beb0dc7fe48041da6090d46a6", + "1 | Dest [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Dest [2/2] : FbZrSrbmf8", + "2 | Amount : POLYX 1234.56789", + "3 | Memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "3 | Memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Balances : Transfer with memo", - "1 | Dest [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Dest [2/2] : haooSwEq6N", - "2 | Amount : POLYX 5552342.355555", - "3 | Memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "3 | Memo [2/2] : b10beb0dc7fe48041da6090d46a6", + "1 | Dest [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Dest [2/2] : FbZrSrbmf8", + "2 | Amount : POLYX 1234.56789", + "3 | Memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "3 | Memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", "4 | Chain : Polymesh", - "5 | Nonce : 1", + "5 | Nonce : 2339", "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 64, "name": "Balances_Transfer_with_memo", - "blob": "0501003ecc4c1e63d0ed026660f4b5e469a5f2f7600e977aa336a5d1854f15e050a9a20001664c968727fc8fb62cd51bfa0f8ee2946af0b10beb0dc7fe48041da6090d46a6d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "050100091ce05c594d329e840099597454239c36e7eda559eed65df25575e8f96b5d2e8ed73e0d01926c3bd1e90f231b283452fd8a7e41273aac84ab1bd49aad8a772aa6bb2025a8d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Balances : Transfer with memo", - "1 | Dest [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Dest [2/2] : haooSwEq6N", - "2 | Amount : POLYX 0.0", - "3 | Memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "3 | Memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "1 | Dest [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Dest [2/2] : FbZrSrbmf8", + "2 | Amount : POLYX 55.555555", + "3 | Memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "3 | Memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8" ], "output_expert": [ "0 | Balances : Transfer with memo", - "1 | Dest [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Dest [2/2] : haooSwEq6N", - "2 | Amount : POLYX 0.0", - "3 | Memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "3 | Memo [2/2] : b10beb0dc7fe48041da6090d46a6", + "1 | Dest [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Dest [2/2] : FbZrSrbmf8", + "2 | Amount : POLYX 55.555555", + "3 | Memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "3 | Memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Nonce : 2339", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 65, "name": "Balances_Transfer_with_memo", - "blob": "0501003ecc4c1e63d0ed026660f4b5e469a5f2f7600e977aa336a5d1854f15e050a9a233158139ae28a3dfaac5fe1560a5e9e05c01664c968727fc8fb62cd51bfa0f8ee2946af0b10beb0dc7fe48041da6090d46a6d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "050100091ce05c594d329e840099597454239c36e7eda559eed65df25575e8f96b5d2e0001926c3bd1e90f231b283452fd8a7e41273aac84ab1bd49aad8a772aa6bb2025a8d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Balances : Transfer with memo", - "1 | Dest [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Dest [2/2] : haooSwEq6N", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789", - "3 | Memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "3 | Memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "4 | Tip : POLYX 1234.56789" + "1 | Dest [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Dest [2/2] : FbZrSrbmf8", + "2 | Amount : POLYX 0.0", + "3 | Memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "3 | Memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8" ], "output_expert": [ "0 | Balances : Transfer with memo", - "1 | Dest [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Dest [2/2] : haooSwEq6N", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789", - "3 | Memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "3 | Memo [2/2] : b10beb0dc7fe48041da6090d46a6", + "1 | Dest [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Dest [2/2] : FbZrSrbmf8", + "2 | Amount : POLYX 0.0", + "3 | Memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "3 | Memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Nonce : 50283", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 66, "name": "Balances_Deposit_block_reward_reserve_balance", - "blob": "050200d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "050203d2029649d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Balances : Deposit block reward reserve balance", - "1 | Amount : POLYX 0.0", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Amount : POLYX 1234.56789", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Balances : Deposit block reward reserve balance", - "1 | Amount : POLYX 0.0", + "1 | Amount : POLYX 1234.56789", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 50283", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 67, "name": "Balances_Deposit_block_reward_reserve_balance", - "blob": "050200d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "05026d0fd50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Balances : Deposit block reward reserve balance", - "1 | Amount : POLYX 0.0", - "2 | Tip : POLYX 0.000987" + "1 | Amount : POLYX 0.000987", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Balances : Deposit block reward reserve balance", - "1 | Amount : POLYX 0.0", + "1 | Amount : POLYX 0.000987", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 68, "name": "Balances_Deposit_block_reward_reserve_balance", - "blob": "050233158139ae28a3dfaac5fe1560a5e9e05cd503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "05028ed73e0dd503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Balances : Deposit block reward reserve balance", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Tip : POLYX 5552342.355555" + "1 | Amount : POLYX 55.555555" ], "output_expert": [ "0 | Balances : Deposit block reward reserve balance", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", + "1 | Amount : POLYX 55.555555", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] }, { "index": 69, "name": "Balances_Deposit_block_reward_reserve_balance", - "blob": "05020b63ce64c10c05d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "050200d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Balances : Deposit block reward reserve balance", - "1 | Amount : POLYX 5552342.355555", - "2 | Tip : POLYX 0.000987" + "1 | Amount : POLYX 0.0", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Balances : Deposit block reward reserve balance", - "1 | Amount : POLYX 5552342.355555", + "1 | Amount : POLYX 0.0", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 2339", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 70, "name": "Balances_Deposit_block_reward_reserve_balance", - "blob": "05020b63ce64c10c05d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "050233158139ae28a3dfaac5fe1560a5e9e05cd50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Balances : Deposit block reward reserve balance", - "1 | Amount : POLYX 5552342.355555" + "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "1 | Amount [2/2] : 3.456789", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Balances : Deposit block reward reserve balance", - "1 | Amount : POLYX 5552342.355555", + "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "1 | Amount [2/2] : 3.456789", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 71, "name": "Balances_Set_balance", - "blob": "0503003ecc4c1e63d0ed026660f4b5e469a5f2f7600e977aa336a5d1854f15e050a9a28ed73e0d0b63ce64c10c05d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "050300091ce05c594d329e840099597454239c36e7eda559eed65df25575e8f96b5d2e33158139ae28a3dfaac5fe1560a5e9e05c6d0fd503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Balances : Set balance", - "1 | Who [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Who [2/2] : haooSwEq6N", - "2 | New free : POLYX 55.555555", - "3 | New reserved : POLYX 5552342.355555", - "4 | Tip : POLYX 0.000987" + "1 | Who [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Who [2/2] : FbZrSrbmf8", + "2 | New free [1/2] : POLYX 12345678901234567890123456789012", + "2 | New free [2/2] : 3.456789", + "3 | New reserved : POLYX 0.000987" ], "output_expert": [ "0 | Balances : Set balance", - "1 | Who [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Who [2/2] : haooSwEq6N", - "2 | New free : POLYX 55.555555", - "3 | New reserved : POLYX 5552342.355555", + "1 | Who [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Who [2/2] : FbZrSrbmf8", + "2 | New free [1/2] : POLYX 12345678901234567890123456789012", + "2 | New free [2/2] : 3.456789", + "3 | New reserved : POLYX 0.000987", "4 | Chain : Polymesh", "5 | Nonce : 50283", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 72, "name": "Balances_Set_balance", - "blob": "0503003ecc4c1e63d0ed026660f4b5e469a5f2f7600e977aa336a5d1854f15e050a9a203d202964903d2029649d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "050300091ce05c594d329e840099597454239c36e7eda559eed65df25575e8f96b5d2e8ed73e0d33158139ae28a3dfaac5fe1560a5e9e05cd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Balances : Set balance", - "1 | Who [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Who [2/2] : haooSwEq6N", - "2 | New free : POLYX 1234.56789", - "3 | New reserved : POLYX 1234.56789" + "1 | Who [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Who [2/2] : FbZrSrbmf8", + "2 | New free : POLYX 55.555555", + "3 | New reserved [1/2] : POLYX 12345678901234567890123456789012", + "3 | New reserved [2/2] : 3.456789", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Balances : Set balance", - "1 | Who [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Who [2/2] : haooSwEq6N", - "2 | New free : POLYX 1234.56789", - "3 | New reserved : POLYX 1234.56789", + "1 | Who [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Who [2/2] : FbZrSrbmf8", + "2 | New free : POLYX 55.555555", + "3 | New reserved [1/2] : POLYX 12345678901234567890123456789012", + "3 | New reserved [2/2] : 3.456789", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Nonce : 50283", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 73, "name": "Balances_Set_balance", - "blob": "0503003ecc4c1e63d0ed026660f4b5e469a5f2f7600e977aa336a5d1854f15e050a9a20b63ce64c10c050b63ce64c10c05d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "050300091ce05c594d329e840099597454239c36e7eda559eed65df25575e8f96b5d2e6d0f33158139ae28a3dfaac5fe1560a5e9e05cd503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Balances : Set balance", - "1 | Who [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Who [2/2] : haooSwEq6N", - "2 | New free : POLYX 5552342.355555", - "3 | New reserved : POLYX 5552342.355555", - "4 | Tip : POLYX 1234.56789" + "1 | Who [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Who [2/2] : FbZrSrbmf8", + "2 | New free : POLYX 0.000987", + "3 | New reserved [1/2] : POLYX 12345678901234567890123456789012", + "3 | New reserved [2/2] : 3.456789", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Balances : Set balance", - "1 | Who [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Who [2/2] : haooSwEq6N", - "2 | New free : POLYX 5552342.355555", - "3 | New reserved : POLYX 5552342.355555", + "1 | Who [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Who [2/2] : FbZrSrbmf8", + "2 | New free : POLYX 0.000987", + "3 | New reserved [1/2] : POLYX 12345678901234567890123456789012", + "3 | New reserved [2/2] : 3.456789", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 1234.56789", + "5 | Nonce : 50283", + "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 74, "name": "Balances_Set_balance", - "blob": "0503003ecc4c1e63d0ed026660f4b5e469a5f2f7600e977aa336a5d1854f15e050a9a203d20296490b63ce64c10c05d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "050300091ce05c594d329e840099597454239c36e7eda559eed65df25575e8f96b5d2e6d0f03d2029649d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Balances : Set balance", - "1 | Who [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Who [2/2] : haooSwEq6N", - "2 | New free : POLYX 1234.56789", - "3 | New reserved : POLYX 5552342.355555", + "1 | Who [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Who [2/2] : FbZrSrbmf8", + "2 | New free : POLYX 0.000987", + "3 | New reserved : POLYX 1234.56789", "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Balances : Set balance", - "1 | Who [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Who [2/2] : haooSwEq6N", - "2 | New free : POLYX 1234.56789", - "3 | New reserved : POLYX 5552342.355555", + "1 | Who [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Who [2/2] : FbZrSrbmf8", + "2 | New free : POLYX 0.000987", + "3 | New reserved : POLYX 1234.56789", "4 | Chain : Polymesh", - "5 | Nonce : 50283", + "5 | Nonce : 0", "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 75, "name": "Balances_Set_balance", - "blob": "0503003ecc4c1e63d0ed026660f4b5e469a5f2f7600e977aa336a5d1854f15e050a9a20033158139ae28a3dfaac5fe1560a5e9e05cd503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "050300091ce05c594d329e840099597454239c36e7eda559eed65df25575e8f96b5d2e000b63ce64c10c05d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Balances : Set balance", - "1 | Who [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Who [2/2] : haooSwEq6N", + "1 | Who [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Who [2/2] : FbZrSrbmf8", "2 | New free : POLYX 0.0", - "3 | New reserved [1/2] : POLYX 12345678901234567890123456789012", - "3 | New reserved [2/2] : 3.456789", - "4 | Tip : POLYX 5552342.355555" + "3 | New reserved : POLYX 5552342.355555", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Balances : Set balance", - "1 | Who [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Who [2/2] : haooSwEq6N", + "1 | Who [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Who [2/2] : FbZrSrbmf8", "2 | New free : POLYX 0.0", - "3 | New reserved [1/2] : POLYX 12345678901234567890123456789012", - "3 | New reserved [2/2] : 3.456789", + "3 | New reserved : POLYX 5552342.355555", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 5552342.355555", + "5 | Nonce : 0", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 76, "name": "Balances_Force_transfer", - "blob": "0504003ecc4c1e63d0ed026660f4b5e469a5f2f7600e977aa336a5d1854f15e050a9a2003ecc4c1e63d0ed026660f4b5e469a5f2f7600e977aa336a5d1854f15e050a9a26d0fd503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "050400091ce05c594d329e840099597454239c36e7eda559eed65df25575e8f96b5d2e00091ce05c594d329e840099597454239c36e7eda559eed65df25575e8f96b5d2e00d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Source [2/2] : haooSwEq6N", - "2 | Dest [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "2 | Dest [2/2] : haooSwEq6N", - "3 | Amount : POLYX 0.000987", - "4 | Tip : POLYX 0.000987" + "1 | Source [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Source [2/2] : FbZrSrbmf8", + "2 | Dest [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "2 | Dest [2/2] : FbZrSrbmf8", + "3 | Amount : POLYX 0.0", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Source [2/2] : haooSwEq6N", - "2 | Dest [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "2 | Dest [2/2] : haooSwEq6N", - "3 | Amount : POLYX 0.000987", + "1 | Source [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Source [2/2] : FbZrSrbmf8", + "2 | Dest [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "2 | Dest [2/2] : FbZrSrbmf8", + "3 | Amount : POLYX 0.0", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 0.000987", + "5 | Nonce : 100", + "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 77, "name": "Balances_Force_transfer", - "blob": "0504003ecc4c1e63d0ed026660f4b5e469a5f2f7600e977aa336a5d1854f15e050a9a2003ecc4c1e63d0ed026660f4b5e469a5f2f7600e977aa336a5d1854f15e050a9a20b63ce64c10c05d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "050400091ce05c594d329e840099597454239c36e7eda559eed65df25575e8f96b5d2e00091ce05c594d329e840099597454239c36e7eda559eed65df25575e8f96b5d2e33158139ae28a3dfaac5fe1560a5e9e05cd5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Source [2/2] : haooSwEq6N", - "2 | Dest [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "2 | Dest [2/2] : haooSwEq6N", - "3 | Amount : POLYX 5552342.355555", + "1 | Source [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Source [2/2] : FbZrSrbmf8", + "2 | Dest [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "2 | Dest [2/2] : FbZrSrbmf8", + "3 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "3 | Amount [2/2] : 3.456789", "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Source [2/2] : haooSwEq6N", - "2 | Dest [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "2 | Dest [2/2] : haooSwEq6N", - "3 | Amount : POLYX 5552342.355555", + "1 | Source [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Source [2/2] : FbZrSrbmf8", + "2 | Dest [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "2 | Dest [2/2] : FbZrSrbmf8", + "3 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "3 | Amount [2/2] : 3.456789", "4 | Chain : Polymesh", - "5 | Nonce : 1", + "5 | Nonce : 2339", "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 78, "name": "Balances_Force_transfer", - "blob": "0504003ecc4c1e63d0ed026660f4b5e469a5f2f7600e977aa336a5d1854f15e050a9a2003ecc4c1e63d0ed026660f4b5e469a5f2f7600e977aa336a5d1854f15e050a9a233158139ae28a3dfaac5fe1560a5e9e05cd5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "050400091ce05c594d329e840099597454239c36e7eda559eed65df25575e8f96b5d2e00091ce05c594d329e840099597454239c36e7eda559eed65df25575e8f96b5d2e03d2029649d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Source [2/2] : haooSwEq6N", - "2 | Dest [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "2 | Dest [2/2] : haooSwEq6N", - "3 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "3 | Amount [2/2] : 3.456789", - "4 | Tip : POLYX 0.000987" + "1 | Source [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Source [2/2] : FbZrSrbmf8", + "2 | Dest [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "2 | Dest [2/2] : FbZrSrbmf8", + "3 | Amount : POLYX 1234.56789" ], "output_expert": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Source [2/2] : haooSwEq6N", - "2 | Dest [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "2 | Dest [2/2] : haooSwEq6N", - "3 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "3 | Amount [2/2] : 3.456789", + "1 | Source [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Source [2/2] : FbZrSrbmf8", + "2 | Dest [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "2 | Dest [2/2] : FbZrSrbmf8", + "3 | Amount : POLYX 1234.56789", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Nonce : 50283", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 79, "name": "Balances_Force_transfer", - "blob": "0504003ecc4c1e63d0ed026660f4b5e469a5f2f7600e977aa336a5d1854f15e050a9a2003ecc4c1e63d0ed026660f4b5e469a5f2f7600e977aa336a5d1854f15e050a9a20b63ce64c10c05d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "050400091ce05c594d329e840099597454239c36e7eda559eed65df25575e8f96b5d2e00091ce05c594d329e840099597454239c36e7eda559eed65df25575e8f96b5d2e03d2029649d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Source [2/2] : haooSwEq6N", - "2 | Dest [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "2 | Dest [2/2] : haooSwEq6N", - "3 | Amount : POLYX 5552342.355555", - "4 | Tip : POLYX 55.555555" + "1 | Source [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Source [2/2] : FbZrSrbmf8", + "2 | Dest [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "2 | Dest [2/2] : FbZrSrbmf8", + "3 | Amount : POLYX 1234.56789", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Source [2/2] : haooSwEq6N", - "2 | Dest [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "2 | Dest [2/2] : haooSwEq6N", - "3 | Amount : POLYX 5552342.355555", + "1 | Source [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Source [2/2] : FbZrSrbmf8", + "2 | Dest [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "2 | Dest [2/2] : FbZrSrbmf8", + "3 | Amount : POLYX 1234.56789", "4 | Chain : Polymesh", "5 | Nonce : 2339", - "6 | Tip : POLYX 55.555555", + "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 80, "name": "Balances_Force_transfer", - "blob": "0504003ecc4c1e63d0ed026660f4b5e469a5f2f7600e977aa336a5d1854f15e050a9a2003ecc4c1e63d0ed026660f4b5e469a5f2f7600e977aa336a5d1854f15e050a9a233158139ae28a3dfaac5fe1560a5e9e05cd503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "050400091ce05c594d329e840099597454239c36e7eda559eed65df25575e8f96b5d2e00091ce05c594d329e840099597454239c36e7eda559eed65df25575e8f96b5d2e6d0fd5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Source [2/2] : haooSwEq6N", - "2 | Dest [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "2 | Dest [2/2] : haooSwEq6N", - "3 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "3 | Amount [2/2] : 3.456789", - "4 | Tip : POLYX 1234.56789" + "1 | Source [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Source [2/2] : FbZrSrbmf8", + "2 | Dest [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "2 | Dest [2/2] : FbZrSrbmf8", + "3 | Amount : POLYX 0.000987", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Balances : Force transfer", - "1 | Source [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "1 | Source [2/2] : haooSwEq6N", - "2 | Dest [1/2] : 2DsFm4Tu5S88JkbSanUk2Ede8KhCFc32asFHMV", - "2 | Dest [2/2] : haooSwEq6N", - "3 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "3 | Amount [2/2] : 3.456789", + "1 | Source [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Source [2/2] : FbZrSrbmf8", + "2 | Dest [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "2 | Dest [2/2] : FbZrSrbmf8", + "3 | Amount : POLYX 0.000987", "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 1234.56789", + "5 | Nonce : 2339", + "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 81, "name": "Balances_Burn_account_balance", - "blob": "050540d8127ea9f0d1cdf6126ec9c838c9bad5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0505fd56e5cad3287b54b2352f703dbeafc0d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Balances : Burn account balance", - "1 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "1 | Amount [2/2] : 4.68768" + "1 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "1 | Amount [2/2] : 6.766461", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Balances : Burn account balance", - "1 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "1 | Amount [2/2] : 4.68768", + "1 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "1 | Amount [2/2] : 6.766461", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 0", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 82, "name": "Balances_Burn_account_balance", - "blob": "050540d8127ea9f0d1cdf6126ec9c838c9bad503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0505fd56e5cad3287b54b2352f703dbeafc0d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Balances : Burn account balance", - "1 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "1 | Amount [2/2] : 4.68768", - "2 | Tip : POLYX 1234.56789" + "1 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "1 | Amount [2/2] : 6.766461", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Balances : Burn account balance", - "1 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "1 | Amount [2/2] : 4.68768", + "1 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "1 | Amount [2/2] : 6.766461", "2 | Chain : Polymesh", "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 83, "name": "Balances_Burn_account_balance", - "blob": "050540d8127ea9f0d1cdf6126ec9c838c9bad5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0505fd56e5cad3287b54b2352f703dbeafc0d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Balances : Burn account balance", - "1 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "1 | Amount [2/2] : 4.68768", + "1 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "1 | Amount [2/2] : 6.766461", "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Balances : Burn account balance", - "1 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "1 | Amount [2/2] : 4.68768", + "1 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "1 | Amount [2/2] : 6.766461", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 100", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 84, "name": "Balances_Burn_account_balance", - "blob": "050540d8127ea9f0d1cdf6126ec9c838c9bad5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0505fd56e5cad3287b54b2352f703dbeafc0d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Balances : Burn account balance", - "1 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "1 | Amount [2/2] : 4.68768", - "2 | Tip : POLYX 1234.56789" + "1 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "1 | Amount [2/2] : 6.766461" ], "output_expert": [ "0 | Balances : Burn account balance", - "1 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "1 | Amount [2/2] : 4.68768", + "1 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "1 | Amount [2/2] : 6.766461", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 85, "name": "Balances_Burn_account_balance", - "blob": "050540d8127ea9f0d1cdf6126ec9c838c9bad503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0505fd56e5cad3287b54b2352f703dbeafc0d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Balances : Burn account balance", - "1 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "1 | Amount [2/2] : 4.68768", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "1 | Amount [2/2] : 6.766461", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Balances : Burn account balance", - "1 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "1 | Amount [2/2] : 4.68768", + "1 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "1 | Amount [2/2] : 6.766461", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 2339", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 86, "name": "Identity_Cdd_register_did", - "blob": "0700248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0304bbde6512f952e2aa379294a4315616b73ea85b39e198db0485d235a28cd830e301085449434b45522d31323836335449434b45522d313238373302042050414c4c45545f5102042c44697370617463684142430104732a11e820dd14dcd9cf7edb89dd1a630d8e4f5f1ea926e1bac62a6ba4bb8cfa0140e2010000000000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "07001a649a1e7bc89d0e95d5f757cdbb718b750e1e48f9962d215e0af9222021403e0461f0c98a52e87a269ac3dc4f3ce5a6c0c24a45900be816be00932e3ab5a2750c0104417373657449442d31323334353637380208043001082c44697370617463684142432c446973706174636858595a043102082c44697370617463684142432c446973706174636858595a01049800cdeeb8b080077798efb50ee3f45d98ad177fb0b8df9953739c02ad7506d00140e2010000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Cdd register did", - "1 | Target account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Target account [2/2] : D5gRxEbABD", - "2 | Secondary keys [1/13] : 2GhF836j5CmPiuf6FaUhzsntpr62xgTJJ9AVN8", - "2 | Secondary keys [2/13] : TTCRF1hi8W", - "2 | Secondary keys [3/13] : These", - "2 | Secondary keys [4/13] : TICKER-12863", - "2 | Secondary keys [5/13] : TICKER-12873", - "2 | Secondary keys [6/13] : Except", - "2 | Secondary keys [7/13] : PALLET_Q", - "2 | Secondary keys [8/13] : Except", - "2 | Secondary keys [9/13] : DispatchABC", - "2 | Secondary keys [10/13] : These", - "2 | Secondary keys [11/13] : 732a11e820dd14dcd9cf7edb89dd1a630d8e4f", - "2 | Secondary keys [12/13] : 5f1ea926e1bac62a6ba4bb8cfa", - "2 | Secondary keys [13/13] : 123456" + "1 | Target account [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "1 | Target account [2/2] : CXYT6ZmfEg", + "2 | Secondary keys [1/17] : 5EH82jeaBoA9a8Pb1oKQCNpbDxoXuxa3xU6Dck", + "2 | Secondary keys [2/17] : FuKWAtEi7B", + "2 | Secondary keys [3/17] : These", + "2 | Secondary keys [4/17] : AssetID-12345678", + "2 | Secondary keys [5/17] : Except", + "2 | Secondary keys [6/17] : 0", + "2 | Secondary keys [7/17] : These", + "2 | Secondary keys [8/17] : DispatchABC", + "2 | Secondary keys [9/17] : DispatchXYZ", + "2 | Secondary keys [10/17] : 1", + "2 | Secondary keys [11/17] : Except", + "2 | Secondary keys [12/17] : DispatchABC", + "2 | Secondary keys [13/17] : DispatchXYZ", + "2 | Secondary keys [14/17] : These", + "2 | Secondary keys [15/17] : 9800cdeeb8b080077798efb50ee3f45d98ad17", + "2 | Secondary keys [16/17] : 7fb0b8df9953739c02ad7506d0", + "2 | Secondary keys [17/17] : 123456", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Cdd register did", - "1 | Target account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Target account [2/2] : D5gRxEbABD", - "2 | Secondary keys [1/13] : 2GhF836j5CmPiuf6FaUhzsntpr62xgTJJ9AVN8", - "2 | Secondary keys [2/13] : TTCRF1hi8W", - "2 | Secondary keys [3/13] : These", - "2 | Secondary keys [4/13] : TICKER-12863", - "2 | Secondary keys [5/13] : TICKER-12873", - "2 | Secondary keys [6/13] : Except", - "2 | Secondary keys [7/13] : PALLET_Q", - "2 | Secondary keys [8/13] : Except", - "2 | Secondary keys [9/13] : DispatchABC", - "2 | Secondary keys [10/13] : These", - "2 | Secondary keys [11/13] : 732a11e820dd14dcd9cf7edb89dd1a630d8e4f", - "2 | Secondary keys [12/13] : 5f1ea926e1bac62a6ba4bb8cfa", - "2 | Secondary keys [13/13] : 123456", + "1 | Target account [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "1 | Target account [2/2] : CXYT6ZmfEg", + "2 | Secondary keys [1/17] : 5EH82jeaBoA9a8Pb1oKQCNpbDxoXuxa3xU6Dck", + "2 | Secondary keys [2/17] : FuKWAtEi7B", + "2 | Secondary keys [3/17] : These", + "2 | Secondary keys [4/17] : AssetID-12345678", + "2 | Secondary keys [5/17] : Except", + "2 | Secondary keys [6/17] : 0", + "2 | Secondary keys [7/17] : These", + "2 | Secondary keys [8/17] : DispatchABC", + "2 | Secondary keys [9/17] : DispatchXYZ", + "2 | Secondary keys [10/17] : 1", + "2 | Secondary keys [11/17] : Except", + "2 | Secondary keys [12/17] : DispatchABC", + "2 | Secondary keys [13/17] : DispatchXYZ", + "2 | Secondary keys [14/17] : These", + "2 | Secondary keys [15/17] : 9800cdeeb8b080077798efb50ee3f45d98ad17", + "2 | Secondary keys [16/17] : 7fb0b8df9953739c02ad7506d0", + "2 | Secondary keys [17/17] : 123456", "3 | Chain : Polymesh", "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 87, "name": "Identity_Cdd_register_did", - "blob": "0700248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0304bbde6512f952e2aa379294a4315616b73ea85b39e198db0485d235a28cd830e301085449434b45522d31323836335449434b45522d313238373302042050414c4c45545f5102042c44697370617463684142430104732a11e820dd14dcd9cf7edb89dd1a630d8e4f5f1ea926e1bac62a6ba4bb8cfa0140e2010000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "07001ea4f867cc0e916cfbaa637a01eea0d3163df7d154720f78571790913a6352190461f0c98a52e87a269ac3dc4f3ce5a6c0c24a45900be816be00932e3ab5a2750c0104417373657449442d31323334353637380208043001082c44697370617463684142432c446973706174636858595a043102082c44697370617463684142432c446973706174636858595a01049800cdeeb8b080077798efb50ee3f45d98ad177fb0b8df9953739c02ad7506d00140e2010000000000d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Cdd register did", - "1 | Target account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Target account [2/2] : D5gRxEbABD", - "2 | Secondary keys [1/13] : 2GhF836j5CmPiuf6FaUhzsntpr62xgTJJ9AVN8", - "2 | Secondary keys [2/13] : TTCRF1hi8W", - "2 | Secondary keys [3/13] : These", - "2 | Secondary keys [4/13] : TICKER-12863", - "2 | Secondary keys [5/13] : TICKER-12873", - "2 | Secondary keys [6/13] : Except", - "2 | Secondary keys [7/13] : PALLET_Q", - "2 | Secondary keys [8/13] : Except", - "2 | Secondary keys [9/13] : DispatchABC", - "2 | Secondary keys [10/13] : These", - "2 | Secondary keys [11/13] : 732a11e820dd14dcd9cf7edb89dd1a630d8e4f", - "2 | Secondary keys [12/13] : 5f1ea926e1bac62a6ba4bb8cfa", - "2 | Secondary keys [13/13] : 123456", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | Target account [1/2] : 5CktJMt3EL46Fd9cgCmATqUnc4rBP6d1LDcAvK", + "1 | Target account [2/2] : SX5DnQkqUa", + "2 | Secondary keys [1/17] : 5EH82jeaBoA9a8Pb1oKQCNpbDxoXuxa3xU6Dck", + "2 | Secondary keys [2/17] : FuKWAtEi7B", + "2 | Secondary keys [3/17] : These", + "2 | Secondary keys [4/17] : AssetID-12345678", + "2 | Secondary keys [5/17] : Except", + "2 | Secondary keys [6/17] : 0", + "2 | Secondary keys [7/17] : These", + "2 | Secondary keys [8/17] : DispatchABC", + "2 | Secondary keys [9/17] : DispatchXYZ", + "2 | Secondary keys [10/17] : 1", + "2 | Secondary keys [11/17] : Except", + "2 | Secondary keys [12/17] : DispatchABC", + "2 | Secondary keys [13/17] : DispatchXYZ", + "2 | Secondary keys [14/17] : These", + "2 | Secondary keys [15/17] : 9800cdeeb8b080077798efb50ee3f45d98ad17", + "2 | Secondary keys [16/17] : 7fb0b8df9953739c02ad7506d0", + "2 | Secondary keys [17/17] : 123456", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Identity : Cdd register did", - "1 | Target account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Target account [2/2] : D5gRxEbABD", - "2 | Secondary keys [1/13] : 2GhF836j5CmPiuf6FaUhzsntpr62xgTJJ9AVN8", - "2 | Secondary keys [2/13] : TTCRF1hi8W", - "2 | Secondary keys [3/13] : These", - "2 | Secondary keys [4/13] : TICKER-12863", - "2 | Secondary keys [5/13] : TICKER-12873", - "2 | Secondary keys [6/13] : Except", - "2 | Secondary keys [7/13] : PALLET_Q", - "2 | Secondary keys [8/13] : Except", - "2 | Secondary keys [9/13] : DispatchABC", - "2 | Secondary keys [10/13] : These", - "2 | Secondary keys [11/13] : 732a11e820dd14dcd9cf7edb89dd1a630d8e4f", - "2 | Secondary keys [12/13] : 5f1ea926e1bac62a6ba4bb8cfa", - "2 | Secondary keys [13/13] : 123456", + "1 | Target account [1/2] : 5CktJMt3EL46Fd9cgCmATqUnc4rBP6d1LDcAvK", + "1 | Target account [2/2] : SX5DnQkqUa", + "2 | Secondary keys [1/17] : 5EH82jeaBoA9a8Pb1oKQCNpbDxoXuxa3xU6Dck", + "2 | Secondary keys [2/17] : FuKWAtEi7B", + "2 | Secondary keys [3/17] : These", + "2 | Secondary keys [4/17] : AssetID-12345678", + "2 | Secondary keys [5/17] : Except", + "2 | Secondary keys [6/17] : 0", + "2 | Secondary keys [7/17] : These", + "2 | Secondary keys [8/17] : DispatchABC", + "2 | Secondary keys [9/17] : DispatchXYZ", + "2 | Secondary keys [10/17] : 1", + "2 | Secondary keys [11/17] : Except", + "2 | Secondary keys [12/17] : DispatchABC", + "2 | Secondary keys [13/17] : DispatchXYZ", + "2 | Secondary keys [14/17] : These", + "2 | Secondary keys [15/17] : 9800cdeeb8b080077798efb50ee3f45d98ad17", + "2 | Secondary keys [16/17] : 7fb0b8df9953739c02ad7506d0", + "2 | Secondary keys [17/17] : 123456", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 100", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 88, "name": "Identity_Cdd_register_did", - "blob": "0700248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0304bbde6512f952e2aa379294a4315616b73ea85b39e198db0485d235a28cd830e301085449434b45522d31323836335449434b45522d313238373302042050414c4c45545f5102042c44697370617463684142430104732a11e820dd14dcd9cf7edb89dd1a630d8e4f5f1ea926e1bac62a6ba4bb8cfa0140e2010000000000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0700ca2d8f06d9c35d80eec81d49959918c1e6c09c314b6154fbf6e2665abc512a240461f0c98a52e87a269ac3dc4f3ce5a6c0c24a45900be816be00932e3ab5a2750c0104417373657449442d31323334353637380208043001082c44697370617463684142432c446973706174636858595a043102082c44697370617463684142432c446973706174636858595a01049800cdeeb8b080077798efb50ee3f45d98ad177fb0b8df9953739c02ad7506d00140e2010000000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Cdd register did", - "1 | Target account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Target account [2/2] : D5gRxEbABD", - "2 | Secondary keys [1/13] : 2GhF836j5CmPiuf6FaUhzsntpr62xgTJJ9AVN8", - "2 | Secondary keys [2/13] : TTCRF1hi8W", - "2 | Secondary keys [3/13] : These", - "2 | Secondary keys [4/13] : TICKER-12863", - "2 | Secondary keys [5/13] : TICKER-12873", - "2 | Secondary keys [6/13] : Except", - "2 | Secondary keys [7/13] : PALLET_Q", - "2 | Secondary keys [8/13] : Except", - "2 | Secondary keys [9/13] : DispatchABC", - "2 | Secondary keys [10/13] : These", - "2 | Secondary keys [11/13] : 732a11e820dd14dcd9cf7edb89dd1a630d8e4f", - "2 | Secondary keys [12/13] : 5f1ea926e1bac62a6ba4bb8cfa", - "2 | Secondary keys [13/13] : 123456", - "3 | Tip : POLYX 1234.56789" + "1 | Target account [1/2] : 5Gdo4eJq3jwcZ8ncshpMoSPMm3ypeeNe2441To", + "1 | Target account [2/2] : B8w88odrQ1", + "2 | Secondary keys [1/17] : 5EH82jeaBoA9a8Pb1oKQCNpbDxoXuxa3xU6Dck", + "2 | Secondary keys [2/17] : FuKWAtEi7B", + "2 | Secondary keys [3/17] : These", + "2 | Secondary keys [4/17] : AssetID-12345678", + "2 | Secondary keys [5/17] : Except", + "2 | Secondary keys [6/17] : 0", + "2 | Secondary keys [7/17] : These", + "2 | Secondary keys [8/17] : DispatchABC", + "2 | Secondary keys [9/17] : DispatchXYZ", + "2 | Secondary keys [10/17] : 1", + "2 | Secondary keys [11/17] : Except", + "2 | Secondary keys [12/17] : DispatchABC", + "2 | Secondary keys [13/17] : DispatchXYZ", + "2 | Secondary keys [14/17] : These", + "2 | Secondary keys [15/17] : 9800cdeeb8b080077798efb50ee3f45d98ad17", + "2 | Secondary keys [16/17] : 7fb0b8df9953739c02ad7506d0", + "2 | Secondary keys [17/17] : 123456", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Cdd register did", - "1 | Target account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Target account [2/2] : D5gRxEbABD", - "2 | Secondary keys [1/13] : 2GhF836j5CmPiuf6FaUhzsntpr62xgTJJ9AVN8", - "2 | Secondary keys [2/13] : TTCRF1hi8W", - "2 | Secondary keys [3/13] : These", - "2 | Secondary keys [4/13] : TICKER-12863", - "2 | Secondary keys [5/13] : TICKER-12873", - "2 | Secondary keys [6/13] : Except", - "2 | Secondary keys [7/13] : PALLET_Q", - "2 | Secondary keys [8/13] : Except", - "2 | Secondary keys [9/13] : DispatchABC", - "2 | Secondary keys [10/13] : These", - "2 | Secondary keys [11/13] : 732a11e820dd14dcd9cf7edb89dd1a630d8e4f", - "2 | Secondary keys [12/13] : 5f1ea926e1bac62a6ba4bb8cfa", - "2 | Secondary keys [13/13] : 123456", + "1 | Target account [1/2] : 5Gdo4eJq3jwcZ8ncshpMoSPMm3ypeeNe2441To", + "1 | Target account [2/2] : B8w88odrQ1", + "2 | Secondary keys [1/17] : 5EH82jeaBoA9a8Pb1oKQCNpbDxoXuxa3xU6Dck", + "2 | Secondary keys [2/17] : FuKWAtEi7B", + "2 | Secondary keys [3/17] : These", + "2 | Secondary keys [4/17] : AssetID-12345678", + "2 | Secondary keys [5/17] : Except", + "2 | Secondary keys [6/17] : 0", + "2 | Secondary keys [7/17] : These", + "2 | Secondary keys [8/17] : DispatchABC", + "2 | Secondary keys [9/17] : DispatchXYZ", + "2 | Secondary keys [10/17] : 1", + "2 | Secondary keys [11/17] : Except", + "2 | Secondary keys [12/17] : DispatchABC", + "2 | Secondary keys [13/17] : DispatchXYZ", + "2 | Secondary keys [14/17] : These", + "2 | Secondary keys [15/17] : 9800cdeeb8b080077798efb50ee3f45d98ad17", + "2 | Secondary keys [16/17] : 7fb0b8df9953739c02ad7506d0", + "2 | Secondary keys [17/17] : 123456", "3 | Chain : Polymesh", "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 89, "name": "Identity_Cdd_register_did", - "blob": "0700248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0300d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0700dec0f4dc5fd3e8d150cf002bc6385185d188545a2d3c35459acb0fac525c276100d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Cdd register did", - "1 | Target account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Target account [2/2] : D5gRxEbABD", + "1 | Target account [1/2] : 5H6moo4wU5PEeHwthqGaP9oVjjAcG3PXyn196u", + "1 | Target account [2/2] : hgTRKhjCkB", "2 | Secondary keys : ", - "3 | Tip : POLYX 0.000987" + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Identity : Cdd register did", - "1 | Target account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Target account [2/2] : D5gRxEbABD", + "1 | Target account [1/2] : 5H6moo4wU5PEeHwthqGaP9oVjjAcG3PXyn196u", + "1 | Target account [2/2] : hgTRKhjCkB", "2 | Secondary keys : ", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 100", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 90, "name": "Identity_Cdd_register_did", - "blob": "0700248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0304bbde6512f952e2aa379294a4315616b73ea85b39e198db0485d235a28cd830e301085449434b45522d31323836335449434b45522d313238373302042050414c4c45545f5102042c44697370617463684142430104732a11e820dd14dcd9cf7edb89dd1a630d8e4f5f1ea926e1bac62a6ba4bb8cfa0140e2010000000000d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0700dec0f4dc5fd3e8d150cf002bc6385185d188545a2d3c35459acb0fac525c276100d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Cdd register did", - "1 | Target account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Target account [2/2] : D5gRxEbABD", - "2 | Secondary keys [1/13] : 2GhF836j5CmPiuf6FaUhzsntpr62xgTJJ9AVN8", - "2 | Secondary keys [2/13] : TTCRF1hi8W", - "2 | Secondary keys [3/13] : These", - "2 | Secondary keys [4/13] : TICKER-12863", - "2 | Secondary keys [5/13] : TICKER-12873", - "2 | Secondary keys [6/13] : Except", - "2 | Secondary keys [7/13] : PALLET_Q", - "2 | Secondary keys [8/13] : Except", - "2 | Secondary keys [9/13] : DispatchABC", - "2 | Secondary keys [10/13] : These", - "2 | Secondary keys [11/13] : 732a11e820dd14dcd9cf7edb89dd1a630d8e4f", - "2 | Secondary keys [12/13] : 5f1ea926e1bac62a6ba4bb8cfa", - "2 | Secondary keys [13/13] : 123456", + "1 | Target account [1/2] : 5H6moo4wU5PEeHwthqGaP9oVjjAcG3PXyn196u", + "1 | Target account [2/2] : hgTRKhjCkB", + "2 | Secondary keys : ", "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Identity : Cdd register did", - "1 | Target account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Target account [2/2] : D5gRxEbABD", - "2 | Secondary keys [1/13] : 2GhF836j5CmPiuf6FaUhzsntpr62xgTJJ9AVN8", - "2 | Secondary keys [2/13] : TTCRF1hi8W", - "2 | Secondary keys [3/13] : These", - "2 | Secondary keys [4/13] : TICKER-12863", - "2 | Secondary keys [5/13] : TICKER-12873", - "2 | Secondary keys [6/13] : Except", - "2 | Secondary keys [7/13] : PALLET_Q", - "2 | Secondary keys [8/13] : Except", - "2 | Secondary keys [9/13] : DispatchABC", - "2 | Secondary keys [10/13] : These", - "2 | Secondary keys [11/13] : 732a11e820dd14dcd9cf7edb89dd1a630d8e4f", - "2 | Secondary keys [12/13] : 5f1ea926e1bac62a6ba4bb8cfa", - "2 | Secondary keys [13/13] : 123456", + "1 | Target account [1/2] : 5H6moo4wU5PEeHwthqGaP9oVjjAcG3PXyn196u", + "1 | Target account [2/2] : hgTRKhjCkB", + "2 | Secondary keys : ", "3 | Chain : Polymesh", "4 | Nonce : 1", "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 91, "name": "Identity_Invalidate_cdd_claims", - "blob": "070144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af0008000000000000010008000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0701c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c49077080008000000000000018000000000000000d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Invalidate cdd claims", - "1 | Cdd [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Cdd [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Cdd [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Cdd [2/2] : bd7a6512a7cb922c53c4907708", "2 | Disable from : 2048", - "3 | Expiry : 2048", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "3 | Expiry : 128", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Identity : Invalidate cdd claims", - "1 | Cdd [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Cdd [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Cdd [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Cdd [2/2] : bd7a6512a7cb922c53c4907708", "2 | Disable from : 2048", - "3 | Expiry : 2048", + "3 | Expiry : 128", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", + "5 | Nonce : 50283", + "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 92, "name": "Identity_Invalidate_cdd_claims", - "blob": "070144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af0008000000000000018000000000000000d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0701c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c49077088000000000000000018000000000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Invalidate cdd claims", - "1 | Cdd [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Cdd [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Disable from : 2048", + "1 | Cdd [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Cdd [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Disable from : 128", "3 | Expiry : 128", - "4 | Tip : POLYX 0.000987" + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Invalidate cdd claims", - "1 | Cdd [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Cdd [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Disable from : 2048", + "1 | Cdd [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Cdd [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Disable from : 128", "3 | Expiry : 128", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 0.000987", + "5 | Nonce : 2339", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 93, "name": "Identity_Invalidate_cdd_claims", - "blob": "070144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af0008000000000000018000000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0701c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c49077088000000000000000018000000000000000d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Invalidate cdd claims", - "1 | Cdd [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Cdd [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Disable from : 2048", + "1 | Cdd [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Cdd [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Disable from : 128", "3 | Expiry : 128", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Identity : Invalidate cdd claims", - "1 | Cdd [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Cdd [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Disable from : 2048", + "1 | Cdd [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Cdd [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Disable from : 128", "3 | Expiry : 128", "4 | Chain : Polymesh", "5 | Nonce : 1", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", + "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 94, "name": "Identity_Invalidate_cdd_claims", - "blob": "070144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af0001000000000000018000000000000000d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0701c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c49077080001000000000000010008000000000000d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Invalidate cdd claims", - "1 | Cdd [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Cdd [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Cdd [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Cdd [2/2] : bd7a6512a7cb922c53c4907708", "2 | Disable from : 256", - "3 | Expiry : 128", + "3 | Expiry : 2048", "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Identity : Invalidate cdd claims", - "1 | Cdd [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Cdd [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Cdd [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Cdd [2/2] : bd7a6512a7cb922c53c4907708", "2 | Disable from : 256", - "3 | Expiry : 128", + "3 | Expiry : 2048", "4 | Chain : Polymesh", - "5 | Nonce : 2339", + "5 | Nonce : 50283", "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 95, "name": "Identity_Invalidate_cdd_claims", - "blob": "070144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af0001000000000000018000000000000000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0701c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c49077080001000000000000018000000000000000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Invalidate cdd claims", - "1 | Cdd [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Cdd [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Cdd [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Cdd [2/2] : bd7a6512a7cb922c53c4907708", "2 | Disable from : 256", - "3 | Expiry : 128", - "4 | Tip : POLYX 1234.56789" + "3 | Expiry : 128" ], "output_expert": [ "0 | Identity : Invalidate cdd claims", - "1 | Cdd [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Cdd [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Cdd [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Cdd [2/2] : bd7a6512a7cb922c53c4907708", "2 | Disable from : 256", "3 | Expiry : 128", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Nonce : 2339", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 96, "name": "Identity_Accept_primary_key", - "blob": "07026400000000000000018813000000000000d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "07026bc400000000000001d8c9760100000000d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Accept primary key", - "1 | Rotation auth id : 100", - "2 | Optional cdd auth id : 5000", - "3 | Tip : POLYX 5552342.355555" + "1 | Rotation auth id : 50283", + "2 | Optional cdd auth id : 24562136", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Identity : Accept primary key", - "1 | Rotation auth id : 100", - "2 | Optional cdd auth id : 5000", + "1 | Rotation auth id : 50283", + "2 | Optional cdd auth id : 24562136", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 2339", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 97, "name": "Identity_Accept_primary_key", - "blob": "07020100000000000000018813000000000000d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "07020000000000000000018813000000000000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Accept primary key", - "1 | Rotation auth id : 1", - "2 | Optional cdd auth id : 5000", - "3 | Tip : POLYX 0.000987" + "1 | Rotation auth id : 0", + "2 | Optional cdd auth id : 5000" ], "output_expert": [ "0 | Identity : Accept primary key", - "1 | Rotation auth id : 1", + "1 | Rotation auth id : 0", "2 | Optional cdd auth id : 5000", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 50283", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 98, "name": "Identity_Accept_primary_key", - "blob": "07020100000000000000018813000000000000d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0702640000000000000001d8c9760100000000d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Accept primary key", - "1 | Rotation auth id : 1", - "2 | Optional cdd auth id : 5000", - "3 | Tip : POLYX 5552342.355555" + "1 | Rotation auth id : 100", + "2 | Optional cdd auth id : 24562136", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Identity : Accept primary key", - "1 | Rotation auth id : 1", - "2 | Optional cdd auth id : 5000", + "1 | Rotation auth id : 100", + "2 | Optional cdd auth id : 24562136", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 2339", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 99, "name": "Identity_Accept_primary_key", - "blob": "07026bc4000000000000018813000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "07022309000000000000018813000000000000d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Accept primary key", - "1 | Rotation auth id : 50283", + "1 | Rotation auth id : 2339", "2 | Optional cdd auth id : 5000", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Identity : Accept primary key", - "1 | Rotation auth id : 50283", + "1 | Rotation auth id : 2339", "2 | Optional cdd auth id : 5000", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 50283", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 100, "name": "Identity_Accept_primary_key", - "blob": "07026bc4000000000000011a00000000000000d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "07022309000000000000018813000000000000d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Accept primary key", - "1 | Rotation auth id : 50283", - "2 | Optional cdd auth id : 26", - "3 | Tip : POLYX 55.555555" + "1 | Rotation auth id : 2339", + "2 | Optional cdd auth id : 5000", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Identity : Accept primary key", - "1 | Rotation auth id : 50283", - "2 | Optional cdd auth id : 26", + "1 | Rotation auth id : 2339", + "2 | Optional cdd auth id : 5000", "3 | Chain : Polymesh", "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 101, "name": "Identity_Change_cdd_requirement_for_mk_rotation", - "blob": "070301d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "070301d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Change cdd requirement for mk rotation", - "1 | Auth required : True", - "2 | Tip : POLYX 5552342.355555" + "1 | Auth required : True" ], "output_expert": [ "0 | Identity : Change cdd requirement for mk rotation", "1 | Auth required : True", "2 | Chain : Polymesh", "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 102, "name": "Identity_Change_cdd_requirement_for_mk_rotation", - "blob": "070301d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "070301d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Change cdd requirement for mk rotation", "1 | Auth required : True", - "2 | Tip : POLYX 55.555555" + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Identity : Change cdd requirement for mk rotation", "1 | Auth required : True", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 50283", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 103, "name": "Identity_Change_cdd_requirement_for_mk_rotation", - "blob": "070301d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "070300d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Change cdd requirement for mk rotation", - "1 | Auth required : True", - "2 | Tip : POLYX 55.555555" + "1 | Auth required : False", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Change cdd requirement for mk rotation", - "1 | Auth required : True", + "1 | Auth required : False", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 2339", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 104, "name": "Identity_Change_cdd_requirement_for_mk_rotation", - "blob": "070300d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "070300d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Change cdd requirement for mk rotation", "1 | Auth required : False", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Identity : Change cdd requirement for mk rotation", "1 | Auth required : False", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 100", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 105, "name": "Identity_Change_cdd_requirement_for_mk_rotation", - "blob": "070300d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "070300d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Change cdd requirement for mk rotation", "1 | Auth required : False", @@ -2732,199 +2678,199 @@ "0 | Identity : Change cdd requirement for mk rotation", "1 | Auth required : False", "2 | Chain : Polymesh", - "3 | Nonce : 1", + "3 | Nonce : 100", "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 106, "name": "Identity_Join_identity_as_key", - "blob": "07040000000000000000d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "07042309000000000000d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Join identity as key", - "1 | Auth id : 0" + "1 | Auth id : 2339", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Identity : Join identity as key", - "1 | Auth id : 0", + "1 | Auth id : 2339", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 50283", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 107, "name": "Identity_Join_identity_as_key", - "blob": "07046400000000000000d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "07040100000000000000d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Join identity as key", - "1 | Auth id : 100" + "1 | Auth id : 1", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Identity : Join identity as key", - "1 | Auth id : 100", + "1 | Auth id : 1", "2 | Chain : Polymesh", "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 108, "name": "Identity_Join_identity_as_key", - "blob": "07042309000000000000d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "07042309000000000000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Join identity as key", "1 | Auth id : 2339", - "2 | Tip : POLYX 5552342.355555" + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Identity : Join identity as key", "1 | Auth id : 2339", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 0", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 109, "name": "Identity_Join_identity_as_key", - "blob": "07046400000000000000d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "07040100000000000000d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Join identity as key", - "1 | Auth id : 100", + "1 | Auth id : 1", "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Identity : Join identity as key", - "1 | Auth id : 100", + "1 | Auth id : 1", "2 | Chain : Polymesh", - "3 | Nonce : 2339", + "3 | Nonce : 0", "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 110, "name": "Identity_Join_identity_as_key", - "blob": "07040100000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "07046bc4000000000000d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Join identity as key", - "1 | Auth id : 1", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Auth id : 50283", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Identity : Join identity as key", - "1 | Auth id : 1", + "1 | Auth id : 50283", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 2339", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 111, "name": "Identity_Leave_identity_as_key", - "blob": "0705d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0705d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Identity : Leave identity as key", - "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "1 | Tip [2/2] : 3.456789" + "0 | Identity : Leave identity as key" ], "output_expert": [ "0 | Identity : Leave identity as key", "1 | Chain : Polymesh", - "2 | Nonce : 2339", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "2 | Nonce : 50283", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "5 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 112, "name": "Identity_Leave_identity_as_key", - "blob": "0705d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0705d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Leave identity as key", - "1 | Tip : POLYX 0.000987" + "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "1 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Leave identity as key", "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Tip : POLYX 0.000987", + "2 | Nonce : 2339", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 113, "name": "Identity_Leave_identity_as_key", - "blob": "0705d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0705d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Leave identity as key", - "1 | Tip : POLYX 1234.56789" + "1 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Identity : Leave identity as key", "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip : POLYX 1234.56789", + "2 | Nonce : 100", + "3 | Tip : POLYX 55.555555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 114, "name": "Identity_Leave_identity_as_key", - "blob": "0705d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0705d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Leave identity as key", - "1 | Tip : POLYX 5552342.355555" + "1 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Identity : Leave identity as key", "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip : POLYX 5552342.355555", + "2 | Nonce : 50283", + "3 | Tip : POLYX 1234.56789", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 115, "name": "Identity_Leave_identity_as_key", - "blob": "0705d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0705d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Leave identity as key", "1 | Tip : POLYX 0.000987" @@ -2932,337 +2878,331 @@ "output_expert": [ "0 | Identity : Leave identity as key", "1 | Chain : Polymesh", - "2 | Nonce : 50283", + "2 | Nonce : 1", "3 | Tip : POLYX 0.000987", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 116, "name": "Identity_Add_claim", - "blob": "070644ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af042588629b835164dc42e3501ede89b2e4e86e866b78f81aeb174c2a7c6419db6c018000000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0706c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c490770804d77011fc0fd9fd0d1e2781b014bcc5a435ea2d37906f74d59e9754adda89049d010001000000000000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Add claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", "2 | Claim [1/3] : CustomerDueDiligence", - "2 | Claim [2/3] : 2588629b835164dc42e3501ede89b2e4e86e86", - "2 | Claim [3/3] : 6b78f81aeb174c2a7c6419db6c", - "3 | Expiry : 128", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "2 | Claim [2/3] : d77011fc0fd9fd0d1e2781b014bcc5a435ea2d", + "2 | Claim [3/3] : 37906f74d59e9754adda89049d", + "3 | Expiry : 256", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Identity : Add claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", "2 | Claim [1/3] : CustomerDueDiligence", - "2 | Claim [2/3] : 2588629b835164dc42e3501ede89b2e4e86e86", - "2 | Claim [3/3] : 6b78f81aeb174c2a7c6419db6c", - "3 | Expiry : 128", + "2 | Claim [2/3] : d77011fc0fd9fd0d1e2781b014bcc5a435ea2d", + "2 | Claim [3/3] : 37906f74d59e9754adda89049d", + "3 | Expiry : 256", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", + "5 | Nonce : 50283", + "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 117, "name": "Identity_Add_claim", - "blob": "070644ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af042588629b835164dc42e3501ede89b2e4e86e866b78f81aeb174c2a7c6419db6c010001000000000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0706c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708060101417373657449442d3537383632323132010008000000000000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Add claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Claim [1/3] : CustomerDueDiligence", - "2 | Claim [2/3] : 2588629b835164dc42e3501ede89b2e4e86e86", - "2 | Claim [3/3] : 6b78f81aeb174c2a7c6419db6c", - "3 | Expiry : 256", - "4 | Tip : POLYX 5552342.355555" + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Claim [1/3] : Jurisdiction", + "2 | Claim [2/3] : AX", + "2 | Claim [3/3] : AssetID-57862212", + "3 | Expiry : 2048" ], "output_expert": [ "0 | Identity : Add claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Claim [1/3] : CustomerDueDiligence", - "2 | Claim [2/3] : 2588629b835164dc42e3501ede89b2e4e86e86", - "2 | Claim [3/3] : 6b78f81aeb174c2a7c6419db6c", - "3 | Expiry : 256", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Claim [1/3] : Jurisdiction", + "2 | Claim [2/3] : AX", + "2 | Claim [3/3] : AssetID-57862212", + "3 | Expiry : 2048", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Nonce : 1", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 118, "name": "Identity_Add_claim", - "blob": "070644ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af03015449434b45522d3938373635018000000000000000d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0706c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708060101417373657449442d3537383632323132010001000000000000d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Add claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Claim [1/2] : SellLockup", - "2 | Claim [2/2] : TICKER-98765", - "3 | Expiry : 128", - "4 | Tip : POLYX 55.555555" + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Claim [1/3] : Jurisdiction", + "2 | Claim [2/3] : AX", + "2 | Claim [3/3] : AssetID-57862212", + "3 | Expiry : 256", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Identity : Add claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Claim [1/2] : SellLockup", - "2 | Claim [2/2] : TICKER-98765", - "3 | Expiry : 128", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Claim [1/3] : Jurisdiction", + "2 | Claim [2/3] : AX", + "2 | Claim [3/3] : AssetID-57862212", + "3 | Expiry : 256", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 55.555555", + "5 | Nonce : 50283", + "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 119, "name": "Identity_Add_claim", - "blob": "070644ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af0600015449434b45522d3537323132010001000000000000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0706c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708060101417373657449442d3537383632323132018000000000000000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Add claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", "2 | Claim [1/3] : Jurisdiction", - "2 | Claim [2/3] : AF", - "2 | Claim [3/3] : TICKER-57212", - "3 | Expiry : 256", - "4 | Tip : POLYX 55.555555" + "2 | Claim [2/3] : AX", + "2 | Claim [3/3] : AssetID-57862212", + "3 | Expiry : 128" ], "output_expert": [ "0 | Identity : Add claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", "2 | Claim [1/3] : Jurisdiction", - "2 | Claim [2/3] : AF", - "2 | Claim [3/3] : TICKER-57212", - "3 | Expiry : 256", + "2 | Claim [2/3] : AX", + "2 | Claim [3/3] : AssetID-57862212", + "3 | Expiry : 128", "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Nonce : 50283", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 120, "name": "Identity_Add_claim", - "blob": "070644ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af0600015449434b45522d3537323132010001000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0706c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c490770804d77011fc0fd9fd0d1e2781b014bcc5a435ea2d37906f74d59e9754adda89049d010001000000000000d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Add claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Claim [1/3] : Jurisdiction", - "2 | Claim [2/3] : AF", - "2 | Claim [3/3] : TICKER-57212", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Claim [1/3] : CustomerDueDiligence", + "2 | Claim [2/3] : d77011fc0fd9fd0d1e2781b014bcc5a435ea2d", + "2 | Claim [3/3] : 37906f74d59e9754adda89049d", "3 | Expiry : 256", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Identity : Add claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Claim [1/3] : Jurisdiction", - "2 | Claim [2/3] : AF", - "2 | Claim [3/3] : TICKER-57212", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Claim [1/3] : CustomerDueDiligence", + "2 | Claim [2/3] : d77011fc0fd9fd0d1e2781b014bcc5a435ea2d", + "2 | Claim [3/3] : 37906f74d59e9754adda89049d", "3 | Expiry : 256", "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", + "5 | Nonce : 2339", + "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 121, "name": "Identity_Revoke_claim", - "blob": "070744ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af00015449434b45522d3334353637d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0707c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708060001417373657449442d3537383632323132d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Revoke claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Claim [1/2] : Accredited", - "2 | Claim [2/2] : TICKER-34567", - "3 | Tip : POLYX 5552342.355555" + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Claim [1/3] : Jurisdiction", + "2 | Claim [2/3] : AF", + "2 | Claim [3/3] : AssetID-57862212", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Identity : Revoke claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Claim [1/2] : Accredited", - "2 | Claim [2/2] : TICKER-34567", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Claim [1/3] : Jurisdiction", + "2 | Claim [2/3] : AF", + "2 | Claim [3/3] : AssetID-57862212", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 2339", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 122, "name": "Identity_Revoke_claim", - "blob": "070744ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af00015449434b45522d3334353637d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0707c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c490770804d77011fc0fd9fd0d1e2781b014bcc5a435ea2d37906f74d59e9754adda89049dd50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Revoke claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Claim [1/2] : Accredited", - "2 | Claim [2/2] : TICKER-34567", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Claim [1/3] : CustomerDueDiligence", + "2 | Claim [2/3] : d77011fc0fd9fd0d1e2781b014bcc5a435ea2d", + "2 | Claim [3/3] : 37906f74d59e9754adda89049d", "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Identity : Revoke claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Claim [1/2] : Accredited", - "2 | Claim [2/2] : TICKER-34567", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Claim [1/3] : CustomerDueDiligence", + "2 | Claim [2/3] : d77011fc0fd9fd0d1e2781b014bcc5a435ea2d", + "2 | Claim [3/3] : 37906f74d59e9754adda89049d", "3 | Chain : Polymesh", - "4 | Nonce : 1", + "4 | Nonce : 100", "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 123, "name": "Identity_Revoke_claim", - "blob": "070744ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af00015449434b45522d3334353637d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0707c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c490770804d77011fc0fd9fd0d1e2781b014bcc5a435ea2d37906f74d59e9754adda89049dd503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Revoke claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Claim [1/2] : Accredited", - "2 | Claim [2/2] : TICKER-34567", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Claim [1/3] : CustomerDueDiligence", + "2 | Claim [2/3] : d77011fc0fd9fd0d1e2781b014bcc5a435ea2d", + "2 | Claim [3/3] : 37906f74d59e9754adda89049d", "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Identity : Revoke claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Claim [1/2] : Accredited", - "2 | Claim [2/2] : TICKER-34567", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Claim [1/3] : CustomerDueDiligence", + "2 | Claim [2/3] : d77011fc0fd9fd0d1e2781b014bcc5a435ea2d", + "2 | Claim [3/3] : 37906f74d59e9754adda89049d", "3 | Chain : Polymesh", "4 | Nonce : 0", "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 124, "name": "Identity_Revoke_claim", - "blob": "070744ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af0600015449434b45522d3537323132d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0707c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708060101417373657449442d3537383632323132d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Revoke claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", "2 | Claim [1/3] : Jurisdiction", - "2 | Claim [2/3] : AF", - "2 | Claim [3/3] : TICKER-57212", + "2 | Claim [2/3] : AX", + "2 | Claim [3/3] : AssetID-57862212", "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Identity : Revoke claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", "2 | Claim [1/3] : Jurisdiction", - "2 | Claim [2/3] : AF", - "2 | Claim [3/3] : TICKER-57212", + "2 | Claim [2/3] : AX", + "2 | Claim [3/3] : AssetID-57862212", "3 | Chain : Polymesh", - "4 | Nonce : 100", + "4 | Nonce : 50283", "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 125, "name": "Identity_Revoke_claim", - "blob": "070744ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af060100172bb7d37265a3e1f27cbdc35e75977a5289767fd22c34f00f2cc9c555faf2ddd503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0707c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c490770804d77011fc0fd9fd0d1e2781b014bcc5a435ea2d37906f74d59e9754adda89049dd5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Revoke claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Claim [1/4] : Jurisdiction", - "2 | Claim [2/4] : AX", - "2 | Claim [3/4] : 172bb7d37265a3e1f27cbdc35e75977a528976", - "2 | Claim [4/4] : 7fd22c34f00f2cc9c555faf2dd", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Claim [1/3] : CustomerDueDiligence", + "2 | Claim [2/3] : d77011fc0fd9fd0d1e2781b014bcc5a435ea2d", + "2 | Claim [3/3] : 37906f74d59e9754adda89049d", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Identity : Revoke claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Claim [1/4] : Jurisdiction", - "2 | Claim [2/4] : AX", - "2 | Claim [3/4] : 172bb7d37265a3e1f27cbdc35e75977a528976", - "2 | Claim [4/4] : 7fd22c34f00f2cc9c555faf2dd", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Claim [1/3] : CustomerDueDiligence", + "2 | Claim [2/3] : d77011fc0fd9fd0d1e2781b014bcc5a435ea2d", + "2 | Claim [3/3] : 37906f74d59e9754adda89049d", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 0", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 126, "name": "Identity_Freeze_secondary_keys", - "blob": "0708d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0708d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Identity : Freeze secondary keys", - "1 | Tip : POLYX 0.000987" + "0 | Identity : Freeze secondary keys" ], "output_expert": [ "0 | Identity : Freeze secondary keys", "1 | Chain : Polymesh", - "2 | Nonce : 2339", - "3 | Tip : POLYX 0.000987", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "2 | Nonce : 0", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "5 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 127, "name": "Identity_Freeze_secondary_keys", - "blob": "0708d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0708d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Freeze secondary keys", "1 | Tip : POLYX 55.555555" @@ -3274,33 +3214,33 @@ "3 | Tip : POLYX 55.555555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 128, "name": "Identity_Freeze_secondary_keys", - "blob": "0708d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0708d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Freeze secondary keys", - "1 | Tip : POLYX 1234.56789" + "1 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Identity : Freeze secondary keys", "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Tip : POLYX 1234.56789", - "4 | Era Phase : 61", + "2 | Nonce : 0", + "3 | Tip : POLYX 5552342.355555", + "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 129, "name": "Identity_Freeze_secondary_keys", - "blob": "0708d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0708d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Freeze secondary keys", "1 | Tip : POLYX 1234.56789" @@ -3312,1251 +3252,1229 @@ "3 | Tip : POLYX 1234.56789", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 130, "name": "Identity_Freeze_secondary_keys", - "blob": "0708d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0708d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Freeze secondary keys", - "1 | Tip : POLYX 55.555555" + "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "1 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Freeze secondary keys", "1 | Chain : Polymesh", "2 | Nonce : 1", - "3 | Tip : POLYX 55.555555", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 131, "name": "Identity_Unfreeze_secondary_keys", - "blob": "0709d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0709d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Unfreeze secondary keys", - "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "1 | Tip [2/2] : 3.456789" + "1 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Identity : Unfreeze secondary keys", "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789", + "2 | Nonce : 100", + "3 | Tip : POLYX 1234.56789", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 132, "name": "Identity_Unfreeze_secondary_keys", - "blob": "0709d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0709d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Unfreeze secondary keys", - "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "1 | Tip [2/2] : 3.456789" + "1 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Identity : Unfreeze secondary keys", "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789", + "2 | Nonce : 100", + "3 | Tip : POLYX 55.555555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 133, "name": "Identity_Unfreeze_secondary_keys", - "blob": "0709d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0709d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Identity : Unfreeze secondary keys" + "0 | Identity : Unfreeze secondary keys", + "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "1 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Unfreeze secondary keys", "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "5 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "2 | Nonce : 100", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 134, "name": "Identity_Unfreeze_secondary_keys", - "blob": "0709d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0709d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Unfreeze secondary keys", - "1 | Tip : POLYX 0.000987" + "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "1 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Unfreeze secondary keys", "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Tip : POLYX 0.000987", + "2 | Nonce : 1", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 135, "name": "Identity_Unfreeze_secondary_keys", - "blob": "0709d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0709d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Identity : Unfreeze secondary keys" + "0 | Identity : Unfreeze secondary keys", + "1 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Identity : Unfreeze secondary keys", "1 | Chain : Polymesh", - "2 | Nonce : 100", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "5 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "2 | Nonce : 0", + "3 | Tip : POLYX 1234.56789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 136, "name": "Identity_Add_authorization", - "blob": "070a017ec79835d520a96415b7164af173a34205f6c90db680d21d2688480766c49f5f06cf4cdbd6f5a682fd08247421e1af9c40faa52cdacb075d0f263bf370ac4ae3a60140e2010000000000018000000000000000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "070a0180f080cfe5804cb0337d1a1047d178e777c22986e693f14fd46a3b97c7646d0907417373657449442d313233343536373800010008000000000000d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Add authorization", - "1 | Target [1/2] : 2FK9RnJ7aFqWiNpMQExPhEnUybHXokjiLMoutY", - "1 | Target [2/2] : Vgrv8RYE5X", - "2 | Data [1/4] : PortfolioCustody", - "2 | Data [2/4] : cf4cdbd6f5a682fd08247421e1af9c40faa52c", - "2 | Data [3/4] : dacb075d0f263bf370ac4ae3a6", - "2 | Data [4/4] : 123456", - "3 | Expiry : 128", - "4 | Tip : POLYX 1234.56789" + "1 | Target [1/2] : 5EymRwMdrxWYveVhBN2AG224fTwswd6Gk1CNdz", + "1 | Target [2/2] : 36LD6UnGMq", + "2 | Data [1/3] : BecomeAgent", + "2 | Data [2/3] : AssetID-12345678", + "2 | Data [3/3] : Full", + "3 | Expiry : 2048", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Identity : Add authorization", - "1 | Target [1/2] : 2FK9RnJ7aFqWiNpMQExPhEnUybHXokjiLMoutY", - "1 | Target [2/2] : Vgrv8RYE5X", - "2 | Data [1/4] : PortfolioCustody", - "2 | Data [2/4] : cf4cdbd6f5a682fd08247421e1af9c40faa52c", - "2 | Data [3/4] : dacb075d0f263bf370ac4ae3a6", - "2 | Data [4/4] : 123456", - "3 | Expiry : 128", + "1 | Target [1/2] : 5EymRwMdrxWYveVhBN2AG224fTwswd6Gk1CNdz", + "1 | Target [2/2] : 36LD6UnGMq", + "2 | Data [1/3] : BecomeAgent", + "2 | Data [2/3] : AssetID-12345678", + "2 | Data [3/3] : Full", + "3 | Expiry : 2048", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 1234.56789", + "5 | Nonce : 50283", + "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 137, "name": "Identity_Add_authorization", - "blob": "070a007c300be32e7c0cd75b138e4d6edc80ecaed96f7be5e8d0f87b7439ccd8d7c901038f393f023606fc7554a80d5fd3d91a77b3338e809c9c950304d83b18786ba3e3010008000000000000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "070a00ebc3f128e267aee6eec164f88c0b92bd90eb315c10600afeb76497c6d80d008001010001000000000000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Add authorization", - "1 | Target [1/2] : 7c300be32e7c0cd75b138e4d6edc80ecaed96f", - "1 | Target [2/2] : 7be5e8d0f87b7439ccd8d7c901", - "2 | Data [1/3] : AddMultiSigSigner", - "2 | Data [2/3] : 2FghxPYWm3Yk3uPSNypNy9uVvJUKF28GNCkBNY", - "2 | Data [3/3] : apUVr24Z6V", - "3 | Expiry : 2048", - "4 | Tip : POLYX 1234.56789" + "1 | Target [1/2] : ebc3f128e267aee6eec164f88c0b92bd90eb31", + "1 | Target [2/2] : 5c10600afeb76497c6d80d0080", + "2 | Data : RotatePrimaryKey", + "3 | Expiry : 256" ], "output_expert": [ "0 | Identity : Add authorization", - "1 | Target [1/2] : 7c300be32e7c0cd75b138e4d6edc80ecaed96f", - "1 | Target [2/2] : 7be5e8d0f87b7439ccd8d7c901", - "2 | Data [1/3] : AddMultiSigSigner", - "2 | Data [2/3] : 2FghxPYWm3Yk3uPSNypNy9uVvJUKF28GNCkBNY", - "2 | Data [3/3] : apUVr24Z6V", - "3 | Expiry : 2048", + "1 | Target [1/2] : ebc3f128e267aee6eec164f88c0b92bd90eb31", + "1 | Target [2/2] : 5c10600afeb76497c6d80d0080", + "2 | Data : RotatePrimaryKey", + "3 | Expiry : 256", "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Nonce : 1", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 138, "name": "Identity_Add_authorization", - "blob": "070a007c300be32e7c0cd75b138e4d6edc80ecaed96f7be5e8d0f87b7439ccd8d7c90101010008000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "070a0180f080cfe5804cb0337d1a1047d178e777c22986e693f14fd46a3b97c7646d0901010001000000000000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Add authorization", - "1 | Target [1/2] : 7c300be32e7c0cd75b138e4d6edc80ecaed96f", - "1 | Target [2/2] : 7be5e8d0f87b7439ccd8d7c901", + "1 | Target [1/2] : 5EymRwMdrxWYveVhBN2AG224fTwswd6Gk1CNdz", + "1 | Target [2/2] : 36LD6UnGMq", "2 | Data : RotatePrimaryKey", - "3 | Expiry : 2048", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "3 | Expiry : 256", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Identity : Add authorization", - "1 | Target [1/2] : 7c300be32e7c0cd75b138e4d6edc80ecaed96f", - "1 | Target [2/2] : 7be5e8d0f87b7439ccd8d7c901", + "1 | Target [1/2] : 5EymRwMdrxWYveVhBN2AG224fTwswd6Gk1CNdz", + "1 | Target [2/2] : 36LD6UnGMq", "2 | Data : RotatePrimaryKey", - "3 | Expiry : 2048", + "3 | Expiry : 256", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", + "5 | Nonce : 0", + "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 139, "name": "Identity_Add_authorization", - "blob": "070a007c300be32e7c0cd75b138e4d6edc80ecaed96f7be5e8d0f87b7439ccd8d7c90106cf4cdbd6f5a682fd08247421e1af9c40faa52cdacb075d0f263bf370ac4ae3a60140e2010000000000010008000000000000d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "070a0180f080cfe5804cb0337d1a1047d178e777c22986e693f14fd46a3b97c7646d09063ecedec546220608385121b2622a85f07b46fc680829201328e59b54a88be3980140e2010000000000010001000000000000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Add authorization", - "1 | Target [1/2] : 7c300be32e7c0cd75b138e4d6edc80ecaed96f", - "1 | Target [2/2] : 7be5e8d0f87b7439ccd8d7c901", + "1 | Target [1/2] : 5EymRwMdrxWYveVhBN2AG224fTwswd6Gk1CNdz", + "1 | Target [2/2] : 36LD6UnGMq", "2 | Data [1/4] : PortfolioCustody", - "2 | Data [2/4] : cf4cdbd6f5a682fd08247421e1af9c40faa52c", - "2 | Data [3/4] : dacb075d0f263bf370ac4ae3a6", + "2 | Data [2/4] : 3ecedec546220608385121b2622a85f07b46fc", + "2 | Data [3/4] : 680829201328e59b54a88be398", "2 | Data [4/4] : 123456", - "3 | Expiry : 2048", - "4 | Tip : POLYX 55.555555" + "3 | Expiry : 256" ], "output_expert": [ "0 | Identity : Add authorization", - "1 | Target [1/2] : 7c300be32e7c0cd75b138e4d6edc80ecaed96f", - "1 | Target [2/2] : 7be5e8d0f87b7439ccd8d7c901", + "1 | Target [1/2] : 5EymRwMdrxWYveVhBN2AG224fTwswd6Gk1CNdz", + "1 | Target [2/2] : 36LD6UnGMq", "2 | Data [1/4] : PortfolioCustody", - "2 | Data [2/4] : cf4cdbd6f5a682fd08247421e1af9c40faa52c", - "2 | Data [3/4] : dacb075d0f263bf370ac4ae3a6", + "2 | Data [2/4] : 3ecedec546220608385121b2622a85f07b46fc", + "2 | Data [3/4] : 680829201328e59b54a88be398", "2 | Data [4/4] : 123456", - "3 | Expiry : 2048", + "3 | Expiry : 256", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Nonce : 2339", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 140, "name": "Identity_Add_authorization", - "blob": "070a017ec79835d520a96415b7164af173a34205f6c90db680d21d2688480766c49f5f075449434b45522d31323938330139300000018000000000000000d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "070a00ebc3f128e267aee6eec164f88c0b92bd90eb315c10600afeb76497c6d80d008004417373657449442d3132333435363738010001000000000000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Add authorization", - "1 | Target [1/2] : 2FK9RnJ7aFqWiNpMQExPhEnUybHXokjiLMoutY", - "1 | Target [2/2] : Vgrv8RYE5X", - "2 | Data [1/4] : BecomeAgent", - "2 | Data [2/4] : TICKER-12983", - "2 | Data [3/4] : Custom", - "2 | Data [4/4] : 12345", - "3 | Expiry : 128", - "4 | Tip : POLYX 0.000987" + "1 | Target [1/2] : ebc3f128e267aee6eec164f88c0b92bd90eb31", + "1 | Target [2/2] : 5c10600afeb76497c6d80d0080", + "2 | Data [1/2] : TransferAssetOwnership", + "2 | Data [2/2] : AssetID-12345678", + "3 | Expiry : 256", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Identity : Add authorization", - "1 | Target [1/2] : 2FK9RnJ7aFqWiNpMQExPhEnUybHXokjiLMoutY", - "1 | Target [2/2] : Vgrv8RYE5X", - "2 | Data [1/4] : BecomeAgent", - "2 | Data [2/4] : TICKER-12983", - "2 | Data [3/4] : Custom", - "2 | Data [4/4] : 12345", - "3 | Expiry : 128", + "1 | Target [1/2] : ebc3f128e267aee6eec164f88c0b92bd90eb31", + "1 | Target [2/2] : 5c10600afeb76497c6d80d0080", + "2 | Data [1/2] : TransferAssetOwnership", + "2 | Data [2/2] : AssetID-12345678", + "3 | Expiry : 256", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 0.000987", + "5 | Nonce : 100", + "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 141, "name": "Identity_Remove_authorization", - "blob": "070b017ec79835d520a96415b7164af173a34205f6c90db680d21d2688480766c49f5f6bc400000000000000d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "070b0180f080cfe5804cb0337d1a1047d178e777c22986e693f14fd46a3b97c7646d09000000000000000001d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Remove authorization", - "1 | Target [1/2] : 2FK9RnJ7aFqWiNpMQExPhEnUybHXokjiLMoutY", - "1 | Target [2/2] : Vgrv8RYE5X", - "2 | Auth id : 50283", - "3 | Auth issuer pays : False", + "1 | Target [1/2] : 5EymRwMdrxWYveVhBN2AG224fTwswd6Gk1CNdz", + "1 | Target [2/2] : 36LD6UnGMq", + "2 | Auth id : 0", + "3 | Auth issuer pays : True", "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Identity : Remove authorization", - "1 | Target [1/2] : 2FK9RnJ7aFqWiNpMQExPhEnUybHXokjiLMoutY", - "1 | Target [2/2] : Vgrv8RYE5X", - "2 | Auth id : 50283", - "3 | Auth issuer pays : False", + "1 | Target [1/2] : 5EymRwMdrxWYveVhBN2AG224fTwswd6Gk1CNdz", + "1 | Target [2/2] : 36LD6UnGMq", + "2 | Auth id : 0", + "3 | Auth issuer pays : True", "4 | Chain : Polymesh", - "5 | Nonce : 0", + "5 | Nonce : 1", "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 142, "name": "Identity_Remove_authorization", - "blob": "070b007c300be32e7c0cd75b138e4d6edc80ecaed96f7be5e8d0f87b7439ccd8d7c9016bc400000000000001d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "070b0180f080cfe5804cb0337d1a1047d178e777c22986e693f14fd46a3b97c7646d096bc400000000000000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Remove authorization", - "1 | Target [1/2] : 7c300be32e7c0cd75b138e4d6edc80ecaed96f", - "1 | Target [2/2] : 7be5e8d0f87b7439ccd8d7c901", + "1 | Target [1/2] : 5EymRwMdrxWYveVhBN2AG224fTwswd6Gk1CNdz", + "1 | Target [2/2] : 36LD6UnGMq", "2 | Auth id : 50283", - "3 | Auth issuer pays : True" + "3 | Auth issuer pays : False", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Identity : Remove authorization", - "1 | Target [1/2] : 7c300be32e7c0cd75b138e4d6edc80ecaed96f", - "1 | Target [2/2] : 7be5e8d0f87b7439ccd8d7c901", + "1 | Target [1/2] : 5EymRwMdrxWYveVhBN2AG224fTwswd6Gk1CNdz", + "1 | Target [2/2] : 36LD6UnGMq", "2 | Auth id : 50283", - "3 | Auth issuer pays : True", + "3 | Auth issuer pays : False", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Nonce : 100", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 143, "name": "Identity_Remove_authorization", - "blob": "070b007c300be32e7c0cd75b138e4d6edc80ecaed96f7be5e8d0f87b7439ccd8d7c901000000000000000001d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "070b00ebc3f128e267aee6eec164f88c0b92bd90eb315c10600afeb76497c6d80d00806bc400000000000000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Remove authorization", - "1 | Target [1/2] : 7c300be32e7c0cd75b138e4d6edc80ecaed96f", - "1 | Target [2/2] : 7be5e8d0f87b7439ccd8d7c901", - "2 | Auth id : 0", - "3 | Auth issuer pays : True", + "1 | Target [1/2] : ebc3f128e267aee6eec164f88c0b92bd90eb31", + "1 | Target [2/2] : 5c10600afeb76497c6d80d0080", + "2 | Auth id : 50283", + "3 | Auth issuer pays : False", "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Identity : Remove authorization", - "1 | Target [1/2] : 7c300be32e7c0cd75b138e4d6edc80ecaed96f", - "1 | Target [2/2] : 7be5e8d0f87b7439ccd8d7c901", - "2 | Auth id : 0", - "3 | Auth issuer pays : True", + "1 | Target [1/2] : ebc3f128e267aee6eec164f88c0b92bd90eb31", + "1 | Target [2/2] : 5c10600afeb76497c6d80d0080", + "2 | Auth id : 50283", + "3 | Auth issuer pays : False", "4 | Chain : Polymesh", - "5 | Nonce : 100", + "5 | Nonce : 0", "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 144, "name": "Identity_Remove_authorization", - "blob": "070b017ec79835d520a96415b7164af173a34205f6c90db680d21d2688480766c49f5f000000000000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "070b00ebc3f128e267aee6eec164f88c0b92bd90eb315c10600afeb76497c6d80d0080010000000000000000d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Remove authorization", - "1 | Target [1/2] : 2FK9RnJ7aFqWiNpMQExPhEnUybHXokjiLMoutY", - "1 | Target [2/2] : Vgrv8RYE5X", - "2 | Auth id : 0", - "3 | Auth issuer pays : False", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "1 | Target [1/2] : ebc3f128e267aee6eec164f88c0b92bd90eb31", + "1 | Target [2/2] : 5c10600afeb76497c6d80d0080", + "2 | Auth id : 1", + "3 | Auth issuer pays : False" ], "output_expert": [ "0 | Identity : Remove authorization", - "1 | Target [1/2] : 2FK9RnJ7aFqWiNpMQExPhEnUybHXokjiLMoutY", - "1 | Target [2/2] : Vgrv8RYE5X", - "2 | Auth id : 0", + "1 | Target [1/2] : ebc3f128e267aee6eec164f88c0b92bd90eb31", + "1 | Target [2/2] : 5c10600afeb76497c6d80d0080", + "2 | Auth id : 1", "3 | Auth issuer pays : False", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Nonce : 0", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 145, "name": "Identity_Remove_authorization", - "blob": "070b007c300be32e7c0cd75b138e4d6edc80ecaed96f7be5e8d0f87b7439ccd8d7c9016bc400000000000001d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "070b00ebc3f128e267aee6eec164f88c0b92bd90eb315c10600afeb76497c6d80d0080640000000000000000d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Remove authorization", - "1 | Target [1/2] : 7c300be32e7c0cd75b138e4d6edc80ecaed96f", - "1 | Target [2/2] : 7be5e8d0f87b7439ccd8d7c901", - "2 | Auth id : 50283", - "3 | Auth issuer pays : True", - "4 | Tip : POLYX 0.000987" + "1 | Target [1/2] : ebc3f128e267aee6eec164f88c0b92bd90eb31", + "1 | Target [2/2] : 5c10600afeb76497c6d80d0080", + "2 | Auth id : 100", + "3 | Auth issuer pays : False", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Identity : Remove authorization", - "1 | Target [1/2] : 7c300be32e7c0cd75b138e4d6edc80ecaed96f", - "1 | Target [2/2] : 7be5e8d0f87b7439ccd8d7c901", - "2 | Auth id : 50283", - "3 | Auth issuer pays : True", + "1 | Target [1/2] : ebc3f128e267aee6eec164f88c0b92bd90eb31", + "1 | Target [2/2] : 5c10600afeb76497c6d80d0080", + "2 | Auth id : 100", + "3 | Auth issuer pays : False", "4 | Chain : Polymesh", "5 | Nonce : 50283", - "6 | Tip : POLYX 0.000987", + "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 146, "name": "Identity_Gc_add_cdd_claim", - "blob": "070c44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "070cc209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Gc add cdd claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Identity : Gc add cdd claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 147, "name": "Identity_Gc_add_cdd_claim", - "blob": "070c44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "070cc209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Gc add cdd claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 5552342.355555" + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Identity : Gc add cdd claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 50283", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 148, "name": "Identity_Gc_add_cdd_claim", - "blob": "070c44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "070cc209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Gc add cdd claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 0.000987" + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Identity : Gc add cdd claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 2339", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 149, "name": "Identity_Gc_add_cdd_claim", - "blob": "070c44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "070cc209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Gc add cdd claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 5552342.355555" + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Identity : Gc add cdd claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 150, "name": "Identity_Gc_add_cdd_claim", - "blob": "070c44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "070cc209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Gc add cdd claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 0.000987" + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Identity : Gc add cdd claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 2339", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 151, "name": "Identity_Gc_revoke_cdd_claim", - "blob": "070d44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "070dc209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Gc revoke cdd claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 0.000987" + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Identity : Gc revoke cdd claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 0", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 152, "name": "Identity_Gc_revoke_cdd_claim", - "blob": "070d44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "070dc209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Gc revoke cdd claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708" ], "output_expert": [ "0 | Identity : Gc revoke cdd claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 153, "name": "Identity_Gc_revoke_cdd_claim", - "blob": "070d44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "070dc209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Gc revoke cdd claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Identity : Gc revoke cdd claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 2339", + "3 | Nonce : 0", "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 154, "name": "Identity_Gc_revoke_cdd_claim", - "blob": "070d44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "070dc209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Gc revoke cdd claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 55.555555" + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Identity : Gc revoke cdd claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 100", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 155, "name": "Identity_Gc_revoke_cdd_claim", - "blob": "070d44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "070dc209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Gc revoke cdd claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 0.000987" + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Identity : Gc revoke cdd claim", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 0", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 156, "name": "Identity_Revoke_claim_by_index", - "blob": "070e44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af0100d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "070ec209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c49077080200d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Revoke claim by index", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Claim type : Affiliate", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Claim type : BuyLockup", "3 | Scope : None", - "4 | Tip : POLYX 0.000987" + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Identity : Revoke claim by index", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Claim type : Affiliate", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Claim type : BuyLockup", "3 | Scope : None", "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 0.000987", + "5 | Nonce : 1", + "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 157, "name": "Identity_Revoke_claim_by_index", - "blob": "070e44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af0200d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "070ec209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c49077080000d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Revoke claim by index", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Claim type : BuyLockup", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Claim type : Accredited", "3 | Scope : None", - "4 | Tip : POLYX 1234.56789" + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Revoke claim by index", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Claim type : BuyLockup", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Claim type : Accredited", "3 | Scope : None", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 1234.56789", + "5 | Nonce : 0", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 158, "name": "Identity_Revoke_claim_by_index", - "blob": "070e44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af0100d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "070ec209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c49077080100d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Revoke claim by index", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", "2 | Claim type : Affiliate", "3 | Scope : None", - "4 | Tip : POLYX 55.555555" + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Revoke claim by index", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", "2 | Claim type : Affiliate", "3 | Scope : None", "4 | Chain : Polymesh", "5 | Nonce : 50283", - "6 | Tip : POLYX 55.555555", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 159, "name": "Identity_Revoke_claim_by_index", - "blob": "070e44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af0200d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "070ec209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c49077080100d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Revoke claim by index", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Claim type : BuyLockup", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Claim type : Affiliate", "3 | Scope : None", - "4 | Tip : POLYX 1234.56789" + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Identity : Revoke claim by index", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Claim type : BuyLockup", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Claim type : Affiliate", "3 | Scope : None", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 1234.56789", + "5 | Nonce : 100", + "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 160, "name": "Identity_Revoke_claim_by_index", - "blob": "070e44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af0000d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "070ec209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c49077080200d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Revoke claim by index", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Claim type : Accredited", - "3 | Scope : None", - "4 | Tip : POLYX 0.000987" + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Claim type : BuyLockup", + "3 | Scope : None" ], "output_expert": [ "0 | Identity : Revoke claim by index", - "1 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Claim type : Accredited", + "1 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Claim type : BuyLockup", "3 | Scope : None", "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Nonce : 0", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 161, "name": "Identity_Rotate_primary_key_to_secondary", - "blob": "070f640000000000000001d8c9760100000000d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "070f0100000000000000011a00000000000000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Rotate primary key to secondary", - "1 | Auth id : 100", - "2 | Optional cdd auth id : 24562136" + "1 | Auth id : 1", + "2 | Optional cdd auth id : 26", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Identity : Rotate primary key to secondary", - "1 | Auth id : 100", - "2 | Optional cdd auth id : 24562136", + "1 | Auth id : 1", + "2 | Optional cdd auth id : 26", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 0", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 162, "name": "Identity_Rotate_primary_key_to_secondary", - "blob": "070f6400000000000000011a00000000000000d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "070f0100000000000000018813000000000000d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Rotate primary key to secondary", - "1 | Auth id : 100", - "2 | Optional cdd auth id : 26", + "1 | Auth id : 1", + "2 | Optional cdd auth id : 5000", "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Identity : Rotate primary key to secondary", - "1 | Auth id : 100", - "2 | Optional cdd auth id : 26", + "1 | Auth id : 1", + "2 | Optional cdd auth id : 5000", "3 | Chain : Polymesh", "4 | Nonce : 50283", "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 163, "name": "Identity_Rotate_primary_key_to_secondary", - "blob": "070f000000000000000001d8c9760100000000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "070f0100000000000000018813000000000000d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Rotate primary key to secondary", - "1 | Auth id : 0", - "2 | Optional cdd auth id : 24562136", - "3 | Tip : POLYX 1234.56789" + "1 | Auth id : 1", + "2 | Optional cdd auth id : 5000", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Identity : Rotate primary key to secondary", - "1 | Auth id : 0", - "2 | Optional cdd auth id : 24562136", + "1 | Auth id : 1", + "2 | Optional cdd auth id : 5000", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 100", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 164, "name": "Identity_Rotate_primary_key_to_secondary", - "blob": "070f640000000000000001d8c9760100000000d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "070f0100000000000000011a00000000000000d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Rotate primary key to secondary", - "1 | Auth id : 100", - "2 | Optional cdd auth id : 24562136" + "1 | Auth id : 1", + "2 | Optional cdd auth id : 26", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Identity : Rotate primary key to secondary", - "1 | Auth id : 100", - "2 | Optional cdd auth id : 24562136", + "1 | Auth id : 1", + "2 | Optional cdd auth id : 26", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 100", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 165, "name": "Identity_Rotate_primary_key_to_secondary", - "blob": "070f6bc4000000000000011a00000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "070f0100000000000000011a00000000000000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Rotate primary key to secondary", - "1 | Auth id : 50283", - "2 | Optional cdd auth id : 26", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | Auth id : 1", + "2 | Optional cdd auth id : 26" ], "output_expert": [ "0 | Identity : Rotate primary key to secondary", - "1 | Auth id : 50283", + "1 | Auth id : 1", "2 | Optional cdd auth id : 26", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 1", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 166, "name": "Identity_Add_secondary_keys_with_authorization", - "blob": "071004e30af64b1457e9bee6a3b7115685e047fbaccb8cc315e35b762a8525870f228b01085449434b45522d31323836335449434b45522d313238373301042050414c4c45545f4202082c44697370617463684142432c446973706174636858595a010480fc3859702a08460c7b93fa593335071e2db82535a3b8501cb5578840a06edc0140e2010000000000f4176e241d0c73d7a8e83edd8b1929f81620f7474dd62081e1436d1b99dfe0e2921df9c750cbb3c920441d2fcf8b911e1ebd11ca6e0263f68eea46573024c74f0001000000000000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0710049d60b8781e53ae34f22d57cdf9e710fd7699080505c46e494938b0c146d766d10104417373657449442d31323334353637380104043001042c446973706174636858595a01049e549b9b5aa941ec42d7a139f4e94896acb1950ef1aacea9bcab9cca8d8783900140e201000000000034899cc47ab934a8091dafa5598633bb05b5c15d3d5362e8340e7b2bfc95fb7a533f065aa2b0934a2db57d728980636e78a57581699165a529075fd8f7458b3f0001000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Add secondary keys with authorization", - "1 | Additional keys [1/18] : 2HacEEC7G7K9wAioaGmmdtKFA4ueqDpCYw6tFU", - "1 | Additional keys [2/18] : atVssPAiv5", - "1 | Additional keys [3/18] : These", - "1 | Additional keys [4/18] : TICKER-12863", - "1 | Additional keys [5/18] : TICKER-12873", - "1 | Additional keys [6/18] : These", - "1 | Additional keys [7/18] : PALLET_B", - "1 | Additional keys [8/18] : Except", - "1 | Additional keys [9/18] : DispatchABC", - "1 | Additional keys [10/18] : DispatchXYZ", - "1 | Additional keys [11/18] : These", - "1 | Additional keys [12/18] : 80fc3859702a08460c7b93fa593335071e2db8", - "1 | Additional keys [13/18] : 2535a3b8501cb5578840a06edc", - "1 | Additional keys [14/18] : 123456", - "1 | Additional keys [15/18] : f4176e241d0c73d7a8e83edd8b1929f81620f7", - "1 | Additional keys [16/18] : 474dd62081e1436d1b99dfe0e2921df9c750cb", - "1 | Additional keys [17/18] : b3c920441d2fcf8b911e1ebd11ca6e0263f68e", - "1 | Additional keys [18/18] : ea46573024c74f", + "1 | Additional keys [1/16] : 5Fd47ASzwXdyznWBLDPecak9kqKCdDchPGV9qh", + "1 | Additional keys [2/16] : NuECjhyA3u", + "1 | Additional keys [3/16] : These", + "1 | Additional keys [4/16] : AssetID-12345678", + "1 | Additional keys [5/16] : These", + "1 | Additional keys [6/16] : 0", + "1 | Additional keys [7/16] : These", + "1 | Additional keys [8/16] : DispatchXYZ", + "1 | Additional keys [9/16] : These", + "1 | Additional keys [10/16] : 9e549b9b5aa941ec42d7a139f4e94896acb195", + "1 | Additional keys [11/16] : 0ef1aacea9bcab9cca8d878390", + "1 | Additional keys [12/16] : 123456", + "1 | Additional keys [13/16] : 34899cc47ab934a8091dafa5598633bb05b5c1", + "1 | Additional keys [14/16] : 5d3d5362e8340e7b2bfc95fb7a533f065aa2b0", + "1 | Additional keys [15/16] : 934a2db57d728980636e78a57581699165a529", + "1 | Additional keys [16/16] : 075fd8f7458b3f", "2 | Expires at : 256", - "3 | Tip : POLYX 1234.56789" + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Add secondary keys with authorization", - "1 | Additional keys [1/18] : 2HacEEC7G7K9wAioaGmmdtKFA4ueqDpCYw6tFU", - "1 | Additional keys [2/18] : atVssPAiv5", - "1 | Additional keys [3/18] : These", - "1 | Additional keys [4/18] : TICKER-12863", - "1 | Additional keys [5/18] : TICKER-12873", - "1 | Additional keys [6/18] : These", - "1 | Additional keys [7/18] : PALLET_B", - "1 | Additional keys [8/18] : Except", - "1 | Additional keys [9/18] : DispatchABC", - "1 | Additional keys [10/18] : DispatchXYZ", - "1 | Additional keys [11/18] : These", - "1 | Additional keys [12/18] : 80fc3859702a08460c7b93fa593335071e2db8", - "1 | Additional keys [13/18] : 2535a3b8501cb5578840a06edc", - "1 | Additional keys [14/18] : 123456", - "1 | Additional keys [15/18] : f4176e241d0c73d7a8e83edd8b1929f81620f7", - "1 | Additional keys [16/18] : 474dd62081e1436d1b99dfe0e2921df9c750cb", - "1 | Additional keys [17/18] : b3c920441d2fcf8b911e1ebd11ca6e0263f68e", - "1 | Additional keys [18/18] : ea46573024c74f", + "1 | Additional keys [1/16] : 5Fd47ASzwXdyznWBLDPecak9kqKCdDchPGV9qh", + "1 | Additional keys [2/16] : NuECjhyA3u", + "1 | Additional keys [3/16] : These", + "1 | Additional keys [4/16] : AssetID-12345678", + "1 | Additional keys [5/16] : These", + "1 | Additional keys [6/16] : 0", + "1 | Additional keys [7/16] : These", + "1 | Additional keys [8/16] : DispatchXYZ", + "1 | Additional keys [9/16] : These", + "1 | Additional keys [10/16] : 9e549b9b5aa941ec42d7a139f4e94896acb195", + "1 | Additional keys [11/16] : 0ef1aacea9bcab9cca8d878390", + "1 | Additional keys [12/16] : 123456", + "1 | Additional keys [13/16] : 34899cc47ab934a8091dafa5598633bb05b5c1", + "1 | Additional keys [14/16] : 5d3d5362e8340e7b2bfc95fb7a533f065aa2b0", + "1 | Additional keys [15/16] : 934a2db57d728980636e78a57581699165a529", + "1 | Additional keys [16/16] : 075fd8f7458b3f", "2 | Expires at : 256", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 100", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 167, "name": "Identity_Add_secondary_keys_with_authorization", - "blob": "071004e30af64b1457e9bee6a3b7115685e047fbaccb8cc315e35b762a8525870f228b01085449434b45522d31323836335449434b45522d313238373301042050414c4c45545f4202082c44697370617463684142432c446973706174636858595a010480fc3859702a08460c7b93fa593335071e2db82535a3b8501cb5578840a06edc0140e2010000000000f4176e241d0c73d7a8e83edd8b1929f81620f7474dd62081e1436d1b99dfe0e2921df9c750cbb3c920441d2fcf8b911e1ebd11ca6e0263f68eea46573024c74f8000000000000000d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0710049d60b8781e53ae34f22d57cdf9e710fd7699080505c46e494938b0c146d766d10104417373657449442d31323334353637380104043001042c446973706174636858595a01049e549b9b5aa941ec42d7a139f4e94896acb1950ef1aacea9bcab9cca8d8783900140e201000000000034899cc47ab934a8091dafa5598633bb05b5c15d3d5362e8340e7b2bfc95fb7a533f065aa2b0934a2db57d728980636e78a57581699165a529075fd8f7458b3f8000000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Add secondary keys with authorization", - "1 | Additional keys [1/18] : 2HacEEC7G7K9wAioaGmmdtKFA4ueqDpCYw6tFU", - "1 | Additional keys [2/18] : atVssPAiv5", - "1 | Additional keys [3/18] : These", - "1 | Additional keys [4/18] : TICKER-12863", - "1 | Additional keys [5/18] : TICKER-12873", - "1 | Additional keys [6/18] : These", - "1 | Additional keys [7/18] : PALLET_B", - "1 | Additional keys [8/18] : Except", - "1 | Additional keys [9/18] : DispatchABC", - "1 | Additional keys [10/18] : DispatchXYZ", - "1 | Additional keys [11/18] : These", - "1 | Additional keys [12/18] : 80fc3859702a08460c7b93fa593335071e2db8", - "1 | Additional keys [13/18] : 2535a3b8501cb5578840a06edc", - "1 | Additional keys [14/18] : 123456", - "1 | Additional keys [15/18] : f4176e241d0c73d7a8e83edd8b1929f81620f7", - "1 | Additional keys [16/18] : 474dd62081e1436d1b99dfe0e2921df9c750cb", - "1 | Additional keys [17/18] : b3c920441d2fcf8b911e1ebd11ca6e0263f68e", - "1 | Additional keys [18/18] : ea46573024c74f", + "1 | Additional keys [1/16] : 5Fd47ASzwXdyznWBLDPecak9kqKCdDchPGV9qh", + "1 | Additional keys [2/16] : NuECjhyA3u", + "1 | Additional keys [3/16] : These", + "1 | Additional keys [4/16] : AssetID-12345678", + "1 | Additional keys [5/16] : These", + "1 | Additional keys [6/16] : 0", + "1 | Additional keys [7/16] : These", + "1 | Additional keys [8/16] : DispatchXYZ", + "1 | Additional keys [9/16] : These", + "1 | Additional keys [10/16] : 9e549b9b5aa941ec42d7a139f4e94896acb195", + "1 | Additional keys [11/16] : 0ef1aacea9bcab9cca8d878390", + "1 | Additional keys [12/16] : 123456", + "1 | Additional keys [13/16] : 34899cc47ab934a8091dafa5598633bb05b5c1", + "1 | Additional keys [14/16] : 5d3d5362e8340e7b2bfc95fb7a533f065aa2b0", + "1 | Additional keys [15/16] : 934a2db57d728980636e78a57581699165a529", + "1 | Additional keys [16/16] : 075fd8f7458b3f", "2 | Expires at : 128", - "3 | Tip : POLYX 55.555555" + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Add secondary keys with authorization", - "1 | Additional keys [1/18] : 2HacEEC7G7K9wAioaGmmdtKFA4ueqDpCYw6tFU", - "1 | Additional keys [2/18] : atVssPAiv5", - "1 | Additional keys [3/18] : These", - "1 | Additional keys [4/18] : TICKER-12863", - "1 | Additional keys [5/18] : TICKER-12873", - "1 | Additional keys [6/18] : These", - "1 | Additional keys [7/18] : PALLET_B", - "1 | Additional keys [8/18] : Except", - "1 | Additional keys [9/18] : DispatchABC", - "1 | Additional keys [10/18] : DispatchXYZ", - "1 | Additional keys [11/18] : These", - "1 | Additional keys [12/18] : 80fc3859702a08460c7b93fa593335071e2db8", - "1 | Additional keys [13/18] : 2535a3b8501cb5578840a06edc", - "1 | Additional keys [14/18] : 123456", - "1 | Additional keys [15/18] : f4176e241d0c73d7a8e83edd8b1929f81620f7", - "1 | Additional keys [16/18] : 474dd62081e1436d1b99dfe0e2921df9c750cb", - "1 | Additional keys [17/18] : b3c920441d2fcf8b911e1ebd11ca6e0263f68e", - "1 | Additional keys [18/18] : ea46573024c74f", + "1 | Additional keys [1/16] : 5Fd47ASzwXdyznWBLDPecak9kqKCdDchPGV9qh", + "1 | Additional keys [2/16] : NuECjhyA3u", + "1 | Additional keys [3/16] : These", + "1 | Additional keys [4/16] : AssetID-12345678", + "1 | Additional keys [5/16] : These", + "1 | Additional keys [6/16] : 0", + "1 | Additional keys [7/16] : These", + "1 | Additional keys [8/16] : DispatchXYZ", + "1 | Additional keys [9/16] : These", + "1 | Additional keys [10/16] : 9e549b9b5aa941ec42d7a139f4e94896acb195", + "1 | Additional keys [11/16] : 0ef1aacea9bcab9cca8d878390", + "1 | Additional keys [12/16] : 123456", + "1 | Additional keys [13/16] : 34899cc47ab934a8091dafa5598633bb05b5c1", + "1 | Additional keys [14/16] : 5d3d5362e8340e7b2bfc95fb7a533f065aa2b0", + "1 | Additional keys [15/16] : 934a2db57d728980636e78a57581699165a529", + "1 | Additional keys [16/16] : 075fd8f7458b3f", "2 | Expires at : 128", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 100", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 168, "name": "Identity_Add_secondary_keys_with_authorization", - "blob": "071004e30af64b1457e9bee6a3b7115685e047fbaccb8cc315e35b762a8525870f228b01085449434b45522d31323836335449434b45522d313238373301042050414c4c45545f4202082c44697370617463684142432c446973706174636858595a010480fc3859702a08460c7b93fa593335071e2db82535a3b8501cb5578840a06edc0140e2010000000000f4176e241d0c73d7a8e83edd8b1929f81620f7474dd62081e1436d1b99dfe0e2921df9c750cbb3c920441d2fcf8b911e1ebd11ca6e0263f68eea46573024c74f8000000000000000d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0710049d60b8781e53ae34f22d57cdf9e710fd7699080505c46e494938b0c146d766d10104417373657449442d31323334353637380104043001042c446973706174636858595a01049e549b9b5aa941ec42d7a139f4e94896acb1950ef1aacea9bcab9cca8d8783900140e201000000000034899cc47ab934a8091dafa5598633bb05b5c15d3d5362e8340e7b2bfc95fb7a533f065aa2b0934a2db57d728980636e78a57581699165a529075fd8f7458b3f0001000000000000d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Add secondary keys with authorization", - "1 | Additional keys [1/18] : 2HacEEC7G7K9wAioaGmmdtKFA4ueqDpCYw6tFU", - "1 | Additional keys [2/18] : atVssPAiv5", - "1 | Additional keys [3/18] : These", - "1 | Additional keys [4/18] : TICKER-12863", - "1 | Additional keys [5/18] : TICKER-12873", - "1 | Additional keys [6/18] : These", - "1 | Additional keys [7/18] : PALLET_B", - "1 | Additional keys [8/18] : Except", - "1 | Additional keys [9/18] : DispatchABC", - "1 | Additional keys [10/18] : DispatchXYZ", - "1 | Additional keys [11/18] : These", - "1 | Additional keys [12/18] : 80fc3859702a08460c7b93fa593335071e2db8", - "1 | Additional keys [13/18] : 2535a3b8501cb5578840a06edc", - "1 | Additional keys [14/18] : 123456", - "1 | Additional keys [15/18] : f4176e241d0c73d7a8e83edd8b1929f81620f7", - "1 | Additional keys [16/18] : 474dd62081e1436d1b99dfe0e2921df9c750cb", - "1 | Additional keys [17/18] : b3c920441d2fcf8b911e1ebd11ca6e0263f68e", - "1 | Additional keys [18/18] : ea46573024c74f", - "2 | Expires at : 128", - "3 | Tip : POLYX 55.555555" + "1 | Additional keys [1/16] : 5Fd47ASzwXdyznWBLDPecak9kqKCdDchPGV9qh", + "1 | Additional keys [2/16] : NuECjhyA3u", + "1 | Additional keys [3/16] : These", + "1 | Additional keys [4/16] : AssetID-12345678", + "1 | Additional keys [5/16] : These", + "1 | Additional keys [6/16] : 0", + "1 | Additional keys [7/16] : These", + "1 | Additional keys [8/16] : DispatchXYZ", + "1 | Additional keys [9/16] : These", + "1 | Additional keys [10/16] : 9e549b9b5aa941ec42d7a139f4e94896acb195", + "1 | Additional keys [11/16] : 0ef1aacea9bcab9cca8d878390", + "1 | Additional keys [12/16] : 123456", + "1 | Additional keys [13/16] : 34899cc47ab934a8091dafa5598633bb05b5c1", + "1 | Additional keys [14/16] : 5d3d5362e8340e7b2bfc95fb7a533f065aa2b0", + "1 | Additional keys [15/16] : 934a2db57d728980636e78a57581699165a529", + "1 | Additional keys [16/16] : 075fd8f7458b3f", + "2 | Expires at : 256" ], "output_expert": [ "0 | Identity : Add secondary keys with authorization", - "1 | Additional keys [1/18] : 2HacEEC7G7K9wAioaGmmdtKFA4ueqDpCYw6tFU", - "1 | Additional keys [2/18] : atVssPAiv5", - "1 | Additional keys [3/18] : These", - "1 | Additional keys [4/18] : TICKER-12863", - "1 | Additional keys [5/18] : TICKER-12873", - "1 | Additional keys [6/18] : These", - "1 | Additional keys [7/18] : PALLET_B", - "1 | Additional keys [8/18] : Except", - "1 | Additional keys [9/18] : DispatchABC", - "1 | Additional keys [10/18] : DispatchXYZ", - "1 | Additional keys [11/18] : These", - "1 | Additional keys [12/18] : 80fc3859702a08460c7b93fa593335071e2db8", - "1 | Additional keys [13/18] : 2535a3b8501cb5578840a06edc", - "1 | Additional keys [14/18] : 123456", - "1 | Additional keys [15/18] : f4176e241d0c73d7a8e83edd8b1929f81620f7", - "1 | Additional keys [16/18] : 474dd62081e1436d1b99dfe0e2921df9c750cb", - "1 | Additional keys [17/18] : b3c920441d2fcf8b911e1ebd11ca6e0263f68e", - "1 | Additional keys [18/18] : ea46573024c74f", - "2 | Expires at : 128", + "1 | Additional keys [1/16] : 5Fd47ASzwXdyznWBLDPecak9kqKCdDchPGV9qh", + "1 | Additional keys [2/16] : NuECjhyA3u", + "1 | Additional keys [3/16] : These", + "1 | Additional keys [4/16] : AssetID-12345678", + "1 | Additional keys [5/16] : These", + "1 | Additional keys [6/16] : 0", + "1 | Additional keys [7/16] : These", + "1 | Additional keys [8/16] : DispatchXYZ", + "1 | Additional keys [9/16] : These", + "1 | Additional keys [10/16] : 9e549b9b5aa941ec42d7a139f4e94896acb195", + "1 | Additional keys [11/16] : 0ef1aacea9bcab9cca8d878390", + "1 | Additional keys [12/16] : 123456", + "1 | Additional keys [13/16] : 34899cc47ab934a8091dafa5598633bb05b5c1", + "1 | Additional keys [14/16] : 5d3d5362e8340e7b2bfc95fb7a533f065aa2b0", + "1 | Additional keys [15/16] : 934a2db57d728980636e78a57581699165a529", + "1 | Additional keys [16/16] : 075fd8f7458b3f", + "2 | Expires at : 256", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 100", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 169, "name": "Identity_Add_secondary_keys_with_authorization", - "blob": "071004e30af64b1457e9bee6a3b7115685e047fbaccb8cc315e35b762a8525870f228b01085449434b45522d31323836335449434b45522d313238373301042050414c4c45545f4202082c44697370617463684142432c446973706174636858595a010480fc3859702a08460c7b93fa593335071e2db82535a3b8501cb5578840a06edc0140e2010000000000f4176e241d0c73d7a8e83edd8b1929f81620f7474dd62081e1436d1b99dfe0e2921df9c750cbb3c920441d2fcf8b911e1ebd11ca6e0263f68eea46573024c74f8000000000000000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0710049d60b8781e53ae34f22d57cdf9e710fd7699080505c46e494938b0c146d766d10104417373657449442d31323334353637380104043001042c446973706174636858595a01049e549b9b5aa941ec42d7a139f4e94896acb1950ef1aacea9bcab9cca8d8783900140e201000000000034899cc47ab934a8091dafa5598633bb05b5c15d3d5362e8340e7b2bfc95fb7a533f065aa2b0934a2db57d728980636e78a57581699165a529075fd8f7458b3f8000000000000000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Add secondary keys with authorization", - "1 | Additional keys [1/18] : 2HacEEC7G7K9wAioaGmmdtKFA4ueqDpCYw6tFU", - "1 | Additional keys [2/18] : atVssPAiv5", - "1 | Additional keys [3/18] : These", - "1 | Additional keys [4/18] : TICKER-12863", - "1 | Additional keys [5/18] : TICKER-12873", - "1 | Additional keys [6/18] : These", - "1 | Additional keys [7/18] : PALLET_B", - "1 | Additional keys [8/18] : Except", - "1 | Additional keys [9/18] : DispatchABC", - "1 | Additional keys [10/18] : DispatchXYZ", - "1 | Additional keys [11/18] : These", - "1 | Additional keys [12/18] : 80fc3859702a08460c7b93fa593335071e2db8", - "1 | Additional keys [13/18] : 2535a3b8501cb5578840a06edc", - "1 | Additional keys [14/18] : 123456", - "1 | Additional keys [15/18] : f4176e241d0c73d7a8e83edd8b1929f81620f7", - "1 | Additional keys [16/18] : 474dd62081e1436d1b99dfe0e2921df9c750cb", - "1 | Additional keys [17/18] : b3c920441d2fcf8b911e1ebd11ca6e0263f68e", - "1 | Additional keys [18/18] : ea46573024c74f", + "1 | Additional keys [1/16] : 5Fd47ASzwXdyznWBLDPecak9kqKCdDchPGV9qh", + "1 | Additional keys [2/16] : NuECjhyA3u", + "1 | Additional keys [3/16] : These", + "1 | Additional keys [4/16] : AssetID-12345678", + "1 | Additional keys [5/16] : These", + "1 | Additional keys [6/16] : 0", + "1 | Additional keys [7/16] : These", + "1 | Additional keys [8/16] : DispatchXYZ", + "1 | Additional keys [9/16] : These", + "1 | Additional keys [10/16] : 9e549b9b5aa941ec42d7a139f4e94896acb195", + "1 | Additional keys [11/16] : 0ef1aacea9bcab9cca8d878390", + "1 | Additional keys [12/16] : 123456", + "1 | Additional keys [13/16] : 34899cc47ab934a8091dafa5598633bb05b5c1", + "1 | Additional keys [14/16] : 5d3d5362e8340e7b2bfc95fb7a533f065aa2b0", + "1 | Additional keys [15/16] : 934a2db57d728980636e78a57581699165a529", + "1 | Additional keys [16/16] : 075fd8f7458b3f", "2 | Expires at : 128", - "3 | Tip : POLYX 55.555555" + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Identity : Add secondary keys with authorization", - "1 | Additional keys [1/18] : 2HacEEC7G7K9wAioaGmmdtKFA4ueqDpCYw6tFU", - "1 | Additional keys [2/18] : atVssPAiv5", - "1 | Additional keys [3/18] : These", - "1 | Additional keys [4/18] : TICKER-12863", - "1 | Additional keys [5/18] : TICKER-12873", - "1 | Additional keys [6/18] : These", - "1 | Additional keys [7/18] : PALLET_B", - "1 | Additional keys [8/18] : Except", - "1 | Additional keys [9/18] : DispatchABC", - "1 | Additional keys [10/18] : DispatchXYZ", - "1 | Additional keys [11/18] : These", - "1 | Additional keys [12/18] : 80fc3859702a08460c7b93fa593335071e2db8", - "1 | Additional keys [13/18] : 2535a3b8501cb5578840a06edc", - "1 | Additional keys [14/18] : 123456", - "1 | Additional keys [15/18] : f4176e241d0c73d7a8e83edd8b1929f81620f7", - "1 | Additional keys [16/18] : 474dd62081e1436d1b99dfe0e2921df9c750cb", - "1 | Additional keys [17/18] : b3c920441d2fcf8b911e1ebd11ca6e0263f68e", - "1 | Additional keys [18/18] : ea46573024c74f", + "1 | Additional keys [1/16] : 5Fd47ASzwXdyznWBLDPecak9kqKCdDchPGV9qh", + "1 | Additional keys [2/16] : NuECjhyA3u", + "1 | Additional keys [3/16] : These", + "1 | Additional keys [4/16] : AssetID-12345678", + "1 | Additional keys [5/16] : These", + "1 | Additional keys [6/16] : 0", + "1 | Additional keys [7/16] : These", + "1 | Additional keys [8/16] : DispatchXYZ", + "1 | Additional keys [9/16] : These", + "1 | Additional keys [10/16] : 9e549b9b5aa941ec42d7a139f4e94896acb195", + "1 | Additional keys [11/16] : 0ef1aacea9bcab9cca8d878390", + "1 | Additional keys [12/16] : 123456", + "1 | Additional keys [13/16] : 34899cc47ab934a8091dafa5598633bb05b5c1", + "1 | Additional keys [14/16] : 5d3d5362e8340e7b2bfc95fb7a533f065aa2b0", + "1 | Additional keys [15/16] : 934a2db57d728980636e78a57581699165a529", + "1 | Additional keys [16/16] : 075fd8f7458b3f", "2 | Expires at : 128", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 0", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 170, "name": "Identity_Add_secondary_keys_with_authorization", - "blob": "071004e30af64b1457e9bee6a3b7115685e047fbaccb8cc315e35b762a8525870f228b01085449434b45522d31323836335449434b45522d313238373301042050414c4c45545f4202082c44697370617463684142432c446973706174636858595a010480fc3859702a08460c7b93fa593335071e2db82535a3b8501cb5578840a06edc0140e2010000000000f4176e241d0c73d7a8e83edd8b1929f81620f7474dd62081e1436d1b99dfe0e2921df9c750cbb3c920441d2fcf8b911e1ebd11ca6e0263f68eea46573024c74f0001000000000000d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0710049d60b8781e53ae34f22d57cdf9e710fd7699080505c46e494938b0c146d766d10104417373657449442d31323334353637380104043001042c446973706174636858595a01049e549b9b5aa941ec42d7a139f4e94896acb1950ef1aacea9bcab9cca8d8783900140e201000000000034899cc47ab934a8091dafa5598633bb05b5c15d3d5362e8340e7b2bfc95fb7a533f065aa2b0934a2db57d728980636e78a57581699165a529075fd8f7458b3f8000000000000000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Add secondary keys with authorization", - "1 | Additional keys [1/18] : 2HacEEC7G7K9wAioaGmmdtKFA4ueqDpCYw6tFU", - "1 | Additional keys [2/18] : atVssPAiv5", - "1 | Additional keys [3/18] : These", - "1 | Additional keys [4/18] : TICKER-12863", - "1 | Additional keys [5/18] : TICKER-12873", - "1 | Additional keys [6/18] : These", - "1 | Additional keys [7/18] : PALLET_B", - "1 | Additional keys [8/18] : Except", - "1 | Additional keys [9/18] : DispatchABC", - "1 | Additional keys [10/18] : DispatchXYZ", - "1 | Additional keys [11/18] : These", - "1 | Additional keys [12/18] : 80fc3859702a08460c7b93fa593335071e2db8", - "1 | Additional keys [13/18] : 2535a3b8501cb5578840a06edc", - "1 | Additional keys [14/18] : 123456", - "1 | Additional keys [15/18] : f4176e241d0c73d7a8e83edd8b1929f81620f7", - "1 | Additional keys [16/18] : 474dd62081e1436d1b99dfe0e2921df9c750cb", - "1 | Additional keys [17/18] : b3c920441d2fcf8b911e1ebd11ca6e0263f68e", - "1 | Additional keys [18/18] : ea46573024c74f", - "2 | Expires at : 256", + "1 | Additional keys [1/16] : 5Fd47ASzwXdyznWBLDPecak9kqKCdDchPGV9qh", + "1 | Additional keys [2/16] : NuECjhyA3u", + "1 | Additional keys [3/16] : These", + "1 | Additional keys [4/16] : AssetID-12345678", + "1 | Additional keys [5/16] : These", + "1 | Additional keys [6/16] : 0", + "1 | Additional keys [7/16] : These", + "1 | Additional keys [8/16] : DispatchXYZ", + "1 | Additional keys [9/16] : These", + "1 | Additional keys [10/16] : 9e549b9b5aa941ec42d7a139f4e94896acb195", + "1 | Additional keys [11/16] : 0ef1aacea9bcab9cca8d878390", + "1 | Additional keys [12/16] : 123456", + "1 | Additional keys [13/16] : 34899cc47ab934a8091dafa5598633bb05b5c1", + "1 | Additional keys [14/16] : 5d3d5362e8340e7b2bfc95fb7a533f065aa2b0", + "1 | Additional keys [15/16] : 934a2db57d728980636e78a57581699165a529", + "1 | Additional keys [16/16] : 075fd8f7458b3f", + "2 | Expires at : 128", "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Identity : Add secondary keys with authorization", - "1 | Additional keys [1/18] : 2HacEEC7G7K9wAioaGmmdtKFA4ueqDpCYw6tFU", - "1 | Additional keys [2/18] : atVssPAiv5", - "1 | Additional keys [3/18] : These", - "1 | Additional keys [4/18] : TICKER-12863", - "1 | Additional keys [5/18] : TICKER-12873", - "1 | Additional keys [6/18] : These", - "1 | Additional keys [7/18] : PALLET_B", - "1 | Additional keys [8/18] : Except", - "1 | Additional keys [9/18] : DispatchABC", - "1 | Additional keys [10/18] : DispatchXYZ", - "1 | Additional keys [11/18] : These", - "1 | Additional keys [12/18] : 80fc3859702a08460c7b93fa593335071e2db8", - "1 | Additional keys [13/18] : 2535a3b8501cb5578840a06edc", - "1 | Additional keys [14/18] : 123456", - "1 | Additional keys [15/18] : f4176e241d0c73d7a8e83edd8b1929f81620f7", - "1 | Additional keys [16/18] : 474dd62081e1436d1b99dfe0e2921df9c750cb", - "1 | Additional keys [17/18] : b3c920441d2fcf8b911e1ebd11ca6e0263f68e", - "1 | Additional keys [18/18] : ea46573024c74f", - "2 | Expires at : 256", + "1 | Additional keys [1/16] : 5Fd47ASzwXdyznWBLDPecak9kqKCdDchPGV9qh", + "1 | Additional keys [2/16] : NuECjhyA3u", + "1 | Additional keys [3/16] : These", + "1 | Additional keys [4/16] : AssetID-12345678", + "1 | Additional keys [5/16] : These", + "1 | Additional keys [6/16] : 0", + "1 | Additional keys [7/16] : These", + "1 | Additional keys [8/16] : DispatchXYZ", + "1 | Additional keys [9/16] : These", + "1 | Additional keys [10/16] : 9e549b9b5aa941ec42d7a139f4e94896acb195", + "1 | Additional keys [11/16] : 0ef1aacea9bcab9cca8d878390", + "1 | Additional keys [12/16] : 123456", + "1 | Additional keys [13/16] : 34899cc47ab934a8091dafa5598633bb05b5c1", + "1 | Additional keys [14/16] : 5d3d5362e8340e7b2bfc95fb7a533f065aa2b0", + "1 | Additional keys [15/16] : 934a2db57d728980636e78a57581699165a529", + "1 | Additional keys [16/16] : 075fd8f7458b3f", + "2 | Expires at : 128", "3 | Chain : Polymesh", - "4 | Nonce : 2339", + "4 | Nonce : 100", "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 171, "name": "Identity_Set_secondary_key_permissions", - "blob": "0711248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03000000d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0711b04675564efc66c59b629d4f6f844923f271ebf08fc297a0781f89731bead17f0104417373657449442d31323334353637380104043001042c446973706174636858595a0104c98f334f51562273bd98198fd956167d4ecd0f08341dee6ae8352cf6e94509920140e2010000000000d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Set secondary key permissions", - "1 | Key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Key [2/2] : D5gRxEbABD", - "2 | Perms [1/3] : Whole", - "2 | Perms [2/3] : Whole", - "2 | Perms [3/3] : Whole", - "3 | Tip : POLYX 1234.56789" + "1 | Key [1/2] : 5G3qDSksiTK2F5KmS1yryVsRfXMzt1aczrKXJY", + "1 | Key [2/2] : FkFzoSF4YP", + "2 | Perms [1/10] : These", + "2 | Perms [2/10] : AssetID-12345678", + "2 | Perms [3/10] : These", + "2 | Perms [4/10] : 0", + "2 | Perms [5/10] : These", + "2 | Perms [6/10] : DispatchXYZ", + "2 | Perms [7/10] : These", + "2 | Perms [8/10] : c98f334f51562273bd98198fd956167d4ecd0f", + "2 | Perms [9/10] : 08341dee6ae8352cf6e9450992", + "2 | Perms [10/10] : 123456", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Identity : Set secondary key permissions", - "1 | Key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Key [2/2] : D5gRxEbABD", - "2 | Perms [1/3] : Whole", - "2 | Perms [2/3] : Whole", - "2 | Perms [3/3] : Whole", + "1 | Key [1/2] : 5G3qDSksiTK2F5KmS1yryVsRfXMzt1aczrKXJY", + "1 | Key [2/2] : FkFzoSF4YP", + "2 | Perms [1/10] : These", + "2 | Perms [2/10] : AssetID-12345678", + "2 | Perms [3/10] : These", + "2 | Perms [4/10] : 0", + "2 | Perms [5/10] : These", + "2 | Perms [6/10] : DispatchXYZ", + "2 | Perms [7/10] : These", + "2 | Perms [8/10] : c98f334f51562273bd98198fd956167d4ecd0f", + "2 | Perms [9/10] : 08341dee6ae8352cf6e9450992", + "2 | Perms [10/10] : 123456", "3 | Chain : Polymesh", "4 | Nonce : 50283", - "5 | Tip : POLYX 1234.56789", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 172, "name": "Identity_Set_secondary_key_permissions", - "blob": "0711248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03000000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0711b0a4982a123e870e98be45944a32d76664a4cc899c3810c0300718516f0cb60a000000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Set secondary key permissions", - "1 | Key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Key [2/2] : D5gRxEbABD", + "1 | Key [1/2] : 5G4KBNUrpvHsFu9ZvQ5fKsbBcR2K4SBgjxgSdM", + "1 | Key [2/2] : T1Vu2VKdbZ", "2 | Perms [1/3] : Whole", "2 | Perms [2/3] : Whole", - "2 | Perms [3/3] : Whole", - "3 | Tip : POLYX 1234.56789" + "2 | Perms [3/3] : Whole" ], "output_expert": [ "0 | Identity : Set secondary key permissions", - "1 | Key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Key [2/2] : D5gRxEbABD", + "1 | Key [1/2] : 5G4KBNUrpvHsFu9ZvQ5fKsbBcR2K4SBgjxgSdM", + "1 | Key [2/2] : T1Vu2VKdbZ", "2 | Perms [1/3] : Whole", "2 | Perms [2/3] : Whole", "2 | Perms [3/3] : Whole", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 1", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 173, "name": "Identity_Set_secondary_key_permissions", - "blob": "0711248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03000000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0711b0a4982a123e870e98be45944a32d76664a4cc899c3810c0300718516f0cb60a000000d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Set secondary key permissions", - "1 | Key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Key [2/2] : D5gRxEbABD", + "1 | Key [1/2] : 5G4KBNUrpvHsFu9ZvQ5fKsbBcR2K4SBgjxgSdM", + "1 | Key [2/2] : T1Vu2VKdbZ", "2 | Perms [1/3] : Whole", "2 | Perms [2/3] : Whole", "2 | Perms [3/3] : Whole", @@ -4564,346 +4482,331 @@ ], "output_expert": [ "0 | Identity : Set secondary key permissions", - "1 | Key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Key [2/2] : D5gRxEbABD", + "1 | Key [1/2] : 5G4KBNUrpvHsFu9ZvQ5fKsbBcR2K4SBgjxgSdM", + "1 | Key [2/2] : T1Vu2VKdbZ", "2 | Perms [1/3] : Whole", "2 | Perms [2/3] : Whole", "2 | Perms [3/3] : Whole", "3 | Chain : Polymesh", - "4 | Nonce : 100", + "4 | Nonce : 0", "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 174, "name": "Identity_Set_secondary_key_permissions", - "blob": "0711248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03000000d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "07111ea4f867cc0e916cfbaa637a01eea0d3163df7d154720f78571790913a635219000000d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Set secondary key permissions", - "1 | Key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Key [2/2] : D5gRxEbABD", + "1 | Key [1/2] : 5CktJMt3EL46Fd9cgCmATqUnc4rBP6d1LDcAvK", + "1 | Key [2/2] : SX5DnQkqUa", "2 | Perms [1/3] : Whole", "2 | Perms [2/3] : Whole", - "2 | Perms [3/3] : Whole" + "2 | Perms [3/3] : Whole", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Identity : Set secondary key permissions", - "1 | Key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Key [2/2] : D5gRxEbABD", + "1 | Key [1/2] : 5CktJMt3EL46Fd9cgCmATqUnc4rBP6d1LDcAvK", + "1 | Key [2/2] : SX5DnQkqUa", "2 | Perms [1/3] : Whole", "2 | Perms [2/3] : Whole", "2 | Perms [3/3] : Whole", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 2339", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 175, "name": "Identity_Set_secondary_key_permissions", - "blob": "0711248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0301085449434b45522d31323836335449434b45522d313238373301042050414c4c45545f4202082c44697370617463684142432c446973706174636858595a0104d8877bab29ec03d12832f72948526a15dbe68f387bebc5f504dab994619275650140e2010000000000d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "07111a649a1e7bc89d0e95d5f757cdbb718b750e1e48f9962d215e0af9222021403e000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Set secondary key permissions", - "1 | Key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Key [2/2] : D5gRxEbABD", - "2 | Perms [1/12] : These", - "2 | Perms [2/12] : TICKER-12863", - "2 | Perms [3/12] : TICKER-12873", - "2 | Perms [4/12] : These", - "2 | Perms [5/12] : PALLET_B", - "2 | Perms [6/12] : Except", - "2 | Perms [7/12] : DispatchABC", - "2 | Perms [8/12] : DispatchXYZ", - "2 | Perms [9/12] : These", - "2 | Perms [10/12] : d8877bab29ec03d12832f72948526a15dbe68f", - "2 | Perms [11/12] : 387bebc5f504dab99461927565", - "2 | Perms [12/12] : 123456", - "3 | Tip : POLYX 1234.56789" + "1 | Key [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "1 | Key [2/2] : CXYT6ZmfEg", + "2 | Perms [1/3] : Whole", + "2 | Perms [2/3] : Whole", + "2 | Perms [3/3] : Whole", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Set secondary key permissions", - "1 | Key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Key [2/2] : D5gRxEbABD", - "2 | Perms [1/12] : These", - "2 | Perms [2/12] : TICKER-12863", - "2 | Perms [3/12] : TICKER-12873", - "2 | Perms [4/12] : These", - "2 | Perms [5/12] : PALLET_B", - "2 | Perms [6/12] : Except", - "2 | Perms [7/12] : DispatchABC", - "2 | Perms [8/12] : DispatchXYZ", - "2 | Perms [9/12] : These", - "2 | Perms [10/12] : d8877bab29ec03d12832f72948526a15dbe68f", - "2 | Perms [11/12] : 387bebc5f504dab99461927565", - "2 | Perms [12/12] : 123456", + "1 | Key [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "1 | Key [2/2] : CXYT6ZmfEg", + "2 | Perms [1/3] : Whole", + "2 | Perms [2/3] : Whole", + "2 | Perms [3/3] : Whole", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 1", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 176, "name": "Identity_Remove_secondary_keys", - "blob": "0712205a6d6f58b12d2e969aac068530e2357714798433b2c83e2858bff56b8e4e9f54baeb7c644974d4ac7afd1ffe9570179d65d88d90bc18f87b8d1570591f728a7afa4d19868e3cef263b1360556633acdabc5ec95faf2992ec9b20da1450bbc24ede796b1dd3b1b86e9f5cedef5637575c7226c77d4da1b4ca02493c5d5cfc7f00e299c2e71b2bbcca2d3b501cef354896427089f072f485b2e6c2a57ce5a1845d141e54f5cf87806bfb0c42d1f959d736c6e5f3c3eb496585222138156365e1357007d34d3e58bcdbeb8a1f24de64b20bfaa0f63c1eacff0de21f354540eea50fa211c5f03d0d0925898dd5260a9285bb27f78878907767c556e466154bc2837fd5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "07121442683728ce80bbeb8bc2d60272401a5a61c8c3752be4cd7646df026e35a34b6f008ccf2185eeddd862a8a228ca41e6c2cc4848ab04bdcaad75d5944fd08e1948c89b6cc70106cd9dfbfaeb50ae568e334a0b71134a3bf6539a046eccf7a3d21a04e0eb3cca1b0642d2429b165a7d4799452f61581fb18bb6c0691b13e5431a61b862f1c279831c030fcf3b8aadfb5c2dd57401fada346592e3173a98b0f2044ad503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Remove secondary keys", - "1 | Keys to remove [1/16] : 2EVUvPFB6D1zigKL7L1ooKTweerKDDdMurq65H", - "1 | Keys to remove [2/16] : 5gz9D8sHJa", - "1 | Keys to remove [3/16] : 2Gfzxp9xKQwt6rbDuCfcSsC365EjNY9YKGr4nZ", - "1 | Keys to remove [4/16] : JgM25rEzcD", - "1 | Keys to remove [5/16] : 2J76ydZh4tbHUo6zxDCD3KzFVCbzHcjUsFFRfM", - "1 | Keys to remove [6/16] : gsyg18dr7P", - "1 | Keys to remove [7/16] : 2HUcoTe9uZhzUCZnDZPTBVK3AtUYEh3Hb7fNES", - "1 | Keys to remove [8/16] : nyoPan5XHf", - "1 | Keys to remove [9/16] : 2Ha2bpo22CF2dVYqqJvzMrv2K2t51Ecd7FqD8L", - "1 | Keys to remove [10/16] : 35ZrUevzDu", - "1 | Keys to remove [11/16] : 2CuJ54LD9LDNn7Gpw7omSfjptqJ36EDDsiTW3y", - "1 | Keys to remove [12/16] : 5fV2d8Wh9H", - "1 | Keys to remove [13/16] : 2EyonnyPLtWuV55D3w1uCEHjrgndM9KiPcM8BY", - "1 | Keys to remove [14/16] : QhVVGJ6EX2", - "1 | Keys to remove [15/16] : 2G7R94BZZKNRHDV2KaPkDCNzAqgX6xXEnuv7KV", - "1 | Keys to remove [16/16] : shd6B9irVe", - "2 | Tip : POLYX 1234.56789" + "1 | Keys to remove [1/10] : 5DZmyZZ6ztre9SepCA9faBJCQXDd8n85q4bp3w", + "1 | Keys to remove [2/10] : K4KDyicxGs", + "1 | Keys to remove [3/10] : 5C5Rgkds3Gnw5EHVmgWf1DQ9nc5Np4Eb32PzVX", + "1 | Keys to remove [4/10] : v4WzXj31zV", + "1 | Keys to remove [5/10] : 5Gbjc3HWVE6xmAVdyRSEZ3tcUXcd4fdsmZcdRx", + "1 | Keys to remove [6/10] : 7Qzsnv7JJY", + "1 | Keys to remove [7/10] : 5CB6s3J3kB9WwHaq3REJxi6qyn9kQtxHeVLWUv", + "1 | Keys to remove [8/10] : p7kQgmJFrY", + "1 | Keys to remove [9/10] : 5GEU4TzWkfNvnQiGkf6Ww4nhSrfB479zeWzwfe", + "1 | Keys to remove [10/10] : Hxcwz7irDp" ], "output_expert": [ "0 | Identity : Remove secondary keys", - "1 | Keys to remove [1/16] : 2EVUvPFB6D1zigKL7L1ooKTweerKDDdMurq65H", - "1 | Keys to remove [2/16] : 5gz9D8sHJa", - "1 | Keys to remove [3/16] : 2Gfzxp9xKQwt6rbDuCfcSsC365EjNY9YKGr4nZ", - "1 | Keys to remove [4/16] : JgM25rEzcD", - "1 | Keys to remove [5/16] : 2J76ydZh4tbHUo6zxDCD3KzFVCbzHcjUsFFRfM", - "1 | Keys to remove [6/16] : gsyg18dr7P", - "1 | Keys to remove [7/16] : 2HUcoTe9uZhzUCZnDZPTBVK3AtUYEh3Hb7fNES", - "1 | Keys to remove [8/16] : nyoPan5XHf", - "1 | Keys to remove [9/16] : 2Ha2bpo22CF2dVYqqJvzMrv2K2t51Ecd7FqD8L", - "1 | Keys to remove [10/16] : 35ZrUevzDu", - "1 | Keys to remove [11/16] : 2CuJ54LD9LDNn7Gpw7omSfjptqJ36EDDsiTW3y", - "1 | Keys to remove [12/16] : 5fV2d8Wh9H", - "1 | Keys to remove [13/16] : 2EyonnyPLtWuV55D3w1uCEHjrgndM9KiPcM8BY", - "1 | Keys to remove [14/16] : QhVVGJ6EX2", - "1 | Keys to remove [15/16] : 2G7R94BZZKNRHDV2KaPkDCNzAqgX6xXEnuv7KV", - "1 | Keys to remove [16/16] : shd6B9irVe", + "1 | Keys to remove [1/10] : 5DZmyZZ6ztre9SepCA9faBJCQXDd8n85q4bp3w", + "1 | Keys to remove [2/10] : K4KDyicxGs", + "1 | Keys to remove [3/10] : 5C5Rgkds3Gnw5EHVmgWf1DQ9nc5Np4Eb32PzVX", + "1 | Keys to remove [4/10] : v4WzXj31zV", + "1 | Keys to remove [5/10] : 5Gbjc3HWVE6xmAVdyRSEZ3tcUXcd4fdsmZcdRx", + "1 | Keys to remove [6/10] : 7Qzsnv7JJY", + "1 | Keys to remove [7/10] : 5CB6s3J3kB9WwHaq3REJxi6qyn9kQtxHeVLWUv", + "1 | Keys to remove [8/10] : p7kQgmJFrY", + "1 | Keys to remove [9/10] : 5GEU4TzWkfNvnQiGkf6Ww4nhSrfB479zeWzwfe", + "1 | Keys to remove [10/10] : Hxcwz7irDp", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 177, "name": "Identity_Remove_secondary_keys", - "blob": "071214902dd1f008c2e472c447fffee377563eed940cc79e96f3be4571dc93143ab8203a47acef8333aec26e75d7b540e14763d988cc2099c8a4d53455503d72619775c2c044954daa239a417fd6d9116c04ef3746896d315a89f8593f5bb34564d36f163a4fda6ecf5064f89b10533959fb14b1d47821a38b76e7f5cb637ebd4136730ad4c11f47ba1e4e17ae21027b2de9170e3a5e98fe01896d57398a9961f04900d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0712180ef151c74547b7a7500a496af42d2fab49d1fcc6820a4e18310fa25ff1f208331c3a884cb495d43667130b4ac2de24742d1e20256845ff7455234cf9da6cba05d042abb5805b65960ea6515003d5b23c6c3fe964d7b867ff08cbe54d495c6958f24a5e29c643a8d4c84c11a8b718ca29f06d45046440011cfcbc4c9e36ab4a06806746fe2cd50eab68635ab87799ab8a0b47f14076a11d843875edd1826653534ee12d695c74d86d1476e7a82cc36fa43b1eefc47ff3d2818677bb1639553307d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Remove secondary keys", - "1 | Keys to remove [1/10] : 2FhxcJNoWm7dxnynVtezdpLBctNVbb5F3W9aA4", - "1 | Keys to remove [2/10] : vjYSz3qT9t", - "1 | Keys to remove [3/10] : 2DmLAvwAu3XMBnf9DQPGGoU9VkRkugFacJaZAv", - "1 | Keys to remove [4/10] : 2pcKyNmzv7", - "1 | Keys to remove [5/10] : 2GrGWQMady9kZFpcNHuXDBFp9ck6n316q2VX1A", - "1 | Keys to remove [6/10] : BzVY4BPEe1", - "1 | Keys to remove [7/10] : 2Cx4UhS6b39ZfRceuuHTJeWhiQM6512VrYwXQp", - "1 | Keys to remove [8/10] : wmRknwQokt", - "1 | Keys to remove [9/10] : 2Ch7nMMZpaZJ4fqcJLAWzm9WCSz5uPMAAhmUjx", - "1 | Keys to remove [10/10] : Saz1LEMrjg", - "2 | Tip : POLYX 55.555555" + "1 | Keys to remove [1/12] : 5CQJDPUqmKoQm8WwHZ7BDPyjee5aw4ccmnV9Pw", + "1 | Keys to remove [2/12] : LqriprPhPe", + "1 | Keys to remove [3/12] : 5ChiavXNPqvPDVbKRmaFeJSkq3EXZd2rdUuf6n", + "1 | Keys to remove [4/12] : UXQkWvn9CU", + "1 | Keys to remove [5/12] : 5Gmmd4Rmn2PXc3M8n2V8vAgLDxwu21Yep337Qh", + "1 | Keys to remove [6/12] : CqzSxwKhmT", + "1 | Keys to remove [7/12] : 5HYPY77hv8zkcLYg3K244RU3YTuiZSdPCpDhqq", + "1 | Keys to remove [8/12] : MNrFX6Ttoq", + "1 | Keys to remove [9/12] : 5Ey4fbG9FXRxKw4JbxN8YTgu2H6UXUjVdehV6y", + "1 | Keys to remove [10/12] : ZL6zfBpBBY", + "1 | Keys to remove [11/12] : 5Dr8V1qXmG1xRUopT82MPCqZxfFHsFGqrpancB", + "1 | Keys to remove [12/12] : TwjCZ6sjig", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Remove secondary keys", - "1 | Keys to remove [1/10] : 2FhxcJNoWm7dxnynVtezdpLBctNVbb5F3W9aA4", - "1 | Keys to remove [2/10] : vjYSz3qT9t", - "1 | Keys to remove [3/10] : 2DmLAvwAu3XMBnf9DQPGGoU9VkRkugFacJaZAv", - "1 | Keys to remove [4/10] : 2pcKyNmzv7", - "1 | Keys to remove [5/10] : 2GrGWQMady9kZFpcNHuXDBFp9ck6n316q2VX1A", - "1 | Keys to remove [6/10] : BzVY4BPEe1", - "1 | Keys to remove [7/10] : 2Cx4UhS6b39ZfRceuuHTJeWhiQM6512VrYwXQp", - "1 | Keys to remove [8/10] : wmRknwQokt", - "1 | Keys to remove [9/10] : 2Ch7nMMZpaZJ4fqcJLAWzm9WCSz5uPMAAhmUjx", - "1 | Keys to remove [10/10] : Saz1LEMrjg", + "1 | Keys to remove [1/12] : 5CQJDPUqmKoQm8WwHZ7BDPyjee5aw4ccmnV9Pw", + "1 | Keys to remove [2/12] : LqriprPhPe", + "1 | Keys to remove [3/12] : 5ChiavXNPqvPDVbKRmaFeJSkq3EXZd2rdUuf6n", + "1 | Keys to remove [4/12] : UXQkWvn9CU", + "1 | Keys to remove [5/12] : 5Gmmd4Rmn2PXc3M8n2V8vAgLDxwu21Yep337Qh", + "1 | Keys to remove [6/12] : CqzSxwKhmT", + "1 | Keys to remove [7/12] : 5HYPY77hv8zkcLYg3K244RU3YTuiZSdPCpDhqq", + "1 | Keys to remove [8/12] : MNrFX6Ttoq", + "1 | Keys to remove [9/12] : 5Ey4fbG9FXRxKw4JbxN8YTgu2H6UXUjVdehV6y", + "1 | Keys to remove [10/12] : ZL6zfBpBBY", + "1 | Keys to remove [11/12] : 5Dr8V1qXmG1xRUopT82MPCqZxfFHsFGqrpancB", + "1 | Keys to remove [12/12] : TwjCZ6sjig", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 2339", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 178, "name": "Identity_Remove_secondary_keys", - "blob": "071204ba927b84a939b6931edf46698f11bb9c9ecd1c765b70c79a3328f87a2add0a29d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0712180ef151c74547b7a7500a496af42d2fab49d1fcc6820a4e18310fa25ff1f208331c3a884cb495d43667130b4ac2de24742d1e20256845ff7455234cf9da6cba05d042abb5805b65960ea6515003d5b23c6c3fe964d7b867ff08cbe54d495c6958f24a5e29c643a8d4c84c11a8b718ca29f06d45046440011cfcbc4c9e36ab4a06806746fe2cd50eab68635ab87799ab8a0b47f14076a11d843875edd1826653534ee12d695c74d86d1476e7a82cc36fa43b1eefc47ff3d2818677bb1639553307d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Remove secondary keys", - "1 | Keys to remove [1/2] : 2GfYXKZC99GQUhEaCHbAAybZHijLN5tF2hBRRB", - "1 | Keys to remove [2/2] : ew8LFC5gMt", + "1 | Keys to remove [1/12] : 5CQJDPUqmKoQm8WwHZ7BDPyjee5aw4ccmnV9Pw", + "1 | Keys to remove [2/12] : LqriprPhPe", + "1 | Keys to remove [3/12] : 5ChiavXNPqvPDVbKRmaFeJSkq3EXZd2rdUuf6n", + "1 | Keys to remove [4/12] : UXQkWvn9CU", + "1 | Keys to remove [5/12] : 5Gmmd4Rmn2PXc3M8n2V8vAgLDxwu21Yep337Qh", + "1 | Keys to remove [6/12] : CqzSxwKhmT", + "1 | Keys to remove [7/12] : 5HYPY77hv8zkcLYg3K244RU3YTuiZSdPCpDhqq", + "1 | Keys to remove [8/12] : MNrFX6Ttoq", + "1 | Keys to remove [9/12] : 5Ey4fbG9FXRxKw4JbxN8YTgu2H6UXUjVdehV6y", + "1 | Keys to remove [10/12] : ZL6zfBpBBY", + "1 | Keys to remove [11/12] : 5Dr8V1qXmG1xRUopT82MPCqZxfFHsFGqrpancB", + "1 | Keys to remove [12/12] : TwjCZ6sjig", "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Identity : Remove secondary keys", - "1 | Keys to remove [1/2] : 2GfYXKZC99GQUhEaCHbAAybZHijLN5tF2hBRRB", - "1 | Keys to remove [2/2] : ew8LFC5gMt", + "1 | Keys to remove [1/12] : 5CQJDPUqmKoQm8WwHZ7BDPyjee5aw4ccmnV9Pw", + "1 | Keys to remove [2/12] : LqriprPhPe", + "1 | Keys to remove [3/12] : 5ChiavXNPqvPDVbKRmaFeJSkq3EXZd2rdUuf6n", + "1 | Keys to remove [4/12] : UXQkWvn9CU", + "1 | Keys to remove [5/12] : 5Gmmd4Rmn2PXc3M8n2V8vAgLDxwu21Yep337Qh", + "1 | Keys to remove [6/12] : CqzSxwKhmT", + "1 | Keys to remove [7/12] : 5HYPY77hv8zkcLYg3K244RU3YTuiZSdPCpDhqq", + "1 | Keys to remove [8/12] : MNrFX6Ttoq", + "1 | Keys to remove [9/12] : 5Ey4fbG9FXRxKw4JbxN8YTgu2H6UXUjVdehV6y", + "1 | Keys to remove [10/12] : ZL6zfBpBBY", + "1 | Keys to remove [11/12] : 5Dr8V1qXmG1xRUopT82MPCqZxfFHsFGqrpancB", + "1 | Keys to remove [12/12] : TwjCZ6sjig", "2 | Chain : Polymesh", - "3 | Nonce : 100", + "3 | Nonce : 0", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 179, "name": "Identity_Remove_secondary_keys", - "blob": "071204ba927b84a939b6931edf46698f11bb9c9ecd1c765b70c79a3328f87a2add0a29d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0712180ef151c74547b7a7500a496af42d2fab49d1fcc6820a4e18310fa25ff1f208331c3a884cb495d43667130b4ac2de24742d1e20256845ff7455234cf9da6cba05d042abb5805b65960ea6515003d5b23c6c3fe964d7b867ff08cbe54d495c6958f24a5e29c643a8d4c84c11a8b718ca29f06d45046440011cfcbc4c9e36ab4a06806746fe2cd50eab68635ab87799ab8a0b47f14076a11d843875edd1826653534ee12d695c74d86d1476e7a82cc36fa43b1eefc47ff3d2818677bb1639553307d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Remove secondary keys", - "1 | Keys to remove [1/2] : 2GfYXKZC99GQUhEaCHbAAybZHijLN5tF2hBRRB", - "1 | Keys to remove [2/2] : ew8LFC5gMt", + "1 | Keys to remove [1/12] : 5CQJDPUqmKoQm8WwHZ7BDPyjee5aw4ccmnV9Pw", + "1 | Keys to remove [2/12] : LqriprPhPe", + "1 | Keys to remove [3/12] : 5ChiavXNPqvPDVbKRmaFeJSkq3EXZd2rdUuf6n", + "1 | Keys to remove [4/12] : UXQkWvn9CU", + "1 | Keys to remove [5/12] : 5Gmmd4Rmn2PXc3M8n2V8vAgLDxwu21Yep337Qh", + "1 | Keys to remove [6/12] : CqzSxwKhmT", + "1 | Keys to remove [7/12] : 5HYPY77hv8zkcLYg3K244RU3YTuiZSdPCpDhqq", + "1 | Keys to remove [8/12] : MNrFX6Ttoq", + "1 | Keys to remove [9/12] : 5Ey4fbG9FXRxKw4JbxN8YTgu2H6UXUjVdehV6y", + "1 | Keys to remove [10/12] : ZL6zfBpBBY", + "1 | Keys to remove [11/12] : 5Dr8V1qXmG1xRUopT82MPCqZxfFHsFGqrpancB", + "1 | Keys to remove [12/12] : TwjCZ6sjig", "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Identity : Remove secondary keys", - "1 | Keys to remove [1/2] : 2GfYXKZC99GQUhEaCHbAAybZHijLN5tF2hBRRB", - "1 | Keys to remove [2/2] : ew8LFC5gMt", + "1 | Keys to remove [1/12] : 5CQJDPUqmKoQm8WwHZ7BDPyjee5aw4ccmnV9Pw", + "1 | Keys to remove [2/12] : LqriprPhPe", + "1 | Keys to remove [3/12] : 5ChiavXNPqvPDVbKRmaFeJSkq3EXZd2rdUuf6n", + "1 | Keys to remove [4/12] : UXQkWvn9CU", + "1 | Keys to remove [5/12] : 5Gmmd4Rmn2PXc3M8n2V8vAgLDxwu21Yep337Qh", + "1 | Keys to remove [6/12] : CqzSxwKhmT", + "1 | Keys to remove [7/12] : 5HYPY77hv8zkcLYg3K244RU3YTuiZSdPCpDhqq", + "1 | Keys to remove [8/12] : MNrFX6Ttoq", + "1 | Keys to remove [9/12] : 5Ey4fbG9FXRxKw4JbxN8YTgu2H6UXUjVdehV6y", + "1 | Keys to remove [10/12] : ZL6zfBpBBY", + "1 | Keys to remove [11/12] : 5Dr8V1qXmG1xRUopT82MPCqZxfFHsFGqrpancB", + "1 | Keys to remove [12/12] : TwjCZ6sjig", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 2339", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 180, "name": "Identity_Remove_secondary_keys", - "blob": "0712205a6d6f58b12d2e969aac068530e2357714798433b2c83e2858bff56b8e4e9f54baeb7c644974d4ac7afd1ffe9570179d65d88d90bc18f87b8d1570591f728a7afa4d19868e3cef263b1360556633acdabc5ec95faf2992ec9b20da1450bbc24ede796b1dd3b1b86e9f5cedef5637575c7226c77d4da1b4ca02493c5d5cfc7f00e299c2e71b2bbcca2d3b501cef354896427089f072f485b2e6c2a57ce5a1845d141e54f5cf87806bfb0c42d1f959d736c6e5f3c3eb496585222138156365e1357007d34d3e58bcdbeb8a1f24de64b20bfaa0f63c1eacff0de21f354540eea50fa211c5f03d0d0925898dd5260a9285bb27f78878907767c556e466154bc2837fd50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0712180ef151c74547b7a7500a496af42d2fab49d1fcc6820a4e18310fa25ff1f208331c3a884cb495d43667130b4ac2de24742d1e20256845ff7455234cf9da6cba05d042abb5805b65960ea6515003d5b23c6c3fe964d7b867ff08cbe54d495c6958f24a5e29c643a8d4c84c11a8b718ca29f06d45046440011cfcbc4c9e36ab4a06806746fe2cd50eab68635ab87799ab8a0b47f14076a11d843875edd1826653534ee12d695c74d86d1476e7a82cc36fa43b1eefc47ff3d2818677bb1639553307d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Remove secondary keys", - "1 | Keys to remove [1/16] : 2EVUvPFB6D1zigKL7L1ooKTweerKDDdMurq65H", - "1 | Keys to remove [2/16] : 5gz9D8sHJa", - "1 | Keys to remove [3/16] : 2Gfzxp9xKQwt6rbDuCfcSsC365EjNY9YKGr4nZ", - "1 | Keys to remove [4/16] : JgM25rEzcD", - "1 | Keys to remove [5/16] : 2J76ydZh4tbHUo6zxDCD3KzFVCbzHcjUsFFRfM", - "1 | Keys to remove [6/16] : gsyg18dr7P", - "1 | Keys to remove [7/16] : 2HUcoTe9uZhzUCZnDZPTBVK3AtUYEh3Hb7fNES", - "1 | Keys to remove [8/16] : nyoPan5XHf", - "1 | Keys to remove [9/16] : 2Ha2bpo22CF2dVYqqJvzMrv2K2t51Ecd7FqD8L", - "1 | Keys to remove [10/16] : 35ZrUevzDu", - "1 | Keys to remove [11/16] : 2CuJ54LD9LDNn7Gpw7omSfjptqJ36EDDsiTW3y", - "1 | Keys to remove [12/16] : 5fV2d8Wh9H", - "1 | Keys to remove [13/16] : 2EyonnyPLtWuV55D3w1uCEHjrgndM9KiPcM8BY", - "1 | Keys to remove [14/16] : QhVVGJ6EX2", - "1 | Keys to remove [15/16] : 2G7R94BZZKNRHDV2KaPkDCNzAqgX6xXEnuv7KV", - "1 | Keys to remove [16/16] : shd6B9irVe", - "2 | Tip : POLYX 55.555555" + "1 | Keys to remove [1/12] : 5CQJDPUqmKoQm8WwHZ7BDPyjee5aw4ccmnV9Pw", + "1 | Keys to remove [2/12] : LqriprPhPe", + "1 | Keys to remove [3/12] : 5ChiavXNPqvPDVbKRmaFeJSkq3EXZd2rdUuf6n", + "1 | Keys to remove [4/12] : UXQkWvn9CU", + "1 | Keys to remove [5/12] : 5Gmmd4Rmn2PXc3M8n2V8vAgLDxwu21Yep337Qh", + "1 | Keys to remove [6/12] : CqzSxwKhmT", + "1 | Keys to remove [7/12] : 5HYPY77hv8zkcLYg3K244RU3YTuiZSdPCpDhqq", + "1 | Keys to remove [8/12] : MNrFX6Ttoq", + "1 | Keys to remove [9/12] : 5Ey4fbG9FXRxKw4JbxN8YTgu2H6UXUjVdehV6y", + "1 | Keys to remove [10/12] : ZL6zfBpBBY", + "1 | Keys to remove [11/12] : 5Dr8V1qXmG1xRUopT82MPCqZxfFHsFGqrpancB", + "1 | Keys to remove [12/12] : TwjCZ6sjig", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Remove secondary keys", - "1 | Keys to remove [1/16] : 2EVUvPFB6D1zigKL7L1ooKTweerKDDdMurq65H", - "1 | Keys to remove [2/16] : 5gz9D8sHJa", - "1 | Keys to remove [3/16] : 2Gfzxp9xKQwt6rbDuCfcSsC365EjNY9YKGr4nZ", - "1 | Keys to remove [4/16] : JgM25rEzcD", - "1 | Keys to remove [5/16] : 2J76ydZh4tbHUo6zxDCD3KzFVCbzHcjUsFFRfM", - "1 | Keys to remove [6/16] : gsyg18dr7P", - "1 | Keys to remove [7/16] : 2HUcoTe9uZhzUCZnDZPTBVK3AtUYEh3Hb7fNES", - "1 | Keys to remove [8/16] : nyoPan5XHf", - "1 | Keys to remove [9/16] : 2Ha2bpo22CF2dVYqqJvzMrv2K2t51Ecd7FqD8L", - "1 | Keys to remove [10/16] : 35ZrUevzDu", - "1 | Keys to remove [11/16] : 2CuJ54LD9LDNn7Gpw7omSfjptqJ36EDDsiTW3y", - "1 | Keys to remove [12/16] : 5fV2d8Wh9H", - "1 | Keys to remove [13/16] : 2EyonnyPLtWuV55D3w1uCEHjrgndM9KiPcM8BY", - "1 | Keys to remove [14/16] : QhVVGJ6EX2", - "1 | Keys to remove [15/16] : 2G7R94BZZKNRHDV2KaPkDCNzAqgX6xXEnuv7KV", - "1 | Keys to remove [16/16] : shd6B9irVe", + "1 | Keys to remove [1/12] : 5CQJDPUqmKoQm8WwHZ7BDPyjee5aw4ccmnV9Pw", + "1 | Keys to remove [2/12] : LqriprPhPe", + "1 | Keys to remove [3/12] : 5ChiavXNPqvPDVbKRmaFeJSkq3EXZd2rdUuf6n", + "1 | Keys to remove [4/12] : UXQkWvn9CU", + "1 | Keys to remove [5/12] : 5Gmmd4Rmn2PXc3M8n2V8vAgLDxwu21Yep337Qh", + "1 | Keys to remove [6/12] : CqzSxwKhmT", + "1 | Keys to remove [7/12] : 5HYPY77hv8zkcLYg3K244RU3YTuiZSdPCpDhqq", + "1 | Keys to remove [8/12] : MNrFX6Ttoq", + "1 | Keys to remove [9/12] : 5Ey4fbG9FXRxKw4JbxN8YTgu2H6UXUjVdehV6y", + "1 | Keys to remove [10/12] : ZL6zfBpBBY", + "1 | Keys to remove [11/12] : 5Dr8V1qXmG1xRUopT82MPCqZxfFHsFGqrpancB", + "1 | Keys to remove [12/12] : TwjCZ6sjig", "2 | Chain : Polymesh", "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 181, "name": "Identity_Register_custom_claim_type", - "blob": "0713100d0c1323d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0713100e2a0c49d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Register custom claim type", - "1 | Ty [1/4] : 13", - "1 | Ty [2/4] : 12", - "1 | Ty [3/4] : 19", - "1 | Ty [4/4] : 35", + "1 | Ty [1/4] : 14", + "1 | Ty [2/4] : 42", + "1 | Ty [3/4] : 12", + "1 | Ty [4/4] : 73", "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Identity : Register custom claim type", - "1 | Ty [1/4] : 13", - "1 | Ty [2/4] : 12", - "1 | Ty [3/4] : 19", - "1 | Ty [4/4] : 35", + "1 | Ty [1/4] : 14", + "1 | Ty [2/4] : 42", + "1 | Ty [3/4] : 12", + "1 | Ty [4/4] : 73", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 2339", "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 182, "name": "Identity_Register_custom_claim_type", - "blob": "0713100d0c1323d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Register custom claim type", - "1 | Ty [1/4] : 13", - "1 | Ty [2/4] : 12", - "1 | Ty [3/4] : 19", - "1 | Ty [4/4] : 35", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Identity : Register custom claim type", - "1 | Ty [1/4] : 13", - "1 | Ty [2/4] : 12", - "1 | Ty [3/4] : 19", - "1 | Ty [4/4] : 35", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 183, - "name": "Identity_Register_custom_claim_type", - "blob": "0713100c293435d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0713100c293435d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Register custom claim type", "1 | Ty [1/4] : 12", "1 | Ty [2/4] : 41", "1 | Ty [3/4] : 52", "1 | Ty [4/4] : 53", - "2 | Tip : POLYX 5552342.355555" + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Identity : Register custom claim type", @@ -4912,25 +4815,25 @@ "1 | Ty [3/4] : 52", "1 | Ty [4/4] : 53", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 0", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 184, + "index": 183, "name": "Identity_Register_custom_claim_type", - "blob": "071310200b200bd503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "071310200b200bd503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Register custom claim type", "1 | Ty [1/4] : 32", "1 | Ty [2/4] : 11", "1 | Ty [3/4] : 32", "1 | Ty [4/4] : 11", - "2 | Tip : POLYX 5552342.355555" + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Identity : Register custom claim type", @@ -4939,1459 +4842,1494 @@ "1 | Ty [3/4] : 32", "1 | Ty [4/4] : 11", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 100", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 185, + "index": 184, "name": "Identity_Register_custom_claim_type", - "blob": "0713100d0c1323d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0713100e2a0c49d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Register custom claim type", - "1 | Ty [1/4] : 13", - "1 | Ty [2/4] : 12", - "1 | Ty [3/4] : 19", - "1 | Ty [4/4] : 35", + "1 | Ty [1/4] : 14", + "1 | Ty [2/4] : 42", + "1 | Ty [3/4] : 12", + "1 | Ty [4/4] : 73", "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Identity : Register custom claim type", - "1 | Ty [1/4] : 13", - "1 | Ty [2/4] : 12", - "1 | Ty [3/4] : 19", - "1 | Ty [4/4] : 35", + "1 | Ty [1/4] : 14", + "1 | Ty [2/4] : 42", + "1 | Ty [3/4] : 12", + "1 | Ty [4/4] : 73", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 0", "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 186, - "name": "Identity_Cdd_register_did_with_cdd", - "blob": "0714248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0304bbde6512f952e2aa379294a4315616b73ea85b39e198db0485d235a28cd830e301085449434b45522d31323836335449434b45522d313238373302042050414c4c45545f5102042c44697370617463684142430104732a11e820dd14dcd9cf7edb89dd1a630d8e4f5f1ea926e1bac62a6ba4bb8cfa0140e2010000000000018000000000000000d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 185, + "name": "Identity_Register_custom_claim_type", + "blob": "0713100c293435d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Identity : Cdd register did with cdd", - "1 | Target account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Target account [2/2] : D5gRxEbABD", - "2 | Secondary keys [1/13] : 2GhF836j5CmPiuf6FaUhzsntpr62xgTJJ9AVN8", - "2 | Secondary keys [2/13] : TTCRF1hi8W", - "2 | Secondary keys [3/13] : These", - "2 | Secondary keys [4/13] : TICKER-12863", - "2 | Secondary keys [5/13] : TICKER-12873", - "2 | Secondary keys [6/13] : Except", - "2 | Secondary keys [7/13] : PALLET_Q", - "2 | Secondary keys [8/13] : Except", - "2 | Secondary keys [9/13] : DispatchABC", - "2 | Secondary keys [10/13] : These", - "2 | Secondary keys [11/13] : 732a11e820dd14dcd9cf7edb89dd1a630d8e4f", - "2 | Secondary keys [12/13] : 5f1ea926e1bac62a6ba4bb8cfa", - "2 | Secondary keys [13/13] : 123456", - "3 | Expiry : 128", - "4 | Tip : POLYX 0.000987" + "0 | Identity : Register custom claim type", + "1 | Ty [1/4] : 12", + "1 | Ty [2/4] : 41", + "1 | Ty [3/4] : 52", + "1 | Ty [4/4] : 53" ], "output_expert": [ - "0 | Identity : Cdd register did with cdd", - "1 | Target account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Target account [2/2] : D5gRxEbABD", - "2 | Secondary keys [1/13] : 2GhF836j5CmPiuf6FaUhzsntpr62xgTJJ9AVN8", - "2 | Secondary keys [2/13] : TTCRF1hi8W", - "2 | Secondary keys [3/13] : These", - "2 | Secondary keys [4/13] : TICKER-12863", - "2 | Secondary keys [5/13] : TICKER-12873", - "2 | Secondary keys [6/13] : Except", - "2 | Secondary keys [7/13] : PALLET_Q", - "2 | Secondary keys [8/13] : Except", - "2 | Secondary keys [9/13] : DispatchABC", - "2 | Secondary keys [10/13] : These", - "2 | Secondary keys [11/13] : 732a11e820dd14dcd9cf7edb89dd1a630d8e4f", - "2 | Secondary keys [12/13] : 5f1ea926e1bac62a6ba4bb8cfa", - "2 | Secondary keys [13/13] : 123456", - "3 | Expiry : 128", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Identity : Register custom claim type", + "1 | Ty [1/4] : 12", + "1 | Ty [2/4] : 41", + "1 | Ty [3/4] : 52", + "1 | Ty [4/4] : 53", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 187, + "index": 186, "name": "Identity_Cdd_register_did_with_cdd", - "blob": "0714248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0300010008000000000000d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "07141ea4f867cc0e916cfbaa637a01eea0d3163df7d154720f78571790913a63521900010008000000000000d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Cdd register did with cdd", - "1 | Target account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Target account [2/2] : D5gRxEbABD", + "1 | Target account [1/2] : 5CktJMt3EL46Fd9cgCmATqUnc4rBP6d1LDcAvK", + "1 | Target account [2/2] : SX5DnQkqUa", "2 | Secondary keys : ", "3 | Expiry : 2048" ], "output_expert": [ "0 | Identity : Cdd register did with cdd", - "1 | Target account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Target account [2/2] : D5gRxEbABD", + "1 | Target account [1/2] : 5CktJMt3EL46Fd9cgCmATqUnc4rBP6d1LDcAvK", + "1 | Target account [2/2] : SX5DnQkqUa", "2 | Secondary keys : ", "3 | Expiry : 2048", "4 | Chain : Polymesh", - "5 | Nonce : 100", + "5 | Nonce : 0", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 187, + "name": "Identity_Cdd_register_did_with_cdd", + "blob": "07142e5388ccb167c9fe3baeba3fed959f63c4e8bceb6c7387a77940029c1423982000010001000000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Identity : Cdd register did with cdd", + "1 | Target account [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "1 | Target account [2/2] : qta7VKQZKw", + "2 | Secondary keys : ", + "3 | Expiry : 256", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" + ], + "output_expert": [ + "0 | Identity : Cdd register did with cdd", + "1 | Target account [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "1 | Target account [2/2] : qta7VKQZKw", + "2 | Secondary keys : ", + "3 | Expiry : 256", + "4 | Chain : Polymesh", + "5 | Nonce : 50283", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 188, "name": "Identity_Cdd_register_did_with_cdd", - "blob": "0714248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0304bbde6512f952e2aa379294a4315616b73ea85b39e198db0485d235a28cd830e301085449434b45522d31323836335449434b45522d313238373302042050414c4c45545f5102042c44697370617463684142430104732a11e820dd14dcd9cf7edb89dd1a630d8e4f5f1ea926e1bac62a6ba4bb8cfa0140e2010000000000010001000000000000d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0714eeee0fc19c12fccb5428f3defc551fa77b3eda70bcf9c86045ade577d0fd15080461f0c98a52e87a269ac3dc4f3ce5a6c0c24a45900be816be00932e3ab5a2750c0104417373657449442d31323334353637380208043001082c44697370617463684142432c446973706174636858595a043102082c44697370617463684142432c446973706174636858595a01049800cdeeb8b080077798efb50ee3f45d98ad177fb0b8df9953739c02ad7506d00140e2010000000000010001000000000000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Cdd register did with cdd", - "1 | Target account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Target account [2/2] : D5gRxEbABD", - "2 | Secondary keys [1/13] : 2GhF836j5CmPiuf6FaUhzsntpr62xgTJJ9AVN8", - "2 | Secondary keys [2/13] : TTCRF1hi8W", - "2 | Secondary keys [3/13] : These", - "2 | Secondary keys [4/13] : TICKER-12863", - "2 | Secondary keys [5/13] : TICKER-12873", - "2 | Secondary keys [6/13] : Except", - "2 | Secondary keys [7/13] : PALLET_Q", - "2 | Secondary keys [8/13] : Except", - "2 | Secondary keys [9/13] : DispatchABC", - "2 | Secondary keys [10/13] : These", - "2 | Secondary keys [11/13] : 732a11e820dd14dcd9cf7edb89dd1a630d8e4f", - "2 | Secondary keys [12/13] : 5f1ea926e1bac62a6ba4bb8cfa", - "2 | Secondary keys [13/13] : 123456", + "1 | Target account [1/2] : 5HTyyNf3SP6wwvJb6dmojvVT27bFkbLV2QN1Q2", + "1 | Target account [2/2] : YfRrxBgvey", + "2 | Secondary keys [1/17] : 5EH82jeaBoA9a8Pb1oKQCNpbDxoXuxa3xU6Dck", + "2 | Secondary keys [2/17] : FuKWAtEi7B", + "2 | Secondary keys [3/17] : These", + "2 | Secondary keys [4/17] : AssetID-12345678", + "2 | Secondary keys [5/17] : Except", + "2 | Secondary keys [6/17] : 0", + "2 | Secondary keys [7/17] : These", + "2 | Secondary keys [8/17] : DispatchABC", + "2 | Secondary keys [9/17] : DispatchXYZ", + "2 | Secondary keys [10/17] : 1", + "2 | Secondary keys [11/17] : Except", + "2 | Secondary keys [12/17] : DispatchABC", + "2 | Secondary keys [13/17] : DispatchXYZ", + "2 | Secondary keys [14/17] : These", + "2 | Secondary keys [15/17] : 9800cdeeb8b080077798efb50ee3f45d98ad17", + "2 | Secondary keys [16/17] : 7fb0b8df9953739c02ad7506d0", + "2 | Secondary keys [17/17] : 123456", "3 | Expiry : 256", "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Identity : Cdd register did with cdd", - "1 | Target account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Target account [2/2] : D5gRxEbABD", - "2 | Secondary keys [1/13] : 2GhF836j5CmPiuf6FaUhzsntpr62xgTJJ9AVN8", - "2 | Secondary keys [2/13] : TTCRF1hi8W", - "2 | Secondary keys [3/13] : These", - "2 | Secondary keys [4/13] : TICKER-12863", - "2 | Secondary keys [5/13] : TICKER-12873", - "2 | Secondary keys [6/13] : Except", - "2 | Secondary keys [7/13] : PALLET_Q", - "2 | Secondary keys [8/13] : Except", - "2 | Secondary keys [9/13] : DispatchABC", - "2 | Secondary keys [10/13] : These", - "2 | Secondary keys [11/13] : 732a11e820dd14dcd9cf7edb89dd1a630d8e4f", - "2 | Secondary keys [12/13] : 5f1ea926e1bac62a6ba4bb8cfa", - "2 | Secondary keys [13/13] : 123456", + "1 | Target account [1/2] : 5HTyyNf3SP6wwvJb6dmojvVT27bFkbLV2QN1Q2", + "1 | Target account [2/2] : YfRrxBgvey", + "2 | Secondary keys [1/17] : 5EH82jeaBoA9a8Pb1oKQCNpbDxoXuxa3xU6Dck", + "2 | Secondary keys [2/17] : FuKWAtEi7B", + "2 | Secondary keys [3/17] : These", + "2 | Secondary keys [4/17] : AssetID-12345678", + "2 | Secondary keys [5/17] : Except", + "2 | Secondary keys [6/17] : 0", + "2 | Secondary keys [7/17] : These", + "2 | Secondary keys [8/17] : DispatchABC", + "2 | Secondary keys [9/17] : DispatchXYZ", + "2 | Secondary keys [10/17] : 1", + "2 | Secondary keys [11/17] : Except", + "2 | Secondary keys [12/17] : DispatchABC", + "2 | Secondary keys [13/17] : DispatchXYZ", + "2 | Secondary keys [14/17] : These", + "2 | Secondary keys [15/17] : 9800cdeeb8b080077798efb50ee3f45d98ad17", + "2 | Secondary keys [16/17] : 7fb0b8df9953739c02ad7506d0", + "2 | Secondary keys [17/17] : 123456", "3 | Expiry : 256", "4 | Chain : Polymesh", - "5 | Nonce : 100", + "5 | Nonce : 50283", "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 189, "name": "Identity_Cdd_register_did_with_cdd", - "blob": "0714248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0300018000000000000000d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0714b04675564efc66c59b629d4f6f844923f271ebf08fc297a0781f89731bead17f00018000000000000000d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Cdd register did with cdd", - "1 | Target account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Target account [2/2] : D5gRxEbABD", + "1 | Target account [1/2] : 5G3qDSksiTK2F5KmS1yryVsRfXMzt1aczrKXJY", + "1 | Target account [2/2] : FkFzoSF4YP", "2 | Secondary keys : ", "3 | Expiry : 128", - "4 | Tip : POLYX 55.555555" + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Identity : Cdd register did with cdd", - "1 | Target account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Target account [2/2] : D5gRxEbABD", + "1 | Target account [1/2] : 5G3qDSksiTK2F5KmS1yryVsRfXMzt1aczrKXJY", + "1 | Target account [2/2] : FkFzoSF4YP", "2 | Secondary keys : ", "3 | Expiry : 128", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 55.555555", + "5 | Nonce : 2339", + "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 190, "name": "Identity_Cdd_register_did_with_cdd", - "blob": "0714248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0300010001000000000000d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0714ca2d8f06d9c35d80eec81d49959918c1e6c09c314b6154fbf6e2665abc512a240461f0c98a52e87a269ac3dc4f3ce5a6c0c24a45900be816be00932e3ab5a2750c0104417373657449442d31323334353637380208043001082c44697370617463684142432c446973706174636858595a043102082c44697370617463684142432c446973706174636858595a01049800cdeeb8b080077798efb50ee3f45d98ad177fb0b8df9953739c02ad7506d00140e2010000000000010001000000000000d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Cdd register did with cdd", - "1 | Target account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Target account [2/2] : D5gRxEbABD", - "2 | Secondary keys : ", + "1 | Target account [1/2] : 5Gdo4eJq3jwcZ8ncshpMoSPMm3ypeeNe2441To", + "1 | Target account [2/2] : B8w88odrQ1", + "2 | Secondary keys [1/17] : 5EH82jeaBoA9a8Pb1oKQCNpbDxoXuxa3xU6Dck", + "2 | Secondary keys [2/17] : FuKWAtEi7B", + "2 | Secondary keys [3/17] : These", + "2 | Secondary keys [4/17] : AssetID-12345678", + "2 | Secondary keys [5/17] : Except", + "2 | Secondary keys [6/17] : 0", + "2 | Secondary keys [7/17] : These", + "2 | Secondary keys [8/17] : DispatchABC", + "2 | Secondary keys [9/17] : DispatchXYZ", + "2 | Secondary keys [10/17] : 1", + "2 | Secondary keys [11/17] : Except", + "2 | Secondary keys [12/17] : DispatchABC", + "2 | Secondary keys [13/17] : DispatchXYZ", + "2 | Secondary keys [14/17] : These", + "2 | Secondary keys [15/17] : 9800cdeeb8b080077798efb50ee3f45d98ad17", + "2 | Secondary keys [16/17] : 7fb0b8df9953739c02ad7506d0", + "2 | Secondary keys [17/17] : 123456", "3 | Expiry : 256", - "4 | Tip : POLYX 55.555555" + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Identity : Cdd register did with cdd", - "1 | Target account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Target account [2/2] : D5gRxEbABD", - "2 | Secondary keys : ", + "1 | Target account [1/2] : 5Gdo4eJq3jwcZ8ncshpMoSPMm3ypeeNe2441To", + "1 | Target account [2/2] : B8w88odrQ1", + "2 | Secondary keys [1/17] : 5EH82jeaBoA9a8Pb1oKQCNpbDxoXuxa3xU6Dck", + "2 | Secondary keys [2/17] : FuKWAtEi7B", + "2 | Secondary keys [3/17] : These", + "2 | Secondary keys [4/17] : AssetID-12345678", + "2 | Secondary keys [5/17] : Except", + "2 | Secondary keys [6/17] : 0", + "2 | Secondary keys [7/17] : These", + "2 | Secondary keys [8/17] : DispatchABC", + "2 | Secondary keys [9/17] : DispatchXYZ", + "2 | Secondary keys [10/17] : 1", + "2 | Secondary keys [11/17] : Except", + "2 | Secondary keys [12/17] : DispatchABC", + "2 | Secondary keys [13/17] : DispatchXYZ", + "2 | Secondary keys [14/17] : These", + "2 | Secondary keys [15/17] : 9800cdeeb8b080077798efb50ee3f45d98ad17", + "2 | Secondary keys [16/17] : 7fb0b8df9953739c02ad7506d0", + "2 | Secondary keys [17/17] : 123456", "3 | Expiry : 256", "4 | Chain : Polymesh", "5 | Nonce : 1", - "6 | Tip : POLYX 55.555555", + "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 191, "name": "Identity_Create_child_identity", - "blob": "0715248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0715dec0f4dc5fd3e8d150cf002bc6385185d188545a2d3c35459acb0fac525c2761d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Create child identity", - "1 | Secondary key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Secondary key [2/2] : D5gRxEbABD", + "1 | Secondary key [1/2] : 5H6moo4wU5PEeHwthqGaP9oVjjAcG3PXyn196u", + "1 | Secondary key [2/2] : hgTRKhjCkB", "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Identity : Create child identity", - "1 | Secondary key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Secondary key [2/2] : D5gRxEbABD", + "1 | Secondary key [1/2] : 5H6moo4wU5PEeHwthqGaP9oVjjAcG3PXyn196u", + "1 | Secondary key [2/2] : hgTRKhjCkB", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 50283", "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 192, "name": "Identity_Create_child_identity", - "blob": "0715248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0715746a25ffb64614dd2c7d8f53d247e39763261a2a4c187c424c51edb971f3d435d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Create child identity", - "1 | Secondary key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Secondary key [2/2] : D5gRxEbABD", - "2 | Tip : POLYX 5552342.355555" + "1 | Secondary key [1/2] : 5EhLwjQbRibvSWhbsvw5hvYdKHYF5besUgGbjx", + "1 | Secondary key [2/2] : guT8977hVy", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Identity : Create child identity", - "1 | Secondary key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Secondary key [2/2] : D5gRxEbABD", + "1 | Secondary key [1/2] : 5EhLwjQbRibvSWhbsvw5hvYdKHYF5besUgGbjx", + "1 | Secondary key [2/2] : guT8977hVy", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 1", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 193, "name": "Identity_Create_child_identity", - "blob": "0715248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0715ca2d8f06d9c35d80eec81d49959918c1e6c09c314b6154fbf6e2665abc512a24d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Create child identity", - "1 | Secondary key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Secondary key [2/2] : D5gRxEbABD", - "2 | Tip : POLYX 1234.56789" + "1 | Secondary key [1/2] : 5Gdo4eJq3jwcZ8ncshpMoSPMm3ypeeNe2441To", + "1 | Secondary key [2/2] : B8w88odrQ1", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Identity : Create child identity", - "1 | Secondary key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Secondary key [2/2] : D5gRxEbABD", + "1 | Secondary key [1/2] : 5Gdo4eJq3jwcZ8ncshpMoSPMm3ypeeNe2441To", + "1 | Secondary key [2/2] : B8w88odrQ1", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 0", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 194, "name": "Identity_Create_child_identity", - "blob": "0715248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0715dec0f4dc5fd3e8d150cf002bc6385185d188545a2d3c35459acb0fac525c2761d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Create child identity", - "1 | Secondary key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Secondary key [2/2] : D5gRxEbABD", - "2 | Tip : POLYX 1234.56789" + "1 | Secondary key [1/2] : 5H6moo4wU5PEeHwthqGaP9oVjjAcG3PXyn196u", + "1 | Secondary key [2/2] : hgTRKhjCkB", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Identity : Create child identity", - "1 | Secondary key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Secondary key [2/2] : D5gRxEbABD", + "1 | Secondary key [1/2] : 5H6moo4wU5PEeHwthqGaP9oVjjAcG3PXyn196u", + "1 | Secondary key [2/2] : hgTRKhjCkB", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 195, "name": "Identity_Create_child_identity", - "blob": "0715248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "07152e5388ccb167c9fe3baeba3fed959f63c4e8bceb6c7387a77940029c14239820d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Create child identity", - "1 | Secondary key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Secondary key [2/2] : D5gRxEbABD", - "2 | Tip : POLYX 1234.56789" + "1 | Secondary key [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "1 | Secondary key [2/2] : qta7VKQZKw", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Identity : Create child identity", - "1 | Secondary key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Secondary key [2/2] : D5gRxEbABD", + "1 | Secondary key [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "1 | Secondary key [2/2] : qta7VKQZKw", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 100", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 196, "name": "Identity_Create_child_identities", - "blob": "0716046b68abd3c6c5512f66c0ebbfd909ed4b2dfe3e47d1f73287212e03a8a6c99e229fa1dd3affec91fd855ae921f15ed3f3ce16dbc7e7a7480b9c9387fa7de93914540aa2ac2d33dfafd71f646e1c8f42989c1e830b95bd16d17b98847362362b5b0001000000000000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "07160cc25f20b7567a5d4db2d9daaea3ec76284d3688dcb26b09845c78aa7378d4acb3a5b76ead343235d7fcf47f9650b8a71983f02b42ea2d42b32c5e52fc32db4f1c7bfb67d5736676d51b8b203367967a816e7a33a12c8b796ad053d93c940e8c420e75dcf767ffbe1fb55ffde708f5f088329b8f8eadbbe4b3dfc657fa314ab1adf772e06bc682fa20512b7cfa525f99d13548d723244ed7780e8c42a35c4775a2513d9c2b34924e967e751bcd1eb4da01fd8686d220818b8dcd2f8c54c4fd842b2d00ffbe61d9a9d02d0b6d1821ae42b9216ab00dcaec81fad444627c784a6aead29039f477e427c68a23b8e1122a2eff30d58c6ccfcadf4fd95abfc7ebf06fa5c573daa07d520af4057a77c6cd58835db3bb53d9845c02936baba55248826a8c0001000000000000d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Create child identities", - "1 | Child keys [1/6] : 2EskKXBcDxAuVedaYzttKMnrKkni1zLkXB33jR", - "1 | Child keys [2/6] : MeQ9uDak1p", - "1 | Child keys [3/6] : 9fa1dd3affec91fd855ae921f15ed3f3ce16db", - "1 | Child keys [4/6] : c7e7a7480b9c9387fa7de93914540aa2ac2d33", - "1 | Child keys [5/6] : dfafd71f646e1c8f42989c1e830b95bd16d17b", - "1 | Child keys [6/6] : 98847362362b5b", + "1 | Child keys [1/18] : 5GTZQUs9ZVUf4PBuMj4arUD771FwuXu99RRnCZ", + "1 | Child keys [2/18] : BxcnDyx3HT", + "1 | Child keys [3/18] : a5b76ead343235d7fcf47f9650b8a71983f02b", + "1 | Child keys [4/18] : 42ea2d42b32c5e52fc32db4f1c7bfb67d57366", + "1 | Child keys [5/18] : 76d51b8b203367967a816e7a33a12c8b796ad0", + "1 | Child keys [6/18] : 53d93c940e8c42", + "1 | Child keys [7/18] : 5CPfYHY8DVs5cNgM1smfPFaaVaB6WiMvHmUuCJ", + "1 | Child keys [8/18] : V5GpU9wjTP", + "1 | Child keys [9/18] : f772e06bc682fa20512b7cfa525f99d13548d7", + "1 | Child keys [10/18] : 23244ed7780e8c42a35c4775a2513d9c2b3492", + "1 | Child keys [11/18] : 4e967e751bcd1eb4da01fd8686d220818b8dcd", + "1 | Child keys [12/18] : 2f8c54c4fd842b", + "1 | Child keys [13/18] : 5D5iJrqtoGzhxZ2oTXKfwNY6W5AiCUAqtFaUJa", + "1 | Child keys [14/18] : qAr3UKU6Sn", + "1 | Child keys [15/18] : d29039f477e427c68a23b8e1122a2eff30d58c", + "1 | Child keys [16/18] : 6ccfcadf4fd95abfc7ebf06fa5c573daa07d52", + "1 | Child keys [17/18] : 0af4057a77c6cd58835db3bb53d9845c02936b", + "1 | Child keys [18/18] : aba55248826a8c", "2 | Expires at : 256", - "3 | Tip : POLYX 1234.56789" + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Identity : Create child identities", - "1 | Child keys [1/6] : 2EskKXBcDxAuVedaYzttKMnrKkni1zLkXB33jR", - "1 | Child keys [2/6] : MeQ9uDak1p", - "1 | Child keys [3/6] : 9fa1dd3affec91fd855ae921f15ed3f3ce16db", - "1 | Child keys [4/6] : c7e7a7480b9c9387fa7de93914540aa2ac2d33", - "1 | Child keys [5/6] : dfafd71f646e1c8f42989c1e830b95bd16d17b", - "1 | Child keys [6/6] : 98847362362b5b", + "1 | Child keys [1/18] : 5GTZQUs9ZVUf4PBuMj4arUD771FwuXu99RRnCZ", + "1 | Child keys [2/18] : BxcnDyx3HT", + "1 | Child keys [3/18] : a5b76ead343235d7fcf47f9650b8a71983f02b", + "1 | Child keys [4/18] : 42ea2d42b32c5e52fc32db4f1c7bfb67d57366", + "1 | Child keys [5/18] : 76d51b8b203367967a816e7a33a12c8b796ad0", + "1 | Child keys [6/18] : 53d93c940e8c42", + "1 | Child keys [7/18] : 5CPfYHY8DVs5cNgM1smfPFaaVaB6WiMvHmUuCJ", + "1 | Child keys [8/18] : V5GpU9wjTP", + "1 | Child keys [9/18] : f772e06bc682fa20512b7cfa525f99d13548d7", + "1 | Child keys [10/18] : 23244ed7780e8c42a35c4775a2513d9c2b3492", + "1 | Child keys [11/18] : 4e967e751bcd1eb4da01fd8686d220818b8dcd", + "1 | Child keys [12/18] : 2f8c54c4fd842b", + "1 | Child keys [13/18] : 5D5iJrqtoGzhxZ2oTXKfwNY6W5AiCUAqtFaUJa", + "1 | Child keys [14/18] : qAr3UKU6Sn", + "1 | Child keys [15/18] : d29039f477e427c68a23b8e1122a2eff30d58c", + "1 | Child keys [16/18] : 6ccfcadf4fd95abfc7ebf06fa5c573daa07d52", + "1 | Child keys [17/18] : 0af4057a77c6cd58835db3bb53d9845c02936b", + "1 | Child keys [18/18] : aba55248826a8c", "2 | Expires at : 256", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 1", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 197, "name": "Identity_Create_child_identities", - "blob": "0716046b68abd3c6c5512f66c0ebbfd909ed4b2dfe3e47d1f73287212e03a8a6c99e229fa1dd3affec91fd855ae921f15ed3f3ce16dbc7e7a7480b9c9387fa7de93914540aa2ac2d33dfafd71f646e1c8f42989c1e830b95bd16d17b98847362362b5b0001000000000000d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "071604084146dcb0befb7e0d2b1fae65babaf6264a128d90f6ea8ed7b674bf3be8da2048e4dad1fa3595a367a8aa09f9283c59035bad42a89c9d73fc3d74af5ece7334d9a8c0003e9381618f95c9d2a3896694f1ed88a41eac45a559637a9ecb8ee6138000000000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Create child identities", - "1 | Child keys [1/6] : 2EskKXBcDxAuVedaYzttKMnrKkni1zLkXB33jR", - "1 | Child keys [2/6] : MeQ9uDak1p", - "1 | Child keys [3/6] : 9fa1dd3affec91fd855ae921f15ed3f3ce16db", - "1 | Child keys [4/6] : c7e7a7480b9c9387fa7de93914540aa2ac2d33", - "1 | Child keys [5/6] : dfafd71f646e1c8f42989c1e830b95bd16d17b", - "1 | Child keys [6/6] : 98847362362b5b", - "2 | Expires at : 256", - "3 | Tip : POLYX 1234.56789" + "1 | Child keys [1/6] : 5CFXdacndFeX1VAHvta4WHCf7thuFRhmCeTKPf", + "1 | Child keys [2/6] : jseM1A8jnw", + "1 | Child keys [3/6] : 48e4dad1fa3595a367a8aa09f9283c59035bad", + "1 | Child keys [4/6] : 42a89c9d73fc3d74af5ece7334d9a8c0003e93", + "1 | Child keys [5/6] : 81618f95c9d2a3896694f1ed88a41eac45a559", + "1 | Child keys [6/6] : 637a9ecb8ee613", + "2 | Expires at : 128", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Create child identities", - "1 | Child keys [1/6] : 2EskKXBcDxAuVedaYzttKMnrKkni1zLkXB33jR", - "1 | Child keys [2/6] : MeQ9uDak1p", - "1 | Child keys [3/6] : 9fa1dd3affec91fd855ae921f15ed3f3ce16db", - "1 | Child keys [4/6] : c7e7a7480b9c9387fa7de93914540aa2ac2d33", - "1 | Child keys [5/6] : dfafd71f646e1c8f42989c1e830b95bd16d17b", - "1 | Child keys [6/6] : 98847362362b5b", - "2 | Expires at : 256", + "1 | Child keys [1/6] : 5CFXdacndFeX1VAHvta4WHCf7thuFRhmCeTKPf", + "1 | Child keys [2/6] : jseM1A8jnw", + "1 | Child keys [3/6] : 48e4dad1fa3595a367a8aa09f9283c59035bad", + "1 | Child keys [4/6] : 42a89c9d73fc3d74af5ece7334d9a8c0003e93", + "1 | Child keys [5/6] : 81618f95c9d2a3896694f1ed88a41eac45a559", + "1 | Child keys [6/6] : 637a9ecb8ee613", + "2 | Expires at : 128", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 2339", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 198, "name": "Identity_Create_child_identities", - "blob": "0716046b68abd3c6c5512f66c0ebbfd909ed4b2dfe3e47d1f73287212e03a8a6c99e229fa1dd3affec91fd855ae921f15ed3f3ce16dbc7e7a7480b9c9387fa7de93914540aa2ac2d33dfafd71f646e1c8f42989c1e830b95bd16d17b98847362362b5b8000000000000000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "07160873e85ee366e2e6bc78426d0065b24c97dfcb13ab132508f6a2d95baa1cdfe9a745a3420f7b850cd84326ad8c22f0e5f6852d2cbbf85c7970ebbd17c9ea9674ab447002bff2f5b6ff3991c3f6eabdb684b2475786e099d0a33a0b75abc83bc11b53ab891eed8200b0329b3275738798bb7820237ca819bcf3a37ddf9e458bfbfefe7a99177d80433682294e9e1580e35848dfdbd0d214c6a7ed013d9e9ab7cbb18063f40a2fae1b045f8a34f9d1f90755f598bc5c8e6bffd28cf62654a2fd927f8000000000000000d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Create child identities", - "1 | Child keys [1/6] : 2EskKXBcDxAuVedaYzttKMnrKkni1zLkXB33jR", - "1 | Child keys [2/6] : MeQ9uDak1p", - "1 | Child keys [3/6] : 9fa1dd3affec91fd855ae921f15ed3f3ce16db", - "1 | Child keys [4/6] : c7e7a7480b9c9387fa7de93914540aa2ac2d33", - "1 | Child keys [5/6] : dfafd71f646e1c8f42989c1e830b95bd16d17b", - "1 | Child keys [6/6] : 98847362362b5b", + "1 | Child keys [1/12] : 5EggPiJcZub26dxEugURMHQbEvD9AARJFpbawC", + "1 | Child keys [2/12] : Twfi1VNdyz", + "1 | Child keys [3/12] : 45a3420f7b850cd84326ad8c22f0e5f6852d2c", + "1 | Child keys [4/12] : bbf85c7970ebbd17c9ea9674ab447002bff2f5", + "1 | Child keys [5/12] : b6ff3991c3f6eabdb684b2475786e099d0a33a", + "1 | Child keys [6/12] : 0b75abc83bc11b", + "1 | Child keys [7/12] : 5DxQng9bgFqZJ3rfh5JhP6B2qa1EoR5Fh3hvXF", + "1 | Child keys [8/12] : umUHYmay1v", + "1 | Child keys [9/12] : fe7a99177d80433682294e9e1580e35848dfdb", + "1 | Child keys [10/12] : d0d214c6a7ed013d9e9ab7cbb18063f40a2fae", + "1 | Child keys [11/12] : 1b045f8a34f9d1f90755f598bc5c8e6bffd28c", + "1 | Child keys [12/12] : f62654a2fd927f", "2 | Expires at : 128", "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Identity : Create child identities", - "1 | Child keys [1/6] : 2EskKXBcDxAuVedaYzttKMnrKkni1zLkXB33jR", - "1 | Child keys [2/6] : MeQ9uDak1p", - "1 | Child keys [3/6] : 9fa1dd3affec91fd855ae921f15ed3f3ce16db", - "1 | Child keys [4/6] : c7e7a7480b9c9387fa7de93914540aa2ac2d33", - "1 | Child keys [5/6] : dfafd71f646e1c8f42989c1e830b95bd16d17b", - "1 | Child keys [6/6] : 98847362362b5b", + "1 | Child keys [1/12] : 5EggPiJcZub26dxEugURMHQbEvD9AARJFpbawC", + "1 | Child keys [2/12] : Twfi1VNdyz", + "1 | Child keys [3/12] : 45a3420f7b850cd84326ad8c22f0e5f6852d2c", + "1 | Child keys [4/12] : bbf85c7970ebbd17c9ea9674ab447002bff2f5", + "1 | Child keys [5/12] : b6ff3991c3f6eabdb684b2475786e099d0a33a", + "1 | Child keys [6/12] : 0b75abc83bc11b", + "1 | Child keys [7/12] : 5DxQng9bgFqZJ3rfh5JhP6B2qa1EoR5Fh3hvXF", + "1 | Child keys [8/12] : umUHYmay1v", + "1 | Child keys [9/12] : fe7a99177d80433682294e9e1580e35848dfdb", + "1 | Child keys [10/12] : d0d214c6a7ed013d9e9ab7cbb18063f40a2fae", + "1 | Child keys [11/12] : 1b045f8a34f9d1f90755f598bc5c8e6bffd28c", + "1 | Child keys [12/12] : f62654a2fd927f", "2 | Expires at : 128", "3 | Chain : Polymesh", - "4 | Nonce : 100", + "4 | Nonce : 2339", "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 199, "name": "Identity_Create_child_identities", - "blob": "0716046b68abd3c6c5512f66c0ebbfd909ed4b2dfe3e47d1f73287212e03a8a6c99e229fa1dd3affec91fd855ae921f15ed3f3ce16dbc7e7a7480b9c9387fa7de93914540aa2ac2d33dfafd71f646e1c8f42989c1e830b95bd16d17b98847362362b5b0001000000000000d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "071604084146dcb0befb7e0d2b1fae65babaf6264a128d90f6ea8ed7b674bf3be8da2048e4dad1fa3595a367a8aa09f9283c59035bad42a89c9d73fc3d74af5ece7334d9a8c0003e9381618f95c9d2a3896694f1ed88a41eac45a559637a9ecb8ee6138000000000000000d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Create child identities", - "1 | Child keys [1/6] : 2EskKXBcDxAuVedaYzttKMnrKkni1zLkXB33jR", - "1 | Child keys [2/6] : MeQ9uDak1p", - "1 | Child keys [3/6] : 9fa1dd3affec91fd855ae921f15ed3f3ce16db", - "1 | Child keys [4/6] : c7e7a7480b9c9387fa7de93914540aa2ac2d33", - "1 | Child keys [5/6] : dfafd71f646e1c8f42989c1e830b95bd16d17b", - "1 | Child keys [6/6] : 98847362362b5b", - "2 | Expires at : 256", - "3 | Tip : POLYX 55.555555" + "1 | Child keys [1/6] : 5CFXdacndFeX1VAHvta4WHCf7thuFRhmCeTKPf", + "1 | Child keys [2/6] : jseM1A8jnw", + "1 | Child keys [3/6] : 48e4dad1fa3595a367a8aa09f9283c59035bad", + "1 | Child keys [4/6] : 42a89c9d73fc3d74af5ece7334d9a8c0003e93", + "1 | Child keys [5/6] : 81618f95c9d2a3896694f1ed88a41eac45a559", + "1 | Child keys [6/6] : 637a9ecb8ee613", + "2 | Expires at : 128", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Identity : Create child identities", - "1 | Child keys [1/6] : 2EskKXBcDxAuVedaYzttKMnrKkni1zLkXB33jR", - "1 | Child keys [2/6] : MeQ9uDak1p", - "1 | Child keys [3/6] : 9fa1dd3affec91fd855ae921f15ed3f3ce16db", - "1 | Child keys [4/6] : c7e7a7480b9c9387fa7de93914540aa2ac2d33", - "1 | Child keys [5/6] : dfafd71f646e1c8f42989c1e830b95bd16d17b", - "1 | Child keys [6/6] : 98847362362b5b", - "2 | Expires at : 256", + "1 | Child keys [1/6] : 5CFXdacndFeX1VAHvta4WHCf7thuFRhmCeTKPf", + "1 | Child keys [2/6] : jseM1A8jnw", + "1 | Child keys [3/6] : 48e4dad1fa3595a367a8aa09f9283c59035bad", + "1 | Child keys [4/6] : 42a89c9d73fc3d74af5ece7334d9a8c0003e93", + "1 | Child keys [5/6] : 81618f95c9d2a3896694f1ed88a41eac45a559", + "1 | Child keys [6/6] : 637a9ecb8ee613", + "2 | Expires at : 128", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 1", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 200, "name": "Identity_Create_child_identities", - "blob": "0716046b68abd3c6c5512f66c0ebbfd909ed4b2dfe3e47d1f73287212e03a8a6c99e229fa1dd3affec91fd855ae921f15ed3f3ce16dbc7e7a7480b9c9387fa7de93914540aa2ac2d33dfafd71f646e1c8f42989c1e830b95bd16d17b98847362362b5b0008000000000000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0716008000000000000000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Create child identities", - "1 | Child keys [1/6] : 2EskKXBcDxAuVedaYzttKMnrKkni1zLkXB33jR", - "1 | Child keys [2/6] : MeQ9uDak1p", - "1 | Child keys [3/6] : 9fa1dd3affec91fd855ae921f15ed3f3ce16db", - "1 | Child keys [4/6] : c7e7a7480b9c9387fa7de93914540aa2ac2d33", - "1 | Child keys [5/6] : dfafd71f646e1c8f42989c1e830b95bd16d17b", - "1 | Child keys [6/6] : 98847362362b5b", - "2 | Expires at : 2048" + "1 | Child keys : ", + "2 | Expires at : 128" ], "output_expert": [ "0 | Identity : Create child identities", - "1 | Child keys [1/6] : 2EskKXBcDxAuVedaYzttKMnrKkni1zLkXB33jR", - "1 | Child keys [2/6] : MeQ9uDak1p", - "1 | Child keys [3/6] : 9fa1dd3affec91fd855ae921f15ed3f3ce16db", - "1 | Child keys [4/6] : c7e7a7480b9c9387fa7de93914540aa2ac2d33", - "1 | Child keys [5/6] : dfafd71f646e1c8f42989c1e830b95bd16d17b", - "1 | Child keys [6/6] : 98847362362b5b", - "2 | Expires at : 2048", + "1 | Child keys : ", + "2 | Expires at : 128", "3 | Chain : Polymesh", "4 | Nonce : 2339", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 201, "name": "Identity_Unlink_child_identity", - "blob": "071744ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0717c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Unlink child identity", - "1 | Child did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Child did [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 5552342.355555" + "1 | Child did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Child did [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Identity : Unlink child identity", - "1 | Child did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Child did [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Child did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Child did [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 202, "name": "Identity_Unlink_child_identity", - "blob": "071744ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0717c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Unlink child identity", - "1 | Child did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Child did [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 5552342.355555" + "1 | Child did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Child did [2/2] : bd7a6512a7cb922c53c4907708" ], "output_expert": [ "0 | Identity : Unlink child identity", - "1 | Child did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Child did [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Child did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Child did [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 203, "name": "Identity_Unlink_child_identity", - "blob": "071744ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0717c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Unlink child identity", - "1 | Child did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Child did [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Child did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Child did [2/2] : bd7a6512a7cb922c53c4907708" ], "output_expert": [ "0 | Identity : Unlink child identity", - "1 | Child did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Child did [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Child did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Child did [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 204, "name": "Identity_Unlink_child_identity", - "blob": "071744ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0717c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Unlink child identity", - "1 | Child did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Child did [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Child did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Child did [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Identity : Unlink child identity", - "1 | Child did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Child did [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Child did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Child did [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 0", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 205, "name": "Identity_Unlink_child_identity", - "blob": "071744ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0717c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Identity : Unlink child identity", - "1 | Child did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Child did [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Child did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Child did [2/2] : bd7a6512a7cb922c53c4907708" ], "output_expert": [ "0 | Identity : Unlink child identity", - "1 | Child did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Child did [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Child did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Child did [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 206, "name": "Cddserviceproviders_Set_active_members_limit", - "blob": "08002a000000d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "08000c000000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Cddserviceproviders : Set active members limit", - "1 | Limit : 42", - "2 | Tip : POLYX 0.000987" + "1 | Limit : 12", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Cddserviceproviders : Set active members limit", - "1 | Limit : 42", + "1 | Limit : 12", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 0", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 207, "name": "Cddserviceproviders_Set_active_members_limit", - "blob": "08000f000000d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "08002a000000d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Cddserviceproviders : Set active members limit", - "1 | Limit : 15", - "2 | Tip : POLYX 0.000987" + "1 | Limit : 42" ], "output_expert": [ "0 | Cddserviceproviders : Set active members limit", - "1 | Limit : 15", + "1 | Limit : 42", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 208, "name": "Cddserviceproviders_Set_active_members_limit", - "blob": "08002a000000d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "080004000000d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Cddserviceproviders : Set active members limit", - "1 | Limit : 42", + "1 | Limit : 4", "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Cddserviceproviders : Set active members limit", - "1 | Limit : 42", + "1 | Limit : 4", "2 | Chain : Polymesh", "3 | Nonce : 100", "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 209, "name": "Cddserviceproviders_Set_active_members_limit", - "blob": "08000c000000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "08000f000000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Cddserviceproviders : Set active members limit", - "1 | Limit : 12", - "2 | Tip : POLYX 5552342.355555" + "1 | Limit : 15", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Cddserviceproviders : Set active members limit", - "1 | Limit : 12", + "1 | Limit : 15", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 0", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 210, "name": "Cddserviceproviders_Set_active_members_limit", - "blob": "08002a000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "08002a000000d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Cddserviceproviders : Set active members limit", "1 | Limit : 42", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Cddserviceproviders : Set active members limit", "1 | Limit : 42", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 1", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 211, "name": "Cddserviceproviders_Disable_member", - "blob": "080144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af010001000000000000010008000000000000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0801c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708018000000000000000010001000000000000d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Cddserviceproviders : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 256", - "3 | At : 2048", - "4 | Tip : POLYX 5552342.355555" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 128", + "3 | At : 256", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Cddserviceproviders : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 256", - "3 | At : 2048", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 128", + "3 | At : 256", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 5552342.355555", + "5 | Nonce : 100", + "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 212, "name": "Cddserviceproviders_Disable_member", - "blob": "080144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af010001000000000000010008000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0801c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708018000000000000000018000000000000000d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Cddserviceproviders : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 256", - "3 | At : 2048", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 128", + "3 | At : 128", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Cddserviceproviders : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 256", - "3 | At : 2048", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 128", + "3 | At : 128", "4 | Chain : Polymesh", "5 | Nonce : 1", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", + "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 213, "name": "Cddserviceproviders_Disable_member", - "blob": "080144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af010001000000000000010001000000000000d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0801c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708018000000000000000010008000000000000d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Cddserviceproviders : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 256", - "3 | At : 256", - "4 | Tip : POLYX 5552342.355555" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 128", + "3 | At : 2048", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Cddserviceproviders : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 256", - "3 | At : 256", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 128", + "3 | At : 2048", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 5552342.355555", + "5 | Nonce : 0", + "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 214, "name": "Cddserviceproviders_Disable_member", - "blob": "080144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af018000000000000000010008000000000000d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0801c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708010008000000000000018000000000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Cddserviceproviders : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 128", - "3 | At : 2048", - "4 | Tip : POLYX 5552342.355555" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 2048", + "3 | At : 128", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Cddserviceproviders : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 128", - "3 | At : 2048", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 2048", + "3 | At : 128", "4 | Chain : Polymesh", "5 | Nonce : 50283", - "6 | Tip : POLYX 5552342.355555", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 215, "name": "Cddserviceproviders_Disable_member", - "blob": "080144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af018000000000000000010001000000000000d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0801c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708010001000000000000010001000000000000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Cddserviceproviders : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 128", - "3 | At : 256", - "4 | Tip : POLYX 0.000987" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 256", + "3 | At : 256" ], "output_expert": [ "0 | Cddserviceproviders : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 128", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 256", "3 | At : 256", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Nonce : 2339", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 216, "name": "Cddserviceproviders_Add_member", - "blob": "080244ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0802c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Cddserviceproviders : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Cddserviceproviders : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 217, "name": "Cddserviceproviders_Add_member", - "blob": "080244ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0802c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Cddserviceproviders : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Cddserviceproviders : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 218, "name": "Cddserviceproviders_Add_member", - "blob": "080244ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0802c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Cddserviceproviders : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 5552342.355555" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Cddserviceproviders : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 219, "name": "Cddserviceproviders_Add_member", - "blob": "080244ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0802c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Cddserviceproviders : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 5552342.355555" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Cddserviceproviders : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 220, "name": "Cddserviceproviders_Add_member", - "blob": "080244ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0802c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Cddserviceproviders : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Cddserviceproviders : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 2339", "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 221, "name": "Cddserviceproviders_Remove_member", - "blob": "080344ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0803c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Cddserviceproviders : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Cddserviceproviders : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 1", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 222, "name": "Cddserviceproviders_Remove_member", - "blob": "080344ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0803c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Cddserviceproviders : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 55.555555" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708" ], "output_expert": [ "0 | Cddserviceproviders : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 223, "name": "Cddserviceproviders_Remove_member", - "blob": "080344ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0803c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Cddserviceproviders : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 55.555555" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Cddserviceproviders : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 224, "name": "Cddserviceproviders_Remove_member", - "blob": "080344ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0803c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Cddserviceproviders : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Cddserviceproviders : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 100", + "3 | Nonce : 50283", "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 225, "name": "Cddserviceproviders_Remove_member", - "blob": "080344ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0803c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Cddserviceproviders : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 55.555555" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Cddserviceproviders : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 50283", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 226, "name": "Cddserviceproviders_Swap_member", - "blob": "080444ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0804c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Cddserviceproviders : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Cddserviceproviders : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 0", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 227, "name": "Cddserviceproviders_Swap_member", - "blob": "080444ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0804c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Cddserviceproviders : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Tip : POLYX 0.000987" + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Cddserviceproviders : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", "3 | Chain : Polymesh", "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 228, "name": "Cddserviceproviders_Swap_member", - "blob": "080444ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0804c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Cddserviceproviders : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Tip : POLYX 55.555555" + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Cddserviceproviders : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", "3 | Chain : Polymesh", "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 229, "name": "Cddserviceproviders_Swap_member", - "blob": "080444ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0804c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Cddserviceproviders : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af" + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Cddserviceproviders : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 100", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 230, "name": "Cddserviceproviders_Swap_member", - "blob": "080444ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0804c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Cddserviceproviders : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af" + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Cddserviceproviders : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 2339", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 231, "name": "Cddserviceproviders_Reset_members", - "blob": "08050c9126f3e008a20bfc2b3a38edb8126887f0572a32c8147f6e4f41508455e6f3a1e946dc53519a34c0093aeb57c218f90d2e9ecac7efae20b79b8708c654af4fd9a85ded491e8808de2593dff3f8f4bfe001c2e93c0e76795664e2e24519cf47a7d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "080500d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Cddserviceproviders : Reset members", - "1 | Members [1/6] : 9126f3e008a20bfc2b3a38edb8126887f0572a", - "1 | Members [2/6] : 32c8147f6e4f41508455e6f3a1", - "1 | Members [3/6] : e946dc53519a34c0093aeb57c218f90d2e9eca", - "1 | Members [4/6] : c7efae20b79b8708c654af4fd9", - "1 | Members [5/6] : a85ded491e8808de2593dff3f8f4bfe001c2e9", - "1 | Members [6/6] : 3c0e76795664e2e24519cf47a7", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Members : ", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Cddserviceproviders : Reset members", - "1 | Members [1/6] : 9126f3e008a20bfc2b3a38edb8126887f0572a", - "1 | Members [2/6] : 32c8147f6e4f41508455e6f3a1", - "1 | Members [3/6] : e946dc53519a34c0093aeb57c218f90d2e9eca", - "1 | Members [4/6] : c7efae20b79b8708c654af4fd9", - "1 | Members [5/6] : a85ded491e8808de2593dff3f8f4bfe001c2e9", - "1 | Members [6/6] : 3c0e76795664e2e24519cf47a7", + "1 | Members : ", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 232, "name": "Cddserviceproviders_Reset_members", - "blob": "08050c9126f3e008a20bfc2b3a38edb8126887f0572a32c8147f6e4f41508455e6f3a1e946dc53519a34c0093aeb57c218f90d2e9ecac7efae20b79b8708c654af4fd9a85ded491e8808de2593dff3f8f4bfe001c2e93c0e76795664e2e24519cf47a7d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "08050cd6dd2baaf51f69eae3e4691239af16d6fadeae210bb08f359149141ee531c80173cda326ae28b8afc4c7d11d8456034a7d74a15dc64e9387676b62cf7170c1422fa2ab12c7dbe4c668cdb825919a740d09964778cfebc5c346ba2b8828b85896d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Cddserviceproviders : Reset members", - "1 | Members [1/6] : 9126f3e008a20bfc2b3a38edb8126887f0572a", - "1 | Members [2/6] : 32c8147f6e4f41508455e6f3a1", - "1 | Members [3/6] : e946dc53519a34c0093aeb57c218f90d2e9eca", - "1 | Members [4/6] : c7efae20b79b8708c654af4fd9", - "1 | Members [5/6] : a85ded491e8808de2593dff3f8f4bfe001c2e9", - "1 | Members [6/6] : 3c0e76795664e2e24519cf47a7", - "2 | Tip : POLYX 0.000987" + "1 | Members [1/6] : d6dd2baaf51f69eae3e4691239af16d6fadeae", + "1 | Members [2/6] : 210bb08f359149141ee531c801", + "1 | Members [3/6] : 73cda326ae28b8afc4c7d11d8456034a7d74a1", + "1 | Members [4/6] : 5dc64e9387676b62cf7170c142", + "1 | Members [5/6] : 2fa2ab12c7dbe4c668cdb825919a740d099647", + "1 | Members [6/6] : 78cfebc5c346ba2b8828b85896", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Cddserviceproviders : Reset members", - "1 | Members [1/6] : 9126f3e008a20bfc2b3a38edb8126887f0572a", - "1 | Members [2/6] : 32c8147f6e4f41508455e6f3a1", - "1 | Members [3/6] : e946dc53519a34c0093aeb57c218f90d2e9eca", - "1 | Members [4/6] : c7efae20b79b8708c654af4fd9", - "1 | Members [5/6] : a85ded491e8808de2593dff3f8f4bfe001c2e9", - "1 | Members [6/6] : 3c0e76795664e2e24519cf47a7", + "1 | Members [1/6] : d6dd2baaf51f69eae3e4691239af16d6fadeae", + "1 | Members [2/6] : 210bb08f359149141ee531c801", + "1 | Members [3/6] : 73cda326ae28b8afc4c7d11d8456034a7d74a1", + "1 | Members [4/6] : 5dc64e9387676b62cf7170c142", + "1 | Members [5/6] : 2fa2ab12c7dbe4c668cdb825919a740d099647", + "1 | Members [6/6] : 78cfebc5c346ba2b8828b85896", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 50283", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 233, "name": "Cddserviceproviders_Reset_members", - "blob": "0805041fad555af0a96d3e1714bb669c5cb288d9426d5a4483e3a13581f2f6efa02a3ad503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "080500d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Cddserviceproviders : Reset members", - "1 | Members [1/2] : 1fad555af0a96d3e1714bb669c5cb288d9426d", - "1 | Members [2/2] : 5a4483e3a13581f2f6efa02a3a" + "1 | Members : ", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Cddserviceproviders : Reset members", - "1 | Members [1/2] : 1fad555af0a96d3e1714bb669c5cb288d9426d", - "1 | Members [2/2] : 5a4483e3a13581f2f6efa02a3a", + "1 | Members : ", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 234, "name": "Cddserviceproviders_Reset_members", - "blob": "08050c9126f3e008a20bfc2b3a38edb8126887f0572a32c8147f6e4f41508455e6f3a1e946dc53519a34c0093aeb57c218f90d2e9ecac7efae20b79b8708c654af4fd9a85ded491e8808de2593dff3f8f4bfe001c2e93c0e76795664e2e24519cf47a7d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "08050813dae1b7784c2936246cccff78b486a257d3b68b5484e78e41674fc673862b50c9b007aaf55bbf7d33cd3f46fe915ac089c249c5ccd03515c702a0f8e3ef5724d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Cddserviceproviders : Reset members", - "1 | Members [1/6] : 9126f3e008a20bfc2b3a38edb8126887f0572a", - "1 | Members [2/6] : 32c8147f6e4f41508455e6f3a1", - "1 | Members [3/6] : e946dc53519a34c0093aeb57c218f90d2e9eca", - "1 | Members [4/6] : c7efae20b79b8708c654af4fd9", - "1 | Members [5/6] : a85ded491e8808de2593dff3f8f4bfe001c2e9", - "1 | Members [6/6] : 3c0e76795664e2e24519cf47a7", - "2 | Tip : POLYX 0.000987" + "1 | Members [1/4] : 13dae1b7784c2936246cccff78b486a257d3b6", + "1 | Members [2/4] : 8b5484e78e41674fc673862b50", + "1 | Members [3/4] : c9b007aaf55bbf7d33cd3f46fe915ac089c249", + "1 | Members [4/4] : c5ccd03515c702a0f8e3ef5724", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Cddserviceproviders : Reset members", - "1 | Members [1/6] : 9126f3e008a20bfc2b3a38edb8126887f0572a", - "1 | Members [2/6] : 32c8147f6e4f41508455e6f3a1", - "1 | Members [3/6] : e946dc53519a34c0093aeb57c218f90d2e9eca", - "1 | Members [4/6] : c7efae20b79b8708c654af4fd9", - "1 | Members [5/6] : a85ded491e8808de2593dff3f8f4bfe001c2e9", - "1 | Members [6/6] : 3c0e76795664e2e24519cf47a7", + "1 | Members [1/4] : 13dae1b7784c2936246cccff78b486a257d3b6", + "1 | Members [2/4] : 8b5484e78e41674fc673862b50", + "1 | Members [3/4] : c9b007aaf55bbf7d33cd3f46fe915ac089c249", + "1 | Members [4/4] : c5ccd03515c702a0f8e3ef5724", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 50283", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 235, "name": "Cddserviceproviders_Reset_members", - "blob": "08050c9126f3e008a20bfc2b3a38edb8126887f0572a32c8147f6e4f41508455e6f3a1e946dc53519a34c0093aeb57c218f90d2e9ecac7efae20b79b8708c654af4fd9a85ded491e8808de2593dff3f8f4bfe001c2e93c0e76795664e2e24519cf47a7d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "08050813dae1b7784c2936246cccff78b486a257d3b68b5484e78e41674fc673862b50c9b007aaf55bbf7d33cd3f46fe915ac089c249c5ccd03515c702a0f8e3ef5724d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Cddserviceproviders : Reset members", - "1 | Members [1/6] : 9126f3e008a20bfc2b3a38edb8126887f0572a", - "1 | Members [2/6] : 32c8147f6e4f41508455e6f3a1", - "1 | Members [3/6] : e946dc53519a34c0093aeb57c218f90d2e9eca", - "1 | Members [4/6] : c7efae20b79b8708c654af4fd9", - "1 | Members [5/6] : a85ded491e8808de2593dff3f8f4bfe001c2e9", - "1 | Members [6/6] : 3c0e76795664e2e24519cf47a7", - "2 | Tip : POLYX 55.555555" + "1 | Members [1/4] : 13dae1b7784c2936246cccff78b486a257d3b6", + "1 | Members [2/4] : 8b5484e78e41674fc673862b50", + "1 | Members [3/4] : c9b007aaf55bbf7d33cd3f46fe915ac089c249", + "1 | Members [4/4] : c5ccd03515c702a0f8e3ef5724" ], "output_expert": [ "0 | Cddserviceproviders : Reset members", - "1 | Members [1/6] : 9126f3e008a20bfc2b3a38edb8126887f0572a", - "1 | Members [2/6] : 32c8147f6e4f41508455e6f3a1", - "1 | Members [3/6] : e946dc53519a34c0093aeb57c218f90d2e9eca", - "1 | Members [4/6] : c7efae20b79b8708c654af4fd9", - "1 | Members [5/6] : a85ded491e8808de2593dff3f8f4bfe001c2e9", - "1 | Members [6/6] : 3c0e76795664e2e24519cf47a7", + "1 | Members [1/4] : 13dae1b7784c2936246cccff78b486a257d3b6", + "1 | Members [2/4] : 8b5484e78e41674fc673862b50", + "1 | Members [3/4] : c9b007aaf55bbf7d33cd3f46fe915ac089c249", + "1 | Members [4/4] : c5ccd03515c702a0f8e3ef5724", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 236, "name": "Cddserviceproviders_Abdicate_membership", - "blob": "0806d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0806d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Cddserviceproviders : Abdicate membership", - "1 | Tip : POLYX 1234.56789" + "1 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Cddserviceproviders : Abdicate membership", "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip : POLYX 1234.56789", + "2 | Nonce : 0", + "3 | Tip : POLYX 5552342.355555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 237, "name": "Cddserviceproviders_Abdicate_membership", - "blob": "0806d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0806d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Cddserviceproviders : Abdicate membership", - "1 | Tip : POLYX 55.555555" + "1 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Cddserviceproviders : Abdicate membership", "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip : POLYX 55.555555", + "2 | Nonce : 100", + "3 | Tip : POLYX 5552342.355555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 238, "name": "Cddserviceproviders_Abdicate_membership", - "blob": "0806d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0806d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Cddserviceproviders : Abdicate membership", - "1 | Tip : POLYX 55.555555" + "0 | Cddserviceproviders : Abdicate membership" ], "output_expert": [ "0 | Cddserviceproviders : Abdicate membership", "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip : POLYX 55.555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "2 | Nonce : 1", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "5 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 239, "name": "Cddserviceproviders_Abdicate_membership", - "blob": "0806d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0806d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Cddserviceproviders : Abdicate membership", - "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "1 | Tip [2/2] : 3.456789" + "0 | Cddserviceproviders : Abdicate membership" ], "output_expert": [ "0 | Cddserviceproviders : Abdicate membership", "1 | Chain : Polymesh", - "2 | Nonce : 100", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "2 | Nonce : 50283", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "5 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 240, "name": "Cddserviceproviders_Abdicate_membership", - "blob": "0806d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0806d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Cddserviceproviders : Abdicate membership", "1 | Tip : POLYX 5552342.355555" @@ -6399,256 +6337,244 @@ "output_expert": [ "0 | Cddserviceproviders : Abdicate membership", "1 | Chain : Polymesh", - "2 | Nonce : 2339", + "2 | Nonce : 1", "3 | Tip : POLYX 5552342.355555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 241, "name": "Polymeshcommittee_Set_vote_threshold", - "blob": "0900d304000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "09009d1c0000d3040000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Polymeshcommittee : Set vote threshold", - "1 | N : 1235", - "2 | D : 0", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | N : 7325", + "2 | D : 1235", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Polymeshcommittee : Set vote threshold", - "1 | N : 1235", - "2 | D : 0", + "1 | N : 7325", + "2 | D : 1235", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 0", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 242, "name": "Polymeshcommittee_Set_vote_threshold", - "blob": "0900d3040000f7010000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "09000000000000000000d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Polymeshcommittee : Set vote threshold", - "1 | N : 1235", - "2 | D : 503", - "3 | Tip : POLYX 5552342.355555" + "1 | N : 0", + "2 | D : 0", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Polymeshcommittee : Set vote threshold", - "1 | N : 1235", - "2 | D : 503", + "1 | N : 0", + "2 | D : 0", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 50283", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 243, "name": "Polymeshcommittee_Set_vote_threshold", - "blob": "09009d1c000034300000d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0900f701000000000000d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Polymeshcommittee : Set vote threshold", - "1 | N : 7325", - "2 | D : 12340", - "3 | Tip : POLYX 0.000987" + "1 | N : 503", + "2 | D : 0", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Polymeshcommittee : Set vote threshold", - "1 | N : 7325", - "2 | D : 12340", + "1 | N : 503", + "2 | D : 0", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 1", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 244, "name": "Polymeshcommittee_Set_vote_threshold", - "blob": "0900d304000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "090000000000d3040000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Polymeshcommittee : Set vote threshold", - "1 | N : 1235", - "2 | D : 0", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | N : 0", + "2 | D : 1235", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Polymeshcommittee : Set vote threshold", - "1 | N : 1235", - "2 | D : 0", + "1 | N : 0", + "2 | D : 1235", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 0", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 245, "name": "Polymeshcommittee_Set_vote_threshold", - "blob": "090034300000d3040000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "090000000000d3040000d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Polymeshcommittee : Set vote threshold", - "1 | N : 12340", - "2 | D : 1235", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | N : 0", + "2 | D : 1235" ], "output_expert": [ "0 | Polymeshcommittee : Set vote threshold", - "1 | N : 12340", + "1 | N : 0", "2 | D : 1235", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 0", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 246, "name": "Polymeshcommittee_Set_release_coordinator", - "blob": "090144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0901c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Polymeshcommittee : Set release coordinator", - "1 | Id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Id [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 55.555555" + "1 | Id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Id [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Polymeshcommittee : Set release coordinator", - "1 | Id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Id [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Id [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", + "3 | Nonce : 100", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 247, "name": "Polymeshcommittee_Set_release_coordinator", - "blob": "090144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0901c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Polymeshcommittee : Set release coordinator", - "1 | Id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Id [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 5552342.355555" + "1 | Id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Id [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Polymeshcommittee : Set release coordinator", - "1 | Id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Id [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Id [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 0", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 248, "name": "Polymeshcommittee_Set_release_coordinator", - "blob": "090144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0901c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Polymeshcommittee : Set release coordinator", - "1 | Id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Id [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Id [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Polymeshcommittee : Set release coordinator", - "1 | Id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Id [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Id [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 249, "name": "Polymeshcommittee_Set_release_coordinator", - "blob": "090144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0901c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Polymeshcommittee : Set release coordinator", - "1 | Id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Id [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 5552342.355555" + "1 | Id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Id [2/2] : bd7a6512a7cb922c53c4907708" ], "output_expert": [ "0 | Polymeshcommittee : Set release coordinator", - "1 | Id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Id [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Id [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 250, "name": "Polymeshcommittee_Set_release_coordinator", - "blob": "090144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0901c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Polymeshcommittee : Set release coordinator", - "1 | Id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Id [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 5552342.355555" + "1 | Id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Id [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Polymeshcommittee : Set release coordinator", - "1 | Id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Id [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Id [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 100", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 251, "name": "Polymeshcommittee_Set_expires_after", - "blob": "090201d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "090201d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Polymeshcommittee : Set expires after", "1 | Expiry : None", @@ -6658,111 +6584,106 @@ "0 | Polymeshcommittee : Set expires after", "1 | Expiry : None", "2 | Chain : Polymesh", - "3 | Nonce : 2339", + "3 | Nonce : 0", "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 252, "name": "Polymeshcommittee_Set_expires_after", - "blob": "090201d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "090201d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Polymeshcommittee : Set expires after", "1 | Expiry : None", - "2 | Tip : POLYX 0.000987" + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Polymeshcommittee : Set expires after", "1 | Expiry : None", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 50283", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 253, "name": "Polymeshcommittee_Set_expires_after", - "blob": "090201d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "090200a1860100d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Polymeshcommittee : Set expires after", - "1 | Expiry : None", - "2 | Tip : POLYX 1234.56789" + "1 | Expiry : 100001", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Polymeshcommittee : Set expires after", - "1 | Expiry : None", + "1 | Expiry : 100001", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 254, "name": "Polymeshcommittee_Set_expires_after", - "blob": "090200a1860100d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "090200a1860100d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Polymeshcommittee : Set expires after", "1 | Expiry : 100001", - "2 | Tip : POLYX 55.555555" + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Polymeshcommittee : Set expires after", "1 | Expiry : 100001", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 50283", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 255, "name": "Polymeshcommittee_Set_expires_after", - "blob": "090201d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "090200a1860100d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Polymeshcommittee : Set expires after", - "1 | Expiry : None", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Expiry : 100001" ], "output_expert": [ "0 | Polymeshcommittee : Set expires after", - "1 | Expiry : None", + "1 | Expiry : 100001", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 256, "name": "Polymeshcommittee_Vote_or_propose", - "blob": "0903010000083434d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0903010000083434d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Polymeshcommittee : Vote or propose", "1 | Approve : True", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Polymeshcommittee : Vote or propose", @@ -6770,51 +6691,49 @@ "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 2339", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 257, "name": "Polymeshcommittee_Vote_or_propose", - "blob": "0903000000083434d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0903010000083434d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Polymeshcommittee : Vote or propose", - "1 | Approve : False", + "1 | Approve : True", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Polymeshcommittee : Vote or propose", - "1 | Approve : False", + "1 | Approve : True", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 50283", + "4 | Nonce : 0", "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 258, "name": "Polymeshcommittee_Vote_or_propose", - "blob": "0903010000083434d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0903010000083434d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Polymeshcommittee : Vote or propose", "1 | Approve : True", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Polymeshcommittee : Vote or propose", @@ -6822,252 +6741,243 @@ "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 2339", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 259, "name": "Polymeshcommittee_Vote_or_propose", - "blob": "0903010000083434d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0903000000083434d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Polymeshcommittee : Vote or propose", - "1 | Approve : True", + "1 | Approve : False", "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 1234.56789" + "2 | Call [2/2] : 3434" ], "output_expert": [ "0 | Polymeshcommittee : Vote or propose", - "1 | Approve : True", + "1 | Approve : False", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 100", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 260, "name": "Polymeshcommittee_Vote_or_propose", - "blob": "0903000000083434d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0903010000083434d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Polymeshcommittee : Vote or propose", - "1 | Approve : False", + "1 | Approve : True", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Polymeshcommittee : Vote or propose", - "1 | Approve : False", + "1 | Approve : True", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 50283", + "4 | Nonce : 0", "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 261, "name": "Polymeshcommittee_Vote", - "blob": "09046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063db03000001d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0904885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0adb03000001d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Polymeshcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", + "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", "2 | Index : 987", "3 | Approve : True", - "4 | Tip : POLYX 1234.56789" + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Polymeshcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", + "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", "2 | Index : 987", "3 | Approve : True", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 1234.56789", + "5 | Nonce : 0", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 262, "name": "Polymeshcommittee_Vote", - "blob": "09046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40630000000000d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0904885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0af3e0010000d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Polymeshcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 0", + "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Index : 123123", "3 | Approve : False", - "4 | Tip : POLYX 55.555555" + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Polymeshcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 0", + "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Index : 123123", "3 | Approve : False", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 55.555555", + "5 | Nonce : 1", + "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 263, "name": "Polymeshcommittee_Vote", - "blob": "09046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063f3e0010000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0904885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a0000000000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Polymeshcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 123123", - "3 | Approve : False", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Index : 0", + "3 | Approve : False" ], "output_expert": [ "0 | Polymeshcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 123123", + "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Index : 0", "3 | Approve : False", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Nonce : 50283", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 264, "name": "Polymeshcommittee_Vote", - "blob": "09046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40634930000000d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0904885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0adb03000001d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Polymeshcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 12361", - "3 | Approve : False" + "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Index : 987", + "3 | Approve : True" ], "output_expert": [ "0 | Polymeshcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 12361", - "3 | Approve : False", + "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Index : 987", + "3 | Approve : True", "4 | Chain : Polymesh", - "5 | Nonce : 1", + "5 | Nonce : 50283", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 265, "name": "Polymeshcommittee_Vote", - "blob": "09046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40630000000000d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0904885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a0000000000d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Polymeshcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", + "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", "2 | Index : 0", "3 | Approve : False", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Polymeshcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", + "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", "2 | Index : 0", "3 | Approve : False", "4 | Chain : Polymesh", "5 | Nonce : 0", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", + "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 266, "name": "Committeemembership_Set_active_members_limit", - "blob": "0a000f000000d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0a0000000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Committeemembership : Set active members limit", - "1 | Limit : 15", + "1 | Limit : 0", "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Committeemembership : Set active members limit", - "1 | Limit : 15", + "1 | Limit : 0", "2 | Chain : Polymesh", "3 | Nonce : 0", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 267, "name": "Committeemembership_Set_active_members_limit", - "blob": "0a0009000000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0a0009000000d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Committeemembership : Set active members limit", "1 | Limit : 9", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Committeemembership : Set active members limit", "1 | Limit : 9", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 268, "name": "Committeemembership_Set_active_members_limit", - "blob": "0a000f000000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0a000f000000d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Committeemembership : Set active members limit", "1 | Limit : 15", @@ -7077,681 +6987,677 @@ "0 | Committeemembership : Set active members limit", "1 | Limit : 15", "2 | Chain : Polymesh", - "3 | Nonce : 1", + "3 | Nonce : 2339", "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 269, "name": "Committeemembership_Set_active_members_limit", - "blob": "0a0004000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0a0007000000d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Committeemembership : Set active members limit", - "1 | Limit : 4", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Limit : 7" ], "output_expert": [ "0 | Committeemembership : Set active members limit", - "1 | Limit : 4", + "1 | Limit : 7", "2 | Chain : Polymesh", "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 270, "name": "Committeemembership_Set_active_members_limit", - "blob": "0a002a000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0a0004000000d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Committeemembership : Set active members limit", - "1 | Limit : 42", - "2 | Tip : POLYX 5552342.355555" + "1 | Limit : 4", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Committeemembership : Set active members limit", - "1 | Limit : 42", + "1 | Limit : 4", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 50283", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 271, "name": "Committeemembership_Disable_member", - "blob": "0a0144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af010008000000000000010008000000000000d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0a01c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708018000000000000000018000000000000000d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Committeemembership : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 2048", - "3 | At : 2048", - "4 | Tip : POLYX 55.555555" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 128", + "3 | At : 128", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Committeemembership : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 2048", - "3 | At : 2048", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 128", + "3 | At : 128", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 55.555555", + "5 | Nonce : 1", + "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 272, "name": "Committeemembership_Disable_member", - "blob": "0a0144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af018000000000000000018000000000000000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0a01c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708010001000000000000010001000000000000d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Committeemembership : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 128", - "3 | At : 128" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 256", + "3 | At : 256", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Committeemembership : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 128", - "3 | At : 128", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 256", + "3 | At : 256", "4 | Chain : Polymesh", "5 | Nonce : 2339", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 273, "name": "Committeemembership_Disable_member", - "blob": "0a0144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af010001000000000000018000000000000000d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0a01c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708010008000000000000010001000000000000d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Committeemembership : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 256", - "3 | At : 128" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 2048", + "3 | At : 256", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Committeemembership : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 256", - "3 | At : 128", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 2048", + "3 | At : 256", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Nonce : 1", + "6 | Tip : POLYX 0.000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 274, "name": "Committeemembership_Disable_member", - "blob": "0a0144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af018000000000000000018000000000000000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0a01c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708010008000000000000018000000000000000d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Committeemembership : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 128", - "3 | At : 128", - "4 | Tip : POLYX 1234.56789" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 2048", + "3 | At : 128" ], "output_expert": [ "0 | Committeemembership : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 128", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 2048", "3 | At : 128", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Nonce : 100", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 275, "name": "Committeemembership_Disable_member", - "blob": "0a0144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af018000000000000000018000000000000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0a01c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708010008000000000000018000000000000000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Committeemembership : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 128", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 2048", "3 | At : 128", "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Committeemembership : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 128", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 2048", "3 | At : 128", "4 | Chain : Polymesh", "5 | Nonce : 0", "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 276, "name": "Committeemembership_Add_member", - "blob": "0a0244ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0a02c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Committeemembership : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 0.000987" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Committeemembership : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 277, "name": "Committeemembership_Add_member", - "blob": "0a0244ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0a02c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Committeemembership : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 1234.56789" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Committeemembership : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 278, "name": "Committeemembership_Add_member", - "blob": "0a0244ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0a02c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Committeemembership : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 55.555555" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Committeemembership : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 0", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 279, "name": "Committeemembership_Add_member", - "blob": "0a0244ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0a02c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Committeemembership : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 0.000987" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Committeemembership : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 2339", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 280, "name": "Committeemembership_Add_member", - "blob": "0a0244ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0a02c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Committeemembership : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Committeemembership : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 50283", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 281, "name": "Committeemembership_Remove_member", - "blob": "0a0344ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0a03c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Committeemembership : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 1234.56789" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Committeemembership : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 50283", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 282, "name": "Committeemembership_Remove_member", - "blob": "0a0344ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0a03c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Committeemembership : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 5552342.355555" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Committeemembership : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 283, "name": "Committeemembership_Remove_member", - "blob": "0a0344ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0a03c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Committeemembership : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 0.000987" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Committeemembership : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 284, "name": "Committeemembership_Remove_member", - "blob": "0a0344ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0a03c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Committeemembership : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Committeemembership : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 100", + "3 | Nonce : 2339", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 285, "name": "Committeemembership_Remove_member", - "blob": "0a0344ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0a03c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Committeemembership : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 0.000987" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708" ], "output_expert": [ "0 | Committeemembership : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 286, "name": "Committeemembership_Swap_member", - "blob": "0a0444ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0a04c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Committeemembership : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Tip : POLYX 55.555555" + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Committeemembership : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 50283", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 287, "name": "Committeemembership_Swap_member", - "blob": "0a0444ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0a04c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Committeemembership : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af" + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Committeemembership : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 0", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 288, "name": "Committeemembership_Swap_member", - "blob": "0a0444ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0a04c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Committeemembership : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Tip : POLYX 5552342.355555" + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Committeemembership : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 2339", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 289, "name": "Committeemembership_Swap_member", - "blob": "0a0444ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0a04c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Committeemembership : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Tip : POLYX 0.000987" + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Committeemembership : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 100", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 290, "name": "Committeemembership_Swap_member", - "blob": "0a0444ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0a04c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Committeemembership : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af" + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Committeemembership : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 0", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 291, "name": "Committeemembership_Reset_members", - "blob": "0a0508c89ec4055ef1b293c7f87ee8f99ea47f99c91d6013e9750e69f7caa4d7be02d9b807ac5bbc9bee39b5227a456d661927709ce288b8f798bfd9bdc94510fe1f67d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0a05048060a974476696c3691dc5c13810c16c76ab267428803857a8bdd55462fabb95d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Committeemembership : Reset members", - "1 | Members [1/4] : c89ec4055ef1b293c7f87ee8f99ea47f99c91d", - "1 | Members [2/4] : 6013e9750e69f7caa4d7be02d9", - "1 | Members [3/4] : b807ac5bbc9bee39b5227a456d661927709ce2", - "1 | Members [4/4] : 88b8f798bfd9bdc94510fe1f67", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Members [1/2] : 8060a974476696c3691dc5c13810c16c76ab26", + "1 | Members [2/2] : 7428803857a8bdd55462fabb95", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Committeemembership : Reset members", - "1 | Members [1/4] : c89ec4055ef1b293c7f87ee8f99ea47f99c91d", - "1 | Members [2/4] : 6013e9750e69f7caa4d7be02d9", - "1 | Members [3/4] : b807ac5bbc9bee39b5227a456d661927709ce2", - "1 | Members [4/4] : 88b8f798bfd9bdc94510fe1f67", + "1 | Members [1/2] : 8060a974476696c3691dc5c13810c16c76ab26", + "1 | Members [2/2] : 7428803857a8bdd55462fabb95", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 100", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 292, "name": "Committeemembership_Reset_members", - "blob": "0a05041fad555af0a96d3e1714bb669c5cb288d9426d5a4483e3a13581f2f6efa02a3ad5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0a0500d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Committeemembership : Reset members", - "1 | Members [1/2] : 1fad555af0a96d3e1714bb669c5cb288d9426d", - "1 | Members [2/2] : 5a4483e3a13581f2f6efa02a3a", - "2 | Tip : POLYX 1234.56789" + "1 | Members : " ], "output_expert": [ "0 | Committeemembership : Reset members", - "1 | Members [1/2] : 1fad555af0a96d3e1714bb669c5cb288d9426d", - "1 | Members [2/2] : 5a4483e3a13581f2f6efa02a3a", + "1 | Members : ", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 293, "name": "Committeemembership_Reset_members", - "blob": "0a0508c89ec4055ef1b293c7f87ee8f99ea47f99c91d6013e9750e69f7caa4d7be02d9b807ac5bbc9bee39b5227a456d661927709ce288b8f798bfd9bdc94510fe1f67d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0a05048060a974476696c3691dc5c13810c16c76ab267428803857a8bdd55462fabb95d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Committeemembership : Reset members", - "1 | Members [1/4] : c89ec4055ef1b293c7f87ee8f99ea47f99c91d", - "1 | Members [2/4] : 6013e9750e69f7caa4d7be02d9", - "1 | Members [3/4] : b807ac5bbc9bee39b5227a456d661927709ce2", - "1 | Members [4/4] : 88b8f798bfd9bdc94510fe1f67", - "2 | Tip : POLYX 0.000987" + "1 | Members [1/2] : 8060a974476696c3691dc5c13810c16c76ab26", + "1 | Members [2/2] : 7428803857a8bdd55462fabb95" ], "output_expert": [ "0 | Committeemembership : Reset members", - "1 | Members [1/4] : c89ec4055ef1b293c7f87ee8f99ea47f99c91d", - "1 | Members [2/4] : 6013e9750e69f7caa4d7be02d9", - "1 | Members [3/4] : b807ac5bbc9bee39b5227a456d661927709ce2", - "1 | Members [4/4] : 88b8f798bfd9bdc94510fe1f67", + "1 | Members [1/2] : 8060a974476696c3691dc5c13810c16c76ab26", + "1 | Members [2/2] : 7428803857a8bdd55462fabb95", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 294, "name": "Committeemembership_Reset_members", - "blob": "0a0508c89ec4055ef1b293c7f87ee8f99ea47f99c91d6013e9750e69f7caa4d7be02d9b807ac5bbc9bee39b5227a456d661927709ce288b8f798bfd9bdc94510fe1f67d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0a050cd6dd2baaf51f69eae3e4691239af16d6fadeae210bb08f359149141ee531c80173cda326ae28b8afc4c7d11d8456034a7d74a15dc64e9387676b62cf7170c1422fa2ab12c7dbe4c668cdb825919a740d09964778cfebc5c346ba2b8828b85896d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Committeemembership : Reset members", - "1 | Members [1/4] : c89ec4055ef1b293c7f87ee8f99ea47f99c91d", - "1 | Members [2/4] : 6013e9750e69f7caa4d7be02d9", - "1 | Members [3/4] : b807ac5bbc9bee39b5227a456d661927709ce2", - "1 | Members [4/4] : 88b8f798bfd9bdc94510fe1f67", - "2 | Tip : POLYX 55.555555" + "1 | Members [1/6] : d6dd2baaf51f69eae3e4691239af16d6fadeae", + "1 | Members [2/6] : 210bb08f359149141ee531c801", + "1 | Members [3/6] : 73cda326ae28b8afc4c7d11d8456034a7d74a1", + "1 | Members [4/6] : 5dc64e9387676b62cf7170c142", + "1 | Members [5/6] : 2fa2ab12c7dbe4c668cdb825919a740d099647", + "1 | Members [6/6] : 78cfebc5c346ba2b8828b85896" ], "output_expert": [ "0 | Committeemembership : Reset members", - "1 | Members [1/4] : c89ec4055ef1b293c7f87ee8f99ea47f99c91d", - "1 | Members [2/4] : 6013e9750e69f7caa4d7be02d9", - "1 | Members [3/4] : b807ac5bbc9bee39b5227a456d661927709ce2", - "1 | Members [4/4] : 88b8f798bfd9bdc94510fe1f67", + "1 | Members [1/6] : d6dd2baaf51f69eae3e4691239af16d6fadeae", + "1 | Members [2/6] : 210bb08f359149141ee531c801", + "1 | Members [3/6] : 73cda326ae28b8afc4c7d11d8456034a7d74a1", + "1 | Members [4/6] : 5dc64e9387676b62cf7170c142", + "1 | Members [5/6] : 2fa2ab12c7dbe4c668cdb825919a740d099647", + "1 | Members [6/6] : 78cfebc5c346ba2b8828b85896", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 295, "name": "Committeemembership_Reset_members", - "blob": "0a05041fad555af0a96d3e1714bb669c5cb288d9426d5a4483e3a13581f2f6efa02a3ad503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0a05048060a974476696c3691dc5c13810c16c76ab267428803857a8bdd55462fabb95d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Committeemembership : Reset members", - "1 | Members [1/2] : 1fad555af0a96d3e1714bb669c5cb288d9426d", - "1 | Members [2/2] : 5a4483e3a13581f2f6efa02a3a" + "1 | Members [1/2] : 8060a974476696c3691dc5c13810c16c76ab26", + "1 | Members [2/2] : 7428803857a8bdd55462fabb95", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Committeemembership : Reset members", - "1 | Members [1/2] : 1fad555af0a96d3e1714bb669c5cb288d9426d", - "1 | Members [2/2] : 5a4483e3a13581f2f6efa02a3a", + "1 | Members [1/2] : 8060a974476696c3691dc5c13810c16c76ab26", + "1 | Members [2/2] : 7428803857a8bdd55462fabb95", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 2339", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 296, "name": "Committeemembership_Abdicate_membership", - "blob": "0a06d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0a06d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Committeemembership : Abdicate membership", "1 | Tip : POLYX 1234.56789" @@ -7759,54 +7665,56 @@ "output_expert": [ "0 | Committeemembership : Abdicate membership", "1 | Chain : Polymesh", - "2 | Nonce : 1", + "2 | Nonce : 50283", "3 | Tip : POLYX 1234.56789", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 297, "name": "Committeemembership_Abdicate_membership", - "blob": "0a06d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0a06d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Committeemembership : Abdicate membership", - "1 | Tip : POLYX 55.555555" + "1 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Committeemembership : Abdicate membership", "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Tip : POLYX 55.555555", + "2 | Nonce : 100", + "3 | Tip : POLYX 5552342.355555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 298, "name": "Committeemembership_Abdicate_membership", - "blob": "0a06d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0a06d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Committeemembership : Abdicate membership" + "0 | Committeemembership : Abdicate membership", + "1 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Committeemembership : Abdicate membership", "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "5 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "2 | Nonce : 1", + "3 | Tip : POLYX 1234.56789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 299, "name": "Committeemembership_Abdicate_membership", - "blob": "0a06d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0a06d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Committeemembership : Abdicate membership", "1 | Tip : POLYX 55.555555" @@ -7814,418 +7722,422 @@ "output_expert": [ "0 | Committeemembership : Abdicate membership", "1 | Chain : Polymesh", - "2 | Nonce : 50283", + "2 | Nonce : 1", "3 | Tip : POLYX 55.555555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 300, "name": "Committeemembership_Abdicate_membership", - "blob": "0a06d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0a06d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Committeemembership : Abdicate membership" + "0 | Committeemembership : Abdicate membership", + "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "1 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Committeemembership : Abdicate membership", "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "5 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "2 | Nonce : 100", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 301, "name": "Technicalcommittee_Set_vote_threshold", - "blob": "0b009d1c0000d3040000d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0b00343000009d1c0000d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommittee : Set vote threshold", - "1 | N : 7325", - "2 | D : 1235", - "3 | Tip : POLYX 5552342.355555" + "1 | N : 12340", + "2 | D : 7325", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Technicalcommittee : Set vote threshold", - "1 | N : 7325", - "2 | D : 1235", + "1 | N : 12340", + "2 | D : 7325", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 2339", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 302, "name": "Technicalcommittee_Set_vote_threshold", - "blob": "0b009d1c000034300000d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0b00d3040000f7010000d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommittee : Set vote threshold", - "1 | N : 7325", - "2 | D : 12340", - "3 | Tip : POLYX 0.000987" + "1 | N : 1235", + "2 | D : 503", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Technicalcommittee : Set vote threshold", - "1 | N : 7325", - "2 | D : 12340", + "1 | N : 1235", + "2 | D : 503", "3 | Chain : Polymesh", "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 303, "name": "Technicalcommittee_Set_vote_threshold", - "blob": "0b00d30400009d1c0000d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0b000000000034300000d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommittee : Set vote threshold", - "1 | N : 1235", - "2 | D : 7325", - "3 | Tip : POLYX 0.000987" + "1 | N : 0", + "2 | D : 12340", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Technicalcommittee : Set vote threshold", - "1 | N : 1235", - "2 | D : 7325", + "1 | N : 0", + "2 | D : 12340", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 100", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 304, "name": "Technicalcommittee_Set_vote_threshold", - "blob": "0b00d30400009d1c0000d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0b00f70100009d1c0000d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommittee : Set vote threshold", - "1 | N : 1235", + "1 | N : 503", "2 | D : 7325", - "3 | Tip : POLYX 0.000987" + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Technicalcommittee : Set vote threshold", - "1 | N : 1235", + "1 | N : 503", "2 | D : 7325", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 2339", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 305, "name": "Technicalcommittee_Set_vote_threshold", - "blob": "0b009d1c00009d1c0000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0b0034300000f7010000d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommittee : Set vote threshold", - "1 | N : 7325", - "2 | D : 7325", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | N : 12340", + "2 | D : 503", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Technicalcommittee : Set vote threshold", - "1 | N : 7325", - "2 | D : 7325", + "1 | N : 12340", + "2 | D : 503", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 1", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 306, "name": "Technicalcommittee_Set_release_coordinator", - "blob": "0b0144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0b01c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommittee : Set release coordinator", - "1 | Id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Id [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Id [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Technicalcommittee : Set release coordinator", - "1 | Id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Id [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Id [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 307, "name": "Technicalcommittee_Set_release_coordinator", - "blob": "0b0144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0b01c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommittee : Set release coordinator", - "1 | Id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Id [2/2] : 99f2a85988d897db3b7b56d9af" + "1 | Id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Id [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Technicalcommittee : Set release coordinator", - "1 | Id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Id [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Id [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 2339", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 308, "name": "Technicalcommittee_Set_release_coordinator", - "blob": "0b0144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0b01c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommittee : Set release coordinator", - "1 | Id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Id [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 5552342.355555" + "1 | Id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Id [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Technicalcommittee : Set release coordinator", - "1 | Id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Id [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Id [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 309, "name": "Technicalcommittee_Set_release_coordinator", - "blob": "0b0144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0b01c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommittee : Set release coordinator", - "1 | Id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Id [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 1234.56789" + "1 | Id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Id [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Technicalcommittee : Set release coordinator", - "1 | Id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Id [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Id [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 2339", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 310, "name": "Technicalcommittee_Set_release_coordinator", - "blob": "0b0144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0b01c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommittee : Set release coordinator", - "1 | Id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Id [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 0.000987" + "1 | Id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Id [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Technicalcommittee : Set release coordinator", - "1 | Id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Id [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Id [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 1", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 311, "name": "Technicalcommittee_Set_expires_after", - "blob": "0b0201d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0b0201d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommittee : Set expires after", "1 | Expiry : None", - "2 | Tip : POLYX 0.000987" + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Technicalcommittee : Set expires after", "1 | Expiry : None", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 1", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 312, "name": "Technicalcommittee_Set_expires_after", - "blob": "0b0200a1860100d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0b0201d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommittee : Set expires after", - "1 | Expiry : 100001" + "1 | Expiry : None" ], "output_expert": [ "0 | Technicalcommittee : Set expires after", - "1 | Expiry : 100001", + "1 | Expiry : None", "2 | Chain : Polymesh", - "3 | Nonce : 1", + "3 | Nonce : 50283", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 313, "name": "Technicalcommittee_Set_expires_after", - "blob": "0b0201d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0b0201d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommittee : Set expires after", - "1 | Expiry : None", - "2 | Tip : POLYX 55.555555" + "1 | Expiry : None" ], "output_expert": [ "0 | Technicalcommittee : Set expires after", "1 | Expiry : None", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 314, "name": "Technicalcommittee_Set_expires_after", - "blob": "0b0200a1860100d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0b0200a1860100d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommittee : Set expires after", - "1 | Expiry : 100001" + "1 | Expiry : 100001", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Technicalcommittee : Set expires after", "1 | Expiry : 100001", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 50283", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 315, "name": "Technicalcommittee_Set_expires_after", - "blob": "0b0201d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0b0201d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommittee : Set expires after", - "1 | Expiry : None" + "1 | Expiry : None", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Technicalcommittee : Set expires after", "1 | Expiry : None", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 316, "name": "Technicalcommittee_Vote_or_propose", - "blob": "0b03000000083434d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0b03010000083434d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommittee : Vote or propose", - "1 | Approve : False", + "1 | Approve : True", "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "2 | Call [2/2] : 3434" ], "output_expert": [ "0 | Technicalcommittee : Vote or propose", - "1 | Approve : False", + "1 | Approve : True", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 100", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 317, "name": "Technicalcommittee_Vote_or_propose", - "blob": "0b03010000083434d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0b03000000083434d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommittee : Vote or propose", - "1 | Approve : True", + "1 | Approve : False", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 1234.56789" + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Technicalcommittee : Vote or propose", - "1 | Approve : True", + "1 | Approve : False", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 0", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 318, "name": "Technicalcommittee_Vote_or_propose", - "blob": "0b03000000083434d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0b03000000083434d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommittee : Vote or propose", "1 | Approve : False", @@ -8239,24 +8151,24 @@ "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 1", + "4 | Nonce : 0", "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 319, "name": "Technicalcommittee_Vote_or_propose", - "blob": "0b03010000083434d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0b03010000083434d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommittee : Vote or propose", "1 | Approve : True", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 55.555555" + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Technicalcommittee : Vote or propose", @@ -8264,1339 +8176,1342 @@ "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 0", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 320, "name": "Technicalcommittee_Vote_or_propose", - "blob": "0b03010000083434d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0b03000000083434d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommittee : Vote or propose", - "1 | Approve : True", + "1 | Approve : False", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 55.555555" + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Technicalcommittee : Vote or propose", - "1 | Approve : True", + "1 | Approve : False", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 100", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 321, "name": "Technicalcommittee_Vote", - "blob": "0b046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40630000000000d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0b04885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0af3e0010001d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 0", - "3 | Approve : False", - "4 | Tip : POLYX 55.555555" + "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Index : 123123", + "3 | Approve : True", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Technicalcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 0", - "3 | Approve : False", + "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Index : 123123", + "3 | Approve : True", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 55.555555", + "5 | Nonce : 100", + "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 322, "name": "Technicalcommittee_Vote", - "blob": "0b046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063db03000001d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0b04885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a0000000001d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 987", + "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Index : 0", "3 | Approve : True", - "4 | Tip : POLYX 55.555555" + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Technicalcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 987", + "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Index : 0", "3 | Approve : True", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 55.555555", + "5 | Nonce : 0", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 323, "name": "Technicalcommittee_Vote", - "blob": "0b046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063db03000001d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0b04885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a0000000001d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 987", + "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Index : 0", "3 | Approve : True", "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Technicalcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 987", + "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Index : 0", "3 | Approve : True", "4 | Chain : Polymesh", "5 | Nonce : 2339", "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 324, "name": "Technicalcommittee_Vote", - "blob": "0b046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063db03000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0b04885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0af3e0010001d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 987", - "3 | Approve : False", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Index : 123123", + "3 | Approve : True", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Technicalcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 987", - "3 | Approve : False", + "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Index : 123123", + "3 | Approve : True", "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", + "5 | Nonce : 1", + "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 325, "name": "Technicalcommittee_Vote", - "blob": "0b046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063f3e0010000d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0b04885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a0000000001d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 123123", - "3 | Approve : False", - "4 | Tip : POLYX 1234.56789" + "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Index : 0", + "3 | Approve : True", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Technicalcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 123123", - "3 | Approve : False", + "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Index : 0", + "3 | Approve : True", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 1234.56789", + "5 | Nonce : 2339", + "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 326, "name": "Technicalcommitteemembership_Set_active_members_limit", - "blob": "0c0000000000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0c000c000000d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommitteemembership : Set active members limit", - "1 | Limit : 0", - "2 | Tip : POLYX 1234.56789" + "1 | Limit : 12" ], "output_expert": [ "0 | Technicalcommitteemembership : Set active members limit", - "1 | Limit : 0", + "1 | Limit : 12", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 327, "name": "Technicalcommitteemembership_Set_active_members_limit", - "blob": "0c0007000000d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0c0000000000d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommitteemembership : Set active members limit", - "1 | Limit : 7", + "1 | Limit : 0", "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Technicalcommitteemembership : Set active members limit", - "1 | Limit : 7", + "1 | Limit : 0", "2 | Chain : Polymesh", - "3 | Nonce : 1", + "3 | Nonce : 0", "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 328, "name": "Technicalcommitteemembership_Set_active_members_limit", - "blob": "0c0007000000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0c0004000000d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommitteemembership : Set active members limit", - "1 | Limit : 7", + "1 | Limit : 4", "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Technicalcommitteemembership : Set active members limit", - "1 | Limit : 7", + "1 | Limit : 4", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 100", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 329, "name": "Technicalcommitteemembership_Set_active_members_limit", - "blob": "0c0000000000d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0c0009000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommitteemembership : Set active members limit", - "1 | Limit : 0", - "2 | Tip : POLYX 0.000987" + "1 | Limit : 9", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Technicalcommitteemembership : Set active members limit", - "1 | Limit : 0", + "1 | Limit : 9", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 330, "name": "Technicalcommitteemembership_Set_active_members_limit", - "blob": "0c000f000000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0c0007000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommitteemembership : Set active members limit", - "1 | Limit : 15", - "2 | Tip : POLYX 55.555555" + "1 | Limit : 7", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Technicalcommitteemembership : Set active members limit", - "1 | Limit : 15", + "1 | Limit : 7", "2 | Chain : Polymesh", "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 331, "name": "Technicalcommitteemembership_Disable_member", - "blob": "0c0144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af018000000000000000010008000000000000d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0c01c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708018000000000000000010001000000000000d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommitteemembership : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Expiry : 128", - "3 | At : 2048" + "3 | At : 256", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Technicalcommitteemembership : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Expiry : 128", - "3 | At : 2048", + "3 | At : 256", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Nonce : 2339", + "6 | Tip : POLYX 1234.56789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 332, "name": "Technicalcommitteemembership_Disable_member", - "blob": "0c0144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af010008000000000000010008000000000000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0c01c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708018000000000000000018000000000000000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommitteemembership : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 2048", - "3 | At : 2048" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 128", + "3 | At : 128", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Technicalcommitteemembership : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 2048", - "3 | At : 2048", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 128", + "3 | At : 128", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Nonce : 50283", + "6 | Tip : POLYX 0.000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 333, "name": "Technicalcommitteemembership_Disable_member", - "blob": "0c0144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af018000000000000000010001000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0c01c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708010008000000000000018000000000000000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommitteemembership : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 128", - "3 | At : 256", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 2048", + "3 | At : 128" ], "output_expert": [ "0 | Technicalcommitteemembership : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 128", - "3 | At : 256", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 2048", + "3 | At : 128", "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Nonce : 50283", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 334, "name": "Technicalcommitteemembership_Disable_member", - "blob": "0c0144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af010001000000000000018000000000000000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0c01c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708010008000000000000010008000000000000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommitteemembership : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 256", - "3 | At : 128", - "4 | Tip : POLYX 1234.56789" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 2048", + "3 | At : 2048" ], "output_expert": [ "0 | Technicalcommitteemembership : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 256", - "3 | At : 128", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 2048", + "3 | At : 2048", "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Nonce : 2339", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 335, "name": "Technicalcommitteemembership_Disable_member", - "blob": "0c0144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af018000000000000000010001000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0c01c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708010008000000000000018000000000000000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommitteemembership : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 128", - "3 | At : 256", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 2048", + "3 | At : 128", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Technicalcommitteemembership : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 128", - "3 | At : 256", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 2048", + "3 | At : 128", "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", + "5 | Nonce : 0", + "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 336, "name": "Technicalcommitteemembership_Add_member", - "blob": "0c0244ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0c02c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommitteemembership : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 0.000987" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Technicalcommitteemembership : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 337, "name": "Technicalcommitteemembership_Add_member", - "blob": "0c0244ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0c02c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommitteemembership : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 55.555555" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Technicalcommitteemembership : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 338, "name": "Technicalcommitteemembership_Add_member", - "blob": "0c0244ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0c02c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommitteemembership : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 5552342.355555" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Technicalcommitteemembership : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 0", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 339, "name": "Technicalcommitteemembership_Add_member", - "blob": "0c0244ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0c02c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommitteemembership : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Technicalcommitteemembership : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 50283", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 340, "name": "Technicalcommitteemembership_Add_member", - "blob": "0c0244ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0c02c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommitteemembership : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Technicalcommitteemembership : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 1", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 341, "name": "Technicalcommitteemembership_Remove_member", - "blob": "0c0344ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0c03c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommitteemembership : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Technicalcommitteemembership : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 100", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 342, "name": "Technicalcommitteemembership_Remove_member", - "blob": "0c0344ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0c03c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommitteemembership : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Technicalcommitteemembership : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 100", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 343, "name": "Technicalcommitteemembership_Remove_member", - "blob": "0c0344ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0c03c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommitteemembership : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 55.555555" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Technicalcommitteemembership : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 100", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 344, "name": "Technicalcommitteemembership_Remove_member", - "blob": "0c0344ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0c03c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommitteemembership : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 5552342.355555" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Technicalcommitteemembership : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 50283", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 345, "name": "Technicalcommitteemembership_Remove_member", - "blob": "0c0344ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0c03c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommitteemembership : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 0.000987" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Technicalcommitteemembership : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 346, "name": "Technicalcommitteemembership_Swap_member", - "blob": "0c0444ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0c04c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommitteemembership : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af" + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Technicalcommitteemembership : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 1", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 347, "name": "Technicalcommitteemembership_Swap_member", - "blob": "0c0444ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0c04c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommitteemembership : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Technicalcommitteemembership : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", "3 | Chain : Polymesh", "4 | Nonce : 50283", "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 348, "name": "Technicalcommitteemembership_Swap_member", - "blob": "0c0444ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0c04c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommitteemembership : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Technicalcommitteemembership : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 0", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 349, "name": "Technicalcommitteemembership_Swap_member", - "blob": "0c0444ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0c04c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommitteemembership : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Tip : POLYX 5552342.355555" + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708" ], "output_expert": [ "0 | Technicalcommitteemembership : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 50283", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 350, "name": "Technicalcommitteemembership_Swap_member", - "blob": "0c0444ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0c04c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommitteemembership : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Technicalcommitteemembership : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", "3 | Chain : Polymesh", "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 351, "name": "Technicalcommitteemembership_Reset_members", - "blob": "0c0508c89ec4055ef1b293c7f87ee8f99ea47f99c91d6013e9750e69f7caa4d7be02d9b807ac5bbc9bee39b5227a456d661927709ce288b8f798bfd9bdc94510fe1f67d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0c050813dae1b7784c2936246cccff78b486a257d3b68b5484e78e41674fc673862b50c9b007aaf55bbf7d33cd3f46fe915ac089c249c5ccd03515c702a0f8e3ef5724d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommitteemembership : Reset members", - "1 | Members [1/4] : c89ec4055ef1b293c7f87ee8f99ea47f99c91d", - "1 | Members [2/4] : 6013e9750e69f7caa4d7be02d9", - "1 | Members [3/4] : b807ac5bbc9bee39b5227a456d661927709ce2", - "1 | Members [4/4] : 88b8f798bfd9bdc94510fe1f67", - "2 | Tip : POLYX 5552342.355555" + "1 | Members [1/4] : 13dae1b7784c2936246cccff78b486a257d3b6", + "1 | Members [2/4] : 8b5484e78e41674fc673862b50", + "1 | Members [3/4] : c9b007aaf55bbf7d33cd3f46fe915ac089c249", + "1 | Members [4/4] : c5ccd03515c702a0f8e3ef5724" ], "output_expert": [ "0 | Technicalcommitteemembership : Reset members", - "1 | Members [1/4] : c89ec4055ef1b293c7f87ee8f99ea47f99c91d", - "1 | Members [2/4] : 6013e9750e69f7caa4d7be02d9", - "1 | Members [3/4] : b807ac5bbc9bee39b5227a456d661927709ce2", - "1 | Members [4/4] : 88b8f798bfd9bdc94510fe1f67", + "1 | Members [1/4] : 13dae1b7784c2936246cccff78b486a257d3b6", + "1 | Members [2/4] : 8b5484e78e41674fc673862b50", + "1 | Members [3/4] : c9b007aaf55bbf7d33cd3f46fe915ac089c249", + "1 | Members [4/4] : c5ccd03515c702a0f8e3ef5724", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 352, "name": "Technicalcommitteemembership_Reset_members", - "blob": "0c05041fad555af0a96d3e1714bb669c5cb288d9426d5a4483e3a13581f2f6efa02a3ad50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0c050813dae1b7784c2936246cccff78b486a257d3b68b5484e78e41674fc673862b50c9b007aaf55bbf7d33cd3f46fe915ac089c249c5ccd03515c702a0f8e3ef5724d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommitteemembership : Reset members", - "1 | Members [1/2] : 1fad555af0a96d3e1714bb669c5cb288d9426d", - "1 | Members [2/2] : 5a4483e3a13581f2f6efa02a3a", - "2 | Tip : POLYX 5552342.355555" + "1 | Members [1/4] : 13dae1b7784c2936246cccff78b486a257d3b6", + "1 | Members [2/4] : 8b5484e78e41674fc673862b50", + "1 | Members [3/4] : c9b007aaf55bbf7d33cd3f46fe915ac089c249", + "1 | Members [4/4] : c5ccd03515c702a0f8e3ef5724", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Technicalcommitteemembership : Reset members", - "1 | Members [1/2] : 1fad555af0a96d3e1714bb669c5cb288d9426d", - "1 | Members [2/2] : 5a4483e3a13581f2f6efa02a3a", + "1 | Members [1/4] : 13dae1b7784c2936246cccff78b486a257d3b6", + "1 | Members [2/4] : 8b5484e78e41674fc673862b50", + "1 | Members [3/4] : c9b007aaf55bbf7d33cd3f46fe915ac089c249", + "1 | Members [4/4] : c5ccd03515c702a0f8e3ef5724", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 2339", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 353, "name": "Technicalcommitteemembership_Reset_members", - "blob": "0c0500d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0c05048060a974476696c3691dc5c13810c16c76ab267428803857a8bdd55462fabb95d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommitteemembership : Reset members", - "1 | Members : ", - "2 | Tip : POLYX 5552342.355555" + "1 | Members [1/2] : 8060a974476696c3691dc5c13810c16c76ab26", + "1 | Members [2/2] : 7428803857a8bdd55462fabb95", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Technicalcommitteemembership : Reset members", - "1 | Members : ", + "1 | Members [1/2] : 8060a974476696c3691dc5c13810c16c76ab26", + "1 | Members [2/2] : 7428803857a8bdd55462fabb95", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 2339", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 354, "name": "Technicalcommitteemembership_Reset_members", - "blob": "0c0500d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0c0500d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommitteemembership : Reset members", - "1 | Members : ", - "2 | Tip : POLYX 5552342.355555" + "1 | Members : " ], "output_expert": [ "0 | Technicalcommitteemembership : Reset members", "1 | Members : ", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 355, "name": "Technicalcommitteemembership_Reset_members", - "blob": "0c0500d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0c050cd6dd2baaf51f69eae3e4691239af16d6fadeae210bb08f359149141ee531c80173cda326ae28b8afc4c7d11d8456034a7d74a15dc64e9387676b62cf7170c1422fa2ab12c7dbe4c668cdb825919a740d09964778cfebc5c346ba2b8828b85896d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommitteemembership : Reset members", - "1 | Members : ", - "2 | Tip : POLYX 5552342.355555" + "1 | Members [1/6] : d6dd2baaf51f69eae3e4691239af16d6fadeae", + "1 | Members [2/6] : 210bb08f359149141ee531c801", + "1 | Members [3/6] : 73cda326ae28b8afc4c7d11d8456034a7d74a1", + "1 | Members [4/6] : 5dc64e9387676b62cf7170c142", + "1 | Members [5/6] : 2fa2ab12c7dbe4c668cdb825919a740d099647", + "1 | Members [6/6] : 78cfebc5c346ba2b8828b85896" ], "output_expert": [ "0 | Technicalcommitteemembership : Reset members", - "1 | Members : ", + "1 | Members [1/6] : d6dd2baaf51f69eae3e4691239af16d6fadeae", + "1 | Members [2/6] : 210bb08f359149141ee531c801", + "1 | Members [3/6] : 73cda326ae28b8afc4c7d11d8456034a7d74a1", + "1 | Members [4/6] : 5dc64e9387676b62cf7170c142", + "1 | Members [5/6] : 2fa2ab12c7dbe4c668cdb825919a740d099647", + "1 | Members [6/6] : 78cfebc5c346ba2b8828b85896", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 356, "name": "Technicalcommitteemembership_Abdicate_membership", - "blob": "0c06d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0c06d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommitteemembership : Abdicate membership" ], "output_expert": [ "0 | Technicalcommitteemembership : Abdicate membership", "1 | Chain : Polymesh", - "2 | Nonce : 50283", + "2 | Nonce : 0", "3 | Era Phase : 61", "4 | Era Period : 64", - "5 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "5 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "5 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 357, "name": "Technicalcommitteemembership_Abdicate_membership", - "blob": "0c06d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0c06d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Technicalcommitteemembership : Abdicate membership", - "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "1 | Tip [2/2] : 3.456789" + "0 | Technicalcommitteemembership : Abdicate membership" ], "output_expert": [ "0 | Technicalcommitteemembership : Abdicate membership", "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "2 | Nonce : 100", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "5 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 358, "name": "Technicalcommitteemembership_Abdicate_membership", - "blob": "0c06d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0c06d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommitteemembership : Abdicate membership", - "1 | Tip : POLYX 1234.56789" + "1 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Technicalcommitteemembership : Abdicate membership", "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip : POLYX 1234.56789", + "2 | Nonce : 50283", + "3 | Tip : POLYX 55.555555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 359, "name": "Technicalcommitteemembership_Abdicate_membership", - "blob": "0c06d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0c06d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommitteemembership : Abdicate membership", - "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "1 | Tip [2/2] : 3.456789" + "1 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Technicalcommitteemembership : Abdicate membership", "1 | Chain : Polymesh", "2 | Nonce : 2339", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789", + "3 | Tip : POLYX 0.000987", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 360, "name": "Technicalcommitteemembership_Abdicate_membership", - "blob": "0c06d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0c06d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Technicalcommitteemembership : Abdicate membership" ], "output_expert": [ "0 | Technicalcommitteemembership : Abdicate membership", "1 | Chain : Polymesh", - "2 | Nonce : 0", + "2 | Nonce : 2339", "3 | Era Phase : 61", "4 | Era Period : 64", - "5 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "5 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "5 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 361, "name": "Upgradecommittee_Set_vote_threshold", - "blob": "0d00f701000034300000d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0d000000000034300000d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommittee : Set vote threshold", - "1 | N : 503", - "2 | D : 12340" + "1 | N : 0", + "2 | D : 12340", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Upgradecommittee : Set vote threshold", - "1 | N : 503", + "1 | N : 0", "2 | D : 12340", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 2339", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 362, "name": "Upgradecommittee_Set_vote_threshold", - "blob": "0d0034300000d3040000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0d00343000009d1c0000d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommittee : Set vote threshold", "1 | N : 12340", - "2 | D : 1235", - "3 | Tip : POLYX 0.000987" + "2 | D : 7325", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Upgradecommittee : Set vote threshold", "1 | N : 12340", - "2 | D : 1235", + "2 | D : 7325", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 100", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 363, "name": "Upgradecommittee_Set_vote_threshold", - "blob": "0d00f701000034300000d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0d00f70100009d1c0000d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommittee : Set vote threshold", "1 | N : 503", - "2 | D : 12340", - "3 | Tip : POLYX 5552342.355555" + "2 | D : 7325", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Upgradecommittee : Set vote threshold", "1 | N : 503", - "2 | D : 12340", + "2 | D : 7325", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 1", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 364, "name": "Upgradecommittee_Set_vote_threshold", - "blob": "0d00f7010000d3040000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0d009d1c00009d1c0000d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommittee : Set vote threshold", - "1 | N : 503", - "2 | D : 1235", - "3 | Tip : POLYX 1234.56789" + "1 | N : 7325", + "2 | D : 7325", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Upgradecommittee : Set vote threshold", - "1 | N : 503", - "2 | D : 1235", + "1 | N : 7325", + "2 | D : 7325", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 100", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 365, "name": "Upgradecommittee_Set_vote_threshold", - "blob": "0d00d3040000f7010000d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0d00f70100009d1c0000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommittee : Set vote threshold", - "1 | N : 1235", - "2 | D : 503", - "3 | Tip : POLYX 5552342.355555" + "1 | N : 503", + "2 | D : 7325", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Upgradecommittee : Set vote threshold", - "1 | N : 1235", - "2 | D : 503", + "1 | N : 503", + "2 | D : 7325", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 100", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 366, "name": "Upgradecommittee_Set_release_coordinator", - "blob": "0d0144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0d01c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommittee : Set release coordinator", - "1 | Id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Id [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Id [2/2] : bd7a6512a7cb922c53c4907708", "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Upgradecommittee : Set release coordinator", - "1 | Id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Id [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Id [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 1", "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 367, "name": "Upgradecommittee_Set_release_coordinator", - "blob": "0d0144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0d01c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommittee : Set release coordinator", - "1 | Id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Id [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Id [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Upgradecommittee : Set release coordinator", - "1 | Id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Id [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Id [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 100", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 368, "name": "Upgradecommittee_Set_release_coordinator", - "blob": "0d0144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0d01c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommittee : Set release coordinator", - "1 | Id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Id [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 55.555555" + "1 | Id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Id [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Upgradecommittee : Set release coordinator", - "1 | Id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Id [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Id [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 1", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 369, "name": "Upgradecommittee_Set_release_coordinator", - "blob": "0d0144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0d01c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommittee : Set release coordinator", - "1 | Id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Id [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Id [2/2] : bd7a6512a7cb922c53c4907708" ], "output_expert": [ "0 | Upgradecommittee : Set release coordinator", - "1 | Id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Id [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Id [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] }, { "index": 370, "name": "Upgradecommittee_Set_release_coordinator", - "blob": "0d0144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0d01c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommittee : Set release coordinator", - "1 | Id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Id [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Id [2/2] : bd7a6512a7cb922c53c4907708", "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Upgradecommittee : Set release coordinator", - "1 | Id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Id [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Id [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", "3 | Nonce : 2339", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 371, "name": "Upgradecommittee_Set_expires_after", - "blob": "0d0201d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0d0200a1860100d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommittee : Set expires after", - "1 | Expiry : None", - "2 | Tip : POLYX 5552342.355555" + "1 | Expiry : 100001", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Upgradecommittee : Set expires after", - "1 | Expiry : None", + "1 | Expiry : 100001", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 50283", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 372, "name": "Upgradecommittee_Set_expires_after", - "blob": "0d0200a1860100d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0d0201d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommittee : Set expires after", - "1 | Expiry : 100001" + "1 | Expiry : None", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Upgradecommittee : Set expires after", - "1 | Expiry : 100001", + "1 | Expiry : None", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 2339", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 373, "name": "Upgradecommittee_Set_expires_after", - "blob": "0d0200a1860100d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0d0200a1860100d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommittee : Set expires after", "1 | Expiry : 100001", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Upgradecommittee : Set expires after", "1 | Expiry : 100001", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 50283", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 374, "name": "Upgradecommittee_Set_expires_after", - "blob": "0d0200a1860100d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0d0201d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommittee : Set expires after", - "1 | Expiry : 100001", - "2 | Tip : POLYX 5552342.355555" + "1 | Expiry : None", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Upgradecommittee : Set expires after", - "1 | Expiry : 100001", + "1 | Expiry : None", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 0", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 375, "name": "Upgradecommittee_Set_expires_after", - "blob": "0d0200a1860100d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0d0201d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommittee : Set expires after", - "1 | Expiry : 100001", - "2 | Tip : POLYX 55.555555" + "1 | Expiry : None", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Upgradecommittee : Set expires after", - "1 | Expiry : 100001", + "1 | Expiry : None", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 50283", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 376, "name": "Upgradecommittee_Vote_or_propose", - "blob": "0d03000000083434d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0d03000000083434d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommittee : Vote or propose", "1 | Approve : False", "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434" + "2 | Call [2/2] : 3434", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Upgradecommittee : Vote or propose", @@ -9604,49 +9519,49 @@ "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 1", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 377, "name": "Upgradecommittee_Vote_or_propose", - "blob": "0d03010000083434d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0d03000000083434d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommittee : Vote or propose", - "1 | Approve : True", + "1 | Approve : False", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 0.000987" + "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Upgradecommittee : Vote or propose", - "1 | Approve : True", + "1 | Approve : False", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 1", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 378, "name": "Upgradecommittee_Vote_or_propose", - "blob": "0d03000000083434d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0d03000000083434d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommittee : Vote or propose", "1 | Approve : False", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Upgradecommittee : Vote or propose", @@ -9654,48 +9569,48 @@ "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 50283", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 379, "name": "Upgradecommittee_Vote_or_propose", - "blob": "0d03000000083434d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0d03010000083434d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommittee : Vote or propose", - "1 | Approve : False", + "1 | Approve : True", "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434" + "2 | Call [2/2] : 3434", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Upgradecommittee : Vote or propose", - "1 | Approve : False", + "1 | Approve : True", "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 0", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 380, "name": "Upgradecommittee_Vote_or_propose", - "blob": "0d03010000083434d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0d03010000083434d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommittee : Vote or propose", "1 | Approve : True", "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 0.000987" + "2 | Call [2/2] : 3434" ], "output_expert": [ "0 | Upgradecommittee : Vote or propose", @@ -9703,27892 +9618,28004 @@ "2 | Call [1/2] : Remark", "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 100", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 381, "name": "Upgradecommittee_Vote", - "blob": "0d046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40634930000001d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0d04885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0af3e0010001d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 12361", - "3 | Approve : True", - "4 | Tip : POLYX 1234.56789" + "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Index : 123123", + "3 | Approve : True" ], "output_expert": [ "0 | Upgradecommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 12361", + "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Index : 123123", "3 | Approve : True", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Nonce : 2339", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 382, "name": "Upgradecommittee_Vote", - "blob": "0d046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40634930000001d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0d04885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0adb03000000d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 12361", - "3 | Approve : True", + "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Index : 987", + "3 | Approve : False", "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Upgradecommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 12361", - "3 | Approve : True", + "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Index : 987", + "3 | Approve : False", "4 | Chain : Polymesh", - "5 | Nonce : 50283", + "5 | Nonce : 1", "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 383, "name": "Upgradecommittee_Vote", - "blob": "0d046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40634930000000d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0d04885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0adb03000001d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 12361", - "3 | Approve : False", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Index : 987", + "3 | Approve : True", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Upgradecommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 12361", - "3 | Approve : False", + "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Index : 987", + "3 | Approve : True", "4 | Chain : Polymesh", "5 | Nonce : 0", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", + "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 384, "name": "Upgradecommittee_Vote", - "blob": "0d046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063f3e0010000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0d04885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a0000000000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 123123", + "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Index : 0", "3 | Approve : False", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Upgradecommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 123123", + "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Index : 0", "3 | Approve : False", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", + "5 | Nonce : 0", + "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 385, "name": "Upgradecommittee_Vote", - "blob": "0d046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063db03000000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0d04885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a0000000001d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 987", - "3 | Approve : False", + "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Index : 0", + "3 | Approve : True", "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Upgradecommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 987", - "3 | Approve : False", + "1 | Proposal [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Proposal [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Index : 0", + "3 | Approve : True", "4 | Chain : Polymesh", - "5 | Nonce : 0", + "5 | Nonce : 2339", "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 386, "name": "Upgradecommitteemembership_Set_active_members_limit", - "blob": "0e0007000000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0e0004000000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommitteemembership : Set active members limit", - "1 | Limit : 7" + "1 | Limit : 4" ], "output_expert": [ "0 | Upgradecommitteemembership : Set active members limit", - "1 | Limit : 7", + "1 | Limit : 4", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 2339", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 387, "name": "Upgradecommitteemembership_Set_active_members_limit", - "blob": "0e0007000000d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0e0007000000d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommitteemembership : Set active members limit", - "1 | Limit : 7" + "1 | Limit : 7", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Upgradecommitteemembership : Set active members limit", "1 | Limit : 7", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 1", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 388, "name": "Upgradecommitteemembership_Set_active_members_limit", - "blob": "0e0004000000d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0e0000000000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommitteemembership : Set active members limit", - "1 | Limit : 4", - "2 | Tip : POLYX 5552342.355555" + "1 | Limit : 0" ], "output_expert": [ "0 | Upgradecommitteemembership : Set active members limit", - "1 | Limit : 4", + "1 | Limit : 0", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 389, "name": "Upgradecommitteemembership_Set_active_members_limit", - "blob": "0e000f000000d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0e0004000000d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommitteemembership : Set active members limit", - "1 | Limit : 15", - "2 | Tip : POLYX 5552342.355555" + "1 | Limit : 4", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Upgradecommitteemembership : Set active members limit", - "1 | Limit : 15", + "1 | Limit : 4", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 2339", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 390, "name": "Upgradecommitteemembership_Set_active_members_limit", - "blob": "0e0004000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0e0004000000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommitteemembership : Set active members limit", "1 | Limit : 4", - "2 | Tip : POLYX 5552342.355555" + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Upgradecommitteemembership : Set active members limit", "1 | Limit : 4", "2 | Chain : Polymesh", "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 391, "name": "Upgradecommitteemembership_Disable_member", - "blob": "0e0144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af018000000000000000010001000000000000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0e01c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708010008000000000000010001000000000000d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommitteemembership : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 128", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 2048", "3 | At : 256", "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Upgradecommitteemembership : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 128", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 2048", "3 | At : 256", "4 | Chain : Polymesh", - "5 | Nonce : 1", + "5 | Nonce : 50283", "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 392, "name": "Upgradecommitteemembership_Disable_member", - "blob": "0e0144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af018000000000000000010008000000000000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0e01c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708010008000000000000018000000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommitteemembership : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 128", - "3 | At : 2048", - "4 | Tip : POLYX 55.555555" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 2048", + "3 | At : 128", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Upgradecommitteemembership : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 128", - "3 | At : 2048", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 2048", + "3 | At : 128", "4 | Chain : Polymesh", "5 | Nonce : 100", - "6 | Tip : POLYX 55.555555", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 393, "name": "Upgradecommitteemembership_Disable_member", - "blob": "0e0144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af010001000000000000010001000000000000d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0e01c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708010008000000000000018000000000000000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommitteemembership : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 256", - "3 | At : 256", - "4 | Tip : POLYX 5552342.355555" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 2048", + "3 | At : 128" ], "output_expert": [ "0 | Upgradecommitteemembership : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 256", - "3 | At : 256", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 2048", + "3 | At : 128", "4 | Chain : Polymesh", "5 | Nonce : 2339", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 394, "name": "Upgradecommitteemembership_Disable_member", - "blob": "0e0144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af010001000000000000010008000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0e01c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708010001000000000000018000000000000000d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommitteemembership : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Expiry : 256", - "3 | At : 2048", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "3 | At : 128", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Upgradecommitteemembership : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Expiry : 256", - "3 | At : 2048", + "3 | At : 128", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", + "5 | Nonce : 50283", + "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 395, "name": "Upgradecommitteemembership_Disable_member", - "blob": "0e0144ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af010001000000000000018000000000000000d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0e01c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708018000000000000000018000000000000000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommitteemembership : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 256", - "3 | At : 128" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 128", + "3 | At : 128", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Upgradecommitteemembership : Disable member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Expiry : 256", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Expiry : 128", "3 | At : 128", "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] + "5 | Nonce : 0", + "6 | Tip : POLYX 0.000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] }, { "index": 396, "name": "Upgradecommitteemembership_Add_member", - "blob": "0e0244ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0e02c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommitteemembership : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 0.000987" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708" ], "output_expert": [ "0 | Upgradecommitteemembership : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 397, "name": "Upgradecommitteemembership_Add_member", - "blob": "0e0244ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0e02c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommitteemembership : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 5552342.355555" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Upgradecommitteemembership : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 1", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 398, "name": "Upgradecommitteemembership_Add_member", - "blob": "0e0244ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0e02c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommitteemembership : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 0.000987" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Upgradecommitteemembership : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 50283", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 399, "name": "Upgradecommitteemembership_Add_member", - "blob": "0e0244ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0e02c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommitteemembership : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 5552342.355555" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Upgradecommitteemembership : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 1", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 400, "name": "Upgradecommitteemembership_Add_member", - "blob": "0e0244ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0e02c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommitteemembership : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 55.555555" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Upgradecommitteemembership : Add member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 401, "name": "Upgradecommitteemembership_Remove_member", - "blob": "0e0344ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0e03c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommitteemembership : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 1234.56789" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708" ], "output_expert": [ "0 | Upgradecommitteemembership : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 402, "name": "Upgradecommitteemembership_Remove_member", - "blob": "0e0344ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0e03c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommitteemembership : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 0.000987" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708" ], "output_expert": [ "0 | Upgradecommitteemembership : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 403, "name": "Upgradecommitteemembership_Remove_member", - "blob": "0e0344ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0e03c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommitteemembership : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Upgradecommitteemembership : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 404, "name": "Upgradecommitteemembership_Remove_member", - "blob": "0e0344ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0e03c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommitteemembership : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Upgradecommitteemembership : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 1", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 405, "name": "Upgradecommitteemembership_Remove_member", - "blob": "0e0344ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0e03c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommitteemembership : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 5552342.355555" + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Upgradecommitteemembership : Remove member", - "1 | Who [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Who [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Who [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Who [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 406, "name": "Upgradecommitteemembership_Swap_member", - "blob": "0e0444ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0e04c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommitteemembership : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Tip : POLYX 5552342.355555" + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Upgradecommitteemembership : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 100", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 407, "name": "Upgradecommitteemembership_Swap_member", - "blob": "0e0444ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0e04c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommitteemembership : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", "3 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Upgradecommitteemembership : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", "3 | Chain : Polymesh", - "4 | Nonce : 0", + "4 | Nonce : 100", "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 408, "name": "Upgradecommitteemembership_Swap_member", - "blob": "0e0444ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0e04c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommitteemembership : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Tip : POLYX 55.555555" + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Upgradecommitteemembership : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 0", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 409, "name": "Upgradecommitteemembership_Swap_member", - "blob": "0e0444ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0e04c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommitteemembership : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Upgradecommitteemembership : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 2339", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 410, "name": "Upgradecommitteemembership_Swap_member", - "blob": "0e0444ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0e04c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommitteemembership : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Tip : POLYX 55.555555" + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708" ], "output_expert": [ "0 | Upgradecommitteemembership : Swap member", - "1 | Remove [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Remove [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Add [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Add [2/2] : 99f2a85988d897db3b7b56d9af", + "1 | Remove [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Remove [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Add [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Add [2/2] : bd7a6512a7cb922c53c4907708", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 1", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 411, "name": "Upgradecommitteemembership_Reset_members", - "blob": "0e050c9126f3e008a20bfc2b3a38edb8126887f0572a32c8147f6e4f41508455e6f3a1e946dc53519a34c0093aeb57c218f90d2e9ecac7efae20b79b8708c654af4fd9a85ded491e8808de2593dff3f8f4bfe001c2e93c0e76795664e2e24519cf47a7d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0e050813dae1b7784c2936246cccff78b486a257d3b68b5484e78e41674fc673862b50c9b007aaf55bbf7d33cd3f46fe915ac089c249c5ccd03515c702a0f8e3ef5724d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommitteemembership : Reset members", - "1 | Members [1/6] : 9126f3e008a20bfc2b3a38edb8126887f0572a", - "1 | Members [2/6] : 32c8147f6e4f41508455e6f3a1", - "1 | Members [3/6] : e946dc53519a34c0093aeb57c218f90d2e9eca", - "1 | Members [4/6] : c7efae20b79b8708c654af4fd9", - "1 | Members [5/6] : a85ded491e8808de2593dff3f8f4bfe001c2e9", - "1 | Members [6/6] : 3c0e76795664e2e24519cf47a7", - "2 | Tip : POLYX 0.000987" + "1 | Members [1/4] : 13dae1b7784c2936246cccff78b486a257d3b6", + "1 | Members [2/4] : 8b5484e78e41674fc673862b50", + "1 | Members [3/4] : c9b007aaf55bbf7d33cd3f46fe915ac089c249", + "1 | Members [4/4] : c5ccd03515c702a0f8e3ef5724", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Upgradecommitteemembership : Reset members", - "1 | Members [1/6] : 9126f3e008a20bfc2b3a38edb8126887f0572a", - "1 | Members [2/6] : 32c8147f6e4f41508455e6f3a1", - "1 | Members [3/6] : e946dc53519a34c0093aeb57c218f90d2e9eca", - "1 | Members [4/6] : c7efae20b79b8708c654af4fd9", - "1 | Members [5/6] : a85ded491e8808de2593dff3f8f4bfe001c2e9", - "1 | Members [6/6] : 3c0e76795664e2e24519cf47a7", + "1 | Members [1/4] : 13dae1b7784c2936246cccff78b486a257d3b6", + "1 | Members [2/4] : 8b5484e78e41674fc673862b50", + "1 | Members [3/4] : c9b007aaf55bbf7d33cd3f46fe915ac089c249", + "1 | Members [4/4] : c5ccd03515c702a0f8e3ef5724", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 412, "name": "Upgradecommitteemembership_Reset_members", - "blob": "0e05041fad555af0a96d3e1714bb669c5cb288d9426d5a4483e3a13581f2f6efa02a3ad50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0e050cd6dd2baaf51f69eae3e4691239af16d6fadeae210bb08f359149141ee531c80173cda326ae28b8afc4c7d11d8456034a7d74a15dc64e9387676b62cf7170c1422fa2ab12c7dbe4c668cdb825919a740d09964778cfebc5c346ba2b8828b85896d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommitteemembership : Reset members", - "1 | Members [1/2] : 1fad555af0a96d3e1714bb669c5cb288d9426d", - "1 | Members [2/2] : 5a4483e3a13581f2f6efa02a3a" + "1 | Members [1/6] : d6dd2baaf51f69eae3e4691239af16d6fadeae", + "1 | Members [2/6] : 210bb08f359149141ee531c801", + "1 | Members [3/6] : 73cda326ae28b8afc4c7d11d8456034a7d74a1", + "1 | Members [4/6] : 5dc64e9387676b62cf7170c142", + "1 | Members [5/6] : 2fa2ab12c7dbe4c668cdb825919a740d099647", + "1 | Members [6/6] : 78cfebc5c346ba2b8828b85896", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Upgradecommitteemembership : Reset members", - "1 | Members [1/2] : 1fad555af0a96d3e1714bb669c5cb288d9426d", - "1 | Members [2/2] : 5a4483e3a13581f2f6efa02a3a", + "1 | Members [1/6] : d6dd2baaf51f69eae3e4691239af16d6fadeae", + "1 | Members [2/6] : 210bb08f359149141ee531c801", + "1 | Members [3/6] : 73cda326ae28b8afc4c7d11d8456034a7d74a1", + "1 | Members [4/6] : 5dc64e9387676b62cf7170c142", + "1 | Members [5/6] : 2fa2ab12c7dbe4c668cdb825919a740d099647", + "1 | Members [6/6] : 78cfebc5c346ba2b8828b85896", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 2339", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 413, "name": "Upgradecommitteemembership_Reset_members", - "blob": "0e0508c89ec4055ef1b293c7f87ee8f99ea47f99c91d6013e9750e69f7caa4d7be02d9b807ac5bbc9bee39b5227a456d661927709ce288b8f798bfd9bdc94510fe1f67d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0e050813dae1b7784c2936246cccff78b486a257d3b68b5484e78e41674fc673862b50c9b007aaf55bbf7d33cd3f46fe915ac089c249c5ccd03515c702a0f8e3ef5724d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommitteemembership : Reset members", - "1 | Members [1/4] : c89ec4055ef1b293c7f87ee8f99ea47f99c91d", - "1 | Members [2/4] : 6013e9750e69f7caa4d7be02d9", - "1 | Members [3/4] : b807ac5bbc9bee39b5227a456d661927709ce2", - "1 | Members [4/4] : 88b8f798bfd9bdc94510fe1f67", - "2 | Tip : POLYX 5552342.355555" + "1 | Members [1/4] : 13dae1b7784c2936246cccff78b486a257d3b6", + "1 | Members [2/4] : 8b5484e78e41674fc673862b50", + "1 | Members [3/4] : c9b007aaf55bbf7d33cd3f46fe915ac089c249", + "1 | Members [4/4] : c5ccd03515c702a0f8e3ef5724", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Upgradecommitteemembership : Reset members", - "1 | Members [1/4] : c89ec4055ef1b293c7f87ee8f99ea47f99c91d", - "1 | Members [2/4] : 6013e9750e69f7caa4d7be02d9", - "1 | Members [3/4] : b807ac5bbc9bee39b5227a456d661927709ce2", - "1 | Members [4/4] : 88b8f798bfd9bdc94510fe1f67", + "1 | Members [1/4] : 13dae1b7784c2936246cccff78b486a257d3b6", + "1 | Members [2/4] : 8b5484e78e41674fc673862b50", + "1 | Members [3/4] : c9b007aaf55bbf7d33cd3f46fe915ac089c249", + "1 | Members [4/4] : c5ccd03515c702a0f8e3ef5724", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 2339", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 414, "name": "Upgradecommitteemembership_Reset_members", - "blob": "0e05041fad555af0a96d3e1714bb669c5cb288d9426d5a4483e3a13581f2f6efa02a3ad5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0e05048060a974476696c3691dc5c13810c16c76ab267428803857a8bdd55462fabb95d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommitteemembership : Reset members", - "1 | Members [1/2] : 1fad555af0a96d3e1714bb669c5cb288d9426d", - "1 | Members [2/2] : 5a4483e3a13581f2f6efa02a3a", - "2 | Tip : POLYX 0.000987" + "1 | Members [1/2] : 8060a974476696c3691dc5c13810c16c76ab26", + "1 | Members [2/2] : 7428803857a8bdd55462fabb95", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Upgradecommitteemembership : Reset members", - "1 | Members [1/2] : 1fad555af0a96d3e1714bb669c5cb288d9426d", - "1 | Members [2/2] : 5a4483e3a13581f2f6efa02a3a", + "1 | Members [1/2] : 8060a974476696c3691dc5c13810c16c76ab26", + "1 | Members [2/2] : 7428803857a8bdd55462fabb95", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 1", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 415, "name": "Upgradecommitteemembership_Reset_members", - "blob": "0e050c9126f3e008a20bfc2b3a38edb8126887f0572a32c8147f6e4f41508455e6f3a1e946dc53519a34c0093aeb57c218f90d2e9ecac7efae20b79b8708c654af4fd9a85ded491e8808de2593dff3f8f4bfe001c2e93c0e76795664e2e24519cf47a7d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0e050cd6dd2baaf51f69eae3e4691239af16d6fadeae210bb08f359149141ee531c80173cda326ae28b8afc4c7d11d8456034a7d74a15dc64e9387676b62cf7170c1422fa2ab12c7dbe4c668cdb825919a740d09964778cfebc5c346ba2b8828b85896d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommitteemembership : Reset members", - "1 | Members [1/6] : 9126f3e008a20bfc2b3a38edb8126887f0572a", - "1 | Members [2/6] : 32c8147f6e4f41508455e6f3a1", - "1 | Members [3/6] : e946dc53519a34c0093aeb57c218f90d2e9eca", - "1 | Members [4/6] : c7efae20b79b8708c654af4fd9", - "1 | Members [5/6] : a85ded491e8808de2593dff3f8f4bfe001c2e9", - "1 | Members [6/6] : 3c0e76795664e2e24519cf47a7" + "1 | Members [1/6] : d6dd2baaf51f69eae3e4691239af16d6fadeae", + "1 | Members [2/6] : 210bb08f359149141ee531c801", + "1 | Members [3/6] : 73cda326ae28b8afc4c7d11d8456034a7d74a1", + "1 | Members [4/6] : 5dc64e9387676b62cf7170c142", + "1 | Members [5/6] : 2fa2ab12c7dbe4c668cdb825919a740d099647", + "1 | Members [6/6] : 78cfebc5c346ba2b8828b85896", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Upgradecommitteemembership : Reset members", - "1 | Members [1/6] : 9126f3e008a20bfc2b3a38edb8126887f0572a", - "1 | Members [2/6] : 32c8147f6e4f41508455e6f3a1", - "1 | Members [3/6] : e946dc53519a34c0093aeb57c218f90d2e9eca", - "1 | Members [4/6] : c7efae20b79b8708c654af4fd9", - "1 | Members [5/6] : a85ded491e8808de2593dff3f8f4bfe001c2e9", - "1 | Members [6/6] : 3c0e76795664e2e24519cf47a7", + "1 | Members [1/6] : d6dd2baaf51f69eae3e4691239af16d6fadeae", + "1 | Members [2/6] : 210bb08f359149141ee531c801", + "1 | Members [3/6] : 73cda326ae28b8afc4c7d11d8456034a7d74a1", + "1 | Members [4/6] : 5dc64e9387676b62cf7170c142", + "1 | Members [5/6] : 2fa2ab12c7dbe4c668cdb825919a740d099647", + "1 | Members [6/6] : 78cfebc5c346ba2b8828b85896", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 1", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 416, "name": "Upgradecommitteemembership_Abdicate_membership", - "blob": "0e06d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0e06d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommitteemembership : Abdicate membership", - "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "1 | Tip [2/2] : 3.456789" + "1 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Upgradecommitteemembership : Abdicate membership", "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789", + "2 | Nonce : 100", + "3 | Tip : POLYX 55.555555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 417, "name": "Upgradecommitteemembership_Abdicate_membership", - "blob": "0e06d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0e06d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommitteemembership : Abdicate membership", - "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "1 | Tip [2/2] : 3.456789" + "1 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Upgradecommitteemembership : Abdicate membership", "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789", + "2 | Nonce : 2339", + "3 | Tip : POLYX 1234.56789", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 418, "name": "Upgradecommitteemembership_Abdicate_membership", - "blob": "0e06d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0e06d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Upgradecommitteemembership : Abdicate membership" + "0 | Upgradecommitteemembership : Abdicate membership", + "1 | Tip : POLYX 5552342.355555" ], "output_expert": [ "0 | Upgradecommitteemembership : Abdicate membership", "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "5 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "2 | Nonce : 0", + "3 | Tip : POLYX 5552342.355555", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 419, "name": "Upgradecommitteemembership_Abdicate_membership", - "blob": "0e06d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0e06d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Upgradecommitteemembership : Abdicate membership", - "1 | Tip : POLYX 1234.56789" + "1 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Upgradecommitteemembership : Abdicate membership", "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip : POLYX 1234.56789", + "2 | Nonce : 0", + "3 | Tip : POLYX 55.555555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 420, "name": "Upgradecommitteemembership_Abdicate_membership", - "blob": "0e06d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0e06d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Upgradecommitteemembership : Abdicate membership", - "1 | Tip : POLYX 55.555555" + "0 | Upgradecommitteemembership : Abdicate membership" ], "output_expert": [ "0 | Upgradecommitteemembership : Abdicate membership", "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip : POLYX 55.555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "2 | Nonce : 100", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "5 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 421, "name": "Multisig_Create_multisig", - "blob": "0f0008004927e9087e912b183c4af24b986cdf26515f764b581decee3f0000c8ae5d191d01ceac92de8bce7dce739d35f403519a29990645143185e309da0f171425c1a07d0000000000000000d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0f0008fc9a863c5ca943e65c7d684569c47ab546742a424ca7820283e120ade32a9178c8b3915f5975f15e8cdaadb07e4a4c1c3a81ccef9c31ef586f05cebd7b67ae332309000000000000010104417373657449442d31323334353637380000d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Multisig : Create multisig", - "1 | Signers [1/4] : 4927e9087e912b183c4af24b986cdf26515f76", - "1 | Signers [2/4] : 4b581decee3f0000c8ae5d191d", - "1 | Signers [3/4] : 2H7uEQdJyQBRHUgXaJgTbh45W3mkx4yxRKwgcM", - "1 | Signers [4/4] : D65Yj3yBvi", - "2 | Sigs required : 0" + "1 | Signers [1/4] : 5Hmupwiuco5a9wCH5FdjReQWqzUmW7ha8ZTY9a", + "1 | Signers [2/4] : 5gbctv48cE", + "1 | Signers [3/4] : 5Gbrn1jpJp6UTVHoHuRBNtpXBLFoNKUbzEKWvH", + "1 | Signers [4/4] : Hr6bKGSKbU", + "2 | Sigs required : 2339", + "3 | Permissions [1/4] : These", + "3 | Permissions [2/4] : AssetID-12345678", + "3 | Permissions [3/4] : Whole", + "3 | Permissions [4/4] : Whole", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Multisig : Create multisig", - "1 | Signers [1/4] : 4927e9087e912b183c4af24b986cdf26515f76", - "1 | Signers [2/4] : 4b581decee3f0000c8ae5d191d", - "1 | Signers [3/4] : 2H7uEQdJyQBRHUgXaJgTbh45W3mkx4yxRKwgcM", - "1 | Signers [4/4] : D65Yj3yBvi", - "2 | Sigs required : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "1 | Signers [1/4] : 5Hmupwiuco5a9wCH5FdjReQWqzUmW7ha8ZTY9a", + "1 | Signers [2/4] : 5gbctv48cE", + "1 | Signers [3/4] : 5Gbrn1jpJp6UTVHoHuRBNtpXBLFoNKUbzEKWvH", + "1 | Signers [4/4] : Hr6bKGSKbU", + "2 | Sigs required : 2339", + "3 | Permissions [1/4] : These", + "3 | Permissions [2/4] : AssetID-12345678", + "3 | Permissions [3/4] : Whole", + "3 | Permissions [4/4] : Whole", + "4 | Chain : Polymesh", + "5 | Nonce : 50283", + "6 | Tip : POLYX 1234.56789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 422, "name": "Multisig_Create_multisig", - "blob": "0f0008004927e9087e912b183c4af24b986cdf26515f764b581decee3f0000c8ae5d191d01ceac92de8bce7dce739d35f403519a29990645143185e309da0f171425c1a07d6400000000000000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0f0010da696da947ebb0f5a67c2197645d273a2e8e8b4da7c9a029d73333d31e2f7d2506f9e0de23a824f255492e55931fd27caaec57e6dc8582de067622a9084ce23fbe4f278b05e46ba39eafe23f340ccd01975cef791b26530e25b84b35eadde3065246ec06b5f9e7734a6c29cd3def83894e06e31acf2a6e02549cf28fcba64e5a2309000000000000010104417373657449442d31323334353637380000d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Multisig : Create multisig", - "1 | Signers [1/4] : 4927e9087e912b183c4af24b986cdf26515f76", - "1 | Signers [2/4] : 4b581decee3f0000c8ae5d191d", - "1 | Signers [3/4] : 2H7uEQdJyQBRHUgXaJgTbh45W3mkx4yxRKwgcM", - "1 | Signers [4/4] : D65Yj3yBvi", - "2 | Sigs required : 100", - "3 | Tip : POLYX 0.000987" + "1 | Signers [1/8] : 5H15ccQwsvRvskpk9Po4YYeUhWTuAN71opC48R", + "1 | Signers [2/8] : 8mCz8xH5KZ", + "1 | Signers [3/8] : 5CDrNduHhP3Jeo6XpfJigb9rmLuuXB7oUFRTqM", + "1 | Signers [4/8] : ziLpwiDfwT", + "1 | Signers [5/8] : 5GNEUA7Miwj9PxoHxGJSRFEswFv6TvSQuHUbCd", + "1 | Signers [6/8] : EMVa64Fhxt", + "1 | Signers [7/8] : 5DvarNAEFyw5hesRcPaQnuHDRpZeQ15TJtdP5e", + "1 | Signers [8/8] : 5JbxY729kW", + "2 | Sigs required : 2339", + "3 | Permissions [1/4] : These", + "3 | Permissions [2/4] : AssetID-12345678", + "3 | Permissions [3/4] : Whole", + "3 | Permissions [4/4] : Whole", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ "0 | Multisig : Create multisig", - "1 | Signers [1/4] : 4927e9087e912b183c4af24b986cdf26515f76", - "1 | Signers [2/4] : 4b581decee3f0000c8ae5d191d", - "1 | Signers [3/4] : 2H7uEQdJyQBRHUgXaJgTbh45W3mkx4yxRKwgcM", - "1 | Signers [4/4] : D65Yj3yBvi", - "2 | Sigs required : 100", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "1 | Signers [1/8] : 5H15ccQwsvRvskpk9Po4YYeUhWTuAN71opC48R", + "1 | Signers [2/8] : 8mCz8xH5KZ", + "1 | Signers [3/8] : 5CDrNduHhP3Jeo6XpfJigb9rmLuuXB7oUFRTqM", + "1 | Signers [4/8] : ziLpwiDfwT", + "1 | Signers [5/8] : 5GNEUA7Miwj9PxoHxGJSRFEswFv6TvSQuHUbCd", + "1 | Signers [6/8] : EMVa64Fhxt", + "1 | Signers [7/8] : 5DvarNAEFyw5hesRcPaQnuHDRpZeQ15TJtdP5e", + "1 | Signers [8/8] : 5JbxY729kW", + "2 | Sigs required : 2339", + "3 | Permissions [1/4] : These", + "3 | Permissions [2/4] : AssetID-12345678", + "3 | Permissions [3/4] : Whole", + "3 | Permissions [4/4] : Whole", + "4 | Chain : Polymesh", + "5 | Nonce : 50283", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 423, "name": "Multisig_Create_multisig", - "blob": "0f0008004927e9087e912b183c4af24b986cdf26515f764b581decee3f0000c8ae5d191d01ceac92de8bce7dce739d35f403519a29990645143185e309da0f171425c1a07d6400000000000000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0f0010d4ac27f74873e19564c108ed7d831d85a38f77cf561a2e53612f18fa126c347b7ebab0271162946e3fb97b329c3529a02953d39ae7c339bed4f3f7ca6b61ec26f2c856ed9db17485c794806dc183ddea3a96b671190f18ccc58e4e0a6e3a46362e2b97be94191af3e06d8fb3bfb3145551b863170a07ec9d8472adfa50a284640100000000000000010104417373657449442d31323334353637380000d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Multisig : Create multisig", - "1 | Signers [1/4] : 4927e9087e912b183c4af24b986cdf26515f76", - "1 | Signers [2/4] : 4b581decee3f0000c8ae5d191d", - "1 | Signers [3/4] : 2H7uEQdJyQBRHUgXaJgTbh45W3mkx4yxRKwgcM", - "1 | Signers [4/4] : D65Yj3yBvi", - "2 | Sigs required : 100", - "3 | Tip : POLYX 1234.56789" + "1 | Signers [1/8] : 5GsZ9e4wdUDe6VuSifTDpddsTGwXNZJKNwjAMJ", + "1 | Signers [2/8] : oPNRMx7CYs", + "1 | Signers [3/8] : 5EvsMAt7opwhVCjLpCKk3tuEPbH3A5ihut8KbK", + "1 | Signers [4/8] : TzBbZ6EVND", + "1 | Signers [5/8] : 5HZ2xYnM5Ey215dH8Ez3Kebbzx2Sbw5uq9MDmp", + "1 | Signers [6/8] : 7Rk22XQJ58", + "1 | Signers [7/8] : 5D7F1WaV3b5wZqkQBauaddwV41ar6qyptghhvg", + "1 | Signers [8/8] : FQsHxZ7k96", + "2 | Sigs required : 1", + "3 | Permissions [1/4] : These", + "3 | Permissions [2/4] : AssetID-12345678", + "3 | Permissions [3/4] : Whole", + "3 | Permissions [4/4] : Whole", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ "0 | Multisig : Create multisig", - "1 | Signers [1/4] : 4927e9087e912b183c4af24b986cdf26515f76", - "1 | Signers [2/4] : 4b581decee3f0000c8ae5d191d", - "1 | Signers [3/4] : 2H7uEQdJyQBRHUgXaJgTbh45W3mkx4yxRKwgcM", - "1 | Signers [4/4] : D65Yj3yBvi", - "2 | Sigs required : 100", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "1 | Signers [1/8] : 5GsZ9e4wdUDe6VuSifTDpddsTGwXNZJKNwjAMJ", + "1 | Signers [2/8] : oPNRMx7CYs", + "1 | Signers [3/8] : 5EvsMAt7opwhVCjLpCKk3tuEPbH3A5ihut8KbK", + "1 | Signers [4/8] : TzBbZ6EVND", + "1 | Signers [5/8] : 5HZ2xYnM5Ey215dH8Ez3Kebbzx2Sbw5uq9MDmp", + "1 | Signers [6/8] : 7Rk22XQJ58", + "1 | Signers [7/8] : 5D7F1WaV3b5wZqkQBauaddwV41ar6qyptghhvg", + "1 | Signers [8/8] : FQsHxZ7k96", + "2 | Sigs required : 1", + "3 | Permissions [1/4] : These", + "3 | Permissions [2/4] : AssetID-12345678", + "3 | Permissions [3/4] : Whole", + "3 | Permissions [4/4] : Whole", + "4 | Chain : Polymesh", + "5 | Nonce : 1", + "6 | Tip : POLYX 1234.56789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 424, "name": "Multisig_Create_multisig", - "blob": "0f0008004927e9087e912b183c4af24b986cdf26515f764b581decee3f0000c8ae5d191d01ceac92de8bce7dce739d35f403519a29990645143185e309da0f171425c1a07d0100000000000000d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0f0008fc9a863c5ca943e65c7d684569c47ab546742a424ca7820283e120ade32a9178c8b3915f5975f15e8cdaadb07e4a4c1c3a81ccef9c31ef586f05cebd7b67ae336400000000000000010104417373657449442d31323334353637380000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Multisig : Create multisig", - "1 | Signers [1/4] : 4927e9087e912b183c4af24b986cdf26515f76", - "1 | Signers [2/4] : 4b581decee3f0000c8ae5d191d", - "1 | Signers [3/4] : 2H7uEQdJyQBRHUgXaJgTbh45W3mkx4yxRKwgcM", - "1 | Signers [4/4] : D65Yj3yBvi", - "2 | Sigs required : 1", - "3 | Tip : POLYX 55.555555" + "1 | Signers [1/4] : 5Hmupwiuco5a9wCH5FdjReQWqzUmW7ha8ZTY9a", + "1 | Signers [2/4] : 5gbctv48cE", + "1 | Signers [3/4] : 5Gbrn1jpJp6UTVHoHuRBNtpXBLFoNKUbzEKWvH", + "1 | Signers [4/4] : Hr6bKGSKbU", + "2 | Sigs required : 100", + "3 | Permissions [1/4] : These", + "3 | Permissions [2/4] : AssetID-12345678", + "3 | Permissions [3/4] : Whole", + "3 | Permissions [4/4] : Whole", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ "0 | Multisig : Create multisig", - "1 | Signers [1/4] : 4927e9087e912b183c4af24b986cdf26515f76", - "1 | Signers [2/4] : 4b581decee3f0000c8ae5d191d", - "1 | Signers [3/4] : 2H7uEQdJyQBRHUgXaJgTbh45W3mkx4yxRKwgcM", - "1 | Signers [4/4] : D65Yj3yBvi", - "2 | Sigs required : 1", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "1 | Signers [1/4] : 5Hmupwiuco5a9wCH5FdjReQWqzUmW7ha8ZTY9a", + "1 | Signers [2/4] : 5gbctv48cE", + "1 | Signers [3/4] : 5Gbrn1jpJp6UTVHoHuRBNtpXBLFoNKUbzEKWvH", + "1 | Signers [4/4] : Hr6bKGSKbU", + "2 | Sigs required : 100", + "3 | Permissions [1/4] : These", + "3 | Permissions [2/4] : AssetID-12345678", + "3 | Permissions [3/4] : Whole", + "3 | Permissions [4/4] : Whole", + "4 | Chain : Polymesh", + "5 | Nonce : 0", + "6 | Tip : POLYX 0.000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 425, "name": "Multisig_Create_multisig", - "blob": "0f0008004927e9087e912b183c4af24b986cdf26515f764b581decee3f0000c8ae5d191d01ceac92de8bce7dce739d35f403519a29990645143185e309da0f171425c1a07d0100000000000000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "blob": "0f0010b41be4a9192a3003c6bd4612361de6deb0ed3c7c9245b59ec6738871988a7906c6749b8fede42c605741056221977b49999e7ca8771fd872d504ed238ed22125205f5663399fbf1e4ac128becfbb9fac95ffd1d4a1c234f5f673d28db169ec3bfc3c56e582fab6b243da58ac5d4dd82a3787066f058563daac4558d6481e902d2309000000000000010104417373657449442d31323334353637380000d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ "0 | Multisig : Create multisig", - "1 | Signers [1/4] : 4927e9087e912b183c4af24b986cdf26515f76", - "1 | Signers [2/4] : 4b581decee3f0000c8ae5d191d", - "1 | Signers [3/4] : 2H7uEQdJyQBRHUgXaJgTbh45W3mkx4yxRKwgcM", - "1 | Signers [4/4] : D65Yj3yBvi", - "2 | Sigs required : 1" + "1 | Signers [1/8] : 5G8rmB2w9HN2reESJgtaf8WSAGbvtSyzM6pFL3", + "1 | Signers [2/8] : sEKvkp6YdX", + "1 | Signers [3/8] : 5GYuygPkHrUmkyfWsPQ72xznofBeCouZ9vTKDk", + "1 | Signers [4/8] : UhEXW1pq15", + "1 | Signers [5/8] : 5Co9iAk8sCYopCBouNfAs6VEKYkYMPjPov51wg", + "1 | Signers [6/8] : yxqrJTKgJL", + "1 | Signers [7/8] : 5HmRrBA6YdD8y6TVWMK4C6PTRXpWCJsSKoPVto", + "1 | Signers [8/8] : nXBE4t4Ykt", + "2 | Sigs required : 2339", + "3 | Permissions [1/4] : These", + "3 | Permissions [2/4] : AssetID-12345678", + "3 | Permissions [3/4] : Whole", + "3 | Permissions [4/4] : Whole", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ "0 | Multisig : Create multisig", - "1 | Signers [1/4] : 4927e9087e912b183c4af24b986cdf26515f76", - "1 | Signers [2/4] : 4b581decee3f0000c8ae5d191d", - "1 | Signers [3/4] : 2H7uEQdJyQBRHUgXaJgTbh45W3mkx4yxRKwgcM", - "1 | Signers [4/4] : D65Yj3yBvi", - "2 | Sigs required : 1", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "1 | Signers [1/8] : 5G8rmB2w9HN2reESJgtaf8WSAGbvtSyzM6pFL3", + "1 | Signers [2/8] : sEKvkp6YdX", + "1 | Signers [3/8] : 5GYuygPkHrUmkyfWsPQ72xznofBeCouZ9vTKDk", + "1 | Signers [4/8] : UhEXW1pq15", + "1 | Signers [5/8] : 5Co9iAk8sCYopCBouNfAs6VEKYkYMPjPov51wg", + "1 | Signers [6/8] : yxqrJTKgJL", + "1 | Signers [7/8] : 5HmRrBA6YdD8y6TVWMK4C6PTRXpWCJsSKoPVto", + "1 | Signers [8/8] : nXBE4t4Ykt", + "2 | Sigs required : 2339", + "3 | Permissions [1/4] : These", + "3 | Permissions [2/4] : AssetID-12345678", + "3 | Permissions [3/4] : Whole", + "3 | Permissions [4/4] : Whole", + "4 | Chain : Polymesh", + "5 | Nonce : 0", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 426, - "name": "Multisig_Create_or_approve_proposal_as_identity", - "blob": "0f01248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03000008343401000800000000000000d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Create_proposal", + "blob": "0f01b04675564efc66c59b629d4f6f844923f271ebf08fc297a0781f89731bead17f0000083434018000000000000000d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Create or approve proposal as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", + "0 | Multisig : Create proposal", + "1 | Multisig [1/2] : 5G3qDSksiTK2F5KmS1yryVsRfXMzt1aczrKXJY", + "1 | Multisig [2/2] : FkFzoSF4YP", "2 | Proposal [1/2] : Remark", "2 | Proposal [2/2] : 3434", - "3 | Expiry : 2048", - "4 | Auto close : False", - "5 | Tip : POLYX 55.555555" + "3 | Expiry : 128", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Multisig : Create or approve proposal as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", + "0 | Multisig : Create proposal", + "1 | Multisig [1/2] : 5G3qDSksiTK2F5KmS1yryVsRfXMzt1aczrKXJY", + "1 | Multisig [2/2] : FkFzoSF4YP", "2 | Proposal [1/2] : Remark", "2 | Proposal [2/2] : 3434", - "3 | Expiry : 2048", - "4 | Auto close : False", - "5 | Chain : Polymesh", - "6 | Nonce : 1", - "7 | Tip : POLYX 55.555555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Expiry : 128", + "4 | Chain : Polymesh", + "5 | Nonce : 1", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 427, - "name": "Multisig_Create_or_approve_proposal_as_identity", - "blob": "0f01248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03000008343401000800000000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Create_proposal", + "blob": "0f01b04675564efc66c59b629d4f6f844923f271ebf08fc297a0781f89731bead17f0000083434018000000000000000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Create or approve proposal as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", + "0 | Multisig : Create proposal", + "1 | Multisig [1/2] : 5G3qDSksiTK2F5KmS1yryVsRfXMzt1aczrKXJY", + "1 | Multisig [2/2] : FkFzoSF4YP", "2 | Proposal [1/2] : Remark", "2 | Proposal [2/2] : 3434", - "3 | Expiry : 2048", - "4 | Auto close : False", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789" + "3 | Expiry : 128" ], "output_expert": [ - "0 | Multisig : Create or approve proposal as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", + "0 | Multisig : Create proposal", + "1 | Multisig [1/2] : 5G3qDSksiTK2F5KmS1yryVsRfXMzt1aczrKXJY", + "1 | Multisig [2/2] : FkFzoSF4YP", "2 | Proposal [1/2] : Remark", "2 | Proposal [2/2] : 3434", - "3 | Expiry : 2048", - "4 | Auto close : False", - "5 | Chain : Polymesh", - "6 | Nonce : 2339", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Expiry : 128", + "4 | Chain : Polymesh", + "5 | Nonce : 2339", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 428, - "name": "Multisig_Create_or_approve_proposal_as_identity", - "blob": "0f01248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03000008343401000100000000000000d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Create_proposal", + "blob": "0f01b04675564efc66c59b629d4f6f844923f271ebf08fc297a0781f89731bead17f0000083434010008000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Create or approve proposal as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", + "0 | Multisig : Create proposal", + "1 | Multisig [1/2] : 5G3qDSksiTK2F5KmS1yryVsRfXMzt1aczrKXJY", + "1 | Multisig [2/2] : FkFzoSF4YP", "2 | Proposal [1/2] : Remark", "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : False", - "5 | Tip : POLYX 0.000987" + "3 | Expiry : 2048", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Multisig : Create or approve proposal as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", + "0 | Multisig : Create proposal", + "1 | Multisig [1/2] : 5G3qDSksiTK2F5KmS1yryVsRfXMzt1aczrKXJY", + "1 | Multisig [2/2] : FkFzoSF4YP", "2 | Proposal [1/2] : Remark", "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : False", - "5 | Chain : Polymesh", - "6 | Nonce : 0", - "7 | Tip : POLYX 0.000987", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Expiry : 2048", + "4 | Chain : Polymesh", + "5 | Nonce : 0", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 429, - "name": "Multisig_Create_or_approve_proposal_as_identity", - "blob": "0f01248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03000008343401000100000000000001d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Create_proposal", + "blob": "0f011a649a1e7bc89d0e95d5f757cdbb718b750e1e48f9962d215e0af9222021403e0000083434018000000000000000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Create or approve proposal as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", + "0 | Multisig : Create proposal", + "1 | Multisig [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "1 | Multisig [2/2] : CXYT6ZmfEg", "2 | Proposal [1/2] : Remark", "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : True", - "5 | Tip : POLYX 0.000987" + "3 | Expiry : 128", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Multisig : Create or approve proposal as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", + "0 | Multisig : Create proposal", + "1 | Multisig [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "1 | Multisig [2/2] : CXYT6ZmfEg", "2 | Proposal [1/2] : Remark", "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : True", - "5 | Chain : Polymesh", - "6 | Nonce : 2339", - "7 | Tip : POLYX 0.000987", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Expiry : 128", + "4 | Chain : Polymesh", + "5 | Nonce : 100", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 430, - "name": "Multisig_Create_or_approve_proposal_as_identity", - "blob": "0f01248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03000008343401000100000000000000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Create_proposal", + "blob": "0f011ea4f867cc0e916cfbaa637a01eea0d3163df7d154720f78571790913a6352190000083434010008000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Create or approve proposal as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", + "0 | Multisig : Create proposal", + "1 | Multisig [1/2] : 5CktJMt3EL46Fd9cgCmATqUnc4rBP6d1LDcAvK", + "1 | Multisig [2/2] : SX5DnQkqUa", "2 | Proposal [1/2] : Remark", "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : False", - "5 | Tip : POLYX 5552342.355555" + "3 | Expiry : 2048", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Multisig : Create or approve proposal as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", + "0 | Multisig : Create proposal", + "1 | Multisig [1/2] : 5CktJMt3EL46Fd9cgCmATqUnc4rBP6d1LDcAvK", + "1 | Multisig [2/2] : SX5DnQkqUa", "2 | Proposal [1/2] : Remark", "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : False", - "5 | Chain : Polymesh", - "6 | Nonce : 1", - "7 | Tip : POLYX 5552342.355555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Expiry : 2048", + "4 | Chain : Polymesh", + "5 | Nonce : 0", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 431, - "name": "Multisig_Create_or_approve_proposal_as_key", - "blob": "0f02248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03000008343401000800000000000001d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Approve", + "blob": "0f02dec0f4dc5fd3e8d150cf002bc6385185d188545a2d3c35459acb0fac525c276101000000000000000132f462770fd17d7236d22c37d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Create or approve proposal as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 2048", - "4 | Auto close : True", - "5 | Tip : POLYX 0.000987" + "0 | Multisig : Approve", + "1 | Multisig [1/2] : 5H6moo4wU5PEeHwthqGaP9oVjjAcG3PXyn196u", + "1 | Multisig [2/2] : hgTRKhjCkB", + "2 | Proposal id : 1", + "3 | Max weight [1/2] : 500743436", + "3 | Max weight [2/2] : 15530405087313361", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Multisig : Create or approve proposal as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 2048", - "4 | Auto close : True", - "5 | Chain : Polymesh", - "6 | Nonce : 100", - "7 | Tip : POLYX 0.000987", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Approve", + "1 | Multisig [1/2] : 5H6moo4wU5PEeHwthqGaP9oVjjAcG3PXyn196u", + "1 | Multisig [2/2] : hgTRKhjCkB", + "2 | Proposal id : 1", + "3 | Max weight [1/2] : 500743436", + "3 | Max weight [2/2] : 15530405087313361", + "4 | Chain : Polymesh", + "5 | Nonce : 50283", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 432, - "name": "Multisig_Create_or_approve_proposal_as_key", - "blob": "0f02248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03000008343401000100000000000001d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Approve", + "blob": "0f02b04675564efc66c59b629d4f6f844923f271ebf08fc297a0781f89731bead17f230900000000000000d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Create or approve proposal as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : True", - "5 | Tip : POLYX 1234.56789" + "0 | Multisig : Approve", + "1 | Multisig [1/2] : 5G3qDSksiTK2F5KmS1yryVsRfXMzt1aczrKXJY", + "1 | Multisig [2/2] : FkFzoSF4YP", + "2 | Proposal id : 2339", + "3 | Max weight : None", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Multisig : Create or approve proposal as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : True", - "5 | Chain : Polymesh", - "6 | Nonce : 100", - "7 | Tip : POLYX 1234.56789", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Approve", + "1 | Multisig [1/2] : 5G3qDSksiTK2F5KmS1yryVsRfXMzt1aczrKXJY", + "1 | Multisig [2/2] : FkFzoSF4YP", + "2 | Proposal id : 2339", + "3 | Max weight : None", + "4 | Chain : Polymesh", + "5 | Nonce : 1", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 433, - "name": "Multisig_Create_or_approve_proposal_as_key", - "blob": "0f02248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03000008343401000800000000000001d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Approve", + "blob": "0f02b0a4982a123e870e98be45944a32d76664a4cc899c3810c0300718516f0cb60a00000000000000000132f462770fd17d7236d22c37d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Create or approve proposal as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 2048", - "4 | Auto close : True", - "5 | Tip : POLYX 5552342.355555" + "0 | Multisig : Approve", + "1 | Multisig [1/2] : 5G4KBNUrpvHsFu9ZvQ5fKsbBcR2K4SBgjxgSdM", + "1 | Multisig [2/2] : T1Vu2VKdbZ", + "2 | Proposal id : 0", + "3 | Max weight [1/2] : 500743436", + "3 | Max weight [2/2] : 15530405087313361" ], "output_expert": [ - "0 | Multisig : Create or approve proposal as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 2048", - "4 | Auto close : True", - "5 | Chain : Polymesh", - "6 | Nonce : 100", - "7 | Tip : POLYX 5552342.355555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Approve", + "1 | Multisig [1/2] : 5G4KBNUrpvHsFu9ZvQ5fKsbBcR2K4SBgjxgSdM", + "1 | Multisig [2/2] : T1Vu2VKdbZ", + "2 | Proposal id : 0", + "3 | Max weight [1/2] : 500743436", + "3 | Max weight [2/2] : 15530405087313361", + "4 | Chain : Polymesh", + "5 | Nonce : 50283", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 434, - "name": "Multisig_Create_or_approve_proposal_as_key", - "blob": "0f02248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03000008343401800000000000000000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Approve", + "blob": "0f021a649a1e7bc89d0e95d5f757cdbb718b750e1e48f9962d215e0af9222021403e01000000000000000132f462770fd17d7236d22c37d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Create or approve proposal as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 128", - "4 | Auto close : False", - "5 | Tip : POLYX 0.000987" + "0 | Multisig : Approve", + "1 | Multisig [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "1 | Multisig [2/2] : CXYT6ZmfEg", + "2 | Proposal id : 1", + "3 | Max weight [1/2] : 500743436", + "3 | Max weight [2/2] : 15530405087313361", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Multisig : Create or approve proposal as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 128", - "4 | Auto close : False", - "5 | Chain : Polymesh", - "6 | Nonce : 2339", - "7 | Tip : POLYX 0.000987", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Approve", + "1 | Multisig [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "1 | Multisig [2/2] : CXYT6ZmfEg", + "2 | Proposal id : 1", + "3 | Max weight [1/2] : 500743436", + "3 | Max weight [2/2] : 15530405087313361", + "4 | Chain : Polymesh", + "5 | Nonce : 2339", + "6 | Tip : POLYX 0.000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 435, - "name": "Multisig_Create_or_approve_proposal_as_key", - "blob": "0f02248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03000008343401800000000000000000d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Approve", + "blob": "0f02dec0f4dc5fd3e8d150cf002bc6385185d188545a2d3c35459acb0fac525c27612309000000000000010f0b4aa045ac5d95751ed503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Create or approve proposal as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 128", - "4 | Auto close : False", - "5 | Tip : POLYX 0.000987" + "0 | Multisig : Approve", + "1 | Multisig [1/2] : 5H6moo4wU5PEeHwthqGaP9oVjjAcG3PXyn196u", + "1 | Multisig [2/2] : hgTRKhjCkB", + "2 | Proposal id : 2339", + "3 | Max weight [1/2] : 42042766013778443", + "3 | Max weight [2/2] : 1949", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Multisig : Create or approve proposal as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 128", - "4 | Auto close : False", - "5 | Chain : Polymesh", - "6 | Nonce : 100", - "7 | Tip : POLYX 0.000987", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Approve", + "1 | Multisig [1/2] : 5H6moo4wU5PEeHwthqGaP9oVjjAcG3PXyn196u", + "1 | Multisig [2/2] : hgTRKhjCkB", + "2 | Proposal id : 2339", + "3 | Max weight [1/2] : 42042766013778443", + "3 | Max weight [2/2] : 1949", + "4 | Chain : Polymesh", + "5 | Nonce : 1", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 436, - "name": "Multisig_Create_proposal_as_identity", - "blob": "0f03248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03000008343401000100000000000001d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Reject", + "blob": "0f032e5388ccb167c9fe3baeba3fed959f63c4e8bceb6c7387a77940029c142398206400000000000000d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Create proposal as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : True", - "5 | Tip : POLYX 0.000987" + "0 | Multisig : Reject", + "1 | Multisig [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "1 | Multisig [2/2] : qta7VKQZKw", + "2 | Proposal id : 100", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Multisig : Create proposal as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : True", - "5 | Chain : Polymesh", - "6 | Nonce : 1", - "7 | Tip : POLYX 0.000987", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Reject", + "1 | Multisig [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "1 | Multisig [2/2] : qta7VKQZKw", + "2 | Proposal id : 100", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 437, - "name": "Multisig_Create_proposal_as_identity", - "blob": "0f03248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03000008343401000800000000000000d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Reject", + "blob": "0f03746a25ffb64614dd2c7d8f53d247e39763261a2a4c187c424c51edb971f3d4350100000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Create proposal as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 2048", - "4 | Auto close : False", - "5 | Tip : POLYX 0.000987" + "0 | Multisig : Reject", + "1 | Multisig [1/2] : 5EhLwjQbRibvSWhbsvw5hvYdKHYF5besUgGbjx", + "1 | Multisig [2/2] : guT8977hVy", + "2 | Proposal id : 1", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Multisig : Create proposal as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 2048", - "4 | Auto close : False", - "5 | Chain : Polymesh", - "6 | Nonce : 1", - "7 | Tip : POLYX 0.000987", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Reject", + "1 | Multisig [1/2] : 5EhLwjQbRibvSWhbsvw5hvYdKHYF5besUgGbjx", + "1 | Multisig [2/2] : guT8977hVy", + "2 | Proposal id : 1", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 438, - "name": "Multisig_Create_proposal_as_identity", - "blob": "0f03248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03000008343401000100000000000001d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Reject", + "blob": "0f031a649a1e7bc89d0e95d5f757cdbb718b750e1e48f9962d215e0af9222021403e6400000000000000d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Create proposal as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : True", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789" + "0 | Multisig : Reject", + "1 | Multisig [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "1 | Multisig [2/2] : CXYT6ZmfEg", + "2 | Proposal id : 100", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Multisig : Create proposal as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : True", - "5 | Chain : Polymesh", - "6 | Nonce : 0", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Reject", + "1 | Multisig [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "1 | Multisig [2/2] : CXYT6ZmfEg", + "2 | Proposal id : 100", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 439, - "name": "Multisig_Create_proposal_as_identity", - "blob": "0f03248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03000008343401000100000000000001d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Reject", + "blob": "0f03dec0f4dc5fd3e8d150cf002bc6385185d188545a2d3c35459acb0fac525c27610100000000000000d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Create proposal as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : True" + "0 | Multisig : Reject", + "1 | Multisig [1/2] : 5H6moo4wU5PEeHwthqGaP9oVjjAcG3PXyn196u", + "1 | Multisig [2/2] : hgTRKhjCkB", + "2 | Proposal id : 1", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Multisig : Create proposal as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : True", - "5 | Chain : Polymesh", - "6 | Nonce : 50283", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] + "0 | Multisig : Reject", + "1 | Multisig [1/2] : 5H6moo4wU5PEeHwthqGaP9oVjjAcG3PXyn196u", + "1 | Multisig [2/2] : hgTRKhjCkB", + "2 | Proposal id : 1", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] }, { "index": 440, - "name": "Multisig_Create_proposal_as_identity", - "blob": "0f03248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03000008343401000100000000000000d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Reject", + "blob": "0f03eeee0fc19c12fccb5428f3defc551fa77b3eda70bcf9c86045ade577d0fd15086400000000000000d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Create proposal as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : False", - "5 | Tip : POLYX 0.000987" + "0 | Multisig : Reject", + "1 | Multisig [1/2] : 5HTyyNf3SP6wwvJb6dmojvVT27bFkbLV2QN1Q2", + "1 | Multisig [2/2] : YfRrxBgvey", + "2 | Proposal id : 100", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Multisig : Create proposal as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : False", - "5 | Chain : Polymesh", - "6 | Nonce : 50283", - "7 | Tip : POLYX 0.000987", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Reject", + "1 | Multisig [1/2] : 5HTyyNf3SP6wwvJb6dmojvVT27bFkbLV2QN1Q2", + "1 | Multisig [2/2] : YfRrxBgvey", + "2 | Proposal id : 100", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 441, - "name": "Multisig_Create_proposal_as_key", - "blob": "0f04248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03000008343401800000000000000001d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Accept_multisig_signer", + "blob": "0f040100000000000000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Create proposal as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 128", - "4 | Auto close : True", - "5 | Tip : POLYX 5552342.355555" + "0 | Multisig : Accept multisig signer", + "1 | Auth id : 1", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Multisig : Create proposal as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 128", - "4 | Auto close : True", - "5 | Chain : Polymesh", - "6 | Nonce : 0", - "7 | Tip : POLYX 5552342.355555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Accept multisig signer", + "1 | Auth id : 1", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 442, - "name": "Multisig_Create_proposal_as_key", - "blob": "0f04248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03000008343401800000000000000000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Accept_multisig_signer", + "blob": "0f040000000000000000d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Create proposal as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 128", - "4 | Auto close : False" + "0 | Multisig : Accept multisig signer", + "1 | Auth id : 0", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Multisig : Create proposal as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 128", - "4 | Auto close : False", - "5 | Chain : Polymesh", - "6 | Nonce : 50283", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Accept multisig signer", + "1 | Auth id : 0", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 443, - "name": "Multisig_Create_proposal_as_key", - "blob": "0f04248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03000008343401000100000000000001d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Accept_multisig_signer", + "blob": "0f046bc4000000000000d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Create proposal as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : True", - "5 | Tip : POLYX 0.000987" + "0 | Multisig : Accept multisig signer", + "1 | Auth id : 50283", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Multisig : Create proposal as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : True", - "5 | Chain : Polymesh", - "6 | Nonce : 100", - "7 | Tip : POLYX 0.000987", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Accept multisig signer", + "1 | Auth id : 50283", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 444, - "name": "Multisig_Create_proposal_as_key", - "blob": "0f04248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03000008343401800000000000000000d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Accept_multisig_signer", + "blob": "0f046400000000000000d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Create proposal as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 128", - "4 | Auto close : False", - "5 | Tip : POLYX 55.555555" + "0 | Multisig : Accept multisig signer", + "1 | Auth id : 100", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Multisig : Create proposal as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 128", - "4 | Auto close : False", - "5 | Chain : Polymesh", - "6 | Nonce : 2339", - "7 | Tip : POLYX 55.555555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Accept multisig signer", + "1 | Auth id : 100", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 445, - "name": "Multisig_Create_proposal_as_key", - "blob": "0f04248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03000008343401000800000000000001d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Accept_multisig_signer", + "blob": "0f042309000000000000d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Create proposal as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 2048", - "4 | Auto close : True" + "0 | Multisig : Accept multisig signer", + "1 | Auth id : 2339", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Multisig : Create proposal as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 2048", - "4 | Auto close : True", - "5 | Chain : Polymesh", - "6 | Nonce : 50283", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Accept multisig signer", + "1 | Auth id : 2339", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 446, - "name": "Multisig_Approve_as_identity", - "blob": "0f05248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d036bc4000000000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Add_multisig_signers", + "blob": "0f0508fc9a863c5ca943e65c7d684569c47ab546742a424ca7820283e120ade32a9178c8b3915f5975f15e8cdaadb07e4a4c1c3a81ccef9c31ef586f05cebd7b67ae33d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Approve as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 50283", - "3 | Tip : POLYX 5552342.355555" + "0 | Multisig : Add multisig signers", + "1 | Signers [1/4] : 5Hmupwiuco5a9wCH5FdjReQWqzUmW7ha8ZTY9a", + "1 | Signers [2/4] : 5gbctv48cE", + "1 | Signers [3/4] : 5Gbrn1jpJp6UTVHoHuRBNtpXBLFoNKUbzEKWvH", + "1 | Signers [4/4] : Hr6bKGSKbU" ], "output_expert": [ - "0 | Multisig : Approve as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 50283", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Add multisig signers", + "1 | Signers [1/4] : 5Hmupwiuco5a9wCH5FdjReQWqzUmW7ha8ZTY9a", + "1 | Signers [2/4] : 5gbctv48cE", + "1 | Signers [3/4] : 5Gbrn1jpJp6UTVHoHuRBNtpXBLFoNKUbzEKWvH", + "1 | Signers [4/4] : Hr6bKGSKbU", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 447, - "name": "Multisig_Approve_as_identity", - "blob": "0f05248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d036400000000000000d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Approve as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 100", - "3 | Tip : POLYX 55.555555" + "name": "Multisig_Add_multisig_signers", + "blob": "0f0510b41be4a9192a3003c6bd4612361de6deb0ed3c7c9245b59ec6738871988a7906c6749b8fede42c605741056221977b49999e7ca8771fd872d504ed238ed22125205f5663399fbf1e4ac128becfbb9fac95ffd1d4a1c234f5f673d28db169ec3bfc3c56e582fab6b243da58ac5d4dd82a3787066f058563daac4558d6481e902dd5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Multisig : Add multisig signers", + "1 | Signers [1/8] : 5G8rmB2w9HN2reESJgtaf8WSAGbvtSyzM6pFL3", + "1 | Signers [2/8] : sEKvkp6YdX", + "1 | Signers [3/8] : 5GYuygPkHrUmkyfWsPQ72xznofBeCouZ9vTKDk", + "1 | Signers [4/8] : UhEXW1pq15", + "1 | Signers [5/8] : 5Co9iAk8sCYopCBouNfAs6VEKYkYMPjPov51wg", + "1 | Signers [6/8] : yxqrJTKgJL", + "1 | Signers [7/8] : 5HmRrBA6YdD8y6TVWMK4C6PTRXpWCJsSKoPVto", + "1 | Signers [8/8] : nXBE4t4Ykt", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Multisig : Approve as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 100", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Add multisig signers", + "1 | Signers [1/8] : 5G8rmB2w9HN2reESJgtaf8WSAGbvtSyzM6pFL3", + "1 | Signers [2/8] : sEKvkp6YdX", + "1 | Signers [3/8] : 5GYuygPkHrUmkyfWsPQ72xznofBeCouZ9vTKDk", + "1 | Signers [4/8] : UhEXW1pq15", + "1 | Signers [5/8] : 5Co9iAk8sCYopCBouNfAs6VEKYkYMPjPov51wg", + "1 | Signers [6/8] : yxqrJTKgJL", + "1 | Signers [7/8] : 5HmRrBA6YdD8y6TVWMK4C6PTRXpWCJsSKoPVto", + "1 | Signers [8/8] : nXBE4t4Ykt", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 448, - "name": "Multisig_Approve_as_identity", - "blob": "0f05248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d036400000000000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Approve as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 100", - "3 | Tip : POLYX 5552342.355555" + "name": "Multisig_Add_multisig_signers", + "blob": "0f0510d4ac27f74873e19564c108ed7d831d85a38f77cf561a2e53612f18fa126c347b7ebab0271162946e3fb97b329c3529a02953d39ae7c339bed4f3f7ca6b61ec26f2c856ed9db17485c794806dc183ddea3a96b671190f18ccc58e4e0a6e3a46362e2b97be94191af3e06d8fb3bfb3145551b863170a07ec9d8472adfa50a28464d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Multisig : Add multisig signers", + "1 | Signers [1/8] : 5GsZ9e4wdUDe6VuSifTDpddsTGwXNZJKNwjAMJ", + "1 | Signers [2/8] : oPNRMx7CYs", + "1 | Signers [3/8] : 5EvsMAt7opwhVCjLpCKk3tuEPbH3A5ihut8KbK", + "1 | Signers [4/8] : TzBbZ6EVND", + "1 | Signers [5/8] : 5HZ2xYnM5Ey215dH8Ez3Kebbzx2Sbw5uq9MDmp", + "1 | Signers [6/8] : 7Rk22XQJ58", + "1 | Signers [7/8] : 5D7F1WaV3b5wZqkQBauaddwV41ar6qyptghhvg", + "1 | Signers [8/8] : FQsHxZ7k96", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Multisig : Approve as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 100", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Add multisig signers", + "1 | Signers [1/8] : 5GsZ9e4wdUDe6VuSifTDpddsTGwXNZJKNwjAMJ", + "1 | Signers [2/8] : oPNRMx7CYs", + "1 | Signers [3/8] : 5EvsMAt7opwhVCjLpCKk3tuEPbH3A5ihut8KbK", + "1 | Signers [4/8] : TzBbZ6EVND", + "1 | Signers [5/8] : 5HZ2xYnM5Ey215dH8Ez3Kebbzx2Sbw5uq9MDmp", + "1 | Signers [6/8] : 7Rk22XQJ58", + "1 | Signers [7/8] : 5D7F1WaV3b5wZqkQBauaddwV41ar6qyptghhvg", + "1 | Signers [8/8] : FQsHxZ7k96", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 449, - "name": "Multisig_Approve_as_identity", - "blob": "0f05248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d036400000000000000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Approve as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 100", - "3 | Tip : POLYX 55.555555" + "name": "Multisig_Add_multisig_signers", + "blob": "0f0510de004b31ba3d0033507c46aadcfb5c395b3a18876e631c83b35d532533dbe41ceebb5e5f5c8168e74e4748f401e5368d4f90bbcb705b18772b6f27b8f0a9213144a5566d3abdd0b56e4564d59485367ce5529fa9b92eb180fd4bb153049fce1c1c6e3f2ee5c77180a96869db9e6d3cfbc8e21575e7956f8f48c1f26948269b0ed503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Multisig : Add multisig signers", + "1 | Signers [1/8] : 5H5naHwxVvufkNyAWSjDZzTCGjmrYxX59h4ybP", + "1 | Signers [2/8] : RRfc723fm9", + "1 | Signers [3/8] : 5HTiuxPTVvDUNarWLynCcSBuEavU4aiyYkUBqB", + "1 | Signers [4/8] : f2LFe9d5DG", + "1 | Signers [5/8] : 5DciEE6dEagsjstmhzZugVx4njYtMkhWz1M7zG", + "1 | Signers [6/8] : 2RoN73btZb", + "1 | Signers [7/8] : 5ChywwaX1G7JFSB5HqTXvqM6JWs453yPFZVKqm", + "1 | Signers [8/8] : RmUhwzjaRG", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Multisig : Approve as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 100", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Add multisig signers", + "1 | Signers [1/8] : 5H5naHwxVvufkNyAWSjDZzTCGjmrYxX59h4ybP", + "1 | Signers [2/8] : RRfc723fm9", + "1 | Signers [3/8] : 5HTiuxPTVvDUNarWLynCcSBuEavU4aiyYkUBqB", + "1 | Signers [4/8] : f2LFe9d5DG", + "1 | Signers [5/8] : 5DciEE6dEagsjstmhzZugVx4njYtMkhWz1M7zG", + "1 | Signers [6/8] : 2RoN73btZb", + "1 | Signers [7/8] : 5ChywwaX1G7JFSB5HqTXvqM6JWs453yPFZVKqm", + "1 | Signers [8/8] : RmUhwzjaRG", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 450, - "name": "Multisig_Approve_as_identity", - "blob": "0f05248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d036bc4000000000000d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Approve as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 50283", - "3 | Tip : POLYX 55.555555" + "name": "Multisig_Add_multisig_signers", + "blob": "0f0510da696da947ebb0f5a67c2197645d273a2e8e8b4da7c9a029d73333d31e2f7d2506f9e0de23a824f255492e55931fd27caaec57e6dc8582de067622a9084ce23fbe4f278b05e46ba39eafe23f340ccd01975cef791b26530e25b84b35eadde3065246ec06b5f9e7734a6c29cd3def83894e06e31acf2a6e02549cf28fcba64e5ad503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Multisig : Add multisig signers", + "1 | Signers [1/8] : 5H15ccQwsvRvskpk9Po4YYeUhWTuAN71opC48R", + "1 | Signers [2/8] : 8mCz8xH5KZ", + "1 | Signers [3/8] : 5CDrNduHhP3Jeo6XpfJigb9rmLuuXB7oUFRTqM", + "1 | Signers [4/8] : ziLpwiDfwT", + "1 | Signers [5/8] : 5GNEUA7Miwj9PxoHxGJSRFEswFv6TvSQuHUbCd", + "1 | Signers [6/8] : EMVa64Fhxt", + "1 | Signers [7/8] : 5DvarNAEFyw5hesRcPaQnuHDRpZeQ15TJtdP5e", + "1 | Signers [8/8] : 5JbxY729kW", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Multisig : Approve as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 50283", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Add multisig signers", + "1 | Signers [1/8] : 5H15ccQwsvRvskpk9Po4YYeUhWTuAN71opC48R", + "1 | Signers [2/8] : 8mCz8xH5KZ", + "1 | Signers [3/8] : 5CDrNduHhP3Jeo6XpfJigb9rmLuuXB7oUFRTqM", + "1 | Signers [4/8] : ziLpwiDfwT", + "1 | Signers [5/8] : 5GNEUA7Miwj9PxoHxGJSRFEswFv6TvSQuHUbCd", + "1 | Signers [6/8] : EMVa64Fhxt", + "1 | Signers [7/8] : 5DvarNAEFyw5hesRcPaQnuHDRpZeQ15TJtdP5e", + "1 | Signers [8/8] : 5JbxY729kW", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 451, - "name": "Multisig_Approve_as_key", - "blob": "0f06248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d032309000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Approve as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 2339", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "name": "Multisig_Remove_multisig_signers", + "blob": "0f0608fc9a863c5ca943e65c7d684569c47ab546742a424ca7820283e120ade32a9178c8b3915f5975f15e8cdaadb07e4a4c1c3a81ccef9c31ef586f05cebd7b67ae33d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Multisig : Remove multisig signers", + "1 | Signers [1/4] : 5Hmupwiuco5a9wCH5FdjReQWqzUmW7ha8ZTY9a", + "1 | Signers [2/4] : 5gbctv48cE", + "1 | Signers [3/4] : 5Gbrn1jpJp6UTVHoHuRBNtpXBLFoNKUbzEKWvH", + "1 | Signers [4/4] : Hr6bKGSKbU", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Multisig : Approve as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 2339", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Remove multisig signers", + "1 | Signers [1/4] : 5Hmupwiuco5a9wCH5FdjReQWqzUmW7ha8ZTY9a", + "1 | Signers [2/4] : 5gbctv48cE", + "1 | Signers [3/4] : 5Gbrn1jpJp6UTVHoHuRBNtpXBLFoNKUbzEKWvH", + "1 | Signers [4/4] : Hr6bKGSKbU", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 452, - "name": "Multisig_Approve_as_key", - "blob": "0f06248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d030000000000000000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Approve as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 0", - "3 | Tip : POLYX 1234.56789" + "name": "Multisig_Remove_multisig_signers", + "blob": "0f0610b41be4a9192a3003c6bd4612361de6deb0ed3c7c9245b59ec6738871988a7906c6749b8fede42c605741056221977b49999e7ca8771fd872d504ed238ed22125205f5663399fbf1e4ac128becfbb9fac95ffd1d4a1c234f5f673d28db169ec3bfc3c56e582fab6b243da58ac5d4dd82a3787066f058563daac4558d6481e902dd5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Multisig : Remove multisig signers", + "1 | Signers [1/8] : 5G8rmB2w9HN2reESJgtaf8WSAGbvtSyzM6pFL3", + "1 | Signers [2/8] : sEKvkp6YdX", + "1 | Signers [3/8] : 5GYuygPkHrUmkyfWsPQ72xznofBeCouZ9vTKDk", + "1 | Signers [4/8] : UhEXW1pq15", + "1 | Signers [5/8] : 5Co9iAk8sCYopCBouNfAs6VEKYkYMPjPov51wg", + "1 | Signers [6/8] : yxqrJTKgJL", + "1 | Signers [7/8] : 5HmRrBA6YdD8y6TVWMK4C6PTRXpWCJsSKoPVto", + "1 | Signers [8/8] : nXBE4t4Ykt", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Multisig : Approve as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Remove multisig signers", + "1 | Signers [1/8] : 5G8rmB2w9HN2reESJgtaf8WSAGbvtSyzM6pFL3", + "1 | Signers [2/8] : sEKvkp6YdX", + "1 | Signers [3/8] : 5GYuygPkHrUmkyfWsPQ72xznofBeCouZ9vTKDk", + "1 | Signers [4/8] : UhEXW1pq15", + "1 | Signers [5/8] : 5Co9iAk8sCYopCBouNfAs6VEKYkYMPjPov51wg", + "1 | Signers [6/8] : yxqrJTKgJL", + "1 | Signers [7/8] : 5HmRrBA6YdD8y6TVWMK4C6PTRXpWCJsSKoPVto", + "1 | Signers [8/8] : nXBE4t4Ykt", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 453, - "name": "Multisig_Approve_as_key", - "blob": "0f06248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d030100000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Approve as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 1", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "name": "Multisig_Remove_multisig_signers", + "blob": "0f0610da696da947ebb0f5a67c2197645d273a2e8e8b4da7c9a029d73333d31e2f7d2506f9e0de23a824f255492e55931fd27caaec57e6dc8582de067622a9084ce23fbe4f278b05e46ba39eafe23f340ccd01975cef791b26530e25b84b35eadde3065246ec06b5f9e7734a6c29cd3def83894e06e31acf2a6e02549cf28fcba64e5ad5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Multisig : Remove multisig signers", + "1 | Signers [1/8] : 5H15ccQwsvRvskpk9Po4YYeUhWTuAN71opC48R", + "1 | Signers [2/8] : 8mCz8xH5KZ", + "1 | Signers [3/8] : 5CDrNduHhP3Jeo6XpfJigb9rmLuuXB7oUFRTqM", + "1 | Signers [4/8] : ziLpwiDfwT", + "1 | Signers [5/8] : 5GNEUA7Miwj9PxoHxGJSRFEswFv6TvSQuHUbCd", + "1 | Signers [6/8] : EMVa64Fhxt", + "1 | Signers [7/8] : 5DvarNAEFyw5hesRcPaQnuHDRpZeQ15TJtdP5e", + "1 | Signers [8/8] : 5JbxY729kW", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Multisig : Approve as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 1", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Remove multisig signers", + "1 | Signers [1/8] : 5H15ccQwsvRvskpk9Po4YYeUhWTuAN71opC48R", + "1 | Signers [2/8] : 8mCz8xH5KZ", + "1 | Signers [3/8] : 5CDrNduHhP3Jeo6XpfJigb9rmLuuXB7oUFRTqM", + "1 | Signers [4/8] : ziLpwiDfwT", + "1 | Signers [5/8] : 5GNEUA7Miwj9PxoHxGJSRFEswFv6TvSQuHUbCd", + "1 | Signers [6/8] : EMVa64Fhxt", + "1 | Signers [7/8] : 5DvarNAEFyw5hesRcPaQnuHDRpZeQ15TJtdP5e", + "1 | Signers [8/8] : 5JbxY729kW", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 454, - "name": "Multisig_Approve_as_key", - "blob": "0f06248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d032309000000000000d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Approve as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 2339", - "3 | Tip : POLYX 55.555555" + "name": "Multisig_Remove_multisig_signers", + "blob": "0f0610da696da947ebb0f5a67c2197645d273a2e8e8b4da7c9a029d73333d31e2f7d2506f9e0de23a824f255492e55931fd27caaec57e6dc8582de067622a9084ce23fbe4f278b05e46ba39eafe23f340ccd01975cef791b26530e25b84b35eadde3065246ec06b5f9e7734a6c29cd3def83894e06e31acf2a6e02549cf28fcba64e5ad503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Multisig : Remove multisig signers", + "1 | Signers [1/8] : 5H15ccQwsvRvskpk9Po4YYeUhWTuAN71opC48R", + "1 | Signers [2/8] : 8mCz8xH5KZ", + "1 | Signers [3/8] : 5CDrNduHhP3Jeo6XpfJigb9rmLuuXB7oUFRTqM", + "1 | Signers [4/8] : ziLpwiDfwT", + "1 | Signers [5/8] : 5GNEUA7Miwj9PxoHxGJSRFEswFv6TvSQuHUbCd", + "1 | Signers [6/8] : EMVa64Fhxt", + "1 | Signers [7/8] : 5DvarNAEFyw5hesRcPaQnuHDRpZeQ15TJtdP5e", + "1 | Signers [8/8] : 5JbxY729kW", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Multisig : Approve as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 2339", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 455, - "name": "Multisig_Approve_as_key", - "blob": "0f06248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d036400000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Approve as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 100", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Multisig : Remove multisig signers", + "1 | Signers [1/8] : 5H15ccQwsvRvskpk9Po4YYeUhWTuAN71opC48R", + "1 | Signers [2/8] : 8mCz8xH5KZ", + "1 | Signers [3/8] : 5CDrNduHhP3Jeo6XpfJigb9rmLuuXB7oUFRTqM", + "1 | Signers [4/8] : ziLpwiDfwT", + "1 | Signers [5/8] : 5GNEUA7Miwj9PxoHxGJSRFEswFv6TvSQuHUbCd", + "1 | Signers [6/8] : EMVa64Fhxt", + "1 | Signers [7/8] : 5DvarNAEFyw5hesRcPaQnuHDRpZeQ15TJtdP5e", + "1 | Signers [8/8] : 5JbxY729kW", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 455, + "name": "Multisig_Remove_multisig_signers", + "blob": "0f0610da696da947ebb0f5a67c2197645d273a2e8e8b4da7c9a029d73333d31e2f7d2506f9e0de23a824f255492e55931fd27caaec57e6dc8582de067622a9084ce23fbe4f278b05e46ba39eafe23f340ccd01975cef791b26530e25b84b35eadde3065246ec06b5f9e7734a6c29cd3def83894e06e31acf2a6e02549cf28fcba64e5ad503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Multisig : Remove multisig signers", + "1 | Signers [1/8] : 5H15ccQwsvRvskpk9Po4YYeUhWTuAN71opC48R", + "1 | Signers [2/8] : 8mCz8xH5KZ", + "1 | Signers [3/8] : 5CDrNduHhP3Jeo6XpfJigb9rmLuuXB7oUFRTqM", + "1 | Signers [4/8] : ziLpwiDfwT", + "1 | Signers [5/8] : 5GNEUA7Miwj9PxoHxGJSRFEswFv6TvSQuHUbCd", + "1 | Signers [6/8] : EMVa64Fhxt", + "1 | Signers [7/8] : 5DvarNAEFyw5hesRcPaQnuHDRpZeQ15TJtdP5e", + "1 | Signers [8/8] : 5JbxY729kW", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Multisig : Approve as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 100", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Remove multisig signers", + "1 | Signers [1/8] : 5H15ccQwsvRvskpk9Po4YYeUhWTuAN71opC48R", + "1 | Signers [2/8] : 8mCz8xH5KZ", + "1 | Signers [3/8] : 5CDrNduHhP3Jeo6XpfJigb9rmLuuXB7oUFRTqM", + "1 | Signers [4/8] : ziLpwiDfwT", + "1 | Signers [5/8] : 5GNEUA7Miwj9PxoHxGJSRFEswFv6TvSQuHUbCd", + "1 | Signers [6/8] : EMVa64Fhxt", + "1 | Signers [7/8] : 5DvarNAEFyw5hesRcPaQnuHDRpZeQ15TJtdP5e", + "1 | Signers [8/8] : 5JbxY729kW", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 456, - "name": "Multisig_Reject_as_identity", - "blob": "0f07248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d036bc4000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Reject as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 50283", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "name": "Multisig_Add_multisig_signers_via_admin", + "blob": "0f07ca2d8f06d9c35d80eec81d49959918c1e6c09c314b6154fbf6e2665abc512a2410da696da947ebb0f5a67c2197645d273a2e8e8b4da7c9a029d73333d31e2f7d2506f9e0de23a824f255492e55931fd27caaec57e6dc8582de067622a9084ce23fbe4f278b05e46ba39eafe23f340ccd01975cef791b26530e25b84b35eadde3065246ec06b5f9e7734a6c29cd3def83894e06e31acf2a6e02549cf28fcba64e5ad5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Multisig : Add multisig signers via admin", + "1 | Multisig [1/2] : 5Gdo4eJq3jwcZ8ncshpMoSPMm3ypeeNe2441To", + "1 | Multisig [2/2] : B8w88odrQ1", + "2 | Signers [1/8] : 5H15ccQwsvRvskpk9Po4YYeUhWTuAN71opC48R", + "2 | Signers [2/8] : 8mCz8xH5KZ", + "2 | Signers [3/8] : 5CDrNduHhP3Jeo6XpfJigb9rmLuuXB7oUFRTqM", + "2 | Signers [4/8] : ziLpwiDfwT", + "2 | Signers [5/8] : 5GNEUA7Miwj9PxoHxGJSRFEswFv6TvSQuHUbCd", + "2 | Signers [6/8] : EMVa64Fhxt", + "2 | Signers [7/8] : 5DvarNAEFyw5hesRcPaQnuHDRpZeQ15TJtdP5e", + "2 | Signers [8/8] : 5JbxY729kW", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Multisig : Reject as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 50283", + "0 | Multisig : Add multisig signers via admin", + "1 | Multisig [1/2] : 5Gdo4eJq3jwcZ8ncshpMoSPMm3ypeeNe2441To", + "1 | Multisig [2/2] : B8w88odrQ1", + "2 | Signers [1/8] : 5H15ccQwsvRvskpk9Po4YYeUhWTuAN71opC48R", + "2 | Signers [2/8] : 8mCz8xH5KZ", + "2 | Signers [3/8] : 5CDrNduHhP3Jeo6XpfJigb9rmLuuXB7oUFRTqM", + "2 | Signers [4/8] : ziLpwiDfwT", + "2 | Signers [5/8] : 5GNEUA7Miwj9PxoHxGJSRFEswFv6TvSQuHUbCd", + "2 | Signers [6/8] : EMVa64Fhxt", + "2 | Signers [7/8] : 5DvarNAEFyw5hesRcPaQnuHDRpZeQ15TJtdP5e", + "2 | Signers [8/8] : 5JbxY729kW", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 2339", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 457, - "name": "Multisig_Reject_as_identity", - "blob": "0f07248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d036bc4000000000000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Reject as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 50283", - "3 | Tip : POLYX 1234.56789" + "name": "Multisig_Add_multisig_signers_via_admin", + "blob": "0f07b04675564efc66c59b629d4f6f844923f271ebf08fc297a0781f89731bead17f10b41be4a9192a3003c6bd4612361de6deb0ed3c7c9245b59ec6738871988a7906c6749b8fede42c605741056221977b49999e7ca8771fd872d504ed238ed22125205f5663399fbf1e4ac128becfbb9fac95ffd1d4a1c234f5f673d28db169ec3bfc3c56e582fab6b243da58ac5d4dd82a3787066f058563daac4558d6481e902dd503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Multisig : Add multisig signers via admin", + "1 | Multisig [1/2] : 5G3qDSksiTK2F5KmS1yryVsRfXMzt1aczrKXJY", + "1 | Multisig [2/2] : FkFzoSF4YP", + "2 | Signers [1/8] : 5G8rmB2w9HN2reESJgtaf8WSAGbvtSyzM6pFL3", + "2 | Signers [2/8] : sEKvkp6YdX", + "2 | Signers [3/8] : 5GYuygPkHrUmkyfWsPQ72xznofBeCouZ9vTKDk", + "2 | Signers [4/8] : UhEXW1pq15", + "2 | Signers [5/8] : 5Co9iAk8sCYopCBouNfAs6VEKYkYMPjPov51wg", + "2 | Signers [6/8] : yxqrJTKgJL", + "2 | Signers [7/8] : 5HmRrBA6YdD8y6TVWMK4C6PTRXpWCJsSKoPVto", + "2 | Signers [8/8] : nXBE4t4Ykt", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Multisig : Reject as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 50283", + "0 | Multisig : Add multisig signers via admin", + "1 | Multisig [1/2] : 5G3qDSksiTK2F5KmS1yryVsRfXMzt1aczrKXJY", + "1 | Multisig [2/2] : FkFzoSF4YP", + "2 | Signers [1/8] : 5G8rmB2w9HN2reESJgtaf8WSAGbvtSyzM6pFL3", + "2 | Signers [2/8] : sEKvkp6YdX", + "2 | Signers [3/8] : 5GYuygPkHrUmkyfWsPQ72xznofBeCouZ9vTKDk", + "2 | Signers [4/8] : UhEXW1pq15", + "2 | Signers [5/8] : 5Co9iAk8sCYopCBouNfAs6VEKYkYMPjPov51wg", + "2 | Signers [6/8] : yxqrJTKgJL", + "2 | Signers [7/8] : 5HmRrBA6YdD8y6TVWMK4C6PTRXpWCJsSKoPVto", + "2 | Signers [8/8] : nXBE4t4Ykt", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 1", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 458, - "name": "Multisig_Reject_as_identity", - "blob": "0f07248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d036400000000000000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Reject as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 100" + "name": "Multisig_Add_multisig_signers_via_admin", + "blob": "0f071a649a1e7bc89d0e95d5f757cdbb718b750e1e48f9962d215e0af9222021403e10da696da947ebb0f5a67c2197645d273a2e8e8b4da7c9a029d73333d31e2f7d2506f9e0de23a824f255492e55931fd27caaec57e6dc8582de067622a9084ce23fbe4f278b05e46ba39eafe23f340ccd01975cef791b26530e25b84b35eadde3065246ec06b5f9e7734a6c29cd3def83894e06e31acf2a6e02549cf28fcba64e5ad5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Multisig : Add multisig signers via admin", + "1 | Multisig [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "1 | Multisig [2/2] : CXYT6ZmfEg", + "2 | Signers [1/8] : 5H15ccQwsvRvskpk9Po4YYeUhWTuAN71opC48R", + "2 | Signers [2/8] : 8mCz8xH5KZ", + "2 | Signers [3/8] : 5CDrNduHhP3Jeo6XpfJigb9rmLuuXB7oUFRTqM", + "2 | Signers [4/8] : ziLpwiDfwT", + "2 | Signers [5/8] : 5GNEUA7Miwj9PxoHxGJSRFEswFv6TvSQuHUbCd", + "2 | Signers [6/8] : EMVa64Fhxt", + "2 | Signers [7/8] : 5DvarNAEFyw5hesRcPaQnuHDRpZeQ15TJtdP5e", + "2 | Signers [8/8] : 5JbxY729kW", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Multisig : Reject as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 100", + "0 | Multisig : Add multisig signers via admin", + "1 | Multisig [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "1 | Multisig [2/2] : CXYT6ZmfEg", + "2 | Signers [1/8] : 5H15ccQwsvRvskpk9Po4YYeUhWTuAN71opC48R", + "2 | Signers [2/8] : 8mCz8xH5KZ", + "2 | Signers [3/8] : 5CDrNduHhP3Jeo6XpfJigb9rmLuuXB7oUFRTqM", + "2 | Signers [4/8] : ziLpwiDfwT", + "2 | Signers [5/8] : 5GNEUA7Miwj9PxoHxGJSRFEswFv6TvSQuHUbCd", + "2 | Signers [6/8] : EMVa64Fhxt", + "2 | Signers [7/8] : 5DvarNAEFyw5hesRcPaQnuHDRpZeQ15TJtdP5e", + "2 | Signers [8/8] : 5JbxY729kW", "3 | Chain : Polymesh", "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 459, - "name": "Multisig_Reject_as_identity", - "blob": "0f07248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d030000000000000000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Reject as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 0", - "3 | Tip : POLYX 55.555555" + "name": "Multisig_Add_multisig_signers_via_admin", + "blob": "0f071a649a1e7bc89d0e95d5f757cdbb718b750e1e48f9962d215e0af9222021403e08fc9a863c5ca943e65c7d684569c47ab546742a424ca7820283e120ade32a9178c8b3915f5975f15e8cdaadb07e4a4c1c3a81ccef9c31ef586f05cebd7b67ae33d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Multisig : Add multisig signers via admin", + "1 | Multisig [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "1 | Multisig [2/2] : CXYT6ZmfEg", + "2 | Signers [1/4] : 5Hmupwiuco5a9wCH5FdjReQWqzUmW7ha8ZTY9a", + "2 | Signers [2/4] : 5gbctv48cE", + "2 | Signers [3/4] : 5Gbrn1jpJp6UTVHoHuRBNtpXBLFoNKUbzEKWvH", + "2 | Signers [4/4] : Hr6bKGSKbU", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Multisig : Reject as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 0", + "0 | Multisig : Add multisig signers via admin", + "1 | Multisig [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "1 | Multisig [2/2] : CXYT6ZmfEg", + "2 | Signers [1/4] : 5Hmupwiuco5a9wCH5FdjReQWqzUmW7ha8ZTY9a", + "2 | Signers [2/4] : 5gbctv48cE", + "2 | Signers [3/4] : 5Gbrn1jpJp6UTVHoHuRBNtpXBLFoNKUbzEKWvH", + "2 | Signers [4/4] : Hr6bKGSKbU", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 2339", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 460, - "name": "Multisig_Reject_as_identity", - "blob": "0f07248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d030000000000000000d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Reject as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 0" + "name": "Multisig_Add_multisig_signers_via_admin", + "blob": "0f071ea4f867cc0e916cfbaa637a01eea0d3163df7d154720f78571790913a63521914dcced4081f7b31b75c9cb920e8f10cda2cd250e7a5a9fd05a6017d5b334b28320ecc2eb3a6a0251f94c29c94a03303319c56f479d09cdf09d0f1d746dc7df47cf8f12c2c6a20c140be30c2064d886306a567e23c2ae011d961da6a5dd078732264213d81160bb0136bd546f37c5d335e230619a5c75edf682e6837a444fae26a8ed2cdf642cff7eac8d4465e27114e36aadb57a0eb0e482eb3b3b1daa2a0d535d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Multisig : Add multisig signers via admin", + "1 | Multisig [1/2] : 5CktJMt3EL46Fd9cgCmATqUnc4rBP6d1LDcAvK", + "1 | Multisig [2/2] : SX5DnQkqUa", + "2 | Signers [1/10] : 5H4DqFBc4BppXpSEakMAbVaFEH9rB4Ssqw5CEp", + "2 | Signers [2/10] : pjcDpZe23Z", + "2 | Signers [3/10] : 5CQ7BXqWNLuXT57Mmnm8CJuLwy8m4Ky3vj51Xv", + "2 | Signers [4/10] : aMqacnZ4GB", + "2 | Signers [5/10] : 5Hh7NkNqKP5HRVxQ3FhiH1K4SAxBm1e38wyhQo", + "2 | Signers [6/10] : rZjuZCj1SC", + "2 | Signers [7/10] : 5EKzX7hFHRHA3ojQRM4iqbeqcyKyHqx76nZZYT", + "2 | Signers [8/10] : yPdW3t4fSv", + "2 | Signers [9/10] : 5FHyH8CAdGTxVMEXFVAGHARoymUR7pqtgYNF1N", + "2 | Signers [10/10] : bNVRiFsnsB", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Multisig : Reject as identity", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 0", + "0 | Multisig : Add multisig signers via admin", + "1 | Multisig [1/2] : 5CktJMt3EL46Fd9cgCmATqUnc4rBP6d1LDcAvK", + "1 | Multisig [2/2] : SX5DnQkqUa", + "2 | Signers [1/10] : 5H4DqFBc4BppXpSEakMAbVaFEH9rB4Ssqw5CEp", + "2 | Signers [2/10] : pjcDpZe23Z", + "2 | Signers [3/10] : 5CQ7BXqWNLuXT57Mmnm8CJuLwy8m4Ky3vj51Xv", + "2 | Signers [4/10] : aMqacnZ4GB", + "2 | Signers [5/10] : 5Hh7NkNqKP5HRVxQ3FhiH1K4SAxBm1e38wyhQo", + "2 | Signers [6/10] : rZjuZCj1SC", + "2 | Signers [7/10] : 5EKzX7hFHRHA3ojQRM4iqbeqcyKyHqx76nZZYT", + "2 | Signers [8/10] : yPdW3t4fSv", + "2 | Signers [9/10] : 5FHyH8CAdGTxVMEXFVAGHARoymUR7pqtgYNF1N", + "2 | Signers [10/10] : bNVRiFsnsB", "3 | Chain : Polymesh", "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 461, - "name": "Multisig_Reject_as_key", - "blob": "0f08248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d030000000000000000d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Reject as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 0", - "3 | Tip : POLYX 5552342.355555" + "name": "Multisig_Remove_multisig_signers_via_admin", + "blob": "0f08dec0f4dc5fd3e8d150cf002bc6385185d188545a2d3c35459acb0fac525c276110de004b31ba3d0033507c46aadcfb5c395b3a18876e631c83b35d532533dbe41ceebb5e5f5c8168e74e4748f401e5368d4f90bbcb705b18772b6f27b8f0a9213144a5566d3abdd0b56e4564d59485367ce5529fa9b92eb180fd4bb153049fce1c1c6e3f2ee5c77180a96869db9e6d3cfbc8e21575e7956f8f48c1f26948269b0ed5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Multisig : Remove multisig signers via admin", + "1 | Multisig [1/2] : 5H6moo4wU5PEeHwthqGaP9oVjjAcG3PXyn196u", + "1 | Multisig [2/2] : hgTRKhjCkB", + "2 | Signers [1/8] : 5H5naHwxVvufkNyAWSjDZzTCGjmrYxX59h4ybP", + "2 | Signers [2/8] : RRfc723fm9", + "2 | Signers [3/8] : 5HTiuxPTVvDUNarWLynCcSBuEavU4aiyYkUBqB", + "2 | Signers [4/8] : f2LFe9d5DG", + "2 | Signers [5/8] : 5DciEE6dEagsjstmhzZugVx4njYtMkhWz1M7zG", + "2 | Signers [6/8] : 2RoN73btZb", + "2 | Signers [7/8] : 5ChywwaX1G7JFSB5HqTXvqM6JWs453yPFZVKqm", + "2 | Signers [8/8] : RmUhwzjaRG", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Multisig : Reject as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 0", + "0 | Multisig : Remove multisig signers via admin", + "1 | Multisig [1/2] : 5H6moo4wU5PEeHwthqGaP9oVjjAcG3PXyn196u", + "1 | Multisig [2/2] : hgTRKhjCkB", + "2 | Signers [1/8] : 5H5naHwxVvufkNyAWSjDZzTCGjmrYxX59h4ybP", + "2 | Signers [2/8] : RRfc723fm9", + "2 | Signers [3/8] : 5HTiuxPTVvDUNarWLynCcSBuEavU4aiyYkUBqB", + "2 | Signers [4/8] : f2LFe9d5DG", + "2 | Signers [5/8] : 5DciEE6dEagsjstmhzZugVx4njYtMkhWz1M7zG", + "2 | Signers [6/8] : 2RoN73btZb", + "2 | Signers [7/8] : 5ChywwaX1G7JFSB5HqTXvqM6JWs453yPFZVKqm", + "2 | Signers [8/8] : RmUhwzjaRG", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 1", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 462, - "name": "Multisig_Reject_as_key", - "blob": "0f08248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d030000000000000000d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Reject as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 0", - "3 | Tip : POLYX 0.000987" + "name": "Multisig_Remove_multisig_signers_via_admin", + "blob": "0f08ca2d8f06d9c35d80eec81d49959918c1e6c09c314b6154fbf6e2665abc512a2410d4ac27f74873e19564c108ed7d831d85a38f77cf561a2e53612f18fa126c347b7ebab0271162946e3fb97b329c3529a02953d39ae7c339bed4f3f7ca6b61ec26f2c856ed9db17485c794806dc183ddea3a96b671190f18ccc58e4e0a6e3a46362e2b97be94191af3e06d8fb3bfb3145551b863170a07ec9d8472adfa50a28464d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Multisig : Remove multisig signers via admin", + "1 | Multisig [1/2] : 5Gdo4eJq3jwcZ8ncshpMoSPMm3ypeeNe2441To", + "1 | Multisig [2/2] : B8w88odrQ1", + "2 | Signers [1/8] : 5GsZ9e4wdUDe6VuSifTDpddsTGwXNZJKNwjAMJ", + "2 | Signers [2/8] : oPNRMx7CYs", + "2 | Signers [3/8] : 5EvsMAt7opwhVCjLpCKk3tuEPbH3A5ihut8KbK", + "2 | Signers [4/8] : TzBbZ6EVND", + "2 | Signers [5/8] : 5HZ2xYnM5Ey215dH8Ez3Kebbzx2Sbw5uq9MDmp", + "2 | Signers [6/8] : 7Rk22XQJ58", + "2 | Signers [7/8] : 5D7F1WaV3b5wZqkQBauaddwV41ar6qyptghhvg", + "2 | Signers [8/8] : FQsHxZ7k96", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Multisig : Reject as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 0", + "0 | Multisig : Remove multisig signers via admin", + "1 | Multisig [1/2] : 5Gdo4eJq3jwcZ8ncshpMoSPMm3ypeeNe2441To", + "1 | Multisig [2/2] : B8w88odrQ1", + "2 | Signers [1/8] : 5GsZ9e4wdUDe6VuSifTDpddsTGwXNZJKNwjAMJ", + "2 | Signers [2/8] : oPNRMx7CYs", + "2 | Signers [3/8] : 5EvsMAt7opwhVCjLpCKk3tuEPbH3A5ihut8KbK", + "2 | Signers [4/8] : TzBbZ6EVND", + "2 | Signers [5/8] : 5HZ2xYnM5Ey215dH8Ez3Kebbzx2Sbw5uq9MDmp", + "2 | Signers [6/8] : 7Rk22XQJ58", + "2 | Signers [7/8] : 5D7F1WaV3b5wZqkQBauaddwV41ar6qyptghhvg", + "2 | Signers [8/8] : FQsHxZ7k96", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 2339", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 463, - "name": "Multisig_Reject_as_key", - "blob": "0f08248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d030000000000000000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Reject as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 0", - "3 | Tip : POLYX 1234.56789" + "name": "Multisig_Remove_multisig_signers_via_admin", + "blob": "0f08ca2d8f06d9c35d80eec81d49959918c1e6c09c314b6154fbf6e2665abc512a2408fc9a863c5ca943e65c7d684569c47ab546742a424ca7820283e120ade32a9178c8b3915f5975f15e8cdaadb07e4a4c1c3a81ccef9c31ef586f05cebd7b67ae33d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Multisig : Remove multisig signers via admin", + "1 | Multisig [1/2] : 5Gdo4eJq3jwcZ8ncshpMoSPMm3ypeeNe2441To", + "1 | Multisig [2/2] : B8w88odrQ1", + "2 | Signers [1/4] : 5Hmupwiuco5a9wCH5FdjReQWqzUmW7ha8ZTY9a", + "2 | Signers [2/4] : 5gbctv48cE", + "2 | Signers [3/4] : 5Gbrn1jpJp6UTVHoHuRBNtpXBLFoNKUbzEKWvH", + "2 | Signers [4/4] : Hr6bKGSKbU", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Multisig : Reject as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 0", + "0 | Multisig : Remove multisig signers via admin", + "1 | Multisig [1/2] : 5Gdo4eJq3jwcZ8ncshpMoSPMm3ypeeNe2441To", + "1 | Multisig [2/2] : B8w88odrQ1", + "2 | Signers [1/4] : 5Hmupwiuco5a9wCH5FdjReQWqzUmW7ha8ZTY9a", + "2 | Signers [2/4] : 5gbctv48cE", + "2 | Signers [3/4] : 5Gbrn1jpJp6UTVHoHuRBNtpXBLFoNKUbzEKWvH", + "2 | Signers [4/4] : Hr6bKGSKbU", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 2339", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 464, - "name": "Multisig_Reject_as_key", - "blob": "0f08248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d036400000000000000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Reject as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 100", - "3 | Tip : POLYX 0.000987" + "name": "Multisig_Remove_multisig_signers_via_admin", + "blob": "0f08eeee0fc19c12fccb5428f3defc551fa77b3eda70bcf9c86045ade577d0fd150810de004b31ba3d0033507c46aadcfb5c395b3a18876e631c83b35d532533dbe41ceebb5e5f5c8168e74e4748f401e5368d4f90bbcb705b18772b6f27b8f0a9213144a5566d3abdd0b56e4564d59485367ce5529fa9b92eb180fd4bb153049fce1c1c6e3f2ee5c77180a96869db9e6d3cfbc8e21575e7956f8f48c1f26948269b0ed503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Multisig : Remove multisig signers via admin", + "1 | Multisig [1/2] : 5HTyyNf3SP6wwvJb6dmojvVT27bFkbLV2QN1Q2", + "1 | Multisig [2/2] : YfRrxBgvey", + "2 | Signers [1/8] : 5H5naHwxVvufkNyAWSjDZzTCGjmrYxX59h4ybP", + "2 | Signers [2/8] : RRfc723fm9", + "2 | Signers [3/8] : 5HTiuxPTVvDUNarWLynCcSBuEavU4aiyYkUBqB", + "2 | Signers [4/8] : f2LFe9d5DG", + "2 | Signers [5/8] : 5DciEE6dEagsjstmhzZugVx4njYtMkhWz1M7zG", + "2 | Signers [6/8] : 2RoN73btZb", + "2 | Signers [7/8] : 5ChywwaX1G7JFSB5HqTXvqM6JWs453yPFZVKqm", + "2 | Signers [8/8] : RmUhwzjaRG", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Multisig : Reject as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 100", + "0 | Multisig : Remove multisig signers via admin", + "1 | Multisig [1/2] : 5HTyyNf3SP6wwvJb6dmojvVT27bFkbLV2QN1Q2", + "1 | Multisig [2/2] : YfRrxBgvey", + "2 | Signers [1/8] : 5H5naHwxVvufkNyAWSjDZzTCGjmrYxX59h4ybP", + "2 | Signers [2/8] : RRfc723fm9", + "2 | Signers [3/8] : 5HTiuxPTVvDUNarWLynCcSBuEavU4aiyYkUBqB", + "2 | Signers [4/8] : f2LFe9d5DG", + "2 | Signers [5/8] : 5DciEE6dEagsjstmhzZugVx4njYtMkhWz1M7zG", + "2 | Signers [6/8] : 2RoN73btZb", + "2 | Signers [7/8] : 5ChywwaX1G7JFSB5HqTXvqM6JWs453yPFZVKqm", + "2 | Signers [8/8] : RmUhwzjaRG", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 50283", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 465, - "name": "Multisig_Reject_as_key", - "blob": "0f08248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d036bc4000000000000d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Reject as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 50283", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Multisig : Reject as key", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 50283", + "name": "Multisig_Remove_multisig_signers_via_admin", + "blob": "0f08746a25ffb64614dd2c7d8f53d247e39763261a2a4c187c424c51edb971f3d43510de004b31ba3d0033507c46aadcfb5c395b3a18876e631c83b35d532533dbe41ceebb5e5f5c8168e74e4748f401e5368d4f90bbcb705b18772b6f27b8f0a9213144a5566d3abdd0b56e4564d59485367ce5529fa9b92eb180fd4bb153049fce1c1c6e3f2ee5c77180a96869db9e6d3cfbc8e21575e7956f8f48c1f26948269b0ed5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Multisig : Remove multisig signers via admin", + "1 | Multisig [1/2] : 5EhLwjQbRibvSWhbsvw5hvYdKHYF5besUgGbjx", + "1 | Multisig [2/2] : guT8977hVy", + "2 | Signers [1/8] : 5H5naHwxVvufkNyAWSjDZzTCGjmrYxX59h4ybP", + "2 | Signers [2/8] : RRfc723fm9", + "2 | Signers [3/8] : 5HTiuxPTVvDUNarWLynCcSBuEavU4aiyYkUBqB", + "2 | Signers [4/8] : f2LFe9d5DG", + "2 | Signers [5/8] : 5DciEE6dEagsjstmhzZugVx4njYtMkhWz1M7zG", + "2 | Signers [6/8] : 2RoN73btZb", + "2 | Signers [7/8] : 5ChywwaX1G7JFSB5HqTXvqM6JWs453yPFZVKqm", + "2 | Signers [8/8] : RmUhwzjaRG" + ], + "output_expert": [ + "0 | Multisig : Remove multisig signers via admin", + "1 | Multisig [1/2] : 5EhLwjQbRibvSWhbsvw5hvYdKHYF5besUgGbjx", + "1 | Multisig [2/2] : guT8977hVy", + "2 | Signers [1/8] : 5H5naHwxVvufkNyAWSjDZzTCGjmrYxX59h4ybP", + "2 | Signers [2/8] : RRfc723fm9", + "2 | Signers [3/8] : 5HTiuxPTVvDUNarWLynCcSBuEavU4aiyYkUBqB", + "2 | Signers [4/8] : f2LFe9d5DG", + "2 | Signers [5/8] : 5DciEE6dEagsjstmhzZugVx4njYtMkhWz1M7zG", + "2 | Signers [6/8] : 2RoN73btZb", + "2 | Signers [7/8] : 5ChywwaX1G7JFSB5HqTXvqM6JWs453yPFZVKqm", + "2 | Signers [8/8] : RmUhwzjaRG", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 2339", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 466, - "name": "Multisig_Accept_multisig_signer_as_identity", - "blob": "0f090000000000000000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Change_sigs_required", + "blob": "0f096bc4000000000000d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Accept multisig signer as identity", - "1 | Auth id : 0" + "0 | Multisig : Change sigs required", + "1 | Sigs required : 50283", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Multisig : Accept multisig signer as identity", - "1 | Auth id : 0", + "0 | Multisig : Change sigs required", + "1 | Sigs required : 50283", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 0", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 467, - "name": "Multisig_Accept_multisig_signer_as_identity", - "blob": "0f096bc4000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Change_sigs_required", + "blob": "0f090100000000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Accept multisig signer as identity", - "1 | Auth id : 50283", + "0 | Multisig : Change sigs required", + "1 | Sigs required : 1", "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Multisig : Accept multisig signer as identity", - "1 | Auth id : 50283", + "0 | Multisig : Change sigs required", + "1 | Sigs required : 1", "2 | Chain : Polymesh", - "3 | Nonce : 1", + "3 | Nonce : 50283", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 468, - "name": "Multisig_Accept_multisig_signer_as_identity", - "blob": "0f090100000000000000d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Change_sigs_required", + "blob": "0f096400000000000000d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Accept multisig signer as identity", - "1 | Auth id : 1" + "0 | Multisig : Change sigs required", + "1 | Sigs required : 100", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Multisig : Accept multisig signer as identity", - "1 | Auth id : 1", + "0 | Multisig : Change sigs required", + "1 | Sigs required : 100", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 469, - "name": "Multisig_Accept_multisig_signer_as_identity", - "blob": "0f090000000000000000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Change_sigs_required", + "blob": "0f090000000000000000d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Accept multisig signer as identity", - "1 | Auth id : 0", + "0 | Multisig : Change sigs required", + "1 | Sigs required : 0", "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Multisig : Accept multisig signer as identity", - "1 | Auth id : 0", + "0 | Multisig : Change sigs required", + "1 | Sigs required : 0", "2 | Chain : Polymesh", - "3 | Nonce : 2339", + "3 | Nonce : 100", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 470, - "name": "Multisig_Accept_multisig_signer_as_identity", - "blob": "0f090100000000000000d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Change_sigs_required", + "blob": "0f090000000000000000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Accept multisig signer as identity", - "1 | Auth id : 1", - "2 | Tip : POLYX 55.555555" + "0 | Multisig : Change sigs required", + "1 | Sigs required : 0", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Multisig : Accept multisig signer as identity", - "1 | Auth id : 1", + "0 | Multisig : Change sigs required", + "1 | Sigs required : 0", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 50283", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 471, - "name": "Multisig_Accept_multisig_signer_as_key", - "blob": "0f0a6bc4000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Change_sigs_required_via_admin", + "blob": "0f0a746a25ffb64614dd2c7d8f53d247e39763261a2a4c187c424c51edb971f3d4350100000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Accept multisig signer as key", - "1 | Auth id : 50283", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Multisig : Change sigs required via admin", + "1 | Multisig [1/2] : 5EhLwjQbRibvSWhbsvw5hvYdKHYF5besUgGbjx", + "1 | Multisig [2/2] : guT8977hVy", + "2 | Signatures required : 1", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Multisig : Accept multisig signer as key", - "1 | Auth id : 50283", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Change sigs required via admin", + "1 | Multisig [1/2] : 5EhLwjQbRibvSWhbsvw5hvYdKHYF5besUgGbjx", + "1 | Multisig [2/2] : guT8977hVy", + "2 | Signatures required : 1", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 472, - "name": "Multisig_Accept_multisig_signer_as_key", - "blob": "0f0a6400000000000000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Change_sigs_required_via_admin", + "blob": "0f0ab04675564efc66c59b629d4f6f844923f271ebf08fc297a0781f89731bead17f6bc4000000000000d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Accept multisig signer as key", - "1 | Auth id : 100" + "0 | Multisig : Change sigs required via admin", + "1 | Multisig [1/2] : 5G3qDSksiTK2F5KmS1yryVsRfXMzt1aczrKXJY", + "1 | Multisig [2/2] : FkFzoSF4YP", + "2 | Signatures required : 50283", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Multisig : Accept multisig signer as key", - "1 | Auth id : 100", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Change sigs required via admin", + "1 | Multisig [1/2] : 5G3qDSksiTK2F5KmS1yryVsRfXMzt1aczrKXJY", + "1 | Multisig [2/2] : FkFzoSF4YP", + "2 | Signatures required : 50283", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 473, - "name": "Multisig_Accept_multisig_signer_as_key", - "blob": "0f0a2309000000000000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Change_sigs_required_via_admin", + "blob": "0f0a1ea4f867cc0e916cfbaa637a01eea0d3163df7d154720f78571790913a6352196400000000000000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Accept multisig signer as key", - "1 | Auth id : 2339", - "2 | Tip : POLYX 1234.56789" + "0 | Multisig : Change sigs required via admin", + "1 | Multisig [1/2] : 5CktJMt3EL46Fd9cgCmATqUnc4rBP6d1LDcAvK", + "1 | Multisig [2/2] : SX5DnQkqUa", + "2 | Signatures required : 100" ], "output_expert": [ - "0 | Multisig : Accept multisig signer as key", - "1 | Auth id : 2339", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", + "0 | Multisig : Change sigs required via admin", + "1 | Multisig [1/2] : 5CktJMt3EL46Fd9cgCmATqUnc4rBP6d1LDcAvK", + "1 | Multisig [2/2] : SX5DnQkqUa", + "2 | Signatures required : 100", + "3 | Chain : Polymesh", + "4 | Nonce : 1", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 474, - "name": "Multisig_Accept_multisig_signer_as_key", - "blob": "0f0a6bc4000000000000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Change_sigs_required_via_admin", + "blob": "0f0aeeee0fc19c12fccb5428f3defc551fa77b3eda70bcf9c86045ade577d0fd15086bc4000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Accept multisig signer as key", - "1 | Auth id : 50283" + "0 | Multisig : Change sigs required via admin", + "1 | Multisig [1/2] : 5HTyyNf3SP6wwvJb6dmojvVT27bFkbLV2QN1Q2", + "1 | Multisig [2/2] : YfRrxBgvey", + "2 | Signatures required : 50283", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Multisig : Accept multisig signer as key", - "1 | Auth id : 50283", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Change sigs required via admin", + "1 | Multisig [1/2] : 5HTyyNf3SP6wwvJb6dmojvVT27bFkbLV2QN1Q2", + "1 | Multisig [2/2] : YfRrxBgvey", + "2 | Signatures required : 50283", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 475, - "name": "Multisig_Accept_multisig_signer_as_key", - "blob": "0f0a6400000000000000d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Change_sigs_required_via_admin", + "blob": "0f0ab0a4982a123e870e98be45944a32d76664a4cc899c3810c0300718516f0cb60a0100000000000000d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Accept multisig signer as key", - "1 | Auth id : 100" + "0 | Multisig : Change sigs required via admin", + "1 | Multisig [1/2] : 5G4KBNUrpvHsFu9ZvQ5fKsbBcR2K4SBgjxgSdM", + "1 | Multisig [2/2] : T1Vu2VKdbZ", + "2 | Signatures required : 1", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Multisig : Accept multisig signer as key", - "1 | Auth id : 100", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Change sigs required via admin", + "1 | Multisig [1/2] : 5G4KBNUrpvHsFu9ZvQ5fKsbBcR2K4SBgjxgSdM", + "1 | Multisig [2/2] : T1Vu2VKdbZ", + "2 | Signatures required : 1", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 476, - "name": "Multisig_Add_multisig_signer", - "blob": "0f0b007c300be32e7c0cd75b138e4d6edc80ecaed96f7be5e8d0f87b7439ccd8d7c901d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Add_admin", + "blob": "0f0bc209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Add multisig signer", - "1 | Signer [1/2] : 7c300be32e7c0cd75b138e4d6edc80ecaed96f", - "1 | Signer [2/2] : 7be5e8d0f87b7439ccd8d7c901", - "2 | Tip : POLYX 0.000987" + "0 | Multisig : Add admin", + "1 | Admin did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Admin did [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Multisig : Add multisig signer", - "1 | Signer [1/2] : 7c300be32e7c0cd75b138e4d6edc80ecaed96f", - "1 | Signer [2/2] : 7be5e8d0f87b7439ccd8d7c901", + "0 | Multisig : Add admin", + "1 | Admin did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Admin did [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 50283", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 477, - "name": "Multisig_Add_multisig_signer", - "blob": "0f0b017ec79835d520a96415b7164af173a34205f6c90db680d21d2688480766c49f5fd50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Add_admin", + "blob": "0f0bc209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Add multisig signer", - "1 | Signer [1/2] : 2FK9RnJ7aFqWiNpMQExPhEnUybHXokjiLMoutY", - "1 | Signer [2/2] : Vgrv8RYE5X", - "2 | Tip : POLYX 5552342.355555" + "0 | Multisig : Add admin", + "1 | Admin did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Admin did [2/2] : bd7a6512a7cb922c53c4907708" ], "output_expert": [ - "0 | Multisig : Add multisig signer", - "1 | Signer [1/2] : 2FK9RnJ7aFqWiNpMQExPhEnUybHXokjiLMoutY", - "1 | Signer [2/2] : Vgrv8RYE5X", + "0 | Multisig : Add admin", + "1 | Admin did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Admin did [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 478, - "name": "Multisig_Add_multisig_signer", - "blob": "0f0b007c300be32e7c0cd75b138e4d6edc80ecaed96f7be5e8d0f87b7439ccd8d7c901d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Add_admin", + "blob": "0f0bc209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Add multisig signer", - "1 | Signer [1/2] : 7c300be32e7c0cd75b138e4d6edc80ecaed96f", - "1 | Signer [2/2] : 7be5e8d0f87b7439ccd8d7c901" + "0 | Multisig : Add admin", + "1 | Admin did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Admin did [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Multisig : Add multisig signer", - "1 | Signer [1/2] : 7c300be32e7c0cd75b138e4d6edc80ecaed96f", - "1 | Signer [2/2] : 7be5e8d0f87b7439ccd8d7c901", + "0 | Multisig : Add admin", + "1 | Admin did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Admin did [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { + "3 | Nonce : 50283", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { "index": 479, - "name": "Multisig_Add_multisig_signer", - "blob": "0f0b017ec79835d520a96415b7164af173a34205f6c90db680d21d2688480766c49f5fd50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Add_admin", + "blob": "0f0bc209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Add multisig signer", - "1 | Signer [1/2] : 2FK9RnJ7aFqWiNpMQExPhEnUybHXokjiLMoutY", - "1 | Signer [2/2] : Vgrv8RYE5X" + "0 | Multisig : Add admin", + "1 | Admin did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Admin did [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Multisig : Add multisig signer", - "1 | Signer [1/2] : 2FK9RnJ7aFqWiNpMQExPhEnUybHXokjiLMoutY", - "1 | Signer [2/2] : Vgrv8RYE5X", + "0 | Multisig : Add admin", + "1 | Admin did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Admin did [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 2339", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 480, - "name": "Multisig_Add_multisig_signer", - "blob": "0f0b017ec79835d520a96415b7164af173a34205f6c90db680d21d2688480766c49f5fd503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Add_admin", + "blob": "0f0bc209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Add multisig signer", - "1 | Signer [1/2] : 2FK9RnJ7aFqWiNpMQExPhEnUybHXokjiLMoutY", - "1 | Signer [2/2] : Vgrv8RYE5X", - "2 | Tip : POLYX 55.555555" + "0 | Multisig : Add admin", + "1 | Admin did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Admin did [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Multisig : Add multisig signer", - "1 | Signer [1/2] : 2FK9RnJ7aFqWiNpMQExPhEnUybHXokjiLMoutY", - "1 | Signer [2/2] : Vgrv8RYE5X", + "0 | Multisig : Add admin", + "1 | Admin did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Admin did [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 481, - "name": "Multisig_Remove_multisig_signer", - "blob": "0f0c017ec79835d520a96415b7164af173a34205f6c90db680d21d2688480766c49f5fd503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Remove_admin_via_admin", + "blob": "0f0c1a649a1e7bc89d0e95d5f757cdbb718b750e1e48f9962d215e0af9222021403ed503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Remove multisig signer", - "1 | Signer [1/2] : 2FK9RnJ7aFqWiNpMQExPhEnUybHXokjiLMoutY", - "1 | Signer [2/2] : Vgrv8RYE5X", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Multisig : Remove admin via admin", + "1 | Multisig [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "1 | Multisig [2/2] : CXYT6ZmfEg" ], "output_expert": [ - "0 | Multisig : Remove multisig signer", - "1 | Signer [1/2] : 2FK9RnJ7aFqWiNpMQExPhEnUybHXokjiLMoutY", - "1 | Signer [2/2] : Vgrv8RYE5X", + "0 | Multisig : Remove admin via admin", + "1 | Multisig [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "1 | Multisig [2/2] : CXYT6ZmfEg", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 482, - "name": "Multisig_Remove_multisig_signer", - "blob": "0f0c007c300be32e7c0cd75b138e4d6edc80ecaed96f7be5e8d0f87b7439ccd8d7c901d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Remove_admin_via_admin", + "blob": "0f0c746a25ffb64614dd2c7d8f53d247e39763261a2a4c187c424c51edb971f3d435d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Remove multisig signer", - "1 | Signer [1/2] : 7c300be32e7c0cd75b138e4d6edc80ecaed96f", - "1 | Signer [2/2] : 7be5e8d0f87b7439ccd8d7c901" + "0 | Multisig : Remove admin via admin", + "1 | Multisig [1/2] : 5EhLwjQbRibvSWhbsvw5hvYdKHYF5besUgGbjx", + "1 | Multisig [2/2] : guT8977hVy" ], "output_expert": [ - "0 | Multisig : Remove multisig signer", - "1 | Signer [1/2] : 7c300be32e7c0cd75b138e4d6edc80ecaed96f", - "1 | Signer [2/2] : 7be5e8d0f87b7439ccd8d7c901", + "0 | Multisig : Remove admin via admin", + "1 | Multisig [1/2] : 5EhLwjQbRibvSWhbsvw5hvYdKHYF5besUgGbjx", + "1 | Multisig [2/2] : guT8977hVy", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 2339", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 483, - "name": "Multisig_Remove_multisig_signer", - "blob": "0f0c007c300be32e7c0cd75b138e4d6edc80ecaed96f7be5e8d0f87b7439ccd8d7c901d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Remove_admin_via_admin", + "blob": "0f0cdec0f4dc5fd3e8d150cf002bc6385185d188545a2d3c35459acb0fac525c2761d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Remove multisig signer", - "1 | Signer [1/2] : 7c300be32e7c0cd75b138e4d6edc80ecaed96f", - "1 | Signer [2/2] : 7be5e8d0f87b7439ccd8d7c901", - "2 | Tip : POLYX 55.555555" + "0 | Multisig : Remove admin via admin", + "1 | Multisig [1/2] : 5H6moo4wU5PEeHwthqGaP9oVjjAcG3PXyn196u", + "1 | Multisig [2/2] : hgTRKhjCkB" ], "output_expert": [ - "0 | Multisig : Remove multisig signer", - "1 | Signer [1/2] : 7c300be32e7c0cd75b138e4d6edc80ecaed96f", - "1 | Signer [2/2] : 7be5e8d0f87b7439ccd8d7c901", + "0 | Multisig : Remove admin via admin", + "1 | Multisig [1/2] : 5H6moo4wU5PEeHwthqGaP9oVjjAcG3PXyn196u", + "1 | Multisig [2/2] : hgTRKhjCkB", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 484, - "name": "Multisig_Remove_multisig_signer", - "blob": "0f0c007c300be32e7c0cd75b138e4d6edc80ecaed96f7be5e8d0f87b7439ccd8d7c901d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Remove_admin_via_admin", + "blob": "0f0c2e5388ccb167c9fe3baeba3fed959f63c4e8bceb6c7387a77940029c14239820d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Remove multisig signer", - "1 | Signer [1/2] : 7c300be32e7c0cd75b138e4d6edc80ecaed96f", - "1 | Signer [2/2] : 7be5e8d0f87b7439ccd8d7c901", - "2 | Tip : POLYX 1234.56789" + "0 | Multisig : Remove admin via admin", + "1 | Multisig [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "1 | Multisig [2/2] : qta7VKQZKw", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Multisig : Remove multisig signer", - "1 | Signer [1/2] : 7c300be32e7c0cd75b138e4d6edc80ecaed96f", - "1 | Signer [2/2] : 7be5e8d0f87b7439ccd8d7c901", + "0 | Multisig : Remove admin via admin", + "1 | Multisig [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "1 | Multisig [2/2] : qta7VKQZKw", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 485, - "name": "Multisig_Remove_multisig_signer", - "blob": "0f0c007c300be32e7c0cd75b138e4d6edc80ecaed96f7be5e8d0f87b7439ccd8d7c901d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Remove_admin_via_admin", + "blob": "0f0cb0a4982a123e870e98be45944a32d76664a4cc899c3810c0300718516f0cb60ad503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Remove multisig signer", - "1 | Signer [1/2] : 7c300be32e7c0cd75b138e4d6edc80ecaed96f", - "1 | Signer [2/2] : 7be5e8d0f87b7439ccd8d7c901", + "0 | Multisig : Remove admin via admin", + "1 | Multisig [1/2] : 5G4KBNUrpvHsFu9ZvQ5fKsbBcR2K4SBgjxgSdM", + "1 | Multisig [2/2] : T1Vu2VKdbZ", "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Multisig : Remove multisig signer", - "1 | Signer [1/2] : 7c300be32e7c0cd75b138e4d6edc80ecaed96f", - "1 | Signer [2/2] : 7be5e8d0f87b7439ccd8d7c901", + "0 | Multisig : Remove admin via admin", + "1 | Multisig [1/2] : 5G4KBNUrpvHsFu9ZvQ5fKsbBcR2K4SBgjxgSdM", + "1 | Multisig [2/2] : T1Vu2VKdbZ", "2 | Chain : Polymesh", "3 | Nonce : 100", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 486, - "name": "Multisig_Add_multisig_signers_via_creator", - "blob": "0f0d248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0308004927e9087e912b183c4af24b986cdf26515f764b581decee3f0000c8ae5d191d01ceac92de8bce7dce739d35f403519a29990645143185e309da0f171425c1a07dd503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Add multisig signers via creator", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Signers [1/4] : 4927e9087e912b183c4af24b986cdf26515f76", - "2 | Signers [2/4] : 4b581decee3f0000c8ae5d191d", - "2 | Signers [3/4] : 2H7uEQdJyQBRHUgXaJgTbh45W3mkx4yxRKwgcM", - "2 | Signers [4/4] : D65Yj3yBvi", - "3 | Tip : POLYX 1234.56789" + "name": "Multisig_Remove_payer", + "blob": "0f0dd503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Multisig : Remove payer", + "1 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Multisig : Add multisig signers via creator", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Signers [1/4] : 4927e9087e912b183c4af24b986cdf26515f76", - "2 | Signers [2/4] : 4b581decee3f0000c8ae5d191d", - "2 | Signers [3/4] : 2H7uEQdJyQBRHUgXaJgTbh45W3mkx4yxRKwgcM", - "2 | Signers [4/4] : D65Yj3yBvi", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Remove payer", + "1 | Chain : Polymesh", + "2 | Nonce : 0", + "3 | Tip : POLYX 0.000987", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 487, - "name": "Multisig_Add_multisig_signers_via_creator", - "blob": "0f0d248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0308004927e9087e912b183c4af24b986cdf26515f764b581decee3f0000c8ae5d191d01ceac92de8bce7dce739d35f403519a29990645143185e309da0f171425c1a07dd503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Add multisig signers via creator", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Signers [1/4] : 4927e9087e912b183c4af24b986cdf26515f76", - "2 | Signers [2/4] : 4b581decee3f0000c8ae5d191d", - "2 | Signers [3/4] : 2H7uEQdJyQBRHUgXaJgTbh45W3mkx4yxRKwgcM", - "2 | Signers [4/4] : D65Yj3yBvi" - ], - "output_expert": [ - "0 | Multisig : Add multisig signers via creator", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Signers [1/4] : 4927e9087e912b183c4af24b986cdf26515f76", - "2 | Signers [2/4] : 4b581decee3f0000c8ae5d191d", - "2 | Signers [3/4] : 2H7uEQdJyQBRHUgXaJgTbh45W3mkx4yxRKwgcM", - "2 | Signers [4/4] : D65Yj3yBvi", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "name": "Multisig_Remove_payer", + "blob": "0f0dd5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Multisig : Remove payer", + "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "1 | Tip [2/2] : 3.456789" + ], + "output_expert": [ + "0 | Multisig : Remove payer", + "1 | Chain : Polymesh", + "2 | Nonce : 0", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 488, - "name": "Multisig_Add_multisig_signers_via_creator", - "blob": "0f0d248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0308004927e9087e912b183c4af24b986cdf26515f764b581decee3f0000c8ae5d191d01ceac92de8bce7dce739d35f403519a29990645143185e309da0f171425c1a07dd503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Add multisig signers via creator", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Signers [1/4] : 4927e9087e912b183c4af24b986cdf26515f76", - "2 | Signers [2/4] : 4b581decee3f0000c8ae5d191d", - "2 | Signers [3/4] : 2H7uEQdJyQBRHUgXaJgTbh45W3mkx4yxRKwgcM", - "2 | Signers [4/4] : D65Yj3yBvi", - "3 | Tip : POLYX 0.000987" + "name": "Multisig_Remove_payer", + "blob": "0f0dd503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Multisig : Remove payer", + "1 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Multisig : Add multisig signers via creator", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Signers [1/4] : 4927e9087e912b183c4af24b986cdf26515f76", - "2 | Signers [2/4] : 4b581decee3f0000c8ae5d191d", - "2 | Signers [3/4] : 2H7uEQdJyQBRHUgXaJgTbh45W3mkx4yxRKwgcM", - "2 | Signers [4/4] : D65Yj3yBvi", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Remove payer", + "1 | Chain : Polymesh", + "2 | Nonce : 50283", + "3 | Tip : POLYX 55.555555", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 489, - "name": "Multisig_Add_multisig_signers_via_creator", - "blob": "0f0d248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0308004927e9087e912b183c4af24b986cdf26515f764b581decee3f0000c8ae5d191d01ceac92de8bce7dce739d35f403519a29990645143185e309da0f171425c1a07dd5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Add multisig signers via creator", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Signers [1/4] : 4927e9087e912b183c4af24b986cdf26515f76", - "2 | Signers [2/4] : 4b581decee3f0000c8ae5d191d", - "2 | Signers [3/4] : 2H7uEQdJyQBRHUgXaJgTbh45W3mkx4yxRKwgcM", - "2 | Signers [4/4] : D65Yj3yBvi" - ], - "output_expert": [ - "0 | Multisig : Add multisig signers via creator", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Signers [1/4] : 4927e9087e912b183c4af24b986cdf26515f76", - "2 | Signers [2/4] : 4b581decee3f0000c8ae5d191d", - "2 | Signers [3/4] : 2H7uEQdJyQBRHUgXaJgTbh45W3mkx4yxRKwgcM", - "2 | Signers [4/4] : D65Yj3yBvi", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "name": "Multisig_Remove_payer", + "blob": "0f0dd50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Multisig : Remove payer", + "1 | Tip : POLYX 5552342.355555" + ], + "output_expert": [ + "0 | Multisig : Remove payer", + "1 | Chain : Polymesh", + "2 | Nonce : 100", + "3 | Tip : POLYX 5552342.355555", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 490, - "name": "Multisig_Add_multisig_signers_via_creator", - "blob": "0f0d248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0308004927e9087e912b183c4af24b986cdf26515f764b581decee3f0000c8ae5d191d01ceac92de8bce7dce739d35f403519a29990645143185e309da0f171425c1a07dd50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Add multisig signers via creator", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Signers [1/4] : 4927e9087e912b183c4af24b986cdf26515f76", - "2 | Signers [2/4] : 4b581decee3f0000c8ae5d191d", - "2 | Signers [3/4] : 2H7uEQdJyQBRHUgXaJgTbh45W3mkx4yxRKwgcM", - "2 | Signers [4/4] : D65Yj3yBvi", - "3 | Tip : POLYX 0.000987" + "name": "Multisig_Remove_payer", + "blob": "0f0dd5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Multisig : Remove payer", + "1 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Multisig : Add multisig signers via creator", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Signers [1/4] : 4927e9087e912b183c4af24b986cdf26515f76", - "2 | Signers [2/4] : 4b581decee3f0000c8ae5d191d", - "2 | Signers [3/4] : 2H7uEQdJyQBRHUgXaJgTbh45W3mkx4yxRKwgcM", - "2 | Signers [4/4] : D65Yj3yBvi", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Remove payer", + "1 | Chain : Polymesh", + "2 | Nonce : 2339", + "3 | Tip : POLYX 1234.56789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 491, - "name": "Multisig_Remove_multisig_signers_via_creator", - "blob": "0f0e248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0308004927e9087e912b183c4af24b986cdf26515f764b581decee3f0000c8ae5d191d01ceac92de8bce7dce739d35f403519a29990645143185e309da0f171425c1a07dd503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Remove multisig signers via creator", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Signers [1/4] : 4927e9087e912b183c4af24b986cdf26515f76", - "2 | Signers [2/4] : 4b581decee3f0000c8ae5d191d", - "2 | Signers [3/4] : 2H7uEQdJyQBRHUgXaJgTbh45W3mkx4yxRKwgcM", - "2 | Signers [4/4] : D65Yj3yBvi", - "3 | Tip : POLYX 1234.56789" + "name": "Multisig_Remove_payer_via_payer", + "blob": "0f0eb0a4982a123e870e98be45944a32d76664a4cc899c3810c0300718516f0cb60ad503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Multisig : Remove payer via payer", + "1 | Multisig [1/2] : 5G4KBNUrpvHsFu9ZvQ5fKsbBcR2K4SBgjxgSdM", + "1 | Multisig [2/2] : T1Vu2VKdbZ", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Multisig : Remove multisig signers via creator", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Signers [1/4] : 4927e9087e912b183c4af24b986cdf26515f76", - "2 | Signers [2/4] : 4b581decee3f0000c8ae5d191d", - "2 | Signers [3/4] : 2H7uEQdJyQBRHUgXaJgTbh45W3mkx4yxRKwgcM", - "2 | Signers [4/4] : D65Yj3yBvi", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Remove payer via payer", + "1 | Multisig [1/2] : 5G4KBNUrpvHsFu9ZvQ5fKsbBcR2K4SBgjxgSdM", + "1 | Multisig [2/2] : T1Vu2VKdbZ", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 492, - "name": "Multisig_Remove_multisig_signers_via_creator", - "blob": "0f0e248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0308004927e9087e912b183c4af24b986cdf26515f764b581decee3f0000c8ae5d191d01ceac92de8bce7dce739d35f403519a29990645143185e309da0f171425c1a07dd5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Remove multisig signers via creator", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Signers [1/4] : 4927e9087e912b183c4af24b986cdf26515f76", - "2 | Signers [2/4] : 4b581decee3f0000c8ae5d191d", - "2 | Signers [3/4] : 2H7uEQdJyQBRHUgXaJgTbh45W3mkx4yxRKwgcM", - "2 | Signers [4/4] : D65Yj3yBvi", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "name": "Multisig_Remove_payer_via_payer", + "blob": "0f0e1a649a1e7bc89d0e95d5f757cdbb718b750e1e48f9962d215e0af9222021403ed503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Multisig : Remove payer via payer", + "1 | Multisig [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "1 | Multisig [2/2] : CXYT6ZmfEg", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Multisig : Remove multisig signers via creator", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Signers [1/4] : 4927e9087e912b183c4af24b986cdf26515f76", - "2 | Signers [2/4] : 4b581decee3f0000c8ae5d191d", - "2 | Signers [3/4] : 2H7uEQdJyQBRHUgXaJgTbh45W3mkx4yxRKwgcM", - "2 | Signers [4/4] : D65Yj3yBvi", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Remove payer via payer", + "1 | Multisig [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "1 | Multisig [2/2] : CXYT6ZmfEg", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 493, - "name": "Multisig_Remove_multisig_signers_via_creator", - "blob": "0f0e248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0308004927e9087e912b183c4af24b986cdf26515f764b581decee3f0000c8ae5d191d01ceac92de8bce7dce739d35f403519a29990645143185e309da0f171425c1a07dd5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Remove multisig signers via creator", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Signers [1/4] : 4927e9087e912b183c4af24b986cdf26515f76", - "2 | Signers [2/4] : 4b581decee3f0000c8ae5d191d", - "2 | Signers [3/4] : 2H7uEQdJyQBRHUgXaJgTbh45W3mkx4yxRKwgcM", - "2 | Signers [4/4] : D65Yj3yBvi", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "name": "Multisig_Remove_payer_via_payer", + "blob": "0f0edec0f4dc5fd3e8d150cf002bc6385185d188545a2d3c35459acb0fac525c2761d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Multisig : Remove payer via payer", + "1 | Multisig [1/2] : 5H6moo4wU5PEeHwthqGaP9oVjjAcG3PXyn196u", + "1 | Multisig [2/2] : hgTRKhjCkB", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Multisig : Remove multisig signers via creator", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Signers [1/4] : 4927e9087e912b183c4af24b986cdf26515f76", - "2 | Signers [2/4] : 4b581decee3f0000c8ae5d191d", - "2 | Signers [3/4] : 2H7uEQdJyQBRHUgXaJgTbh45W3mkx4yxRKwgcM", - "2 | Signers [4/4] : D65Yj3yBvi", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Remove payer via payer", + "1 | Multisig [1/2] : 5H6moo4wU5PEeHwthqGaP9oVjjAcG3PXyn196u", + "1 | Multisig [2/2] : hgTRKhjCkB", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 494, - "name": "Multisig_Remove_multisig_signers_via_creator", - "blob": "0f0e248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0308004927e9087e912b183c4af24b986cdf26515f764b581decee3f0000c8ae5d191d01ceac92de8bce7dce739d35f403519a29990645143185e309da0f171425c1a07dd5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Remove multisig signers via creator", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Signers [1/4] : 4927e9087e912b183c4af24b986cdf26515f76", - "2 | Signers [2/4] : 4b581decee3f0000c8ae5d191d", - "2 | Signers [3/4] : 2H7uEQdJyQBRHUgXaJgTbh45W3mkx4yxRKwgcM", - "2 | Signers [4/4] : D65Yj3yBvi", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "name": "Multisig_Remove_payer_via_payer", + "blob": "0f0eca2d8f06d9c35d80eec81d49959918c1e6c09c314b6154fbf6e2665abc512a24d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Multisig : Remove payer via payer", + "1 | Multisig [1/2] : 5Gdo4eJq3jwcZ8ncshpMoSPMm3ypeeNe2441To", + "1 | Multisig [2/2] : B8w88odrQ1", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Multisig : Remove multisig signers via creator", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Signers [1/4] : 4927e9087e912b183c4af24b986cdf26515f76", - "2 | Signers [2/4] : 4b581decee3f0000c8ae5d191d", - "2 | Signers [3/4] : 2H7uEQdJyQBRHUgXaJgTbh45W3mkx4yxRKwgcM", - "2 | Signers [4/4] : D65Yj3yBvi", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Remove payer via payer", + "1 | Multisig [1/2] : 5Gdo4eJq3jwcZ8ncshpMoSPMm3ypeeNe2441To", + "1 | Multisig [2/2] : B8w88odrQ1", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 495, - "name": "Multisig_Remove_multisig_signers_via_creator", - "blob": "0f0e248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0308004927e9087e912b183c4af24b986cdf26515f764b581decee3f0000c8ae5d191d01ceac92de8bce7dce739d35f403519a29990645143185e309da0f171425c1a07dd50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Remove multisig signers via creator", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Signers [1/4] : 4927e9087e912b183c4af24b986cdf26515f76", - "2 | Signers [2/4] : 4b581decee3f0000c8ae5d191d", - "2 | Signers [3/4] : 2H7uEQdJyQBRHUgXaJgTbh45W3mkx4yxRKwgcM", - "2 | Signers [4/4] : D65Yj3yBvi", - "3 | Tip : POLYX 55.555555" + "name": "Multisig_Remove_payer_via_payer", + "blob": "0f0e746a25ffb64614dd2c7d8f53d247e39763261a2a4c187c424c51edb971f3d435d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Multisig : Remove payer via payer", + "1 | Multisig [1/2] : 5EhLwjQbRibvSWhbsvw5hvYdKHYF5besUgGbjx", + "1 | Multisig [2/2] : guT8977hVy", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Multisig : Remove multisig signers via creator", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Signers [1/4] : 4927e9087e912b183c4af24b986cdf26515f76", - "2 | Signers [2/4] : 4b581decee3f0000c8ae5d191d", - "2 | Signers [3/4] : 2H7uEQdJyQBRHUgXaJgTbh45W3mkx4yxRKwgcM", - "2 | Signers [4/4] : D65Yj3yBvi", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Remove payer via payer", + "1 | Multisig [1/2] : 5EhLwjQbRibvSWhbsvw5hvYdKHYF5besUgGbjx", + "1 | Multisig [2/2] : guT8977hVy", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 496, - "name": "Multisig_Change_sigs_required", - "blob": "0f0f0000000000000000d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Approve_join_identity", + "blob": "0f0f1ea4f867cc0e916cfbaa637a01eea0d3163df7d154720f78571790913a6352192309000000000000d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Change sigs required", - "1 | Sigs required : 0", - "2 | Tip : POLYX 55.555555" + "0 | Multisig : Approve join identity", + "1 | Multisig [1/2] : 5CktJMt3EL46Fd9cgCmATqUnc4rBP6d1LDcAvK", + "1 | Multisig [2/2] : SX5DnQkqUa", + "2 | Auth id : 2339", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Multisig : Change sigs required", - "1 | Sigs required : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Approve join identity", + "1 | Multisig [1/2] : 5CktJMt3EL46Fd9cgCmATqUnc4rBP6d1LDcAvK", + "1 | Multisig [2/2] : SX5DnQkqUa", + "2 | Auth id : 2339", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 497, - "name": "Multisig_Change_sigs_required", - "blob": "0f0f6bc4000000000000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Approve_join_identity", + "blob": "0f0fdec0f4dc5fd3e8d150cf002bc6385185d188545a2d3c35459acb0fac525c27610100000000000000d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Change sigs required", - "1 | Sigs required : 50283" + "0 | Multisig : Approve join identity", + "1 | Multisig [1/2] : 5H6moo4wU5PEeHwthqGaP9oVjjAcG3PXyn196u", + "1 | Multisig [2/2] : hgTRKhjCkB", + "2 | Auth id : 1", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Multisig : Change sigs required", - "1 | Sigs required : 50283", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Approve join identity", + "1 | Multisig [1/2] : 5H6moo4wU5PEeHwthqGaP9oVjjAcG3PXyn196u", + "1 | Multisig [2/2] : hgTRKhjCkB", + "2 | Auth id : 1", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 498, - "name": "Multisig_Change_sigs_required", - "blob": "0f0f6bc4000000000000d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Approve_join_identity", + "blob": "0f0feeee0fc19c12fccb5428f3defc551fa77b3eda70bcf9c86045ade577d0fd15080000000000000000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Change sigs required", - "1 | Sigs required : 50283" + "0 | Multisig : Approve join identity", + "1 | Multisig [1/2] : 5HTyyNf3SP6wwvJb6dmojvVT27bFkbLV2QN1Q2", + "1 | Multisig [2/2] : YfRrxBgvey", + "2 | Auth id : 0", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Multisig : Change sigs required", - "1 | Sigs required : 50283", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Approve join identity", + "1 | Multisig [1/2] : 5HTyyNf3SP6wwvJb6dmojvVT27bFkbLV2QN1Q2", + "1 | Multisig [2/2] : YfRrxBgvey", + "2 | Auth id : 0", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 499, - "name": "Multisig_Change_sigs_required", - "blob": "0f0f6bc4000000000000d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Approve_join_identity", + "blob": "0f0f1a649a1e7bc89d0e95d5f757cdbb718b750e1e48f9962d215e0af9222021403e6400000000000000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Change sigs required", - "1 | Sigs required : 50283", - "2 | Tip : POLYX 0.000987" + "0 | Multisig : Approve join identity", + "1 | Multisig [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "1 | Multisig [2/2] : CXYT6ZmfEg", + "2 | Auth id : 100", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Multisig : Change sigs required", - "1 | Sigs required : 50283", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Approve join identity", + "1 | Multisig [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "1 | Multisig [2/2] : CXYT6ZmfEg", + "2 | Auth id : 100", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 500, - "name": "Multisig_Change_sigs_required", - "blob": "0f0f0000000000000000d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Approve_join_identity", + "blob": "0f0fb0a4982a123e870e98be45944a32d76664a4cc899c3810c0300718516f0cb60a0100000000000000d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Change sigs required", - "1 | Sigs required : 0", - "2 | Tip : POLYX 0.000987" + "0 | Multisig : Approve join identity", + "1 | Multisig [1/2] : 5G4KBNUrpvHsFu9ZvQ5fKsbBcR2K4SBgjxgSdM", + "1 | Multisig [2/2] : T1Vu2VKdbZ", + "2 | Auth id : 1", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Multisig : Change sigs required", - "1 | Sigs required : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Multisig : Approve join identity", + "1 | Multisig [1/2] : 5G4KBNUrpvHsFu9ZvQ5fKsbBcR2K4SBgjxgSdM", + "1 | Multisig [2/2] : T1Vu2VKdbZ", + "2 | Auth id : 1", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 501, - "name": "Multisig_Make_multisig_secondary", - "blob": "0f10248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Join_identity", + "blob": "0f106400000000000000d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Make multisig secondary", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Tip : POLYX 5552342.355555" + "0 | Multisig : Join identity", + "1 | Auth id : 100" ], "output_expert": [ - "0 | Multisig : Make multisig secondary", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", + "0 | Multisig : Join identity", + "1 | Auth id : 100", "2 | Chain : Polymesh", "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 502, - "name": "Multisig_Make_multisig_secondary", - "blob": "0f10248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Join_identity", + "blob": "0f100100000000000000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Make multisig secondary", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", + "0 | Multisig : Join identity", + "1 | Auth id : 1", "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Multisig : Make multisig secondary", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", + "0 | Multisig : Join identity", + "1 | Auth id : 1", "2 | Chain : Polymesh", "3 | Nonce : 50283", "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 503, - "name": "Multisig_Make_multisig_secondary", - "blob": "0f10248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Join_identity", + "blob": "0f100100000000000000d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Make multisig secondary", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD" + "0 | Multisig : Join identity", + "1 | Auth id : 1", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Multisig : Make multisig secondary", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", + "0 | Multisig : Join identity", + "1 | Auth id : 1", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 1", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 504, - "name": "Multisig_Make_multisig_secondary", - "blob": "0f10248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Join_identity", + "blob": "0f100000000000000000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Make multisig secondary", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Tip : POLYX 1234.56789" + "0 | Multisig : Join identity", + "1 | Auth id : 0", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Multisig : Make multisig secondary", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", + "0 | Multisig : Join identity", + "1 | Auth id : 0", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 505, - "name": "Multisig_Make_multisig_secondary", - "blob": "0f10248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Multisig_Join_identity", + "blob": "0f102309000000000000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Make multisig secondary", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Tip : POLYX 5552342.355555" + "0 | Multisig : Join identity", + "1 | Auth id : 2339" ], "output_expert": [ - "0 | Multisig : Make multisig secondary", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", + "0 | Multisig : Join identity", + "1 | Auth id : 2339", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 506, - "name": "Multisig_Make_multisig_primary", - "blob": "0f11248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03018813000000000000d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Bond", + "blob": "110004a6bf6ba54d74ed24f0f22ae261a6d492b9b9a2a833158139ae28a3dfaac5fe1560a5e9e05c01d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Make multisig primary", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Optional cdd auth id : 5000" + "0 | Staking : Bond", + "1 | Controller [1/2] : a6bf6ba54d74ed24f0f22ae261a6d492b9b9a2", + "1 | Controller [2/2] : a8", + "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "2 | Amount [2/2] : 3.456789", + "3 | Payee : Stash", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Multisig : Make multisig primary", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Optional cdd auth id : 5000", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Bond", + "1 | Controller [1/2] : a6bf6ba54d74ed24f0f22ae261a6d492b9b9a2", + "1 | Controller [2/2] : a8", + "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "2 | Amount [2/2] : 3.456789", + "3 | Payee : Stash", + "4 | Chain : Polymesh", + "5 | Nonce : 2339", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 507, - "name": "Multisig_Make_multisig_primary", - "blob": "0f11248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03011a00000000000000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Bond", + "blob": "1100028072ddb7c3e3a9f4c83f8c34281b81c22db8f925c44d9106057bf73469e2f016bd8ed73e0d02d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Make multisig primary", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Optional cdd auth id : 26", - "3 | Tip : POLYX 0.000987" + "0 | Staking : Bond", + "1 | Controller [1/2] : 72ddb7c3e3a9f4c83f8c34281b81c22db8f925", + "1 | Controller [2/2] : c44d9106057bf73469e2f016bd", + "2 | Amount : POLYX 55.555555", + "3 | Payee : Controller", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Multisig : Make multisig primary", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Optional cdd auth id : 26", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Bond", + "1 | Controller [1/2] : 72ddb7c3e3a9f4c83f8c34281b81c22db8f925", + "1 | Controller [2/2] : c44d9106057bf73469e2f016bd", + "2 | Amount : POLYX 55.555555", + "3 | Payee : Controller", + "4 | Chain : Polymesh", + "5 | Nonce : 1", + "6 | Tip : POLYX 1234.56789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 508, - "name": "Multisig_Make_multisig_primary", - "blob": "0f11248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03011a00000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Bond", + "blob": "1100028072ddb7c3e3a9f4c83f8c34281b81c22db8f925c44d9106057bf73469e2f016bd8ed73e0d02d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Make multisig primary", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Optional cdd auth id : 26", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Staking : Bond", + "1 | Controller [1/2] : 72ddb7c3e3a9f4c83f8c34281b81c22db8f925", + "1 | Controller [2/2] : c44d9106057bf73469e2f016bd", + "2 | Amount : POLYX 55.555555", + "3 | Payee : Controller", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Multisig : Make multisig primary", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Optional cdd auth id : 26", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Bond", + "1 | Controller [1/2] : 72ddb7c3e3a9f4c83f8c34281b81c22db8f925", + "1 | Controller [2/2] : c44d9106057bf73469e2f016bd", + "2 | Amount : POLYX 55.555555", + "3 | Payee : Controller", + "4 | Chain : Polymesh", + "5 | Nonce : 2339", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 509, - "name": "Multisig_Make_multisig_primary", - "blob": "0f11248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03011a00000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Bond", + "blob": "1100028072ddb7c3e3a9f4c83f8c34281b81c22db8f925c44d9106057bf73469e2f016bd0b63ce64c10c0501d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Make multisig primary", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Optional cdd auth id : 26", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Staking : Bond", + "1 | Controller [1/2] : 72ddb7c3e3a9f4c83f8c34281b81c22db8f925", + "1 | Controller [2/2] : c44d9106057bf73469e2f016bd", + "2 | Amount : POLYX 5552342.355555", + "3 | Payee : Stash", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Multisig : Make multisig primary", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Optional cdd auth id : 26", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Bond", + "1 | Controller [1/2] : 72ddb7c3e3a9f4c83f8c34281b81c22db8f925", + "1 | Controller [2/2] : c44d9106057bf73469e2f016bd", + "2 | Amount : POLYX 5552342.355555", + "3 | Payee : Stash", + "4 | Chain : Polymesh", + "5 | Nonce : 2339", + "6 | Tip : POLYX 0.000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 510, - "name": "Multisig_Make_multisig_primary", - "blob": "0f11248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03011a00000000000000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Bond", + "blob": "1100028072ddb7c3e3a9f4c83f8c34281b81c22db8f925c44d9106057bf73469e2f016bd0b63ce64c10c0501d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Make multisig primary", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Optional cdd auth id : 26", - "3 | Tip : POLYX 0.000987" + "0 | Staking : Bond", + "1 | Controller [1/2] : 72ddb7c3e3a9f4c83f8c34281b81c22db8f925", + "1 | Controller [2/2] : c44d9106057bf73469e2f016bd", + "2 | Amount : POLYX 5552342.355555", + "3 | Payee : Stash", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Multisig : Make multisig primary", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Optional cdd auth id : 26", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Bond", + "1 | Controller [1/2] : 72ddb7c3e3a9f4c83f8c34281b81c22db8f925", + "1 | Controller [2/2] : c44d9106057bf73469e2f016bd", + "2 | Amount : POLYX 5552342.355555", + "3 | Payee : Stash", + "4 | Chain : Polymesh", + "5 | Nonce : 50283", + "6 | Tip : POLYX 0.000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 511, - "name": "Multisig_Execute_scheduled_proposal", - "blob": "0f12248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d036bc400000000000044ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afc1c268d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Execute scheduled proposal", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 50283", - "3 | Multisig did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "3 | Multisig did [2/2] : 99f2a85988d897db3b7b56d9af", - "4 | Proposal weight [1/2] : 12464", - "4 | Proposal weight [2/2] : 26", - "5 | Tip : POLYX 0.000987" + "name": "Staking_Bond_extra", + "blob": "11018ed73e0dd5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Bond extra", + "1 | Amount : POLYX 55.555555", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Multisig : Execute scheduled proposal", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 50283", - "3 | Multisig did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "3 | Multisig did [2/2] : 99f2a85988d897db3b7b56d9af", - "4 | Proposal weight [1/2] : 12464", - "4 | Proposal weight [2/2] : 26", - "5 | Chain : Polymesh", - "6 | Nonce : 50283", - "7 | Tip : POLYX 0.000987", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Bond extra", + "1 | Amount : POLYX 55.555555", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 512, - "name": "Multisig_Execute_scheduled_proposal", - "blob": "0f12248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d036bc400000000000044ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afc1c268d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Execute scheduled proposal", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 50283", - "3 | Multisig did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "3 | Multisig did [2/2] : 99f2a85988d897db3b7b56d9af", - "4 | Proposal weight [1/2] : 12464", - "4 | Proposal weight [2/2] : 26" - ], - "output_expert": [ - "0 | Multisig : Execute scheduled proposal", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 50283", - "3 | Multisig did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "3 | Multisig did [2/2] : 99f2a85988d897db3b7b56d9af", - "4 | Proposal weight [1/2] : 12464", - "4 | Proposal weight [2/2] : 26", - "5 | Chain : Polymesh", - "6 | Nonce : 100", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "name": "Staking_Bond_extra", + "blob": "110103d2029649d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Bond extra", + "1 | Amount : POLYX 1234.56789", + "2 | Tip : POLYX 1234.56789" + ], + "output_expert": [ + "0 | Staking : Bond extra", + "1 | Amount : POLYX 1234.56789", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 513, - "name": "Multisig_Execute_scheduled_proposal", - "blob": "0f12248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03230900000000000044ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af139f386be0e29147ce13d5cc2b675623e52ed5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Bond_extra", + "blob": "110133158139ae28a3dfaac5fe1560a5e9e05cd5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Execute scheduled proposal", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 2339", - "3 | Multisig did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "3 | Multisig did [2/2] : 99f2a85988d897db3b7b56d9af", - "4 | Proposal weight [1/2] : 14864009498773371039", - "4 | Proposal weight [2/2] : 3379145949416508629", - "5 | Tip : POLYX 0.000987" + "0 | Staking : Bond extra", + "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "1 | Amount [2/2] : 3.456789", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Multisig : Execute scheduled proposal", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 2339", - "3 | Multisig did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "3 | Multisig did [2/2] : 99f2a85988d897db3b7b56d9af", - "4 | Proposal weight [1/2] : 14864009498773371039", - "4 | Proposal weight [2/2] : 3379145949416508629", - "5 | Chain : Polymesh", - "6 | Nonce : 2339", - "7 | Tip : POLYX 0.000987", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Bond extra", + "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "1 | Amount [2/2] : 3.456789", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 514, - "name": "Multisig_Execute_scheduled_proposal", - "blob": "0f12248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03000000000000000044ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af139f386be0e29147ce13d5cc2b675623e52ed5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Bond_extra", + "blob": "11018ed73e0dd50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Execute scheduled proposal", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 0", - "3 | Multisig did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "3 | Multisig did [2/2] : 99f2a85988d897db3b7b56d9af", - "4 | Proposal weight [1/2] : 14864009498773371039", - "4 | Proposal weight [2/2] : 3379145949416508629" + "0 | Staking : Bond extra", + "1 | Amount : POLYX 55.555555", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Multisig : Execute scheduled proposal", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 0", - "3 | Multisig did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "3 | Multisig did [2/2] : 99f2a85988d897db3b7b56d9af", - "4 | Proposal weight [1/2] : 14864009498773371039", - "4 | Proposal weight [2/2] : 3379145949416508629", - "5 | Chain : Polymesh", - "6 | Nonce : 2339", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Bond extra", + "1 | Amount : POLYX 55.555555", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 515, - "name": "Multisig_Execute_scheduled_proposal", - "blob": "0f12248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03640000000000000044ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afc1690f51da19d99ba972d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Bond_extra", + "blob": "110103d2029649d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Execute scheduled proposal", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 100", - "3 | Multisig did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "3 | Multisig did [2/2] : 99f2a85988d897db3b7b56d9af", - "4 | Proposal weight [1/2] : 6768", - "4 | Proposal weight [2/2] : 32274634172389969" + "0 | Staking : Bond extra", + "1 | Amount : POLYX 1234.56789", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Multisig : Execute scheduled proposal", - "1 | Multisig [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig [2/2] : D5gRxEbABD", - "2 | Proposal id : 100", - "3 | Multisig did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "3 | Multisig did [2/2] : 99f2a85988d897db3b7b56d9af", - "4 | Proposal weight [1/2] : 6768", - "4 | Proposal weight [2/2] : 32274634172389969", - "5 | Chain : Polymesh", - "6 | Nonce : 100", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Bond extra", + "1 | Amount : POLYX 1234.56789", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 516, - "name": "Multisig_Change_sigs_required_via_creator", - "blob": "0f13248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d032309000000000000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Unbond", + "blob": "11028ed73e0dd5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Change sigs required via creator", - "1 | Multisig account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig account [2/2] : D5gRxEbABD", - "2 | Signatures required : 2339", - "3 | Tip : POLYX 1234.56789" + "0 | Staking : Unbond", + "1 | Amount : POLYX 55.555555", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Multisig : Change sigs required via creator", - "1 | Multisig account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig account [2/2] : D5gRxEbABD", - "2 | Signatures required : 2339", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Unbond", + "1 | Amount : POLYX 55.555555", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 517, - "name": "Multisig_Change_sigs_required_via_creator", - "blob": "0f13248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d030000000000000000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Unbond", + "blob": "11028ed73e0dd503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Change sigs required via creator", - "1 | Multisig account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig account [2/2] : D5gRxEbABD", - "2 | Signatures required : 0" + "0 | Staking : Unbond", + "1 | Amount : POLYX 55.555555", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Multisig : Change sigs required via creator", - "1 | Multisig account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig account [2/2] : D5gRxEbABD", - "2 | Signatures required : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", + "0 | Staking : Unbond", + "1 | Amount : POLYX 55.555555", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 518, - "name": "Multisig_Change_sigs_required_via_creator", - "blob": "0f13248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d030100000000000000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Unbond", + "blob": "11026d0fd5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Change sigs required via creator", - "1 | Multisig account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig account [2/2] : D5gRxEbABD", - "2 | Signatures required : 1", - "3 | Tip : POLYX 1234.56789" + "0 | Staking : Unbond", + "1 | Amount : POLYX 0.000987", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Multisig : Change sigs required via creator", - "1 | Multisig account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig account [2/2] : D5gRxEbABD", - "2 | Signatures required : 1", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Unbond", + "1 | Amount : POLYX 0.000987", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 519, - "name": "Multisig_Change_sigs_required_via_creator", - "blob": "0f13248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d030100000000000000d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Unbond", + "blob": "110203d2029649d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Change sigs required via creator", - "1 | Multisig account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig account [2/2] : D5gRxEbABD", - "2 | Signatures required : 1", - "3 | Tip : POLYX 55.555555" + "0 | Staking : Unbond", + "1 | Amount : POLYX 1234.56789", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Multisig : Change sigs required via creator", - "1 | Multisig account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig account [2/2] : D5gRxEbABD", - "2 | Signatures required : 1", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Unbond", + "1 | Amount : POLYX 1234.56789", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 520, - "name": "Multisig_Change_sigs_required_via_creator", - "blob": "0f13248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d030000000000000000d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Unbond", + "blob": "11028ed73e0dd50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Change sigs required via creator", - "1 | Multisig account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig account [2/2] : D5gRxEbABD", - "2 | Signatures required : 0", - "3 | Tip : POLYX 5552342.355555" + "0 | Staking : Unbond", + "1 | Amount : POLYX 55.555555", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Multisig : Change sigs required via creator", - "1 | Multisig account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig account [2/2] : D5gRxEbABD", - "2 | Signatures required : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Unbond", + "1 | Amount : POLYX 55.555555", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 521, - "name": "Multisig_Remove_creator_controls", - "blob": "0f14248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Withdraw_Unbonded", + "blob": "1103f7010000d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Remove creator controls", - "1 | Multisig account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig account [2/2] : D5gRxEbABD", - "2 | Tip : POLYX 55.555555" + "0 | Staking : Withdraw Unbonded", + "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "1 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Multisig : Remove creator controls", - "1 | Multisig account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig account [2/2] : D5gRxEbABD", + "0 | Staking : Withdraw Unbonded", + "1 | Num slashing spans : 503", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 522, - "name": "Multisig_Remove_creator_controls", - "blob": "0f14248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Withdraw_Unbonded", + "blob": "1103d3040000d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Remove creator controls", - "1 | Multisig account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig account [2/2] : D5gRxEbABD", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Staking : Withdraw Unbonded", + "1 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Multisig : Remove creator controls", - "1 | Multisig account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig account [2/2] : D5gRxEbABD", + "0 | Staking : Withdraw Unbonded", + "1 | Num slashing spans : 1235", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 50283", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 523, - "name": "Multisig_Remove_creator_controls", - "blob": "0f14248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Withdraw_Unbonded", + "blob": "1103f7010000d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Remove creator controls", - "1 | Multisig account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig account [2/2] : D5gRxEbABD" + "0 | Staking : Withdraw Unbonded", + "1 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Multisig : Remove creator controls", - "1 | Multisig account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig account [2/2] : D5gRxEbABD", + "0 | Staking : Withdraw Unbonded", + "1 | Num slashing spans : 503", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 100", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 524, - "name": "Multisig_Remove_creator_controls", - "blob": "0f14248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Withdraw_Unbonded", + "blob": "11039d1c0000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Remove creator controls", - "1 | Multisig account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig account [2/2] : D5gRxEbABD", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Staking : Withdraw Unbonded" ], "output_expert": [ - "0 | Multisig : Remove creator controls", - "1 | Multisig account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig account [2/2] : D5gRxEbABD", + "0 | Staking : Withdraw Unbonded", + "1 | Num slashing spans : 7325", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 525, - "name": "Multisig_Remove_creator_controls", - "blob": "0f14248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Withdraw_Unbonded", + "blob": "1103f7010000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Multisig : Remove creator controls", - "1 | Multisig account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig account [2/2] : D5gRxEbABD", - "2 | Tip : POLYX 0.000987" + "0 | Staking : Withdraw Unbonded" ], "output_expert": [ - "0 | Multisig : Remove creator controls", - "1 | Multisig account [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Multisig account [2/2] : D5gRxEbABD", + "0 | Staking : Withdraw Unbonded", + "1 | Num slashing spans : 503", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 526, - "name": "Bridge_Change_controller", - "blob": "1000248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Validate", + "blob": "1104e800d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Change controller", - "1 | Controller [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Controller [2/2] : D5gRxEbABD", - "2 | Tip : POLYX 0.000987" + "0 | Staking : Validate", + "1 | Prefs : 0.0000058%", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Bridge : Change controller", - "1 | Controller [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Controller [2/2] : D5gRxEbABD", + "0 | Staking : Validate", + "1 | Prefs : 0.0000058%", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 1", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 527, - "name": "Bridge_Change_controller", - "blob": "1000248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Validate", + "blob": "11049400d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Change controller", - "1 | Controller [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Controller [2/2] : D5gRxEbABD", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Staking : Validate", + "1 | Prefs : 0.0000037%", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Bridge : Change controller", - "1 | Controller [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Controller [2/2] : D5gRxEbABD", + "0 | Staking : Validate", + "1 | Prefs : 0.0000037%", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 528, - "name": "Bridge_Change_controller", - "blob": "1000248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Validate", + "blob": "11047000d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Change controller", - "1 | Controller [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Controller [2/2] : D5gRxEbABD", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Staking : Validate", + "1 | Prefs : 0.0000028%", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Bridge : Change controller", - "1 | Controller [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Controller [2/2] : D5gRxEbABD", + "0 | Staking : Validate", + "1 | Prefs : 0.0000028%", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 529, - "name": "Bridge_Change_controller", - "blob": "1000248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Validate", + "blob": "11041650d7f300d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Change controller", - "1 | Controller [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Controller [2/2] : D5gRxEbABD", + "0 | Staking : Validate", + "1 | Prefs : 102.2743557%", "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Bridge : Change controller", - "1 | Controller [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Controller [2/2] : D5gRxEbABD", + "0 | Staking : Validate", + "1 | Prefs : 102.2743557%", "2 | Chain : Polymesh", "3 | Nonce : 2339", "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 530, - "name": "Bridge_Change_controller", - "blob": "1000248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Validate", + "blob": "1104e800d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Change controller", - "1 | Controller [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Controller [2/2] : D5gRxEbABD", - "2 | Tip : POLYX 0.000987" + "0 | Staking : Validate", + "1 | Prefs : 0.0000058%", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Bridge : Change controller", - "1 | Controller [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Controller [2/2] : D5gRxEbABD", + "0 | Staking : Validate", + "1 | Prefs : 0.0000058%", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 100", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 531, - "name": "Bridge_Change_admin", - "blob": "1001248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Nominate", + "blob": "11051000f6a780d9dfed95f8f22787548e2e7bcbc4fb7996789b0d845f3fc9312938d711028056c7810e40a6d484e2e4cf50cd621102edf8cc154511390d15be7f638dfc02d00384379a820dc73f35f69972ebb0d4e51bdfe976264eff86deb95d7a2ec3f7f8cc04c6fe165bec3198d437715df88aabe09eff3f1ba8d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Change admin", - "1 | Admin [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Admin [2/2] : D5gRxEbABD" + "0 | Staking : Nominate", + "1 | Targets [1/8] : 5He7PuKJUkWKEpFRL2vWem8qVcrTRx6YEH5GYc", + "1 | Targets [2/8] : pxnWPPsKse", + "1 | Targets [3/8] : 56c7810e40a6d484e2e4cf50cd621102edf8cc", + "1 | Targets [4/8] : 154511390d15be7f638dfc02d0", + "1 | Targets [5/8] : 84379a820dc73f35f69972ebb0d4e51bdfe976", + "1 | Targets [6/8] : 264eff86deb95d7a2ec3f7f8cc", + "1 | Targets [7/8] : c6fe165bec3198d437715df88aabe09eff3f1b", + "1 | Targets [8/8] : a8", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Bridge : Change admin", - "1 | Admin [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Admin [2/2] : D5gRxEbABD", + "0 | Staking : Nominate", + "1 | Targets [1/8] : 5He7PuKJUkWKEpFRL2vWem8qVcrTRx6YEH5GYc", + "1 | Targets [2/8] : pxnWPPsKse", + "1 | Targets [3/8] : 56c7810e40a6d484e2e4cf50cd621102edf8cc", + "1 | Targets [4/8] : 154511390d15be7f638dfc02d0", + "1 | Targets [5/8] : 84379a820dc73f35f69972ebb0d4e51bdfe976", + "1 | Targets [6/8] : 264eff86deb95d7a2ec3f7f8cc", + "1 | Targets [7/8] : c6fe165bec3198d437715df88aabe09eff3f1b", + "1 | Targets [8/8] : a8", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 100", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 532, - "name": "Bridge_Change_admin", - "blob": "1001248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Nominate", + "blob": "11051000f6a780d9dfed95f8f22787548e2e7bcbc4fb7996789b0d845f3fc9312938d711028056c7810e40a6d484e2e4cf50cd621102edf8cc154511390d15be7f638dfc02d00384379a820dc73f35f69972ebb0d4e51bdfe976264eff86deb95d7a2ec3f7f8cc04c6fe165bec3198d437715df88aabe09eff3f1ba8d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Change admin", - "1 | Admin [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Admin [2/2] : D5gRxEbABD" + "0 | Staking : Nominate", + "1 | Targets [1/8] : 5He7PuKJUkWKEpFRL2vWem8qVcrTRx6YEH5GYc", + "1 | Targets [2/8] : pxnWPPsKse", + "1 | Targets [3/8] : 56c7810e40a6d484e2e4cf50cd621102edf8cc", + "1 | Targets [4/8] : 154511390d15be7f638dfc02d0", + "1 | Targets [5/8] : 84379a820dc73f35f69972ebb0d4e51bdfe976", + "1 | Targets [6/8] : 264eff86deb95d7a2ec3f7f8cc", + "1 | Targets [7/8] : c6fe165bec3198d437715df88aabe09eff3f1b", + "1 | Targets [8/8] : a8", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Bridge : Change admin", - "1 | Admin [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Admin [2/2] : D5gRxEbABD", + "0 | Staking : Nominate", + "1 | Targets [1/8] : 5He7PuKJUkWKEpFRL2vWem8qVcrTRx6YEH5GYc", + "1 | Targets [2/8] : pxnWPPsKse", + "1 | Targets [3/8] : 56c7810e40a6d484e2e4cf50cd621102edf8cc", + "1 | Targets [4/8] : 154511390d15be7f638dfc02d0", + "1 | Targets [5/8] : 84379a820dc73f35f69972ebb0d4e51bdfe976", + "1 | Targets [6/8] : 264eff86deb95d7a2ec3f7f8cc", + "1 | Targets [7/8] : c6fe165bec3198d437715df88aabe09eff3f1b", + "1 | Targets [8/8] : a8", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 50283", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 533, - "name": "Bridge_Change_admin", - "blob": "1001248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Nominate", + "blob": "11051000f6a780d9dfed95f8f22787548e2e7bcbc4fb7996789b0d845f3fc9312938d711028056c7810e40a6d484e2e4cf50cd621102edf8cc154511390d15be7f638dfc02d00384379a820dc73f35f69972ebb0d4e51bdfe976264eff86deb95d7a2ec3f7f8cc04c6fe165bec3198d437715df88aabe09eff3f1ba8d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Change admin", - "1 | Admin [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Admin [2/2] : D5gRxEbABD", - "2 | Tip : POLYX 1234.56789" + "0 | Staking : Nominate", + "1 | Targets [1/8] : 5He7PuKJUkWKEpFRL2vWem8qVcrTRx6YEH5GYc", + "1 | Targets [2/8] : pxnWPPsKse", + "1 | Targets [3/8] : 56c7810e40a6d484e2e4cf50cd621102edf8cc", + "1 | Targets [4/8] : 154511390d15be7f638dfc02d0", + "1 | Targets [5/8] : 84379a820dc73f35f69972ebb0d4e51bdfe976", + "1 | Targets [6/8] : 264eff86deb95d7a2ec3f7f8cc", + "1 | Targets [7/8] : c6fe165bec3198d437715df88aabe09eff3f1b", + "1 | Targets [8/8] : a8", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Bridge : Change admin", - "1 | Admin [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Admin [2/2] : D5gRxEbABD", + "0 | Staking : Nominate", + "1 | Targets [1/8] : 5He7PuKJUkWKEpFRL2vWem8qVcrTRx6YEH5GYc", + "1 | Targets [2/8] : pxnWPPsKse", + "1 | Targets [3/8] : 56c7810e40a6d484e2e4cf50cd621102edf8cc", + "1 | Targets [4/8] : 154511390d15be7f638dfc02d0", + "1 | Targets [5/8] : 84379a820dc73f35f69972ebb0d4e51bdfe976", + "1 | Targets [6/8] : 264eff86deb95d7a2ec3f7f8cc", + "1 | Targets [7/8] : c6fe165bec3198d437715df88aabe09eff3f1b", + "1 | Targets [8/8] : a8", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 534, - "name": "Bridge_Change_admin", - "blob": "1001248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Nominate", + "blob": "11051000f6a780d9dfed95f8f22787548e2e7bcbc4fb7996789b0d845f3fc9312938d711028056c7810e40a6d484e2e4cf50cd621102edf8cc154511390d15be7f638dfc02d00384379a820dc73f35f69972ebb0d4e51bdfe976264eff86deb95d7a2ec3f7f8cc04c6fe165bec3198d437715df88aabe09eff3f1ba8d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Change admin", - "1 | Admin [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Admin [2/2] : D5gRxEbABD", + "0 | Staking : Nominate", + "1 | Targets [1/8] : 5He7PuKJUkWKEpFRL2vWem8qVcrTRx6YEH5GYc", + "1 | Targets [2/8] : pxnWPPsKse", + "1 | Targets [3/8] : 56c7810e40a6d484e2e4cf50cd621102edf8cc", + "1 | Targets [4/8] : 154511390d15be7f638dfc02d0", + "1 | Targets [5/8] : 84379a820dc73f35f69972ebb0d4e51bdfe976", + "1 | Targets [6/8] : 264eff86deb95d7a2ec3f7f8cc", + "1 | Targets [7/8] : c6fe165bec3198d437715df88aabe09eff3f1b", + "1 | Targets [8/8] : a8", "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Bridge : Change admin", - "1 | Admin [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Admin [2/2] : D5gRxEbABD", + "0 | Staking : Nominate", + "1 | Targets [1/8] : 5He7PuKJUkWKEpFRL2vWem8qVcrTRx6YEH5GYc", + "1 | Targets [2/8] : pxnWPPsKse", + "1 | Targets [3/8] : 56c7810e40a6d484e2e4cf50cd621102edf8cc", + "1 | Targets [4/8] : 154511390d15be7f638dfc02d0", + "1 | Targets [5/8] : 84379a820dc73f35f69972ebb0d4e51bdfe976", + "1 | Targets [6/8] : 264eff86deb95d7a2ec3f7f8cc", + "1 | Targets [7/8] : c6fe165bec3198d437715df88aabe09eff3f1b", + "1 | Targets [8/8] : a8", "2 | Chain : Polymesh", - "3 | Nonce : 2339", + "3 | Nonce : 100", "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 535, - "name": "Bridge_Change_admin", - "blob": "1001248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Nominate", + "blob": "11051000f6a780d9dfed95f8f22787548e2e7bcbc4fb7996789b0d845f3fc9312938d711028056c7810e40a6d484e2e4cf50cd621102edf8cc154511390d15be7f638dfc02d00384379a820dc73f35f69972ebb0d4e51bdfe976264eff86deb95d7a2ec3f7f8cc04c6fe165bec3198d437715df88aabe09eff3f1ba8d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Change admin", - "1 | Admin [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Admin [2/2] : D5gRxEbABD", + "0 | Staking : Nominate", + "1 | Targets [1/8] : 5He7PuKJUkWKEpFRL2vWem8qVcrTRx6YEH5GYc", + "1 | Targets [2/8] : pxnWPPsKse", + "1 | Targets [3/8] : 56c7810e40a6d484e2e4cf50cd621102edf8cc", + "1 | Targets [4/8] : 154511390d15be7f638dfc02d0", + "1 | Targets [5/8] : 84379a820dc73f35f69972ebb0d4e51bdfe976", + "1 | Targets [6/8] : 264eff86deb95d7a2ec3f7f8cc", + "1 | Targets [7/8] : c6fe165bec3198d437715df88aabe09eff3f1b", + "1 | Targets [8/8] : a8", "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Bridge : Change admin", - "1 | Admin [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Admin [2/2] : D5gRxEbABD", + "0 | Staking : Nominate", + "1 | Targets [1/8] : 5He7PuKJUkWKEpFRL2vWem8qVcrTRx6YEH5GYc", + "1 | Targets [2/8] : pxnWPPsKse", + "1 | Targets [3/8] : 56c7810e40a6d484e2e4cf50cd621102edf8cc", + "1 | Targets [4/8] : 154511390d15be7f638dfc02d0", + "1 | Targets [5/8] : 84379a820dc73f35f69972ebb0d4e51bdfe976", + "1 | Targets [6/8] : 264eff86deb95d7a2ec3f7f8cc", + "1 | Targets [7/8] : c6fe165bec3198d437715df88aabe09eff3f1b", + "1 | Targets [8/8] : a8", "2 | Chain : Polymesh", - "3 | Nonce : 100", + "3 | Nonce : 0", "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 536, - "name": "Bridge_Change_timelock", - "blob": "1002ac350000d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Chill", + "blob": "1106d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Change timelock", - "1 | Timelock : 13740", - "2 | Tip : POLYX 55.555555" + "0 | Staking : Chill" ], "output_expert": [ - "0 | Bridge : Change timelock", - "1 | Timelock : 13740", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Chill", + "1 | Chain : Polymesh", + "2 | Nonce : 100", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "5 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 537, - "name": "Bridge_Change_timelock", - "blob": "100200000000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Chill", + "blob": "1106d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Change timelock", - "1 | Timelock : 0", - "2 | Tip : POLYX 0.000987" + "0 | Staking : Chill", + "1 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Bridge : Change timelock", - "1 | Timelock : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { + "0 | Staking : Chill", + "1 | Chain : Polymesh", + "2 | Nonce : 0", + "3 | Tip : POLYX 0.000987", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { "index": 538, - "name": "Bridge_Change_timelock", - "blob": "100201000000d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Chill", + "blob": "1106d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Change timelock", - "1 | Timelock : 1", - "2 | Tip : POLYX 55.555555" + "0 | Staking : Chill", + "1 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Bridge : Change timelock", - "1 | Timelock : 1", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Chill", + "1 | Chain : Polymesh", + "2 | Nonce : 50283", + "3 | Tip : POLYX 55.555555", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 539, - "name": "Bridge_Change_timelock", - "blob": "1002ff030000d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Chill", + "blob": "1106d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Change timelock", - "1 | Timelock : 1023" + "0 | Staking : Chill", + "1 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Bridge : Change timelock", - "1 | Timelock : 1023", - "2 | Chain : Polymesh", - "3 | Nonce : 0", + "0 | Staking : Chill", + "1 | Chain : Polymesh", + "2 | Nonce : 2339", + "3 | Tip : POLYX 55.555555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 540, - "name": "Bridge_Change_timelock", - "blob": "1002ac350000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Chill", + "blob": "1106d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Change timelock", - "1 | Timelock : 13740" + "0 | Staking : Chill", + "1 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Bridge : Change timelock", - "1 | Timelock : 13740", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "0 | Staking : Chill", + "1 | Chain : Polymesh", + "2 | Nonce : 50283", + "3 | Tip : POLYX 0.000987", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 541, - "name": "Bridge_Freeze", - "blob": "1003d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Set_payee", + "blob": "110701d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Freeze", - "1 | Tip : POLYX 1234.56789" + "0 | Staking : Set payee", + "1 | Payee : Stash", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Bridge : Freeze", - "1 | Chain : Polymesh", - "2 | Nonce : 2339", - "3 | Tip : POLYX 1234.56789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Set payee", + "1 | Payee : Stash", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 542, - "name": "Bridge_Freeze", - "blob": "1003d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Set_payee", + "blob": "1107036603ab0951098b76c7dc9243f52bc0dbaaade0578017366f75aca0a9db2f7bf8d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Freeze", - "1 | Tip : POLYX 5552342.355555" + "0 | Staking : Set payee", + "1 | Payee [1/2] : 5ENTq9vp13zQz95aqTjvRB483baAr6LwWBKVSL", + "1 | Payee [2/2] : 2T5rScoDm1", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Bridge : Freeze", - "1 | Chain : Polymesh", - "2 | Nonce : 2339", - "3 | Tip : POLYX 5552342.355555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Set payee", + "1 | Payee [1/2] : 5ENTq9vp13zQz95aqTjvRB483baAr6LwWBKVSL", + "1 | Payee [2/2] : 2T5rScoDm1", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 543, - "name": "Bridge_Freeze", - "blob": "1003d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Set_payee", + "blob": "110701d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Freeze" + "0 | Staking : Set payee", + "1 | Payee : Stash", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Bridge : Freeze", - "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "5 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Set payee", + "1 | Payee : Stash", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 544, - "name": "Bridge_Freeze", - "blob": "1003d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Set_payee", + "blob": "110701d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Freeze", - "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "1 | Tip [2/2] : 3.456789" + "0 | Staking : Set payee", + "1 | Payee : Stash", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Bridge : Freeze", - "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Set payee", + "1 | Payee : Stash", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 545, - "name": "Bridge_Freeze", - "blob": "1003d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Set_payee", + "blob": "110702d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Freeze", - "1 | Tip : POLYX 1234.56789" + "0 | Staking : Set payee", + "1 | Payee : Controller", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Bridge : Freeze", - "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Tip : POLYX 1234.56789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Set payee", + "1 | Payee : Controller", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 546, - "name": "Bridge_Unfreeze", - "blob": "1004d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Set_controller", + "blob": "110800b91c0828d5fb63795639092cc1c662646babf96458aea56a4bceaee0e19bf709d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Unfreeze", - "1 | Tip : POLYX 1234.56789" + "0 | Staking : Set controller", + "1 | Controller [1/2] : 5GFR3T2aUHRosveDUW5ckQANDtWYVUKGjNbhRF", + "1 | Controller [2/2] : 6RoLCjtbjb", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Bridge : Unfreeze", - "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Tip : POLYX 1234.56789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Set controller", + "1 | Controller [1/2] : 5GFR3T2aUHRosveDUW5ckQANDtWYVUKGjNbhRF", + "1 | Controller [2/2] : 6RoLCjtbjb", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 547, - "name": "Bridge_Unfreeze", - "blob": "1004d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Set_controller", + "blob": "1108028072ddb7c3e3a9f4c83f8c34281b81c22db8f925c44d9106057bf73469e2f016bdd503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Unfreeze", - "1 | Tip : POLYX 55.555555" + "0 | Staking : Set controller", + "1 | Controller [1/2] : 72ddb7c3e3a9f4c83f8c34281b81c22db8f925", + "1 | Controller [2/2] : c44d9106057bf73469e2f016bd", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Bridge : Unfreeze", - "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Tip : POLYX 55.555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Set controller", + "1 | Controller [1/2] : 72ddb7c3e3a9f4c83f8c34281b81c22db8f925", + "1 | Controller [2/2] : c44d9106057bf73469e2f016bd", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 548, - "name": "Bridge_Unfreeze", - "blob": "1004d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Set_controller", + "blob": "1108028072ddb7c3e3a9f4c83f8c34281b81c22db8f925c44d9106057bf73469e2f016bdd5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Unfreeze", - "1 | Tip : POLYX 1234.56789" + "0 | Staking : Set controller", + "1 | Controller [1/2] : 72ddb7c3e3a9f4c83f8c34281b81c22db8f925", + "1 | Controller [2/2] : c44d9106057bf73469e2f016bd" ], "output_expert": [ - "0 | Bridge : Unfreeze", - "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip : POLYX 1234.56789", + "0 | Staking : Set controller", + "1 | Controller [1/2] : 72ddb7c3e3a9f4c83f8c34281b81c22db8f925", + "1 | Controller [2/2] : c44d9106057bf73469e2f016bd", + "2 | Chain : Polymesh", + "3 | Nonce : 0", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 549, - "name": "Bridge_Unfreeze", - "blob": "1004d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Set_controller", + "blob": "110804a6bf6ba54d74ed24f0f22ae261a6d492b9b9a2a8d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Unfreeze", - "1 | Tip : POLYX 5552342.355555" + "0 | Staking : Set controller", + "1 | Controller [1/2] : a6bf6ba54d74ed24f0f22ae261a6d492b9b9a2", + "1 | Controller [2/2] : a8", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Bridge : Unfreeze", - "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip : POLYX 5552342.355555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Set controller", + "1 | Controller [1/2] : a6bf6ba54d74ed24f0f22ae261a6d492b9b9a2", + "1 | Controller [2/2] : a8", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 550, - "name": "Bridge_Unfreeze", - "blob": "1004d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Set_controller", + "blob": "110800b91c0828d5fb63795639092cc1c662646babf96458aea56a4bceaee0e19bf709d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Unfreeze", - "1 | Tip : POLYX 0.000987" + "0 | Staking : Set controller", + "1 | Controller [1/2] : 5GFR3T2aUHRosveDUW5ckQANDtWYVUKGjNbhRF", + "1 | Controller [2/2] : 6RoLCjtbjb", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Bridge : Unfreeze", - "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip : POLYX 0.000987", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Set controller", + "1 | Controller [1/2] : 5GFR3T2aUHRosveDUW5ckQANDtWYVUKGjNbhRF", + "1 | Controller [2/2] : 6RoLCjtbjb", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 551, - "name": "Bridge_Change_bridge_limit", - "blob": "100540d8127ea9f0d1cdf6126ec9c838c9bab3e30100d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Set_validator_count", + "blob": "1109d8d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Change bridge limit", - "1 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "1 | Amount [2/2] : 4.68768", - "2 | Duration : 123827", - "3 | Tip : POLYX 0.000987" + "0 | Staking : Set validator count", + "1 | New : 54", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Bridge : Change bridge limit", - "1 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "1 | Amount [2/2] : 4.68768", - "2 | Duration : 123827", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Set validator count", + "1 | New : 54", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 552, - "name": "Bridge_Change_bridge_limit", - "blob": "100540d8127ea9f0d1cdf6126ec9c838c9ba00000000d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Set_validator_count", + "blob": "1109d8d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Change bridge limit", - "1 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "1 | Amount [2/2] : 4.68768", - "2 | Duration : 0", - "3 | Tip : POLYX 0.000987" + "0 | Staking : Set validator count", + "1 | New : 54", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Bridge : Change bridge limit", - "1 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "1 | Amount [2/2] : 4.68768", - "2 | Duration : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Set validator count", + "1 | New : 54", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 553, - "name": "Bridge_Change_bridge_limit", - "blob": "100540d8127ea9f0d1cdf6126ec9c838c9baff030000d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Set_validator_count", + "blob": "1109d8d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Change bridge limit", - "1 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "1 | Amount [2/2] : 4.68768", - "2 | Duration : 1023", - "3 | Tip : POLYX 1234.56789" + "0 | Staking : Set validator count", + "1 | New : 54", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Bridge : Change bridge limit", - "1 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "1 | Amount [2/2] : 4.68768", - "2 | Duration : 1023", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Set validator count", + "1 | New : 54", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 554, - "name": "Bridge_Change_bridge_limit", - "blob": "100540d8127ea9f0d1cdf6126ec9c838c9ba7b000000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Set_validator_count", + "blob": "110906328c93d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Change bridge limit", - "1 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "1 | Amount [2/2] : 4.68768", - "2 | Duration : 123", - "3 | Tip : POLYX 5552342.355555" + "0 | Staking : Set validator count", + "1 | New : 618859649", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Bridge : Change bridge limit", - "1 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "1 | Amount [2/2] : 4.68768", - "2 | Duration : 123", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 555, - "name": "Bridge_Change_bridge_limit", - "blob": "100540d8127ea9f0d1cdf6126ec9c838c9ba00000000d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Change bridge limit", - "1 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "1 | Amount [2/2] : 4.68768", - "2 | Duration : 0", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Bridge : Change bridge limit", - "1 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "1 | Amount [2/2] : 4.68768", - "2 | Duration : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Set validator count", + "1 | New : 618859649", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 556, - "name": "Bridge_Change_bridge_exempted", - "blob": "100600d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 555, + "name": "Staking_Set_validator_count", + "blob": "1109d8d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Change bridge exempted", - "1 | Exempted : ", + "0 | Staking : Set validator count", + "1 | New : 54", "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Bridge : Change bridge exempted", - "1 | Exempted : ", + "0 | Staking : Set validator count", + "1 | New : 54", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 1", "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 556, + "name": "Staking_Increase_validator_count", + "blob": "110a64d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Increase validator count", + "1 | Additional : 25" + ], + "output_expert": [ + "0 | Staking : Increase validator count", + "1 | Additional : 25", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 557, - "name": "Bridge_Change_bridge_exempted", - "blob": "100600d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Increase_validator_count", + "blob": "110ad8d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Change bridge exempted", - "1 | Exempted : ", + "0 | Staking : Increase validator count", + "1 | Additional : 54", "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Bridge : Change bridge exempted", - "1 | Exempted : ", + "0 | Staking : Increase validator count", + "1 | Additional : 54", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 100", "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 558, - "name": "Bridge_Change_bridge_exempted", - "blob": "100600d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Increase_validator_count", + "blob": "110a4a883debd5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Change bridge exempted", - "1 | Exempted : " + "0 | Staking : Increase validator count", + "1 | Additional : 986669586", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Bridge : Change bridge exempted", - "1 | Exempted : ", + "0 | Staking : Increase validator count", + "1 | Additional : 986669586", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 559, - "name": "Bridge_Change_bridge_exempted", - "blob": "100600d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Increase_validator_count", + "blob": "110ad8d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Change bridge exempted", - "1 | Exempted : ", - "2 | Tip : POLYX 55.555555" + "0 | Staking : Increase validator count", + "1 | Additional : 54" ], "output_expert": [ - "0 | Bridge : Change bridge exempted", - "1 | Exempted : ", + "0 | Staking : Increase validator count", + "1 | Additional : 54", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 560, - "name": "Bridge_Change_bridge_exempted", - "blob": "100608dfd80a2e76f689134fa642a79ce2e74887a3ad141d882276adc71f6b6d265d5a00deab542fe16aaa46dadc445202126cc8fb216041a3aa2fb20bb6903acc58fc2501d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Change bridge exempted", - "1 | Exempted [1/6] : dfd80a2e76f689134fa642a79ce2e74887a3ad", - "1 | Exempted [2/6] : 141d882276adc71f6b6d265d5a", - "1 | Exempted [3/6] : False", - "1 | Exempted [4/6] : deab542fe16aaa46dadc445202126cc8fb2160", - "1 | Exempted [5/6] : 41a3aa2fb20bb6903acc58fc25", - "1 | Exempted [6/6] : True", + "name": "Staking_Increase_validator_count", + "blob": "110a64d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Increase validator count", + "1 | Additional : 25", "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Bridge : Change bridge exempted", - "1 | Exempted [1/6] : dfd80a2e76f689134fa642a79ce2e74887a3ad", - "1 | Exempted [2/6] : 141d882276adc71f6b6d265d5a", - "1 | Exempted [3/6] : False", - "1 | Exempted [4/6] : deab542fe16aaa46dadc445202126cc8fb2160", - "1 | Exempted [5/6] : 41a3aa2fb20bb6903acc58fc25", - "1 | Exempted [6/6] : True", + "0 | Staking : Increase validator count", + "1 | Additional : 25", "2 | Chain : Polymesh", - "3 | Nonce : 1", + "3 | Nonce : 0", "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 561, - "name": "Bridge_Force_handle_bridge_tx", - "blob": "10078fe2010065363947d9615cae3c5b3b1eb1f76c105ac90df927340c845e2df0bcd7d386eb0000000000000000000000000000000085faef3197185a039ad6a9053f13a6cefde118c3fb9f7583f61c903e9d2f484ad503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Force handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a", - "2 | Tip : POLYX 0.000987" + "name": "Staking_Scale_validator_count", + "blob": "110b00d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Scale validator count", + "1 | Factor : 0%", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Bridge : Force handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a", + "0 | Staking : Scale validator count", + "1 | Factor : 0%", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 1", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 562, - "name": "Bridge_Force_handle_bridge_tx", - "blob": "10078fe2010065363947d9615cae3c5b3b1eb1f76c105ac90df927340c845e2df0bcd7d386eb0000000000000000000000000000000085faef3197185a039ad6a9053f13a6cefde118c3fb9f7583f61c903e9d2f484ad503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Force handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a", - "2 | Tip : POLYX 0.000987" + "name": "Staking_Scale_validator_count", + "blob": "110b00d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Scale validator count", + "1 | Factor : 0%", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Bridge : Force handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a", + "0 | Staking : Scale validator count", + "1 | Factor : 0%", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 2339", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 563, - "name": "Bridge_Force_handle_bridge_tx", - "blob": "10078fe2010065363947d9615cae3c5b3b1eb1f76c105ac90df927340c845e2df0bcd7d386eb0000000000000000000000000000000085faef3197185a039ad6a9053f13a6cefde118c3fb9f7583f61c903e9d2f484ad5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Force handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a" - ], - "output_expert": [ - "0 | Bridge : Force handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a", + "name": "Staking_Scale_validator_count", + "blob": "110b64d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Scale validator count", + "1 | Factor : 100%", + "2 | Tip : POLYX 1234.56789" + ], + "output_expert": [ + "0 | Staking : Scale validator count", + "1 | Factor : 100%", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 50283", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 564, - "name": "Bridge_Force_handle_bridge_tx", - "blob": "10078fe2010065363947d9615cae3c5b3b1eb1f76c105ac90df927340c845e2df0bcd7d386eb0000000000000000000000000000000085faef3197185a039ad6a9053f13a6cefde118c3fb9f7583f61c903e9d2f484ad503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Force handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a", + "name": "Staking_Scale_validator_count", + "blob": "110b64d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Scale validator count", + "1 | Factor : 100%", "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Bridge : Force handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a", + "0 | Staking : Scale validator count", + "1 | Factor : 100%", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 100", "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 565, - "name": "Bridge_Force_handle_bridge_tx", - "blob": "10078fe2010065363947d9615cae3c5b3b1eb1f76c105ac90df927340c845e2df0bcd7d386eb0000000000000000000000000000000085faef3197185a039ad6a9053f13a6cefde118c3fb9f7583f61c903e9d2f484ad5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Force handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a" - ], - "output_expert": [ - "0 | Bridge : Force handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a", + "name": "Staking_Scale_validator_count", + "blob": "110b64d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Scale validator count", + "1 | Factor : 100%" + ], + "output_expert": [ + "0 | Staking : Scale validator count", + "1 | Factor : 100%", "2 | Chain : Polymesh", - "3 | Nonce : 2339", + "3 | Nonce : 50283", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 566, - "name": "Bridge_Batch_propose_bridge_tx", - "blob": "100800d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Force_no_eras", + "blob": "110cd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Batch propose bridge tx", - "1 | Bridge txs : ", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Staking : Force no eras", + "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "1 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Bridge : Batch propose bridge tx", - "1 | Bridge txs : ", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Force no eras", + "1 | Chain : Polymesh", + "2 | Nonce : 50283", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 567, - "name": "Bridge_Batch_propose_bridge_tx", - "blob": "1008088fe20100bd910d4e80af2b5dc1c0a67d41ad7b63a7bab72f24f9a64b6a648180e9611bfb000000000000000000000000000000001c303517f7302d9af2659427f574956807526f3c222302064b5d3d794aded2298fe2010054af347a942133a904c8617c0ef047af40617cdd8665f194cc15cd1dd3ad4a1000000000000000000000000000000000c4e21e8a205483519008489c55a2f98cc0956ce58dad803f554ea62f4be18fd9d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Batch propose bridge tx", - "1 | Bridge txs [1/12] : 123535", - "1 | Bridge txs [2/12] : 2GjUF1Gif3mygHpDQjDZ1t1WyQ2KKfjohzYT5f", - "1 | Bridge txs [3/12] : fkLt8gLNuZ", - "1 | Bridge txs [4/12] : POLYX 0.0", - "1 | Bridge txs [5/12] : 1c303517f7302d9af2659427f574956807526f", - "1 | Bridge txs [6/12] : 3c222302064b5d3d794aded229", - "1 | Bridge txs [7/12] : 123535", - "1 | Bridge txs [8/12] : 2EMxAurGXZTyKy4oGKNdTV7TGhbLhFL91yD3sN", - "1 | Bridge txs [9/12] : 5YZaomPdn1", - "1 | Bridge txs [10/12] : POLYX 0.0", - "1 | Bridge txs [11/12] : c4e21e8a205483519008489c55a2f98cc0956c", - "1 | Bridge txs [12/12] : e58dad803f554ea62f4be18fd9", - "2 | Tip : POLYX 55.555555" + "name": "Staking_Force_no_eras", + "blob": "110cd50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Force no eras", + "1 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Bridge : Batch propose bridge tx", - "1 | Bridge txs [1/12] : 123535", - "1 | Bridge txs [2/12] : 2GjUF1Gif3mygHpDQjDZ1t1WyQ2KKfjohzYT5f", - "1 | Bridge txs [3/12] : fkLt8gLNuZ", - "1 | Bridge txs [4/12] : POLYX 0.0", - "1 | Bridge txs [5/12] : 1c303517f7302d9af2659427f574956807526f", - "1 | Bridge txs [6/12] : 3c222302064b5d3d794aded229", - "1 | Bridge txs [7/12] : 123535", - "1 | Bridge txs [8/12] : 2EMxAurGXZTyKy4oGKNdTV7TGhbLhFL91yD3sN", - "1 | Bridge txs [9/12] : 5YZaomPdn1", - "1 | Bridge txs [10/12] : POLYX 0.0", - "1 | Bridge txs [11/12] : c4e21e8a205483519008489c55a2f98cc0956c", - "1 | Bridge txs [12/12] : e58dad803f554ea62f4be18fd9", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Force no eras", + "1 | Chain : Polymesh", + "2 | Nonce : 100", + "3 | Tip : POLYX 0.000987", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 568, - "name": "Bridge_Batch_propose_bridge_tx", - "blob": "100800d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Force_no_eras", + "blob": "110cd503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Batch propose bridge tx", - "1 | Bridge txs : " + "0 | Staking : Force no eras", + "1 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Bridge : Batch propose bridge tx", - "1 | Bridge txs : ", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", + "0 | Staking : Force no eras", + "1 | Chain : Polymesh", + "2 | Nonce : 50283", + "3 | Tip : POLYX 1234.56789", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 569, - "name": "Bridge_Batch_propose_bridge_tx", - "blob": "100800d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Force_no_eras", + "blob": "110cd503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Batch propose bridge tx", - "1 | Bridge txs : ", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Staking : Force no eras", + "1 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Bridge : Batch propose bridge tx", - "1 | Bridge txs : ", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Force no eras", + "1 | Chain : Polymesh", + "2 | Nonce : 1", + "3 | Tip : POLYX 55.555555", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 570, - "name": "Bridge_Batch_propose_bridge_tx", - "blob": "1008088fe20100bd910d4e80af2b5dc1c0a67d41ad7b63a7bab72f24f9a64b6a648180e9611bfb000000000000000000000000000000001c303517f7302d9af2659427f574956807526f3c222302064b5d3d794aded2298fe2010054af347a942133a904c8617c0ef047af40617cdd8665f194cc15cd1dd3ad4a1000000000000000000000000000000000c4e21e8a205483519008489c55a2f98cc0956ce58dad803f554ea62f4be18fd9d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Batch propose bridge tx", - "1 | Bridge txs [1/12] : 123535", - "1 | Bridge txs [2/12] : 2GjUF1Gif3mygHpDQjDZ1t1WyQ2KKfjohzYT5f", - "1 | Bridge txs [3/12] : fkLt8gLNuZ", - "1 | Bridge txs [4/12] : POLYX 0.0", - "1 | Bridge txs [5/12] : 1c303517f7302d9af2659427f574956807526f", - "1 | Bridge txs [6/12] : 3c222302064b5d3d794aded229", - "1 | Bridge txs [7/12] : 123535", - "1 | Bridge txs [8/12] : 2EMxAurGXZTyKy4oGKNdTV7TGhbLhFL91yD3sN", - "1 | Bridge txs [9/12] : 5YZaomPdn1", - "1 | Bridge txs [10/12] : POLYX 0.0", - "1 | Bridge txs [11/12] : c4e21e8a205483519008489c55a2f98cc0956c", - "1 | Bridge txs [12/12] : e58dad803f554ea62f4be18fd9" - ], - "output_expert": [ - "0 | Bridge : Batch propose bridge tx", - "1 | Bridge txs [1/12] : 123535", - "1 | Bridge txs [2/12] : 2GjUF1Gif3mygHpDQjDZ1t1WyQ2KKfjohzYT5f", - "1 | Bridge txs [3/12] : fkLt8gLNuZ", - "1 | Bridge txs [4/12] : POLYX 0.0", - "1 | Bridge txs [5/12] : 1c303517f7302d9af2659427f574956807526f", - "1 | Bridge txs [6/12] : 3c222302064b5d3d794aded229", - "1 | Bridge txs [7/12] : 123535", - "1 | Bridge txs [8/12] : 2EMxAurGXZTyKy4oGKNdTV7TGhbLhFL91yD3sN", - "1 | Bridge txs [9/12] : 5YZaomPdn1", - "1 | Bridge txs [10/12] : POLYX 0.0", - "1 | Bridge txs [11/12] : c4e21e8a205483519008489c55a2f98cc0956c", - "1 | Bridge txs [12/12] : e58dad803f554ea62f4be18fd9", - "2 | Chain : Polymesh", - "3 | Nonce : 1", + "name": "Staking_Force_no_eras", + "blob": "110cd5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Force no eras", + "1 | Tip : POLYX 55.555555" + ], + "output_expert": [ + "0 | Staking : Force no eras", + "1 | Chain : Polymesh", + "2 | Nonce : 2339", + "3 | Tip : POLYX 55.555555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 571, - "name": "Bridge_Propose_bridge_tx", - "blob": "10098fe2010065363947d9615cae3c5b3b1eb1f76c105ac90df927340c845e2df0bcd7d386eb0000000000000000000000000000000085faef3197185a039ad6a9053f13a6cefde118c3fb9f7583f61c903e9d2f484ad50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Propose bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a", - "2 | Tip : POLYX 0.000987" + "name": "Staking_Force_new_era", + "blob": "110dd5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Force new era", + "1 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Bridge : Propose bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Force new era", + "1 | Chain : Polymesh", + "2 | Nonce : 1", + "3 | Tip : POLYX 1234.56789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 572, - "name": "Bridge_Propose_bridge_tx", - "blob": "10098fe2010065363947d9615cae3c5b3b1eb1f76c105ac90df927340c845e2df0bcd7d386eb0000000000000000000000000000000085faef3197185a039ad6a9053f13a6cefde118c3fb9f7583f61c903e9d2f484ad5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Propose bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a", - "2 | Tip : POLYX 1234.56789" + "name": "Staking_Force_new_era", + "blob": "110dd503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Force new era", + "1 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Bridge : Propose bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Force new era", + "1 | Chain : Polymesh", + "2 | Nonce : 50283", + "3 | Tip : POLYX 1234.56789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 573, - "name": "Bridge_Propose_bridge_tx", - "blob": "10098fe2010065363947d9615cae3c5b3b1eb1f76c105ac90df927340c845e2df0bcd7d386eb0000000000000000000000000000000085faef3197185a039ad6a9053f13a6cefde118c3fb9f7583f61c903e9d2f484ad503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Propose bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "name": "Staking_Force_new_era", + "blob": "110dd5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Force new era", + "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "1 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Bridge : Propose bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Force new era", + "1 | Chain : Polymesh", + "2 | Nonce : 0", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 574, - "name": "Bridge_Propose_bridge_tx", - "blob": "10098fe2010065363947d9615cae3c5b3b1eb1f76c105ac90df927340c845e2df0bcd7d386eb0000000000000000000000000000000085faef3197185a039ad6a9053f13a6cefde118c3fb9f7583f61c903e9d2f484ad503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Propose bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a" - ], - "output_expert": [ - "0 | Bridge : Propose bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", + "name": "Staking_Force_new_era", + "blob": "110dd5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Force new era", + "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "1 | Tip [2/2] : 3.456789" + ], + "output_expert": [ + "0 | Staking : Force new era", + "1 | Chain : Polymesh", + "2 | Nonce : 1", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789", + "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 575, - "name": "Bridge_Propose_bridge_tx", - "blob": "10098fe2010065363947d9615cae3c5b3b1eb1f76c105ac90df927340c845e2df0bcd7d386eb0000000000000000000000000000000085faef3197185a039ad6a9053f13a6cefde118c3fb9f7583f61c903e9d2f484ad5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Propose bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a", - "2 | Tip : POLYX 1234.56789" + "name": "Staking_Force_new_era", + "blob": "110dd5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Force new era", + "1 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Bridge : Propose bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Force new era", + "1 | Chain : Polymesh", + "2 | Nonce : 2339", + "3 | Tip : POLYX 5552342.355555", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 576, - "name": "Bridge_Handle_bridge_tx", - "blob": "100a8fe2010065363947d9615cae3c5b3b1eb1f76c105ac90df927340c845e2df0bcd7d386eb0000000000000000000000000000000085faef3197185a039ad6a9053f13a6cefde118c3fb9f7583f61c903e9d2f484ad503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "name": "Staking_Set_invulnerables", + "blob": "110e1442683728ce80bbeb8bc2d60272401a5a61c8c3752be4cd7646df026e35a34b6f008ccf2185eeddd862a8a228ca41e6c2cc4848ab04bdcaad75d5944fd08e1948c89b6cc70106cd9dfbfaeb50ae568e334a0b71134a3bf6539a046eccf7a3d21a04e0eb3cca1b0642d2429b165a7d4799452f61581fb18bb6c0691b13e5431a61b862f1c279831c030fcf3b8aadfb5c2dd57401fada346592e3173a98b0f2044ad503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Set invulnerables", + "1 | Invulnerables [1/10] : 5DZmyZZ6ztre9SepCA9faBJCQXDd8n85q4bp3w", + "1 | Invulnerables [2/10] : K4KDyicxGs", + "1 | Invulnerables [3/10] : 5C5Rgkds3Gnw5EHVmgWf1DQ9nc5Np4Eb32PzVX", + "1 | Invulnerables [4/10] : v4WzXj31zV", + "1 | Invulnerables [5/10] : 5Gbjc3HWVE6xmAVdyRSEZ3tcUXcd4fdsmZcdRx", + "1 | Invulnerables [6/10] : 7Qzsnv7JJY", + "1 | Invulnerables [7/10] : 5CB6s3J3kB9WwHaq3REJxi6qyn9kQtxHeVLWUv", + "1 | Invulnerables [8/10] : p7kQgmJFrY", + "1 | Invulnerables [9/10] : 5GEU4TzWkfNvnQiGkf6Ww4nhSrfB479zeWzwfe", + "1 | Invulnerables [10/10] : Hxcwz7irDp", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Bridge : Handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a", + "0 | Staking : Set invulnerables", + "1 | Invulnerables [1/10] : 5DZmyZZ6ztre9SepCA9faBJCQXDd8n85q4bp3w", + "1 | Invulnerables [2/10] : K4KDyicxGs", + "1 | Invulnerables [3/10] : 5C5Rgkds3Gnw5EHVmgWf1DQ9nc5Np4Eb32PzVX", + "1 | Invulnerables [4/10] : v4WzXj31zV", + "1 | Invulnerables [5/10] : 5Gbjc3HWVE6xmAVdyRSEZ3tcUXcd4fdsmZcdRx", + "1 | Invulnerables [6/10] : 7Qzsnv7JJY", + "1 | Invulnerables [7/10] : 5CB6s3J3kB9WwHaq3REJxi6qyn9kQtxHeVLWUv", + "1 | Invulnerables [8/10] : p7kQgmJFrY", + "1 | Invulnerables [9/10] : 5GEU4TzWkfNvnQiGkf6Ww4nhSrfB479zeWzwfe", + "1 | Invulnerables [10/10] : Hxcwz7irDp", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 577, - "name": "Bridge_Handle_bridge_tx", - "blob": "100a8fe2010065363947d9615cae3c5b3b1eb1f76c105ac90df927340c845e2df0bcd7d386eb0000000000000000000000000000000085faef3197185a039ad6a9053f13a6cefde118c3fb9f7583f61c903e9d2f484ad5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a", - "2 | Tip : POLYX 1234.56789" + "name": "Staking_Set_invulnerables", + "blob": "110e180ef151c74547b7a7500a496af42d2fab49d1fcc6820a4e18310fa25ff1f208331c3a884cb495d43667130b4ac2de24742d1e20256845ff7455234cf9da6cba05d042abb5805b65960ea6515003d5b23c6c3fe964d7b867ff08cbe54d495c6958f24a5e29c643a8d4c84c11a8b718ca29f06d45046440011cfcbc4c9e36ab4a06806746fe2cd50eab68635ab87799ab8a0b47f14076a11d843875edd1826653534ee12d695c74d86d1476e7a82cc36fa43b1eefc47ff3d2818677bb1639553307d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Set invulnerables", + "1 | Invulnerables [1/12] : 5CQJDPUqmKoQm8WwHZ7BDPyjee5aw4ccmnV9Pw", + "1 | Invulnerables [2/12] : LqriprPhPe", + "1 | Invulnerables [3/12] : 5ChiavXNPqvPDVbKRmaFeJSkq3EXZd2rdUuf6n", + "1 | Invulnerables [4/12] : UXQkWvn9CU", + "1 | Invulnerables [5/12] : 5Gmmd4Rmn2PXc3M8n2V8vAgLDxwu21Yep337Qh", + "1 | Invulnerables [6/12] : CqzSxwKhmT", + "1 | Invulnerables [7/12] : 5HYPY77hv8zkcLYg3K244RU3YTuiZSdPCpDhqq", + "1 | Invulnerables [8/12] : MNrFX6Ttoq", + "1 | Invulnerables [9/12] : 5Ey4fbG9FXRxKw4JbxN8YTgu2H6UXUjVdehV6y", + "1 | Invulnerables [10/12] : ZL6zfBpBBY", + "1 | Invulnerables [11/12] : 5Dr8V1qXmG1xRUopT82MPCqZxfFHsFGqrpancB", + "1 | Invulnerables [12/12] : TwjCZ6sjig" ], "output_expert": [ - "0 | Bridge : Handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a", + "0 | Staking : Set invulnerables", + "1 | Invulnerables [1/12] : 5CQJDPUqmKoQm8WwHZ7BDPyjee5aw4ccmnV9Pw", + "1 | Invulnerables [2/12] : LqriprPhPe", + "1 | Invulnerables [3/12] : 5ChiavXNPqvPDVbKRmaFeJSkq3EXZd2rdUuf6n", + "1 | Invulnerables [4/12] : UXQkWvn9CU", + "1 | Invulnerables [5/12] : 5Gmmd4Rmn2PXc3M8n2V8vAgLDxwu21Yep337Qh", + "1 | Invulnerables [6/12] : CqzSxwKhmT", + "1 | Invulnerables [7/12] : 5HYPY77hv8zkcLYg3K244RU3YTuiZSdPCpDhqq", + "1 | Invulnerables [8/12] : MNrFX6Ttoq", + "1 | Invulnerables [9/12] : 5Ey4fbG9FXRxKw4JbxN8YTgu2H6UXUjVdehV6y", + "1 | Invulnerables [10/12] : ZL6zfBpBBY", + "1 | Invulnerables [11/12] : 5Dr8V1qXmG1xRUopT82MPCqZxfFHsFGqrpancB", + "1 | Invulnerables [12/12] : TwjCZ6sjig", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 578, - "name": "Bridge_Handle_bridge_tx", - "blob": "100a8fe2010065363947d9615cae3c5b3b1eb1f76c105ac90df927340c845e2df0bcd7d386eb0000000000000000000000000000000085faef3197185a039ad6a9053f13a6cefde118c3fb9f7583f61c903e9d2f484ad5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a", - "2 | Tip : POLYX 5552342.355555" + "name": "Staking_Set_invulnerables", + "blob": "110e1442683728ce80bbeb8bc2d60272401a5a61c8c3752be4cd7646df026e35a34b6f008ccf2185eeddd862a8a228ca41e6c2cc4848ab04bdcaad75d5944fd08e1948c89b6cc70106cd9dfbfaeb50ae568e334a0b71134a3bf6539a046eccf7a3d21a04e0eb3cca1b0642d2429b165a7d4799452f61581fb18bb6c0691b13e5431a61b862f1c279831c030fcf3b8aadfb5c2dd57401fada346592e3173a98b0f2044ad503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Set invulnerables", + "1 | Invulnerables [1/10] : 5DZmyZZ6ztre9SepCA9faBJCQXDd8n85q4bp3w", + "1 | Invulnerables [2/10] : K4KDyicxGs", + "1 | Invulnerables [3/10] : 5C5Rgkds3Gnw5EHVmgWf1DQ9nc5Np4Eb32PzVX", + "1 | Invulnerables [4/10] : v4WzXj31zV", + "1 | Invulnerables [5/10] : 5Gbjc3HWVE6xmAVdyRSEZ3tcUXcd4fdsmZcdRx", + "1 | Invulnerables [6/10] : 7Qzsnv7JJY", + "1 | Invulnerables [7/10] : 5CB6s3J3kB9WwHaq3REJxi6qyn9kQtxHeVLWUv", + "1 | Invulnerables [8/10] : p7kQgmJFrY", + "1 | Invulnerables [9/10] : 5GEU4TzWkfNvnQiGkf6Ww4nhSrfB479zeWzwfe", + "1 | Invulnerables [10/10] : Hxcwz7irDp", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Bridge : Handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a", + "0 | Staking : Set invulnerables", + "1 | Invulnerables [1/10] : 5DZmyZZ6ztre9SepCA9faBJCQXDd8n85q4bp3w", + "1 | Invulnerables [2/10] : K4KDyicxGs", + "1 | Invulnerables [3/10] : 5C5Rgkds3Gnw5EHVmgWf1DQ9nc5Np4Eb32PzVX", + "1 | Invulnerables [4/10] : v4WzXj31zV", + "1 | Invulnerables [5/10] : 5Gbjc3HWVE6xmAVdyRSEZ3tcUXcd4fdsmZcdRx", + "1 | Invulnerables [6/10] : 7Qzsnv7JJY", + "1 | Invulnerables [7/10] : 5CB6s3J3kB9WwHaq3REJxi6qyn9kQtxHeVLWUv", + "1 | Invulnerables [8/10] : p7kQgmJFrY", + "1 | Invulnerables [9/10] : 5GEU4TzWkfNvnQiGkf6Ww4nhSrfB479zeWzwfe", + "1 | Invulnerables [10/10] : Hxcwz7irDp", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 1", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 579, - "name": "Bridge_Handle_bridge_tx", - "blob": "100a8fe2010065363947d9615cae3c5b3b1eb1f76c105ac90df927340c845e2df0bcd7d386eb0000000000000000000000000000000085faef3197185a039ad6a9053f13a6cefde118c3fb9f7583f61c903e9d2f484ad5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a", + "name": "Staking_Set_invulnerables", + "blob": "110e203c805abe04101b6fa4fc9e89c684ee50e9432d08db1ae39ec8998a801c26e328a0b64be421840cb0f57ae9a222ecb507c0e4815ad82c4c78feadfbc198468f7c08d0207b9604ddf69d9ef102862f1c814a5368907c6a451968bd43e70bcae53f1042100af1c38ad01e887cadd6c3691ee07c407e01a3e857a706a078b4522d697652f2b2f7065e209883ac75e5b3b953b4edb66391afddd00fed9bbd26edd22d801297f7ca7db4c5133f40e396b575dd3bbd9d15cbc7ff0c3a9de40a7577c01f88f08186b7b6b95ffcde374124d39e158f799da938b2634e65fd56e7e7d401159213b5d5cb1a6be9044efa7be7b00f9c12f755811a09840e7bc86098aa8cf30ed5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Set invulnerables", + "1 | Invulnerables [1/16] : 5DS2roYwteJYMxMztdRK6DJMwjgN6DWAkWzjEs", + "1 | Invulnerables [2/16] : NZD5CoiXWo", + "1 | Invulnerables [3/16] : 5FhRfw6bvEZnzaLAR6HnLUrdzuPVYQDY7EFtbV", + "1 | Invulnerables [4/16] : 6CSU9zCoNV", + "1 | Invulnerables [5/16] : 5CGG4q6R2B2xjDwFXyk7CA9HdWbsSMy5TYPfQN", + "1 | Invulnerables [6/16] : 9he3kNizS2", + "1 | Invulnerables [7/16] : 5CS2FLcgjJWzUZGu2WQ5eBaJfzd8EMQ1VmQMcn", + "1 | Invulnerables [8/16] : QtJCTQiEcn", + "1 | Invulnerables [9/16] : 5Ejr9Z3AQ2mZ91tURigFZtDT8Lg6wcjA3TmTAU", + "1 | Invulnerables [10/16] : sGVo1NrpuH", + "1 | Invulnerables [11/16] : 5ExdWXS1wsgZXSkK3ZdnVoTzjhLM2bc9hYyXr7", + "1 | Invulnerables [12/16] : SV5DXXbHZk", + "1 | Invulnerables [13/16] : 5FAFpCpNJiUxoqKkuYjCDTmakuxcc7NTAStJyL", + "1 | Invulnerables [14/16] : KTFMModfEt", + "1 | Invulnerables [15/16] : 5FNEhkrQ8pMGQroh5MNS7zSzHLtRAqpvw9nkFB", + "1 | Invulnerables [16/16] : hC9ZyYVvgh" + ], + "output_expert": [ + "0 | Staking : Set invulnerables", + "1 | Invulnerables [1/16] : 5DS2roYwteJYMxMztdRK6DJMwjgN6DWAkWzjEs", + "1 | Invulnerables [2/16] : NZD5CoiXWo", + "1 | Invulnerables [3/16] : 5FhRfw6bvEZnzaLAR6HnLUrdzuPVYQDY7EFtbV", + "1 | Invulnerables [4/16] : 6CSU9zCoNV", + "1 | Invulnerables [5/16] : 5CGG4q6R2B2xjDwFXyk7CA9HdWbsSMy5TYPfQN", + "1 | Invulnerables [6/16] : 9he3kNizS2", + "1 | Invulnerables [7/16] : 5CS2FLcgjJWzUZGu2WQ5eBaJfzd8EMQ1VmQMcn", + "1 | Invulnerables [8/16] : QtJCTQiEcn", + "1 | Invulnerables [9/16] : 5Ejr9Z3AQ2mZ91tURigFZtDT8Lg6wcjA3TmTAU", + "1 | Invulnerables [10/16] : sGVo1NrpuH", + "1 | Invulnerables [11/16] : 5ExdWXS1wsgZXSkK3ZdnVoTzjhLM2bc9hYyXr7", + "1 | Invulnerables [12/16] : SV5DXXbHZk", + "1 | Invulnerables [13/16] : 5FAFpCpNJiUxoqKkuYjCDTmakuxcc7NTAStJyL", + "1 | Invulnerables [14/16] : KTFMModfEt", + "1 | Invulnerables [15/16] : 5FNEhkrQ8pMGQroh5MNS7zSzHLtRAqpvw9nkFB", + "1 | Invulnerables [16/16] : hC9ZyYVvgh", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 580, + "name": "Staking_Set_invulnerables", + "blob": "110e203c805abe04101b6fa4fc9e89c684ee50e9432d08db1ae39ec8998a801c26e328a0b64be421840cb0f57ae9a222ecb507c0e4815ad82c4c78feadfbc198468f7c08d0207b9604ddf69d9ef102862f1c814a5368907c6a451968bd43e70bcae53f1042100af1c38ad01e887cadd6c3691ee07c407e01a3e857a706a078b4522d697652f2b2f7065e209883ac75e5b3b953b4edb66391afddd00fed9bbd26edd22d801297f7ca7db4c5133f40e396b575dd3bbd9d15cbc7ff0c3a9de40a7577c01f88f08186b7b6b95ffcde374124d39e158f799da938b2634e65fd56e7e7d401159213b5d5cb1a6be9044efa7be7b00f9c12f755811a09840e7bc86098aa8cf30ed503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Set invulnerables", + "1 | Invulnerables [1/16] : 5DS2roYwteJYMxMztdRK6DJMwjgN6DWAkWzjEs", + "1 | Invulnerables [2/16] : NZD5CoiXWo", + "1 | Invulnerables [3/16] : 5FhRfw6bvEZnzaLAR6HnLUrdzuPVYQDY7EFtbV", + "1 | Invulnerables [4/16] : 6CSU9zCoNV", + "1 | Invulnerables [5/16] : 5CGG4q6R2B2xjDwFXyk7CA9HdWbsSMy5TYPfQN", + "1 | Invulnerables [6/16] : 9he3kNizS2", + "1 | Invulnerables [7/16] : 5CS2FLcgjJWzUZGu2WQ5eBaJfzd8EMQ1VmQMcn", + "1 | Invulnerables [8/16] : QtJCTQiEcn", + "1 | Invulnerables [9/16] : 5Ejr9Z3AQ2mZ91tURigFZtDT8Lg6wcjA3TmTAU", + "1 | Invulnerables [10/16] : sGVo1NrpuH", + "1 | Invulnerables [11/16] : 5ExdWXS1wsgZXSkK3ZdnVoTzjhLM2bc9hYyXr7", + "1 | Invulnerables [12/16] : SV5DXXbHZk", + "1 | Invulnerables [13/16] : 5FAFpCpNJiUxoqKkuYjCDTmakuxcc7NTAStJyL", + "1 | Invulnerables [14/16] : KTFMModfEt", + "1 | Invulnerables [15/16] : 5FNEhkrQ8pMGQroh5MNS7zSzHLtRAqpvw9nkFB", + "1 | Invulnerables [16/16] : hC9ZyYVvgh", "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Bridge : Handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a", + "0 | Staking : Set invulnerables", + "1 | Invulnerables [1/16] : 5DS2roYwteJYMxMztdRK6DJMwjgN6DWAkWzjEs", + "1 | Invulnerables [2/16] : NZD5CoiXWo", + "1 | Invulnerables [3/16] : 5FhRfw6bvEZnzaLAR6HnLUrdzuPVYQDY7EFtbV", + "1 | Invulnerables [4/16] : 6CSU9zCoNV", + "1 | Invulnerables [5/16] : 5CGG4q6R2B2xjDwFXyk7CA9HdWbsSMy5TYPfQN", + "1 | Invulnerables [6/16] : 9he3kNizS2", + "1 | Invulnerables [7/16] : 5CS2FLcgjJWzUZGu2WQ5eBaJfzd8EMQ1VmQMcn", + "1 | Invulnerables [8/16] : QtJCTQiEcn", + "1 | Invulnerables [9/16] : 5Ejr9Z3AQ2mZ91tURigFZtDT8Lg6wcjA3TmTAU", + "1 | Invulnerables [10/16] : sGVo1NrpuH", + "1 | Invulnerables [11/16] : 5ExdWXS1wsgZXSkK3ZdnVoTzjhLM2bc9hYyXr7", + "1 | Invulnerables [12/16] : SV5DXXbHZk", + "1 | Invulnerables [13/16] : 5FAFpCpNJiUxoqKkuYjCDTmakuxcc7NTAStJyL", + "1 | Invulnerables [14/16] : KTFMModfEt", + "1 | Invulnerables [15/16] : 5FNEhkrQ8pMGQroh5MNS7zSzHLtRAqpvw9nkFB", + "1 | Invulnerables [16/16] : hC9ZyYVvgh", "2 | Chain : Polymesh", - "3 | Nonce : 2339", + "3 | Nonce : 50283", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 580, - "name": "Bridge_Handle_bridge_tx", - "blob": "100a8fe2010065363947d9615cae3c5b3b1eb1f76c105ac90df927340c845e2df0bcd7d386eb0000000000000000000000000000000085faef3197185a039ad6a9053f13a6cefde118c3fb9f7583f61c903e9d2f484ad503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a" - ], - "output_expert": [ - "0 | Bridge : Handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 581, - "name": "Bridge_Freeze_txs", - "blob": "100b088fe20100bd910d4e80af2b5dc1c0a67d41ad7b63a7bab72f24f9a64b6a648180e9611bfb000000000000000000000000000000001c303517f7302d9af2659427f574956807526f3c222302064b5d3d794aded2298fe2010054af347a942133a904c8617c0ef047af40617cdd8665f194cc15cd1dd3ad4a1000000000000000000000000000000000c4e21e8a205483519008489c55a2f98cc0956ce58dad803f554ea62f4be18fd9d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Freeze txs", - "1 | Bridge txs [1/12] : 123535", - "1 | Bridge txs [2/12] : 2GjUF1Gif3mygHpDQjDZ1t1WyQ2KKfjohzYT5f", - "1 | Bridge txs [3/12] : fkLt8gLNuZ", - "1 | Bridge txs [4/12] : POLYX 0.0", - "1 | Bridge txs [5/12] : 1c303517f7302d9af2659427f574956807526f", - "1 | Bridge txs [6/12] : 3c222302064b5d3d794aded229", - "1 | Bridge txs [7/12] : 123535", - "1 | Bridge txs [8/12] : 2EMxAurGXZTyKy4oGKNdTV7TGhbLhFL91yD3sN", - "1 | Bridge txs [9/12] : 5YZaomPdn1", - "1 | Bridge txs [10/12] : POLYX 0.0", - "1 | Bridge txs [11/12] : c4e21e8a205483519008489c55a2f98cc0956c", - "1 | Bridge txs [12/12] : e58dad803f554ea62f4be18fd9", - "2 | Tip : POLYX 5552342.355555" + "name": "Staking_Force_unstake", + "blob": "110f1ea4f867cc0e916cfbaa637a01eea0d3163df7d154720f78571790913a63521900000000d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Force unstake", + "1 | Stash [1/2] : 5CktJMt3EL46Fd9cgCmATqUnc4rBP6d1LDcAvK", + "1 | Stash [2/2] : SX5DnQkqUa", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Bridge : Freeze txs", - "1 | Bridge txs [1/12] : 123535", - "1 | Bridge txs [2/12] : 2GjUF1Gif3mygHpDQjDZ1t1WyQ2KKfjohzYT5f", - "1 | Bridge txs [3/12] : fkLt8gLNuZ", - "1 | Bridge txs [4/12] : POLYX 0.0", - "1 | Bridge txs [5/12] : 1c303517f7302d9af2659427f574956807526f", - "1 | Bridge txs [6/12] : 3c222302064b5d3d794aded229", - "1 | Bridge txs [7/12] : 123535", - "1 | Bridge txs [8/12] : 2EMxAurGXZTyKy4oGKNdTV7TGhbLhFL91yD3sN", - "1 | Bridge txs [9/12] : 5YZaomPdn1", - "1 | Bridge txs [10/12] : POLYX 0.0", - "1 | Bridge txs [11/12] : c4e21e8a205483519008489c55a2f98cc0956c", - "1 | Bridge txs [12/12] : e58dad803f554ea62f4be18fd9", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Force unstake", + "1 | Stash [1/2] : 5CktJMt3EL46Fd9cgCmATqUnc4rBP6d1LDcAvK", + "1 | Stash [2/2] : SX5DnQkqUa", + "2 | Num slashing spans : 0", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 582, - "name": "Bridge_Freeze_txs", - "blob": "100b088fe20100bd910d4e80af2b5dc1c0a67d41ad7b63a7bab72f24f9a64b6a648180e9611bfb000000000000000000000000000000001c303517f7302d9af2659427f574956807526f3c222302064b5d3d794aded2298fe2010054af347a942133a904c8617c0ef047af40617cdd8665f194cc15cd1dd3ad4a1000000000000000000000000000000000c4e21e8a205483519008489c55a2f98cc0956ce58dad803f554ea62f4be18fd9d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Freeze txs", - "1 | Bridge txs [1/12] : 123535", - "1 | Bridge txs [2/12] : 2GjUF1Gif3mygHpDQjDZ1t1WyQ2KKfjohzYT5f", - "1 | Bridge txs [3/12] : fkLt8gLNuZ", - "1 | Bridge txs [4/12] : POLYX 0.0", - "1 | Bridge txs [5/12] : 1c303517f7302d9af2659427f574956807526f", - "1 | Bridge txs [6/12] : 3c222302064b5d3d794aded229", - "1 | Bridge txs [7/12] : 123535", - "1 | Bridge txs [8/12] : 2EMxAurGXZTyKy4oGKNdTV7TGhbLhFL91yD3sN", - "1 | Bridge txs [9/12] : 5YZaomPdn1", - "1 | Bridge txs [10/12] : POLYX 0.0", - "1 | Bridge txs [11/12] : c4e21e8a205483519008489c55a2f98cc0956c", - "1 | Bridge txs [12/12] : e58dad803f554ea62f4be18fd9" - ], - "output_expert": [ - "0 | Bridge : Freeze txs", - "1 | Bridge txs [1/12] : 123535", - "1 | Bridge txs [2/12] : 2GjUF1Gif3mygHpDQjDZ1t1WyQ2KKfjohzYT5f", - "1 | Bridge txs [3/12] : fkLt8gLNuZ", - "1 | Bridge txs [4/12] : POLYX 0.0", - "1 | Bridge txs [5/12] : 1c303517f7302d9af2659427f574956807526f", - "1 | Bridge txs [6/12] : 3c222302064b5d3d794aded229", - "1 | Bridge txs [7/12] : 123535", - "1 | Bridge txs [8/12] : 2EMxAurGXZTyKy4oGKNdTV7TGhbLhFL91yD3sN", - "1 | Bridge txs [9/12] : 5YZaomPdn1", - "1 | Bridge txs [10/12] : POLYX 0.0", - "1 | Bridge txs [11/12] : c4e21e8a205483519008489c55a2f98cc0956c", - "1 | Bridge txs [12/12] : e58dad803f554ea62f4be18fd9", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "name": "Staking_Force_unstake", + "blob": "110f1ea4f867cc0e916cfbaa637a01eea0d3163df7d154720f78571790913a63521934300000d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Force unstake", + "1 | Stash [1/2] : 5CktJMt3EL46Fd9cgCmATqUnc4rBP6d1LDcAvK", + "1 | Stash [2/2] : SX5DnQkqUa" + ], + "output_expert": [ + "0 | Staking : Force unstake", + "1 | Stash [1/2] : 5CktJMt3EL46Fd9cgCmATqUnc4rBP6d1LDcAvK", + "1 | Stash [2/2] : SX5DnQkqUa", + "2 | Num slashing spans : 12340", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 583, - "name": "Bridge_Freeze_txs", - "blob": "100b00d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Force_unstake", + "blob": "110fca2d8f06d9c35d80eec81d49959918c1e6c09c314b6154fbf6e2665abc512a249d1c0000d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Freeze txs", - "1 | Bridge txs : ", - "2 | Tip : POLYX 1234.56789" + "0 | Staking : Force unstake", + "1 | Stash [1/2] : 5Gdo4eJq3jwcZ8ncshpMoSPMm3ypeeNe2441To", + "1 | Stash [2/2] : B8w88odrQ1", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Bridge : Freeze txs", - "1 | Bridge txs : ", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Force unstake", + "1 | Stash [1/2] : 5Gdo4eJq3jwcZ8ncshpMoSPMm3ypeeNe2441To", + "1 | Stash [2/2] : B8w88odrQ1", + "2 | Num slashing spans : 7325", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 584, - "name": "Bridge_Freeze_txs", - "blob": "100b088fe20100bd910d4e80af2b5dc1c0a67d41ad7b63a7bab72f24f9a64b6a648180e9611bfb000000000000000000000000000000001c303517f7302d9af2659427f574956807526f3c222302064b5d3d794aded2298fe2010054af347a942133a904c8617c0ef047af40617cdd8665f194cc15cd1dd3ad4a1000000000000000000000000000000000c4e21e8a205483519008489c55a2f98cc0956ce58dad803f554ea62f4be18fd9d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Freeze txs", - "1 | Bridge txs [1/12] : 123535", - "1 | Bridge txs [2/12] : 2GjUF1Gif3mygHpDQjDZ1t1WyQ2KKfjohzYT5f", - "1 | Bridge txs [3/12] : fkLt8gLNuZ", - "1 | Bridge txs [4/12] : POLYX 0.0", - "1 | Bridge txs [5/12] : 1c303517f7302d9af2659427f574956807526f", - "1 | Bridge txs [6/12] : 3c222302064b5d3d794aded229", - "1 | Bridge txs [7/12] : 123535", - "1 | Bridge txs [8/12] : 2EMxAurGXZTyKy4oGKNdTV7TGhbLhFL91yD3sN", - "1 | Bridge txs [9/12] : 5YZaomPdn1", - "1 | Bridge txs [10/12] : POLYX 0.0", - "1 | Bridge txs [11/12] : c4e21e8a205483519008489c55a2f98cc0956c", - "1 | Bridge txs [12/12] : e58dad803f554ea62f4be18fd9" - ], - "output_expert": [ - "0 | Bridge : Freeze txs", - "1 | Bridge txs [1/12] : 123535", - "1 | Bridge txs [2/12] : 2GjUF1Gif3mygHpDQjDZ1t1WyQ2KKfjohzYT5f", - "1 | Bridge txs [3/12] : fkLt8gLNuZ", - "1 | Bridge txs [4/12] : POLYX 0.0", - "1 | Bridge txs [5/12] : 1c303517f7302d9af2659427f574956807526f", - "1 | Bridge txs [6/12] : 3c222302064b5d3d794aded229", - "1 | Bridge txs [7/12] : 123535", - "1 | Bridge txs [8/12] : 2EMxAurGXZTyKy4oGKNdTV7TGhbLhFL91yD3sN", - "1 | Bridge txs [9/12] : 5YZaomPdn1", - "1 | Bridge txs [10/12] : POLYX 0.0", - "1 | Bridge txs [11/12] : c4e21e8a205483519008489c55a2f98cc0956c", - "1 | Bridge txs [12/12] : e58dad803f554ea62f4be18fd9", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "name": "Staking_Force_unstake", + "blob": "110feeee0fc19c12fccb5428f3defc551fa77b3eda70bcf9c86045ade577d0fd15089d1c0000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Force unstake", + "1 | Stash [1/2] : 5HTyyNf3SP6wwvJb6dmojvVT27bFkbLV2QN1Q2", + "1 | Stash [2/2] : YfRrxBgvey", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" + ], + "output_expert": [ + "0 | Staking : Force unstake", + "1 | Stash [1/2] : 5HTyyNf3SP6wwvJb6dmojvVT27bFkbLV2QN1Q2", + "1 | Stash [2/2] : YfRrxBgvey", + "2 | Num slashing spans : 7325", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 585, - "name": "Bridge_Freeze_txs", - "blob": "100b00d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Force_unstake", + "blob": "110f746a25ffb64614dd2c7d8f53d247e39763261a2a4c187c424c51edb971f3d43500000000d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Freeze txs", - "1 | Bridge txs : ", - "2 | Tip : POLYX 5552342.355555" + "0 | Staking : Force unstake", + "1 | Stash [1/2] : 5EhLwjQbRibvSWhbsvw5hvYdKHYF5besUgGbjx", + "1 | Stash [2/2] : guT8977hVy", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Bridge : Freeze txs", - "1 | Bridge txs : ", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Force unstake", + "1 | Stash [1/2] : 5EhLwjQbRibvSWhbsvw5hvYdKHYF5besUgGbjx", + "1 | Stash [2/2] : guT8977hVy", + "2 | Num slashing spans : 0", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 586, - "name": "Bridge_Unfreeze_txs", - "blob": "100c088fe20100bd910d4e80af2b5dc1c0a67d41ad7b63a7bab72f24f9a64b6a648180e9611bfb000000000000000000000000000000001c303517f7302d9af2659427f574956807526f3c222302064b5d3d794aded2298fe2010054af347a942133a904c8617c0ef047af40617cdd8665f194cc15cd1dd3ad4a1000000000000000000000000000000000c4e21e8a205483519008489c55a2f98cc0956ce58dad803f554ea62f4be18fd9d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Unfreeze txs", - "1 | Bridge txs [1/12] : 123535", - "1 | Bridge txs [2/12] : 2GjUF1Gif3mygHpDQjDZ1t1WyQ2KKfjohzYT5f", - "1 | Bridge txs [3/12] : fkLt8gLNuZ", - "1 | Bridge txs [4/12] : POLYX 0.0", - "1 | Bridge txs [5/12] : 1c303517f7302d9af2659427f574956807526f", - "1 | Bridge txs [6/12] : 3c222302064b5d3d794aded229", - "1 | Bridge txs [7/12] : 123535", - "1 | Bridge txs [8/12] : 2EMxAurGXZTyKy4oGKNdTV7TGhbLhFL91yD3sN", - "1 | Bridge txs [9/12] : 5YZaomPdn1", - "1 | Bridge txs [10/12] : POLYX 0.0", - "1 | Bridge txs [11/12] : c4e21e8a205483519008489c55a2f98cc0956c", - "1 | Bridge txs [12/12] : e58dad803f554ea62f4be18fd9" - ], - "output_expert": [ - "0 | Bridge : Unfreeze txs", - "1 | Bridge txs [1/12] : 123535", - "1 | Bridge txs [2/12] : 2GjUF1Gif3mygHpDQjDZ1t1WyQ2KKfjohzYT5f", - "1 | Bridge txs [3/12] : fkLt8gLNuZ", - "1 | Bridge txs [4/12] : POLYX 0.0", - "1 | Bridge txs [5/12] : 1c303517f7302d9af2659427f574956807526f", - "1 | Bridge txs [6/12] : 3c222302064b5d3d794aded229", - "1 | Bridge txs [7/12] : 123535", - "1 | Bridge txs [8/12] : 2EMxAurGXZTyKy4oGKNdTV7TGhbLhFL91yD3sN", - "1 | Bridge txs [9/12] : 5YZaomPdn1", - "1 | Bridge txs [10/12] : POLYX 0.0", - "1 | Bridge txs [11/12] : c4e21e8a205483519008489c55a2f98cc0956c", - "1 | Bridge txs [12/12] : e58dad803f554ea62f4be18fd9", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "name": "Staking_Force_new_era_always", + "blob": "1110d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Force new era always", + "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "1 | Tip [2/2] : 3.456789" + ], + "output_expert": [ + "0 | Staking : Force new era always", + "1 | Chain : Polymesh", + "2 | Nonce : 0", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 587, - "name": "Bridge_Unfreeze_txs", - "blob": "100c088fe20100bd910d4e80af2b5dc1c0a67d41ad7b63a7bab72f24f9a64b6a648180e9611bfb000000000000000000000000000000001c303517f7302d9af2659427f574956807526f3c222302064b5d3d794aded2298fe2010054af347a942133a904c8617c0ef047af40617cdd8665f194cc15cd1dd3ad4a1000000000000000000000000000000000c4e21e8a205483519008489c55a2f98cc0956ce58dad803f554ea62f4be18fd9d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Unfreeze txs", - "1 | Bridge txs [1/12] : 123535", - "1 | Bridge txs [2/12] : 2GjUF1Gif3mygHpDQjDZ1t1WyQ2KKfjohzYT5f", - "1 | Bridge txs [3/12] : fkLt8gLNuZ", - "1 | Bridge txs [4/12] : POLYX 0.0", - "1 | Bridge txs [5/12] : 1c303517f7302d9af2659427f574956807526f", - "1 | Bridge txs [6/12] : 3c222302064b5d3d794aded229", - "1 | Bridge txs [7/12] : 123535", - "1 | Bridge txs [8/12] : 2EMxAurGXZTyKy4oGKNdTV7TGhbLhFL91yD3sN", - "1 | Bridge txs [9/12] : 5YZaomPdn1", - "1 | Bridge txs [10/12] : POLYX 0.0", - "1 | Bridge txs [11/12] : c4e21e8a205483519008489c55a2f98cc0956c", - "1 | Bridge txs [12/12] : e58dad803f554ea62f4be18fd9", - "2 | Tip : POLYX 5552342.355555" + "name": "Staking_Force_new_era_always", + "blob": "1110d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Force new era always", + "1 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Bridge : Unfreeze txs", - "1 | Bridge txs [1/12] : 123535", - "1 | Bridge txs [2/12] : 2GjUF1Gif3mygHpDQjDZ1t1WyQ2KKfjohzYT5f", - "1 | Bridge txs [3/12] : fkLt8gLNuZ", - "1 | Bridge txs [4/12] : POLYX 0.0", - "1 | Bridge txs [5/12] : 1c303517f7302d9af2659427f574956807526f", - "1 | Bridge txs [6/12] : 3c222302064b5d3d794aded229", - "1 | Bridge txs [7/12] : 123535", - "1 | Bridge txs [8/12] : 2EMxAurGXZTyKy4oGKNdTV7TGhbLhFL91yD3sN", - "1 | Bridge txs [9/12] : 5YZaomPdn1", - "1 | Bridge txs [10/12] : POLYX 0.0", - "1 | Bridge txs [11/12] : c4e21e8a205483519008489c55a2f98cc0956c", - "1 | Bridge txs [12/12] : e58dad803f554ea62f4be18fd9", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Force new era always", + "1 | Chain : Polymesh", + "2 | Nonce : 50283", + "3 | Tip : POLYX 1234.56789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 588, - "name": "Bridge_Unfreeze_txs", - "blob": "100c00d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Force_new_era_always", + "blob": "1110d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Unfreeze txs", - "1 | Bridge txs : " + "0 | Staking : Force new era always", + "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "1 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Bridge : Unfreeze txs", - "1 | Bridge txs : ", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", + "0 | Staking : Force new era always", + "1 | Chain : Polymesh", + "2 | Nonce : 0", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 589, - "name": "Bridge_Unfreeze_txs", - "blob": "100c00d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Force_new_era_always", + "blob": "1110d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Unfreeze txs", - "1 | Bridge txs : ", - "2 | Tip : POLYX 0.000987" + "0 | Staking : Force new era always", + "1 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Bridge : Unfreeze txs", - "1 | Bridge txs : ", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Force new era always", + "1 | Chain : Polymesh", + "2 | Nonce : 100", + "3 | Tip : POLYX 0.000987", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 590, - "name": "Bridge_Unfreeze_txs", - "blob": "100c00d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Force_new_era_always", + "blob": "1110d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Unfreeze txs", - "1 | Bridge txs : ", - "2 | Tip : POLYX 0.000987" + "0 | Staking : Force new era always", + "1 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Bridge : Unfreeze txs", - "1 | Bridge txs : ", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Force new era always", + "1 | Chain : Polymesh", + "2 | Nonce : 0", + "3 | Tip : POLYX 0.000987", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 591, - "name": "Bridge_Handle_scheduled_bridge_tx", - "blob": "100d8fe2010065363947d9615cae3c5b3b1eb1f76c105ac90df927340c845e2df0bcd7d386eb0000000000000000000000000000000085faef3197185a039ad6a9053f13a6cefde118c3fb9f7583f61c903e9d2f484ad503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Handle scheduled bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a", - "2 | Tip : POLYX 0.000987" + "name": "Staking_Cancel_deferred_slash", + "blob": "1111f7010000100c000000290000003400000035000000d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Cancel deferred slash", + "1 | Era : 503", + "2 | Slash indices [1/4] : 12", + "2 | Slash indices [2/4] : 41", + "2 | Slash indices [3/4] : 52", + "2 | Slash indices [4/4] : 53", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Bridge : Handle scheduled bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Cancel deferred slash", + "1 | Era : 503", + "2 | Slash indices [1/4] : 12", + "2 | Slash indices [2/4] : 41", + "2 | Slash indices [3/4] : 52", + "2 | Slash indices [4/4] : 53", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 592, - "name": "Bridge_Handle_scheduled_bridge_tx", - "blob": "100d8fe2010065363947d9615cae3c5b3b1eb1f76c105ac90df927340c845e2df0bcd7d386eb0000000000000000000000000000000085faef3197185a039ad6a9053f13a6cefde118c3fb9f7583f61c903e9d2f484ad50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Handle scheduled bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a", - "2 | Tip : POLYX 5552342.355555" + "name": "Staking_Cancel_deferred_slash", + "blob": "1111d3040000100e0000002a0000000c00000049000000d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Cancel deferred slash", + "1 | Era : 1235", + "2 | Slash indices [1/4] : 14", + "2 | Slash indices [2/4] : 42", + "2 | Slash indices [3/4] : 12", + "2 | Slash indices [4/4] : 73", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Bridge : Handle scheduled bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Cancel deferred slash", + "1 | Era : 1235", + "2 | Slash indices [1/4] : 14", + "2 | Slash indices [2/4] : 42", + "2 | Slash indices [3/4] : 12", + "2 | Slash indices [4/4] : 73", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 593, - "name": "Bridge_Handle_scheduled_bridge_tx", - "blob": "100d8fe2010065363947d9615cae3c5b3b1eb1f76c105ac90df927340c845e2df0bcd7d386eb0000000000000000000000000000000085faef3197185a039ad6a9053f13a6cefde118c3fb9f7583f61c903e9d2f484ad503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Handle scheduled bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a" - ], - "output_expert": [ - "0 | Bridge : Handle scheduled bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "name": "Staking_Cancel_deferred_slash", + "blob": "1111f7010000100d0000000c0000001300000023000000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Cancel deferred slash", + "1 | Era : 503", + "2 | Slash indices [1/4] : 13", + "2 | Slash indices [2/4] : 12", + "2 | Slash indices [3/4] : 19", + "2 | Slash indices [4/4] : 35", + "3 | Tip : POLYX 0.000987" + ], + "output_expert": [ + "0 | Staking : Cancel deferred slash", + "1 | Era : 503", + "2 | Slash indices [1/4] : 13", + "2 | Slash indices [2/4] : 12", + "2 | Slash indices [3/4] : 19", + "2 | Slash indices [4/4] : 35", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 594, - "name": "Bridge_Handle_scheduled_bridge_tx", - "blob": "100d8fe2010065363947d9615cae3c5b3b1eb1f76c105ac90df927340c845e2df0bcd7d386eb0000000000000000000000000000000085faef3197185a039ad6a9053f13a6cefde118c3fb9f7583f61c903e9d2f484ad5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Handle scheduled bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "name": "Staking_Cancel_deferred_slash", + "blob": "11113430000010200000000b000000200000000b000000d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Cancel deferred slash", + "1 | Era : 12340", + "2 | Slash indices [1/4] : 32", + "2 | Slash indices [2/4] : 11", + "2 | Slash indices [3/4] : 32", + "2 | Slash indices [4/4] : 11", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Bridge : Handle scheduled bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Cancel deferred slash", + "1 | Era : 12340", + "2 | Slash indices [1/4] : 32", + "2 | Slash indices [2/4] : 11", + "2 | Slash indices [3/4] : 32", + "2 | Slash indices [4/4] : 11", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 595, - "name": "Bridge_Handle_scheduled_bridge_tx", - "blob": "100d8fe2010065363947d9615cae3c5b3b1eb1f76c105ac90df927340c845e2df0bcd7d386eb0000000000000000000000000000000085faef3197185a039ad6a9053f13a6cefde118c3fb9f7583f61c903e9d2f484ad503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Handle scheduled bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a", - "2 | Tip : POLYX 0.000987" + "name": "Staking_Cancel_deferred_slash", + "blob": "11119d1c0000100c000000290000003400000035000000d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Cancel deferred slash", + "1 | Era : 7325", + "2 | Slash indices [1/4] : 12", + "2 | Slash indices [2/4] : 41", + "2 | Slash indices [3/4] : 52", + "2 | Slash indices [4/4] : 53", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Bridge : Handle scheduled bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2Ejd3fhZfHDQ7wb9eU5ytzsruWXB5aesbrJMHA", - "1 | Bridge tx [3/6] : HE3AhqgAmJ", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 85faef3197185a039ad6a9053f13a6cefde118", - "1 | Bridge tx [6/6] : c3fb9f7583f61c903e9d2f484a", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Cancel deferred slash", + "1 | Era : 7325", + "2 | Slash indices [1/4] : 12", + "2 | Slash indices [2/4] : 41", + "2 | Slash indices [3/4] : 52", + "2 | Slash indices [4/4] : 53", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 596, - "name": "Bridge_Add_freeze_admin", - "blob": "100e248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Payout_stakers", + "blob": "1112b0a4982a123e870e98be45944a32d76664a4cc899c3810c0300718516f0cb60ad3040000d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Add freeze admin", - "1 | Freeze admin [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Freeze admin [2/2] : D5gRxEbABD", - "2 | Tip : POLYX 1234.56789" + "0 | Staking : Payout stakers", + "1 | Validator stash [1/2] : 5G4KBNUrpvHsFu9ZvQ5fKsbBcR2K4SBgjxgSdM", + "1 | Validator stash [2/2] : T1Vu2VKdbZ", + "2 | Era : 1235", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Bridge : Add freeze admin", - "1 | Freeze admin [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Freeze admin [2/2] : D5gRxEbABD", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Payout stakers", + "1 | Validator stash [1/2] : 5G4KBNUrpvHsFu9ZvQ5fKsbBcR2K4SBgjxgSdM", + "1 | Validator stash [2/2] : T1Vu2VKdbZ", + "2 | Era : 1235", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 597, - "name": "Bridge_Add_freeze_admin", - "blob": "100e248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Payout_stakers", + "blob": "1112b0a4982a123e870e98be45944a32d76664a4cc899c3810c0300718516f0cb60af7010000d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Add freeze admin", - "1 | Freeze admin [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Freeze admin [2/2] : D5gRxEbABD", - "2 | Tip : POLYX 1234.56789" + "0 | Staking : Payout stakers", + "1 | Validator stash [1/2] : 5G4KBNUrpvHsFu9ZvQ5fKsbBcR2K4SBgjxgSdM", + "1 | Validator stash [2/2] : T1Vu2VKdbZ", + "2 | Era : 503", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Bridge : Add freeze admin", - "1 | Freeze admin [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Freeze admin [2/2] : D5gRxEbABD", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Payout stakers", + "1 | Validator stash [1/2] : 5G4KBNUrpvHsFu9ZvQ5fKsbBcR2K4SBgjxgSdM", + "1 | Validator stash [2/2] : T1Vu2VKdbZ", + "2 | Era : 503", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 598, - "name": "Bridge_Add_freeze_admin", - "blob": "100e248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Payout_stakers", + "blob": "11121ea4f867cc0e916cfbaa637a01eea0d3163df7d154720f78571790913a63521900000000d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Add freeze admin", - "1 | Freeze admin [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Freeze admin [2/2] : D5gRxEbABD", - "2 | Tip : POLYX 1234.56789" + "0 | Staking : Payout stakers", + "1 | Validator stash [1/2] : 5CktJMt3EL46Fd9cgCmATqUnc4rBP6d1LDcAvK", + "1 | Validator stash [2/2] : SX5DnQkqUa", + "2 | Era : 0", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Bridge : Add freeze admin", - "1 | Freeze admin [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Freeze admin [2/2] : D5gRxEbABD", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Payout stakers", + "1 | Validator stash [1/2] : 5CktJMt3EL46Fd9cgCmATqUnc4rBP6d1LDcAvK", + "1 | Validator stash [2/2] : SX5DnQkqUa", + "2 | Era : 0", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 599, - "name": "Bridge_Add_freeze_admin", - "blob": "100e248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Payout_stakers", + "blob": "11122e5388ccb167c9fe3baeba3fed959f63c4e8bceb6c7387a77940029c14239820f7010000d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Add freeze admin", - "1 | Freeze admin [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Freeze admin [2/2] : D5gRxEbABD", - "2 | Tip : POLYX 55.555555" + "0 | Staking : Payout stakers", + "1 | Validator stash [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "1 | Validator stash [2/2] : qta7VKQZKw", + "2 | Era : 503" ], "output_expert": [ - "0 | Bridge : Add freeze admin", - "1 | Freeze admin [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Freeze admin [2/2] : D5gRxEbABD", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", + "0 | Staking : Payout stakers", + "1 | Validator stash [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "1 | Validator stash [2/2] : qta7VKQZKw", + "2 | Era : 503", + "3 | Chain : Polymesh", + "4 | Nonce : 100", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 600, - "name": "Bridge_Add_freeze_admin", - "blob": "100e248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Payout_stakers", + "blob": "11122e5388ccb167c9fe3baeba3fed959f63c4e8bceb6c7387a77940029c14239820d3040000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Add freeze admin", - "1 | Freeze admin [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Freeze admin [2/2] : D5gRxEbABD", - "2 | Tip : POLYX 1234.56789" + "0 | Staking : Payout stakers", + "1 | Validator stash [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "1 | Validator stash [2/2] : qta7VKQZKw", + "2 | Era : 1235", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Bridge : Add freeze admin", - "1 | Freeze admin [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Freeze admin [2/2] : D5gRxEbABD", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Payout stakers", + "1 | Validator stash [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "1 | Validator stash [2/2] : qta7VKQZKw", + "2 | Era : 1235", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 601, - "name": "Bridge_Remove_freeze_admin", - "blob": "100f248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Rebond", + "blob": "11136d0fd50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Remove freeze admin", - "1 | Freeze admin [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Freeze admin [2/2] : D5gRxEbABD" + "0 | Staking : Rebond", + "1 | Amount : POLYX 0.000987", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Bridge : Remove freeze admin", - "1 | Freeze admin [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Freeze admin [2/2] : D5gRxEbABD", + "0 | Staking : Rebond", + "1 | Amount : POLYX 0.000987", "2 | Chain : Polymesh", "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 602, - "name": "Bridge_Remove_freeze_admin", - "blob": "100f248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Rebond", + "blob": "111300d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Remove freeze admin", - "1 | Freeze admin [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Freeze admin [2/2] : D5gRxEbABD" + "0 | Staking : Rebond", + "1 | Amount : POLYX 0.0", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Bridge : Remove freeze admin", - "1 | Freeze admin [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Freeze admin [2/2] : D5gRxEbABD", + "0 | Staking : Rebond", + "1 | Amount : POLYX 0.0", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 0", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 603, - "name": "Bridge_Remove_freeze_admin", - "blob": "100f248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Rebond", + "blob": "111303d2029649d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Remove freeze admin", - "1 | Freeze admin [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Freeze admin [2/2] : D5gRxEbABD", - "2 | Tip : POLYX 5552342.355555" + "0 | Staking : Rebond", + "1 | Amount : POLYX 1234.56789", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Bridge : Remove freeze admin", - "1 | Freeze admin [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Freeze admin [2/2] : D5gRxEbABD", + "0 | Staking : Rebond", + "1 | Amount : POLYX 1234.56789", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 604, - "name": "Bridge_Remove_freeze_admin", - "blob": "100f248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Rebond", + "blob": "11136d0fd503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Remove freeze admin", - "1 | Freeze admin [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Freeze admin [2/2] : D5gRxEbABD", - "2 | Tip : POLYX 1234.56789" + "0 | Staking : Rebond", + "1 | Amount : POLYX 0.000987", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Bridge : Remove freeze admin", - "1 | Freeze admin [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Freeze admin [2/2] : D5gRxEbABD", + "0 | Staking : Rebond", + "1 | Amount : POLYX 0.000987", "2 | Chain : Polymesh", "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 605, - "name": "Bridge_Remove_freeze_admin", - "blob": "100f248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Rebond", + "blob": "111333158139ae28a3dfaac5fe1560a5e9e05cd5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Remove freeze admin", - "1 | Freeze admin [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Freeze admin [2/2] : D5gRxEbABD", - "2 | Tip : POLYX 5552342.355555" + "0 | Staking : Rebond", + "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "1 | Amount [2/2] : 3.456789" ], "output_expert": [ - "0 | Bridge : Remove freeze admin", - "1 | Freeze admin [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Freeze admin [2/2] : D5gRxEbABD", + "0 | Staking : Rebond", + "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "1 | Amount [2/2] : 3.456789", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 606, - "name": "Bridge_Remove_txs", - "blob": "101000d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Reap_stash", + "blob": "1114b0a4982a123e870e98be45944a32d76664a4cc899c3810c0300718516f0cb60af7010000d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Remove txs", - "1 | Bridge txs : ", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Staking : Reap stash", + "1 | Stash [1/2] : 5G4KBNUrpvHsFu9ZvQ5fKsbBcR2K4SBgjxgSdM", + "1 | Stash [2/2] : T1Vu2VKdbZ", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Bridge : Remove txs", - "1 | Bridge txs : ", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Reap stash", + "1 | Stash [1/2] : 5G4KBNUrpvHsFu9ZvQ5fKsbBcR2K4SBgjxgSdM", + "1 | Stash [2/2] : T1Vu2VKdbZ", + "2 | Num slashing spans : 503", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 607, - "name": "Bridge_Remove_txs", - "blob": "101000d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Reap_stash", + "blob": "11142e5388ccb167c9fe3baeba3fed959f63c4e8bceb6c7387a77940029c1423982000000000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Remove txs", - "1 | Bridge txs : ", - "2 | Tip : POLYX 55.555555" + "0 | Staking : Reap stash", + "1 | Stash [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "1 | Stash [2/2] : qta7VKQZKw", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Bridge : Remove txs", - "1 | Bridge txs : ", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Reap stash", + "1 | Stash [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "1 | Stash [2/2] : qta7VKQZKw", + "2 | Num slashing spans : 0", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 608, - "name": "Bridge_Remove_txs", - "blob": "101000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Reap_stash", + "blob": "1114ca2d8f06d9c35d80eec81d49959918c1e6c09c314b6154fbf6e2665abc512a24f7010000d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Remove txs", - "1 | Bridge txs : ", - "2 | Tip : POLYX 55.555555" + "0 | Staking : Reap stash", + "1 | Stash [1/2] : 5Gdo4eJq3jwcZ8ncshpMoSPMm3ypeeNe2441To", + "1 | Stash [2/2] : B8w88odrQ1", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Bridge : Remove txs", - "1 | Bridge txs : ", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", + "0 | Staking : Reap stash", + "1 | Stash [1/2] : 5Gdo4eJq3jwcZ8ncshpMoSPMm3ypeeNe2441To", + "1 | Stash [2/2] : B8w88odrQ1", + "2 | Num slashing spans : 503", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 609, + "name": "Staking_Reap_stash", + "blob": "1114ca2d8f06d9c35d80eec81d49959918c1e6c09c314b6154fbf6e2665abc512a24f7010000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Reap stash", + "1 | Stash [1/2] : 5Gdo4eJq3jwcZ8ncshpMoSPMm3ypeeNe2441To", + "1 | Stash [2/2] : B8w88odrQ1" + ], + "output_expert": [ + "0 | Staking : Reap stash", + "1 | Stash [1/2] : 5Gdo4eJq3jwcZ8ncshpMoSPMm3ypeeNe2441To", + "1 | Stash [2/2] : B8w88odrQ1", + "2 | Num slashing spans : 503", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 609, - "name": "Bridge_Remove_txs", - "blob": "101000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 610, + "name": "Staking_Reap_stash", + "blob": "11142e5388ccb167c9fe3baeba3fed959f63c4e8bceb6c7387a77940029c1423982034300000d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Bridge : Remove txs", - "1 | Bridge txs : " + "0 | Staking : Reap stash", + "1 | Stash [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "1 | Stash [2/2] : qta7VKQZKw", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Bridge : Remove txs", - "1 | Bridge txs : ", + "0 | Staking : Reap stash", + "1 | Stash [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "1 | Stash [2/2] : qta7VKQZKw", + "2 | Num slashing spans : 12340", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 611, + "name": "Staking_Kick", + "blob": "11151000f6a780d9dfed95f8f22787548e2e7bcbc4fb7996789b0d845f3fc9312938d711028056c7810e40a6d484e2e4cf50cd621102edf8cc154511390d15be7f638dfc02d00384379a820dc73f35f69972ebb0d4e51bdfe976264eff86deb95d7a2ec3f7f8cc04c6fe165bec3198d437715df88aabe09eff3f1ba8d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Kick", + "1 | Who [1/8] : 5He7PuKJUkWKEpFRL2vWem8qVcrTRx6YEH5GYc", + "1 | Who [2/8] : pxnWPPsKse", + "1 | Who [3/8] : 56c7810e40a6d484e2e4cf50cd621102edf8cc", + "1 | Who [4/8] : 154511390d15be7f638dfc02d0", + "1 | Who [5/8] : 84379a820dc73f35f69972ebb0d4e51bdfe976", + "1 | Who [6/8] : 264eff86deb95d7a2ec3f7f8cc", + "1 | Who [7/8] : c6fe165bec3198d437715df88aabe09eff3f1b", + "1 | Who [8/8] : a8" + ], + "output_expert": [ + "0 | Staking : Kick", + "1 | Who [1/8] : 5He7PuKJUkWKEpFRL2vWem8qVcrTRx6YEH5GYc", + "1 | Who [2/8] : pxnWPPsKse", + "1 | Who [3/8] : 56c7810e40a6d484e2e4cf50cd621102edf8cc", + "1 | Who [4/8] : 154511390d15be7f638dfc02d0", + "1 | Who [5/8] : 84379a820dc73f35f69972ebb0d4e51bdfe976", + "1 | Who [6/8] : 264eff86deb95d7a2ec3f7f8cc", + "1 | Who [7/8] : c6fe165bec3198d437715df88aabe09eff3f1b", + "1 | Who [8/8] : a8", "2 | Chain : Polymesh", - "3 | Nonce : 2339", + "3 | Nonce : 100", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 610, - "name": "Bridge_Remove_txs", - "blob": "1010088fe20100bd910d4e80af2b5dc1c0a67d41ad7b63a7bab72f24f9a64b6a648180e9611bfb000000000000000000000000000000001c303517f7302d9af2659427f574956807526f3c222302064b5d3d794aded2298fe2010054af347a942133a904c8617c0ef047af40617cdd8665f194cc15cd1dd3ad4a1000000000000000000000000000000000c4e21e8a205483519008489c55a2f98cc0956ce58dad803f554ea62f4be18fd9d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Remove txs", - "1 | Bridge txs [1/12] : 123535", - "1 | Bridge txs [2/12] : 2GjUF1Gif3mygHpDQjDZ1t1WyQ2KKfjohzYT5f", - "1 | Bridge txs [3/12] : fkLt8gLNuZ", - "1 | Bridge txs [4/12] : POLYX 0.0", - "1 | Bridge txs [5/12] : 1c303517f7302d9af2659427f574956807526f", - "1 | Bridge txs [6/12] : 3c222302064b5d3d794aded229", - "1 | Bridge txs [7/12] : 123535", - "1 | Bridge txs [8/12] : 2EMxAurGXZTyKy4oGKNdTV7TGhbLhFL91yD3sN", - "1 | Bridge txs [9/12] : 5YZaomPdn1", - "1 | Bridge txs [10/12] : POLYX 0.0", - "1 | Bridge txs [11/12] : c4e21e8a205483519008489c55a2f98cc0956c", - "1 | Bridge txs [12/12] : e58dad803f554ea62f4be18fd9" - ], - "output_expert": [ - "0 | Bridge : Remove txs", - "1 | Bridge txs [1/12] : 123535", - "1 | Bridge txs [2/12] : 2GjUF1Gif3mygHpDQjDZ1t1WyQ2KKfjohzYT5f", - "1 | Bridge txs [3/12] : fkLt8gLNuZ", - "1 | Bridge txs [4/12] : POLYX 0.0", - "1 | Bridge txs [5/12] : 1c303517f7302d9af2659427f574956807526f", - "1 | Bridge txs [6/12] : 3c222302064b5d3d794aded229", - "1 | Bridge txs [7/12] : 123535", - "1 | Bridge txs [8/12] : 2EMxAurGXZTyKy4oGKNdTV7TGhbLhFL91yD3sN", - "1 | Bridge txs [9/12] : 5YZaomPdn1", - "1 | Bridge txs [10/12] : POLYX 0.0", - "1 | Bridge txs [11/12] : c4e21e8a205483519008489c55a2f98cc0956c", - "1 | Bridge txs [12/12] : e58dad803f554ea62f4be18fd9", + "index": 612, + "name": "Staking_Kick", + "blob": "11151000f6a780d9dfed95f8f22787548e2e7bcbc4fb7996789b0d845f3fc9312938d711028056c7810e40a6d484e2e4cf50cd621102edf8cc154511390d15be7f638dfc02d00384379a820dc73f35f69972ebb0d4e51bdfe976264eff86deb95d7a2ec3f7f8cc04c6fe165bec3198d437715df88aabe09eff3f1ba8d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Kick", + "1 | Who [1/8] : 5He7PuKJUkWKEpFRL2vWem8qVcrTRx6YEH5GYc", + "1 | Who [2/8] : pxnWPPsKse", + "1 | Who [3/8] : 56c7810e40a6d484e2e4cf50cd621102edf8cc", + "1 | Who [4/8] : 154511390d15be7f638dfc02d0", + "1 | Who [5/8] : 84379a820dc73f35f69972ebb0d4e51bdfe976", + "1 | Who [6/8] : 264eff86deb95d7a2ec3f7f8cc", + "1 | Who [7/8] : c6fe165bec3198d437715df88aabe09eff3f1b", + "1 | Who [8/8] : a8", + "2 | Tip : POLYX 0.000987" + ], + "output_expert": [ + "0 | Staking : Kick", + "1 | Who [1/8] : 5He7PuKJUkWKEpFRL2vWem8qVcrTRx6YEH5GYc", + "1 | Who [2/8] : pxnWPPsKse", + "1 | Who [3/8] : 56c7810e40a6d484e2e4cf50cd621102edf8cc", + "1 | Who [4/8] : 154511390d15be7f638dfc02d0", + "1 | Who [5/8] : 84379a820dc73f35f69972ebb0d4e51bdfe976", + "1 | Who [6/8] : 264eff86deb95d7a2ec3f7f8cc", + "1 | Who [7/8] : c6fe165bec3198d437715df88aabe09eff3f1b", + "1 | Who [8/8] : a8", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 50283", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 611, - "name": "Staking_Bond", - "blob": "110002809a2cafb174b302f0f381d2705358111a9c905c258e089eb940a3046ae641e43f33158139ae28a3dfaac5fe1560a5e9e05c02d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Bond", - "1 | Controller [1/2] : 9a2cafb174b302f0f381d2705358111a9c905c", - "1 | Controller [2/2] : 258e089eb940a3046ae641e43f", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789", - "3 | Payee : Controller", - "4 | Tip : POLYX 0.000987" + "index": 613, + "name": "Staking_Kick", + "blob": "11151000f6a780d9dfed95f8f22787548e2e7bcbc4fb7996789b0d845f3fc9312938d711028056c7810e40a6d484e2e4cf50cd621102edf8cc154511390d15be7f638dfc02d00384379a820dc73f35f69972ebb0d4e51bdfe976264eff86deb95d7a2ec3f7f8cc04c6fe165bec3198d437715df88aabe09eff3f1ba8d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Kick", + "1 | Who [1/8] : 5He7PuKJUkWKEpFRL2vWem8qVcrTRx6YEH5GYc", + "1 | Who [2/8] : pxnWPPsKse", + "1 | Who [3/8] : 56c7810e40a6d484e2e4cf50cd621102edf8cc", + "1 | Who [4/8] : 154511390d15be7f638dfc02d0", + "1 | Who [5/8] : 84379a820dc73f35f69972ebb0d4e51bdfe976", + "1 | Who [6/8] : 264eff86deb95d7a2ec3f7f8cc", + "1 | Who [7/8] : c6fe165bec3198d437715df88aabe09eff3f1b", + "1 | Who [8/8] : a8", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Staking : Bond", - "1 | Controller [1/2] : 9a2cafb174b302f0f381d2705358111a9c905c", - "1 | Controller [2/2] : 258e089eb940a3046ae641e43f", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789", - "3 | Payee : Controller", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Kick", + "1 | Who [1/8] : 5He7PuKJUkWKEpFRL2vWem8qVcrTRx6YEH5GYc", + "1 | Who [2/8] : pxnWPPsKse", + "1 | Who [3/8] : 56c7810e40a6d484e2e4cf50cd621102edf8cc", + "1 | Who [4/8] : 154511390d15be7f638dfc02d0", + "1 | Who [5/8] : 84379a820dc73f35f69972ebb0d4e51bdfe976", + "1 | Who [6/8] : 264eff86deb95d7a2ec3f7f8cc", + "1 | Who [7/8] : c6fe165bec3198d437715df88aabe09eff3f1b", + "1 | Who [8/8] : a8", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 612, - "name": "Staking_Bond", - "blob": "110002809a2cafb174b302f0f381d2705358111a9c905c258e089eb940a3046ae641e43f8ed73e0d01d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Bond", - "1 | Controller [1/2] : 9a2cafb174b302f0f381d2705358111a9c905c", - "1 | Controller [2/2] : 258e089eb940a3046ae641e43f", - "2 | Amount : POLYX 55.555555", - "3 | Payee : Stash", - "4 | Tip : POLYX 0.000987" + "index": 614, + "name": "Staking_Kick", + "blob": "11151000f6a780d9dfed95f8f22787548e2e7bcbc4fb7996789b0d845f3fc9312938d711028056c7810e40a6d484e2e4cf50cd621102edf8cc154511390d15be7f638dfc02d00384379a820dc73f35f69972ebb0d4e51bdfe976264eff86deb95d7a2ec3f7f8cc04c6fe165bec3198d437715df88aabe09eff3f1ba8d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Kick", + "1 | Who [1/8] : 5He7PuKJUkWKEpFRL2vWem8qVcrTRx6YEH5GYc", + "1 | Who [2/8] : pxnWPPsKse", + "1 | Who [3/8] : 56c7810e40a6d484e2e4cf50cd621102edf8cc", + "1 | Who [4/8] : 154511390d15be7f638dfc02d0", + "1 | Who [5/8] : 84379a820dc73f35f69972ebb0d4e51bdfe976", + "1 | Who [6/8] : 264eff86deb95d7a2ec3f7f8cc", + "1 | Who [7/8] : c6fe165bec3198d437715df88aabe09eff3f1b", + "1 | Who [8/8] : a8" + ], + "output_expert": [ + "0 | Staking : Kick", + "1 | Who [1/8] : 5He7PuKJUkWKEpFRL2vWem8qVcrTRx6YEH5GYc", + "1 | Who [2/8] : pxnWPPsKse", + "1 | Who [3/8] : 56c7810e40a6d484e2e4cf50cd621102edf8cc", + "1 | Who [4/8] : 154511390d15be7f638dfc02d0", + "1 | Who [5/8] : 84379a820dc73f35f69972ebb0d4e51bdfe976", + "1 | Who [6/8] : 264eff86deb95d7a2ec3f7f8cc", + "1 | Who [7/8] : c6fe165bec3198d437715df88aabe09eff3f1b", + "1 | Who [8/8] : a8", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 615, + "name": "Staking_Kick", + "blob": "11151000f6a780d9dfed95f8f22787548e2e7bcbc4fb7996789b0d845f3fc9312938d711028056c7810e40a6d484e2e4cf50cd621102edf8cc154511390d15be7f638dfc02d00384379a820dc73f35f69972ebb0d4e51bdfe976264eff86deb95d7a2ec3f7f8cc04c6fe165bec3198d437715df88aabe09eff3f1ba8d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Kick", + "1 | Who [1/8] : 5He7PuKJUkWKEpFRL2vWem8qVcrTRx6YEH5GYc", + "1 | Who [2/8] : pxnWPPsKse", + "1 | Who [3/8] : 56c7810e40a6d484e2e4cf50cd621102edf8cc", + "1 | Who [4/8] : 154511390d15be7f638dfc02d0", + "1 | Who [5/8] : 84379a820dc73f35f69972ebb0d4e51bdfe976", + "1 | Who [6/8] : 264eff86deb95d7a2ec3f7f8cc", + "1 | Who [7/8] : c6fe165bec3198d437715df88aabe09eff3f1b", + "1 | Who [8/8] : a8", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Staking : Bond", - "1 | Controller [1/2] : 9a2cafb174b302f0f381d2705358111a9c905c", - "1 | Controller [2/2] : 258e089eb940a3046ae641e43f", - "2 | Amount : POLYX 55.555555", - "3 | Payee : Stash", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Kick", + "1 | Who [1/8] : 5He7PuKJUkWKEpFRL2vWem8qVcrTRx6YEH5GYc", + "1 | Who [2/8] : pxnWPPsKse", + "1 | Who [3/8] : 56c7810e40a6d484e2e4cf50cd621102edf8cc", + "1 | Who [4/8] : 154511390d15be7f638dfc02d0", + "1 | Who [5/8] : 84379a820dc73f35f69972ebb0d4e51bdfe976", + "1 | Who [6/8] : 264eff86deb95d7a2ec3f7f8cc", + "1 | Who [7/8] : c6fe165bec3198d437715df88aabe09eff3f1b", + "1 | Who [8/8] : a8", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 613, - "name": "Staking_Bond", - "blob": "110004c1db1bc1e1aa732243490c29461a3e63b91dd88a0b63ce64c10c050359673bb4c9ba72b28bdbccc2e36b1d0b64c106240bc084fb9f53d0928e74ab66d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Bond", - "1 | Controller [1/2] : c1db1bc1e1aa732243490c29461a3e63b91dd8", - "1 | Controller [2/2] : 8a", - "2 | Amount : POLYX 5552342.355555", - "3 | Payee [1/2] : 2EU92kgKXsTscM7zWTTZRWMMUUoqMKHMTRgwqk", - "3 | Payee [2/2] : MGJqRstFpq", - "4 | Tip : POLYX 0.000987" + "index": 616, + "name": "Staking_Set_staking_configs", + "blob": "111601412db75452363219ca58c6605989c42701412db75452363219ca58c6605989c427017118f375017118f375019a01a207bb95d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Set staking configs", + "1 | Min nominator bond [1/2] : POLYX 52860367791257056858255771149597", + "1 | Min nominator bond [2/2] : .617473", + "2 | Min validator bond [1/2] : POLYX 52860367791257056858255771149597", + "2 | Min validator bond [2/2] : .617473", + "3 | Max nominator count : 1978865777", + "4 | Max validator count : 1978865777", + "5 | Chill threshold : 154%", + "6 | Min commission : 251.2062370%", + "7 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Staking : Bond", - "1 | Controller [1/2] : c1db1bc1e1aa732243490c29461a3e63b91dd8", - "1 | Controller [2/2] : 8a", - "2 | Amount : POLYX 5552342.355555", - "3 | Payee [1/2] : 2EU92kgKXsTscM7zWTTZRWMMUUoqMKHMTRgwqk", - "3 | Payee [2/2] : MGJqRstFpq", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Set staking configs", + "1 | Min nominator bond [1/2] : POLYX 52860367791257056858255771149597", + "1 | Min nominator bond [2/2] : .617473", + "2 | Min validator bond [1/2] : POLYX 52860367791257056858255771149597", + "2 | Min validator bond [2/2] : .617473", + "3 | Max nominator count : 1978865777", + "4 | Max validator count : 1978865777", + "5 | Chill threshold : 154%", + "6 | Min commission : 251.2062370%", + "7 | Chain : Polymesh", + "8 | Nonce : 50283", + "9 | Tip : POLYX 5552342.355555", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 614, - "name": "Staking_Bond", - "blob": "1100031b5bf215374493b82427331e7a21c5dc7390a7f50938f6209701aa7fefa97f9733158139ae28a3dfaac5fe1560a5e9e05c0359673bb4c9ba72b28bdbccc2e36b1d0b64c106240bc084fb9f53d0928e74ab66d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Bond", - "1 | Controller [1/2] : 1b5bf215374493b82427331e7a21c5dc7390a7", - "1 | Controller [2/2] : f50938f6209701aa7fefa97f97", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789", - "3 | Payee [1/2] : 2EU92kgKXsTscM7zWTTZRWMMUUoqMKHMTRgwqk", - "3 | Payee [2/2] : MGJqRstFpq" + "index": 617, + "name": "Staking_Set_staking_configs", + "blob": "111601412db75452363219ca58c6605989c42701412db75452363219ca58c6605989c427017118f375017118f375019a01a207bb95d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Set staking configs", + "1 | Min nominator bond [1/2] : POLYX 52860367791257056858255771149597", + "1 | Min nominator bond [2/2] : .617473", + "2 | Min validator bond [1/2] : POLYX 52860367791257056858255771149597", + "2 | Min validator bond [2/2] : .617473", + "3 | Max nominator count : 1978865777", + "4 | Max validator count : 1978865777", + "5 | Chill threshold : 154%", + "6 | Min commission : 251.2062370%" + ], + "output_expert": [ + "0 | Staking : Set staking configs", + "1 | Min nominator bond [1/2] : POLYX 52860367791257056858255771149597", + "1 | Min nominator bond [2/2] : .617473", + "2 | Min validator bond [1/2] : POLYX 52860367791257056858255771149597", + "2 | Min validator bond [2/2] : .617473", + "3 | Max nominator count : 1978865777", + "4 | Max validator count : 1978865777", + "5 | Chill threshold : 154%", + "6 | Min commission : 251.2062370%", + "7 | Chain : Polymesh", + "8 | Nonce : 0", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 618, + "name": "Staking_Set_staking_configs", + "blob": "111601412db75452363219ca58c6605989c42701412db75452363219ca58c6605989c427017118f375017118f375019a01a207bb95d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Set staking configs", + "1 | Min nominator bond [1/2] : POLYX 52860367791257056858255771149597", + "1 | Min nominator bond [2/2] : .617473", + "2 | Min validator bond [1/2] : POLYX 52860367791257056858255771149597", + "2 | Min validator bond [2/2] : .617473", + "3 | Max nominator count : 1978865777", + "4 | Max validator count : 1978865777", + "5 | Chill threshold : 154%", + "6 | Min commission : 251.2062370%", + "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "7 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Staking : Bond", - "1 | Controller [1/2] : 1b5bf215374493b82427331e7a21c5dc7390a7", - "1 | Controller [2/2] : f50938f6209701aa7fefa97f97", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789", - "3 | Payee [1/2] : 2EU92kgKXsTscM7zWTTZRWMMUUoqMKHMTRgwqk", - "3 | Payee [2/2] : MGJqRstFpq", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Set staking configs", + "1 | Min nominator bond [1/2] : POLYX 52860367791257056858255771149597", + "1 | Min nominator bond [2/2] : .617473", + "2 | Min validator bond [1/2] : POLYX 52860367791257056858255771149597", + "2 | Min validator bond [2/2] : .617473", + "3 | Max nominator count : 1978865777", + "4 | Max validator count : 1978865777", + "5 | Chill threshold : 154%", + "6 | Min commission : 251.2062370%", + "7 | Chain : Polymesh", + "8 | Nonce : 100", + "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "9 | Tip [2/2] : 3.456789", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 615, - "name": "Staking_Bond", - "blob": "110004c1db1bc1e1aa732243490c29461a3e63b91dd88a0b63ce64c10c0502d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Bond", - "1 | Controller [1/2] : c1db1bc1e1aa732243490c29461a3e63b91dd8", - "1 | Controller [2/2] : 8a", - "2 | Amount : POLYX 5552342.355555", - "3 | Payee : Controller" + "index": 619, + "name": "Staking_Set_staking_configs", + "blob": "111601412db75452363219ca58c6605989c42701412db75452363219ca58c6605989c427017118f375017118f375019a01a207bb95d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Set staking configs", + "1 | Min nominator bond [1/2] : POLYX 52860367791257056858255771149597", + "1 | Min nominator bond [2/2] : .617473", + "2 | Min validator bond [1/2] : POLYX 52860367791257056858255771149597", + "2 | Min validator bond [2/2] : .617473", + "3 | Max nominator count : 1978865777", + "4 | Max validator count : 1978865777", + "5 | Chill threshold : 154%", + "6 | Min commission : 251.2062370%", + "7 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Staking : Bond", - "1 | Controller [1/2] : c1db1bc1e1aa732243490c29461a3e63b91dd8", - "1 | Controller [2/2] : 8a", - "2 | Amount : POLYX 5552342.355555", - "3 | Payee : Controller", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Set staking configs", + "1 | Min nominator bond [1/2] : POLYX 52860367791257056858255771149597", + "1 | Min nominator bond [2/2] : .617473", + "2 | Min validator bond [1/2] : POLYX 52860367791257056858255771149597", + "2 | Min validator bond [2/2] : .617473", + "3 | Max nominator count : 1978865777", + "4 | Max validator count : 1978865777", + "5 | Chill threshold : 154%", + "6 | Min commission : 251.2062370%", + "7 | Chain : Polymesh", + "8 | Nonce : 0", + "9 | Tip : POLYX 5552342.355555", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 616, - "name": "Staking_Bond_extra", - "blob": "11018ed73e0dd5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Bond extra", - "1 | Amount : POLYX 55.555555", - "2 | Tip : POLYX 0.000987" + "index": 620, + "name": "Staking_Set_staking_configs", + "blob": "111601412db75452363219ca58c6605989c42701412db75452363219ca58c6605989c427017118f375017118f375019a01a207bb95d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Set staking configs", + "1 | Min nominator bond [1/2] : POLYX 52860367791257056858255771149597", + "1 | Min nominator bond [2/2] : .617473", + "2 | Min validator bond [1/2] : POLYX 52860367791257056858255771149597", + "2 | Min validator bond [2/2] : .617473", + "3 | Max nominator count : 1978865777", + "4 | Max validator count : 1978865777", + "5 | Chill threshold : 154%", + "6 | Min commission : 251.2062370%", + "7 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Staking : Bond extra", - "1 | Amount : POLYX 55.555555", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Set staking configs", + "1 | Min nominator bond [1/2] : POLYX 52860367791257056858255771149597", + "1 | Min nominator bond [2/2] : .617473", + "2 | Min validator bond [1/2] : POLYX 52860367791257056858255771149597", + "2 | Min validator bond [2/2] : .617473", + "3 | Max nominator count : 1978865777", + "4 | Max validator count : 1978865777", + "5 | Chill threshold : 154%", + "6 | Min commission : 251.2062370%", + "7 | Chain : Polymesh", + "8 | Nonce : 2339", + "9 | Tip : POLYX 0.000987", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 617, - "name": "Staking_Bond_extra", - "blob": "110100d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 621, + "name": "Staking_Chill_other", + "blob": "1117eeee0fc19c12fccb5428f3defc551fa77b3eda70bcf9c86045ade577d0fd1508d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Bond extra", - "1 | Amount : POLYX 0.0", - "2 | Tip : POLYX 5552342.355555" + "0 | Staking : Chill other", + "1 | Controller [1/2] : 5HTyyNf3SP6wwvJb6dmojvVT27bFkbLV2QN1Q2", + "1 | Controller [2/2] : YfRrxBgvey", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Staking : Bond extra", - "1 | Amount : POLYX 0.0", + "0 | Staking : Chill other", + "1 | Controller [1/2] : 5HTyyNf3SP6wwvJb6dmojvVT27bFkbLV2QN1Q2", + "1 | Controller [2/2] : YfRrxBgvey", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 100", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 618, - "name": "Staking_Bond_extra", - "blob": "110103d2029649d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 622, + "name": "Staking_Chill_other", + "blob": "1117dec0f4dc5fd3e8d150cf002bc6385185d188545a2d3c35459acb0fac525c2761d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Bond extra", - "1 | Amount : POLYX 1234.56789", - "2 | Tip : POLYX 5552342.355555" + "0 | Staking : Chill other", + "1 | Controller [1/2] : 5H6moo4wU5PEeHwthqGaP9oVjjAcG3PXyn196u", + "1 | Controller [2/2] : hgTRKhjCkB", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Staking : Bond extra", - "1 | Amount : POLYX 1234.56789", + "0 | Staking : Chill other", + "1 | Controller [1/2] : 5H6moo4wU5PEeHwthqGaP9oVjjAcG3PXyn196u", + "1 | Controller [2/2] : hgTRKhjCkB", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 100", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 619, - "name": "Staking_Bond_extra", - "blob": "110133158139ae28a3dfaac5fe1560a5e9e05cd503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 623, + "name": "Staking_Chill_other", + "blob": "1117746a25ffb64614dd2c7d8f53d247e39763261a2a4c187c424c51edb971f3d435d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Bond extra", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Tip : POLYX 55.555555" + "0 | Staking : Chill other", + "1 | Controller [1/2] : 5EhLwjQbRibvSWhbsvw5hvYdKHYF5besUgGbjx", + "1 | Controller [2/2] : guT8977hVy", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Staking : Bond extra", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", + "0 | Staking : Chill other", + "1 | Controller [1/2] : 5EhLwjQbRibvSWhbsvw5hvYdKHYF5besUgGbjx", + "1 | Controller [2/2] : guT8977hVy", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 620, - "name": "Staking_Bond_extra", - "blob": "110100d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Bond extra", - "1 | Amount : POLYX 0.0" - ], - "output_expert": [ - "0 | Staking : Bond extra", - "1 | Amount : POLYX 0.0", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 621, - "name": "Staking_Unbond", - "blob": "11028ed73e0dd5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Unbond", - "1 | Amount : POLYX 55.555555", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Staking : Unbond", - "1 | Amount : POLYX 55.555555", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 622, - "name": "Staking_Unbond", - "blob": "11026d0fd5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 624, + "name": "Staking_Chill_other", + "blob": "11171a649a1e7bc89d0e95d5f757cdbb718b750e1e48f9962d215e0af9222021403ed50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Unbond", - "1 | Amount : POLYX 0.000987", - "2 | Tip : POLYX 5552342.355555" + "0 | Staking : Chill other", + "1 | Controller [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "1 | Controller [2/2] : CXYT6ZmfEg", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Staking : Unbond", - "1 | Amount : POLYX 0.000987", + "0 | Staking : Chill other", + "1 | Controller [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "1 | Controller [2/2] : CXYT6ZmfEg", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 100", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 623, - "name": "Staking_Unbond", - "blob": "11028ed73e0dd503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 625, + "name": "Staking_Chill_other", + "blob": "11172e5388ccb167c9fe3baeba3fed959f63c4e8bceb6c7387a77940029c14239820d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Unbond", - "1 | Amount : POLYX 55.555555", + "0 | Staking : Chill other", + "1 | Controller [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "1 | Controller [2/2] : qta7VKQZKw", "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Staking : Unbond", - "1 | Amount : POLYX 55.555555", + "0 | Staking : Chill other", + "1 | Controller [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "1 | Controller [2/2] : qta7VKQZKw", "2 | Chain : Polymesh", "3 | Nonce : 50283", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 624, - "name": "Staking_Unbond", - "blob": "110200d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Unbond", - "1 | Amount : POLYX 0.0" - ], - "output_expert": [ - "0 | Staking : Unbond", - "1 | Amount : POLYX 0.0", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 625, - "name": "Staking_Unbond", - "blob": "110200d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 626, + "name": "Staking_Force_apply_min_commission", + "blob": "1118eeee0fc19c12fccb5428f3defc551fa77b3eda70bcf9c86045ade577d0fd1508d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Unbond", - "1 | Amount : POLYX 0.0", - "2 | Tip : POLYX 0.000987" + "0 | Staking : Force apply min commission", + "1 | Validator stash [1/2] : 5HTyyNf3SP6wwvJb6dmojvVT27bFkbLV2QN1Q2", + "1 | Validator stash [2/2] : YfRrxBgvey", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Staking : Unbond", - "1 | Amount : POLYX 0.0", + "0 | Staking : Force apply min commission", + "1 | Validator stash [1/2] : 5HTyyNf3SP6wwvJb6dmojvVT27bFkbLV2QN1Q2", + "1 | Validator stash [2/2] : YfRrxBgvey", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 626, - "name": "Staking_Withdraw_Unbonded", - "blob": "110300000000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 627, + "name": "Staking_Force_apply_min_commission", + "blob": "11182e5388ccb167c9fe3baeba3fed959f63c4e8bceb6c7387a77940029c14239820d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Withdraw Unbonded", - "1 | Tip : POLYX 1234.56789" + "0 | Staking : Force apply min commission", + "1 | Validator stash [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "1 | Validator stash [2/2] : qta7VKQZKw", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Staking : Withdraw Unbonded", - "1 | Num slashing spans : 0", + "0 | Staking : Force apply min commission", + "1 | Validator stash [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "1 | Validator stash [2/2] : qta7VKQZKw", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 0", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 627, - "name": "Staking_Withdraw_Unbonded", - "blob": "110334300000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 628, + "name": "Staking_Force_apply_min_commission", + "blob": "1118b0a4982a123e870e98be45944a32d76664a4cc899c3810c0300718516f0cb60ad503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Withdraw Unbonded", - "1 | Tip : POLYX 5552342.355555" + "0 | Staking : Force apply min commission", + "1 | Validator stash [1/2] : 5G4KBNUrpvHsFu9ZvQ5fKsbBcR2K4SBgjxgSdM", + "1 | Validator stash [2/2] : T1Vu2VKdbZ", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Staking : Withdraw Unbonded", - "1 | Num slashing spans : 12340", + "0 | Staking : Force apply min commission", + "1 | Validator stash [1/2] : 5G4KBNUrpvHsFu9ZvQ5fKsbBcR2K4SBgjxgSdM", + "1 | Validator stash [2/2] : T1Vu2VKdbZ", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 1", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 628, - "name": "Staking_Withdraw_Unbonded", - "blob": "11039d1c0000d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 629, + "name": "Staking_Force_apply_min_commission", + "blob": "1118b04675564efc66c59b629d4f6f844923f271ebf08fc297a0781f89731bead17fd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Withdraw Unbonded", - "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "1 | Tip [2/2] : 3.456789" + "0 | Staking : Force apply min commission", + "1 | Validator stash [1/2] : 5G3qDSksiTK2F5KmS1yryVsRfXMzt1aczrKXJY", + "1 | Validator stash [2/2] : FkFzoSF4YP", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Staking : Withdraw Unbonded", - "1 | Num slashing spans : 7325", + "0 | Staking : Force apply min commission", + "1 | Validator stash [1/2] : 5G3qDSksiTK2F5KmS1yryVsRfXMzt1aczrKXJY", + "1 | Validator stash [2/2] : FkFzoSF4YP", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 50283", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 629, - "name": "Staking_Withdraw_Unbonded", - "blob": "110334300000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 630, + "name": "Staking_Force_apply_min_commission", + "blob": "11181a649a1e7bc89d0e95d5f757cdbb718b750e1e48f9962d215e0af9222021403ed5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Withdraw Unbonded" + "0 | Staking : Force apply min commission", + "1 | Validator stash [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "1 | Validator stash [2/2] : CXYT6ZmfEg" ], "output_expert": [ - "0 | Staking : Withdraw Unbonded", - "1 | Num slashing spans : 12340", + "0 | Staking : Force apply min commission", + "1 | Validator stash [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "1 | Validator stash [2/2] : CXYT6ZmfEg", "2 | Chain : Polymesh", - "3 | Nonce : 2339", + "3 | Nonce : 0", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 630, - "name": "Staking_Withdraw_Unbonded", - "blob": "1103f7010000d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 631, + "name": "Staking_Set_min_commission", + "blob": "1119ef62a7b4d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Withdraw Unbonded", - "1 | Tip : POLYX 55.555555" + "0 | Staking : Set min commission", + "1 | New : 303.0868719%", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Staking : Withdraw Unbonded", - "1 | Num slashing spans : 503", + "0 | Staking : Set min commission", + "1 | New : 303.0868719%", "2 | Chain : Polymesh", "3 | Nonce : 2339", "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 631, - "name": "Staking_Validate", - "blob": "11041e44e69300d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 632, + "name": "Staking_Set_min_commission", + "blob": "1119ef62a7b4d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Validate", - "1 | Prefs : 62.0335367%", - "2 | Tip : POLYX 1234.56789" + "0 | Staking : Set min commission", + "1 | New : 303.0868719%", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Staking : Validate", - "1 | Prefs : 62.0335367%", + "0 | Staking : Set min commission", + "1 | New : 303.0868719%", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 632, - "name": "Staking_Validate", - "blob": "11049400d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 633, + "name": "Staking_Set_min_commission", + "blob": "1119f87b0877d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Validate", - "1 | Prefs : 0.0000037%", - "2 | Tip : POLYX 0.000987" + "0 | Staking : Set min commission", + "1 | New : 199.7044728%", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Staking : Validate", - "1 | Prefs : 0.0000037%", + "0 | Staking : Set min commission", + "1 | New : 199.7044728%", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 633, - "name": "Staking_Validate", - "blob": "11041e44e69300d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 634, + "name": "Staking_Set_min_commission", + "blob": "1119ef62a7b4d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Validate", - "1 | Prefs : 62.0335367%", - "2 | Tip : POLYX 5552342.355555" + "0 | Staking : Set min commission", + "1 | New : 303.0868719%", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Staking : Validate", - "1 | Prefs : 62.0335367%", + "0 | Staking : Set min commission", + "1 | New : 303.0868719%", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 50283", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 634, - "name": "Staking_Validate", - "blob": "11049400d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 635, + "name": "Staking_Set_min_commission", + "blob": "1119ef62a7b4d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Validate", - "1 | Prefs : 0.0000037%" + "0 | Staking : Set min commission", + "1 | New : 303.0868719%" ], "output_expert": [ - "0 | Staking : Validate", - "1 | Prefs : 0.0000037%", + "0 | Staking : Set min commission", + "1 | New : 303.0868719%", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 50283", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 635, - "name": "Staking_Validate", - "blob": "11041e44e69300d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Validate", - "1 | Prefs : 62.0335367%", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Staking : Validate", - "1 | Prefs : 62.0335367%", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 636, - "name": "Staking_Nominate", - "blob": "11051000f4e461dedd60291c38d6e9cb231e27b2d2e1b714d68db0f3c6b38a02b5cf70740280fa0c29fa6b09b6096b7e84504ce2efc702ad1de61164b99c2c80e8e951f8ad21036e82892d732a9da9e3b820ef34d48f1efe7d3b85baa13709976c8dfc816db85a049b09c44b9db0187952af3d7a4bf6eea8969498d2d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Add_permissioned_validator", + "blob": "111ac209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c490770801d3040000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Nominate", - "1 | Targets [1/8] : 2Hz1dWHq1wUJ5f2j1YbZjSwKufPkRWQFNqLLKz", - "1 | Targets [2/8] : BQJEbB9wfD", - "1 | Targets [3/8] : fa0c29fa6b09b6096b7e84504ce2efc702ad1d", - "1 | Targets [4/8] : e61164b99c2c80e8e951f8ad21", - "1 | Targets [5/8] : 6e82892d732a9da9e3b820ef34d48f1efe7d3b", - "1 | Targets [6/8] : 85baa13709976c8dfc816db85a", - "1 | Targets [7/8] : 9b09c44b9db0187952af3d7a4bf6eea8969498", - "1 | Targets [8/8] : d2", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Staking : Add permissioned validator", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Intended count : 1235" ], "output_expert": [ - "0 | Staking : Nominate", - "1 | Targets [1/8] : 2Hz1dWHq1wUJ5f2j1YbZjSwKufPkRWQFNqLLKz", - "1 | Targets [2/8] : BQJEbB9wfD", - "1 | Targets [3/8] : fa0c29fa6b09b6096b7e84504ce2efc702ad1d", - "1 | Targets [4/8] : e61164b99c2c80e8e951f8ad21", - "1 | Targets [5/8] : 6e82892d732a9da9e3b820ef34d48f1efe7d3b", - "1 | Targets [6/8] : 85baa13709976c8dfc816db85a", - "1 | Targets [7/8] : 9b09c44b9db0187952af3d7a4bf6eea8969498", - "1 | Targets [8/8] : d2", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "0 | Staking : Add permissioned validator", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Intended count : 1235", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 637, - "name": "Staking_Nominate", - "blob": "11051000f4e461dedd60291c38d6e9cb231e27b2d2e1b714d68db0f3c6b38a02b5cf70740280fa0c29fa6b09b6096b7e84504ce2efc702ad1de61164b99c2c80e8e951f8ad21036e82892d732a9da9e3b820ef34d48f1efe7d3b85baa13709976c8dfc816db85a049b09c44b9db0187952af3d7a4bf6eea8969498d2d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Add_permissioned_validator", + "blob": "111ac209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c49077080100000000d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Nominate", - "1 | Targets [1/8] : 2Hz1dWHq1wUJ5f2j1YbZjSwKufPkRWQFNqLLKz", - "1 | Targets [2/8] : BQJEbB9wfD", - "1 | Targets [3/8] : fa0c29fa6b09b6096b7e84504ce2efc702ad1d", - "1 | Targets [4/8] : e61164b99c2c80e8e951f8ad21", - "1 | Targets [5/8] : 6e82892d732a9da9e3b820ef34d48f1efe7d3b", - "1 | Targets [6/8] : 85baa13709976c8dfc816db85a", - "1 | Targets [7/8] : 9b09c44b9db0187952af3d7a4bf6eea8969498", - "1 | Targets [8/8] : d2", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Staking : Add permissioned validator", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Intended count : 0", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Staking : Nominate", - "1 | Targets [1/8] : 2Hz1dWHq1wUJ5f2j1YbZjSwKufPkRWQFNqLLKz", - "1 | Targets [2/8] : BQJEbB9wfD", - "1 | Targets [3/8] : fa0c29fa6b09b6096b7e84504ce2efc702ad1d", - "1 | Targets [4/8] : e61164b99c2c80e8e951f8ad21", - "1 | Targets [5/8] : 6e82892d732a9da9e3b820ef34d48f1efe7d3b", - "1 | Targets [6/8] : 85baa13709976c8dfc816db85a", - "1 | Targets [7/8] : 9b09c44b9db0187952af3d7a4bf6eea8969498", - "1 | Targets [8/8] : d2", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Add permissioned validator", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Intended count : 0", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 638, - "name": "Staking_Nominate", - "blob": "11051000f4e461dedd60291c38d6e9cb231e27b2d2e1b714d68db0f3c6b38a02b5cf70740280fa0c29fa6b09b6096b7e84504ce2efc702ad1de61164b99c2c80e8e951f8ad21036e82892d732a9da9e3b820ef34d48f1efe7d3b85baa13709976c8dfc816db85a049b09c44b9db0187952af3d7a4bf6eea8969498d2d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Add_permissioned_validator", + "blob": "111ac209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c49077080100000000d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Nominate", - "1 | Targets [1/8] : 2Hz1dWHq1wUJ5f2j1YbZjSwKufPkRWQFNqLLKz", - "1 | Targets [2/8] : BQJEbB9wfD", - "1 | Targets [3/8] : fa0c29fa6b09b6096b7e84504ce2efc702ad1d", - "1 | Targets [4/8] : e61164b99c2c80e8e951f8ad21", - "1 | Targets [5/8] : 6e82892d732a9da9e3b820ef34d48f1efe7d3b", - "1 | Targets [6/8] : 85baa13709976c8dfc816db85a", - "1 | Targets [7/8] : 9b09c44b9db0187952af3d7a4bf6eea8969498", - "1 | Targets [8/8] : d2" + "0 | Staking : Add permissioned validator", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Intended count : 0" ], "output_expert": [ - "0 | Staking : Nominate", - "1 | Targets [1/8] : 2Hz1dWHq1wUJ5f2j1YbZjSwKufPkRWQFNqLLKz", - "1 | Targets [2/8] : BQJEbB9wfD", - "1 | Targets [3/8] : fa0c29fa6b09b6096b7e84504ce2efc702ad1d", - "1 | Targets [4/8] : e61164b99c2c80e8e951f8ad21", - "1 | Targets [5/8] : 6e82892d732a9da9e3b820ef34d48f1efe7d3b", - "1 | Targets [6/8] : 85baa13709976c8dfc816db85a", - "1 | Targets [7/8] : 9b09c44b9db0187952af3d7a4bf6eea8969498", - "1 | Targets [8/8] : d2", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Add permissioned validator", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Intended count : 0", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 639, - "name": "Staking_Nominate", - "blob": "11051000f4e461dedd60291c38d6e9cb231e27b2d2e1b714d68db0f3c6b38a02b5cf70740280fa0c29fa6b09b6096b7e84504ce2efc702ad1de61164b99c2c80e8e951f8ad21036e82892d732a9da9e3b820ef34d48f1efe7d3b85baa13709976c8dfc816db85a049b09c44b9db0187952af3d7a4bf6eea8969498d2d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Add_permissioned_validator", + "blob": "111ac209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c490770801f7010000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Nominate", - "1 | Targets [1/8] : 2Hz1dWHq1wUJ5f2j1YbZjSwKufPkRWQFNqLLKz", - "1 | Targets [2/8] : BQJEbB9wfD", - "1 | Targets [3/8] : fa0c29fa6b09b6096b7e84504ce2efc702ad1d", - "1 | Targets [4/8] : e61164b99c2c80e8e951f8ad21", - "1 | Targets [5/8] : 6e82892d732a9da9e3b820ef34d48f1efe7d3b", - "1 | Targets [6/8] : 85baa13709976c8dfc816db85a", - "1 | Targets [7/8] : 9b09c44b9db0187952af3d7a4bf6eea8969498", - "1 | Targets [8/8] : d2", - "2 | Tip : POLYX 55.555555" + "0 | Staking : Add permissioned validator", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Intended count : 503", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Staking : Nominate", - "1 | Targets [1/8] : 2Hz1dWHq1wUJ5f2j1YbZjSwKufPkRWQFNqLLKz", - "1 | Targets [2/8] : BQJEbB9wfD", - "1 | Targets [3/8] : fa0c29fa6b09b6096b7e84504ce2efc702ad1d", - "1 | Targets [4/8] : e61164b99c2c80e8e951f8ad21", - "1 | Targets [5/8] : 6e82892d732a9da9e3b820ef34d48f1efe7d3b", - "1 | Targets [6/8] : 85baa13709976c8dfc816db85a", - "1 | Targets [7/8] : 9b09c44b9db0187952af3d7a4bf6eea8969498", - "1 | Targets [8/8] : d2", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Add permissioned validator", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Intended count : 503", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 640, - "name": "Staking_Nominate", - "blob": "11051000f4e461dedd60291c38d6e9cb231e27b2d2e1b714d68db0f3c6b38a02b5cf70740280fa0c29fa6b09b6096b7e84504ce2efc702ad1de61164b99c2c80e8e951f8ad21036e82892d732a9da9e3b820ef34d48f1efe7d3b85baa13709976c8dfc816db85a049b09c44b9db0187952af3d7a4bf6eea8969498d2d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Add_permissioned_validator", + "blob": "111ac209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c49077080100000000d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Nominate", - "1 | Targets [1/8] : 2Hz1dWHq1wUJ5f2j1YbZjSwKufPkRWQFNqLLKz", - "1 | Targets [2/8] : BQJEbB9wfD", - "1 | Targets [3/8] : fa0c29fa6b09b6096b7e84504ce2efc702ad1d", - "1 | Targets [4/8] : e61164b99c2c80e8e951f8ad21", - "1 | Targets [5/8] : 6e82892d732a9da9e3b820ef34d48f1efe7d3b", - "1 | Targets [6/8] : 85baa13709976c8dfc816db85a", - "1 | Targets [7/8] : 9b09c44b9db0187952af3d7a4bf6eea8969498", - "1 | Targets [8/8] : d2", - "2 | Tip : POLYX 55.555555" + "0 | Staking : Add permissioned validator", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Intended count : 0", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Staking : Nominate", - "1 | Targets [1/8] : 2Hz1dWHq1wUJ5f2j1YbZjSwKufPkRWQFNqLLKz", - "1 | Targets [2/8] : BQJEbB9wfD", - "1 | Targets [3/8] : fa0c29fa6b09b6096b7e84504ce2efc702ad1d", - "1 | Targets [4/8] : e61164b99c2c80e8e951f8ad21", - "1 | Targets [5/8] : 6e82892d732a9da9e3b820ef34d48f1efe7d3b", - "1 | Targets [6/8] : 85baa13709976c8dfc816db85a", - "1 | Targets [7/8] : 9b09c44b9db0187952af3d7a4bf6eea8969498", - "1 | Targets [8/8] : d2", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Add permissioned validator", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Intended count : 0", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 641, - "name": "Staking_Chill", - "blob": "1106d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Remove_permissioned_validator", + "blob": "111bc209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Chill", - "1 | Tip : POLYX 0.000987" + "0 | Staking : Remove permissioned validator", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708" ], "output_expert": [ - "0 | Staking : Chill", - "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip : POLYX 0.000987", + "0 | Staking : Remove permissioned validator", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Chain : Polymesh", + "3 | Nonce : 100", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 642, - "name": "Staking_Chill", - "blob": "1106d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Remove_permissioned_validator", + "blob": "111bc209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Chill", - "1 | Tip : POLYX 55.555555" + "0 | Staking : Remove permissioned validator", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708" ], "output_expert": [ - "0 | Staking : Chill", - "1 | Chain : Polymesh", - "2 | Nonce : 2339", - "3 | Tip : POLYX 55.555555", + "0 | Staking : Remove permissioned validator", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Chain : Polymesh", + "3 | Nonce : 0", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 643, - "name": "Staking_Chill", - "blob": "1106d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Remove_permissioned_validator", + "blob": "111bc209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Chill", - "1 | Tip : POLYX 1234.56789" + "0 | Staking : Remove permissioned validator", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Staking : Chill", - "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip : POLYX 1234.56789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Remove permissioned validator", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 644, - "name": "Staking_Chill", - "blob": "1106d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Remove_permissioned_validator", + "blob": "111bc209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Chill", - "1 | Tip : POLYX 0.000987" + "0 | Staking : Remove permissioned validator", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Staking : Chill", - "1 | Chain : Polymesh", - "2 | Nonce : 100", - "3 | Tip : POLYX 0.000987", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Remove permissioned validator", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 645, - "name": "Staking_Chill", - "blob": "1106d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Chill", - "1 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Staking : Chill", - "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Tip : POLYX 1234.56789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 646, - "name": "Staking_Set_payee", - "blob": "110702d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Remove_permissioned_validator", + "blob": "111bc209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Set payee", - "1 | Payee : Controller", - "2 | Tip : POLYX 1234.56789" + "0 | Staking : Remove permissioned validator", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Staking : Set payee", - "1 | Payee : Controller", + "0 | Staking : Remove permissioned validator", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 2339", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 647, - "name": "Staking_Set_payee", - "blob": "11070359673bb4c9ba72b28bdbccc2e36b1d0b64c106240bc084fb9f53d0928e74ab66d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 646, + "name": "Staking_Validate_cdd_expiry_nominators", + "blob": "111c203c805abe04101b6fa4fc9e89c684ee50e9432d08db1ae39ec8998a801c26e328a0b64be421840cb0f57ae9a222ecb507c0e4815ad82c4c78feadfbc198468f7c08d0207b9604ddf69d9ef102862f1c814a5368907c6a451968bd43e70bcae53f1042100af1c38ad01e887cadd6c3691ee07c407e01a3e857a706a078b4522d697652f2b2f7065e209883ac75e5b3b953b4edb66391afddd00fed9bbd26edd22d801297f7ca7db4c5133f40e396b575dd3bbd9d15cbc7ff0c3a9de40a7577c01f88f08186b7b6b95ffcde374124d39e158f799da938b2634e65fd56e7e7d401159213b5d5cb1a6be9044efa7be7b00f9c12f755811a09840e7bc86098aa8cf30ed503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Set payee", - "1 | Payee [1/2] : 2EU92kgKXsTscM7zWTTZRWMMUUoqMKHMTRgwqk", - "1 | Payee [2/2] : MGJqRstFpq", + "0 | Staking : Validate cdd expiry nominators", + "1 | Targets [1/16] : 5DS2roYwteJYMxMztdRK6DJMwjgN6DWAkWzjEs", + "1 | Targets [2/16] : NZD5CoiXWo", + "1 | Targets [3/16] : 5FhRfw6bvEZnzaLAR6HnLUrdzuPVYQDY7EFtbV", + "1 | Targets [4/16] : 6CSU9zCoNV", + "1 | Targets [5/16] : 5CGG4q6R2B2xjDwFXyk7CA9HdWbsSMy5TYPfQN", + "1 | Targets [6/16] : 9he3kNizS2", + "1 | Targets [7/16] : 5CS2FLcgjJWzUZGu2WQ5eBaJfzd8EMQ1VmQMcn", + "1 | Targets [8/16] : QtJCTQiEcn", + "1 | Targets [9/16] : 5Ejr9Z3AQ2mZ91tURigFZtDT8Lg6wcjA3TmTAU", + "1 | Targets [10/16] : sGVo1NrpuH", + "1 | Targets [11/16] : 5ExdWXS1wsgZXSkK3ZdnVoTzjhLM2bc9hYyXr7", + "1 | Targets [12/16] : SV5DXXbHZk", + "1 | Targets [13/16] : 5FAFpCpNJiUxoqKkuYjCDTmakuxcc7NTAStJyL", + "1 | Targets [14/16] : KTFMModfEt", + "1 | Targets [15/16] : 5FNEhkrQ8pMGQroh5MNS7zSzHLtRAqpvw9nkFB", + "1 | Targets [16/16] : hC9ZyYVvgh", "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Staking : Set payee", - "1 | Payee [1/2] : 2EU92kgKXsTscM7zWTTZRWMMUUoqMKHMTRgwqk", - "1 | Payee [2/2] : MGJqRstFpq", + "0 | Staking : Validate cdd expiry nominators", + "1 | Targets [1/16] : 5DS2roYwteJYMxMztdRK6DJMwjgN6DWAkWzjEs", + "1 | Targets [2/16] : NZD5CoiXWo", + "1 | Targets [3/16] : 5FhRfw6bvEZnzaLAR6HnLUrdzuPVYQDY7EFtbV", + "1 | Targets [4/16] : 6CSU9zCoNV", + "1 | Targets [5/16] : 5CGG4q6R2B2xjDwFXyk7CA9HdWbsSMy5TYPfQN", + "1 | Targets [6/16] : 9he3kNizS2", + "1 | Targets [7/16] : 5CS2FLcgjJWzUZGu2WQ5eBaJfzd8EMQ1VmQMcn", + "1 | Targets [8/16] : QtJCTQiEcn", + "1 | Targets [9/16] : 5Ejr9Z3AQ2mZ91tURigFZtDT8Lg6wcjA3TmTAU", + "1 | Targets [10/16] : sGVo1NrpuH", + "1 | Targets [11/16] : 5ExdWXS1wsgZXSkK3ZdnVoTzjhLM2bc9hYyXr7", + "1 | Targets [12/16] : SV5DXXbHZk", + "1 | Targets [13/16] : 5FAFpCpNJiUxoqKkuYjCDTmakuxcc7NTAStJyL", + "1 | Targets [14/16] : KTFMModfEt", + "1 | Targets [15/16] : 5FNEhkrQ8pMGQroh5MNS7zSzHLtRAqpvw9nkFB", + "1 | Targets [16/16] : hC9ZyYVvgh", "2 | Chain : Polymesh", "3 | Nonce : 50283", "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 648, - "name": "Staking_Set_payee", - "blob": "110702d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 647, + "name": "Staking_Validate_cdd_expiry_nominators", + "blob": "111c1442683728ce80bbeb8bc2d60272401a5a61c8c3752be4cd7646df026e35a34b6f008ccf2185eeddd862a8a228ca41e6c2cc4848ab04bdcaad75d5944fd08e1948c89b6cc70106cd9dfbfaeb50ae568e334a0b71134a3bf6539a046eccf7a3d21a04e0eb3cca1b0642d2429b165a7d4799452f61581fb18bb6c0691b13e5431a61b862f1c279831c030fcf3b8aadfb5c2dd57401fada346592e3173a98b0f2044ad5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Set payee", - "1 | Payee : Controller", + "0 | Staking : Validate cdd expiry nominators", + "1 | Targets [1/10] : 5DZmyZZ6ztre9SepCA9faBJCQXDd8n85q4bp3w", + "1 | Targets [2/10] : K4KDyicxGs", + "1 | Targets [3/10] : 5C5Rgkds3Gnw5EHVmgWf1DQ9nc5Np4Eb32PzVX", + "1 | Targets [4/10] : v4WzXj31zV", + "1 | Targets [5/10] : 5Gbjc3HWVE6xmAVdyRSEZ3tcUXcd4fdsmZcdRx", + "1 | Targets [6/10] : 7Qzsnv7JJY", + "1 | Targets [7/10] : 5CB6s3J3kB9WwHaq3REJxi6qyn9kQtxHeVLWUv", + "1 | Targets [8/10] : p7kQgmJFrY", + "1 | Targets [9/10] : 5GEU4TzWkfNvnQiGkf6Ww4nhSrfB479zeWzwfe", + "1 | Targets [10/10] : Hxcwz7irDp", "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Staking : Set payee", - "1 | Payee : Controller", + "0 | Staking : Validate cdd expiry nominators", + "1 | Targets [1/10] : 5DZmyZZ6ztre9SepCA9faBJCQXDd8n85q4bp3w", + "1 | Targets [2/10] : K4KDyicxGs", + "1 | Targets [3/10] : 5C5Rgkds3Gnw5EHVmgWf1DQ9nc5Np4Eb32PzVX", + "1 | Targets [4/10] : v4WzXj31zV", + "1 | Targets [5/10] : 5Gbjc3HWVE6xmAVdyRSEZ3tcUXcd4fdsmZcdRx", + "1 | Targets [6/10] : 7Qzsnv7JJY", + "1 | Targets [7/10] : 5CB6s3J3kB9WwHaq3REJxi6qyn9kQtxHeVLWUv", + "1 | Targets [8/10] : p7kQgmJFrY", + "1 | Targets [9/10] : 5GEU4TzWkfNvnQiGkf6Ww4nhSrfB479zeWzwfe", + "1 | Targets [10/10] : Hxcwz7irDp", "2 | Chain : Polymesh", "3 | Nonce : 2339", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 649, - "name": "Staking_Set_payee", - "blob": "110700d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 648, + "name": "Staking_Validate_cdd_expiry_nominators", + "blob": "111c180ef151c74547b7a7500a496af42d2fab49d1fcc6820a4e18310fa25ff1f208331c3a884cb495d43667130b4ac2de24742d1e20256845ff7455234cf9da6cba05d042abb5805b65960ea6515003d5b23c6c3fe964d7b867ff08cbe54d495c6958f24a5e29c643a8d4c84c11a8b718ca29f06d45046440011cfcbc4c9e36ab4a06806746fe2cd50eab68635ab87799ab8a0b47f14076a11d843875edd1826653534ee12d695c74d86d1476e7a82cc36fa43b1eefc47ff3d2818677bb1639553307d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Set payee", - "1 | Payee : Staked", + "0 | Staking : Validate cdd expiry nominators", + "1 | Targets [1/12] : 5CQJDPUqmKoQm8WwHZ7BDPyjee5aw4ccmnV9Pw", + "1 | Targets [2/12] : LqriprPhPe", + "1 | Targets [3/12] : 5ChiavXNPqvPDVbKRmaFeJSkq3EXZd2rdUuf6n", + "1 | Targets [4/12] : UXQkWvn9CU", + "1 | Targets [5/12] : 5Gmmd4Rmn2PXc3M8n2V8vAgLDxwu21Yep337Qh", + "1 | Targets [6/12] : CqzSxwKhmT", + "1 | Targets [7/12] : 5HYPY77hv8zkcLYg3K244RU3YTuiZSdPCpDhqq", + "1 | Targets [8/12] : MNrFX6Ttoq", + "1 | Targets [9/12] : 5Ey4fbG9FXRxKw4JbxN8YTgu2H6UXUjVdehV6y", + "1 | Targets [10/12] : ZL6zfBpBBY", + "1 | Targets [11/12] : 5Dr8V1qXmG1xRUopT82MPCqZxfFHsFGqrpancB", + "1 | Targets [12/12] : TwjCZ6sjig", "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Staking : Set payee", - "1 | Payee : Staked", + "0 | Staking : Validate cdd expiry nominators", + "1 | Targets [1/12] : 5CQJDPUqmKoQm8WwHZ7BDPyjee5aw4ccmnV9Pw", + "1 | Targets [2/12] : LqriprPhPe", + "1 | Targets [3/12] : 5ChiavXNPqvPDVbKRmaFeJSkq3EXZd2rdUuf6n", + "1 | Targets [4/12] : UXQkWvn9CU", + "1 | Targets [5/12] : 5Gmmd4Rmn2PXc3M8n2V8vAgLDxwu21Yep337Qh", + "1 | Targets [6/12] : CqzSxwKhmT", + "1 | Targets [7/12] : 5HYPY77hv8zkcLYg3K244RU3YTuiZSdPCpDhqq", + "1 | Targets [8/12] : MNrFX6Ttoq", + "1 | Targets [9/12] : 5Ey4fbG9FXRxKw4JbxN8YTgu2H6UXUjVdehV6y", + "1 | Targets [10/12] : ZL6zfBpBBY", + "1 | Targets [11/12] : 5Dr8V1qXmG1xRUopT82MPCqZxfFHsFGqrpancB", + "1 | Targets [12/12] : TwjCZ6sjig", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 1", "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 650, - "name": "Staking_Set_payee", - "blob": "11070359673bb4c9ba72b28bdbccc2e36b1d0b64c106240bc084fb9f53d0928e74ab66d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 649, + "name": "Staking_Validate_cdd_expiry_nominators", + "blob": "111c1442683728ce80bbeb8bc2d60272401a5a61c8c3752be4cd7646df026e35a34b6f008ccf2185eeddd862a8a228ca41e6c2cc4848ab04bdcaad75d5944fd08e1948c89b6cc70106cd9dfbfaeb50ae568e334a0b71134a3bf6539a046eccf7a3d21a04e0eb3cca1b0642d2429b165a7d4799452f61581fb18bb6c0691b13e5431a61b862f1c279831c030fcf3b8aadfb5c2dd57401fada346592e3173a98b0f2044ad503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Set payee", - "1 | Payee [1/2] : 2EU92kgKXsTscM7zWTTZRWMMUUoqMKHMTRgwqk", - "1 | Payee [2/2] : MGJqRstFpq", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Staking : Validate cdd expiry nominators", + "1 | Targets [1/10] : 5DZmyZZ6ztre9SepCA9faBJCQXDd8n85q4bp3w", + "1 | Targets [2/10] : K4KDyicxGs", + "1 | Targets [3/10] : 5C5Rgkds3Gnw5EHVmgWf1DQ9nc5Np4Eb32PzVX", + "1 | Targets [4/10] : v4WzXj31zV", + "1 | Targets [5/10] : 5Gbjc3HWVE6xmAVdyRSEZ3tcUXcd4fdsmZcdRx", + "1 | Targets [6/10] : 7Qzsnv7JJY", + "1 | Targets [7/10] : 5CB6s3J3kB9WwHaq3REJxi6qyn9kQtxHeVLWUv", + "1 | Targets [8/10] : p7kQgmJFrY", + "1 | Targets [9/10] : 5GEU4TzWkfNvnQiGkf6Ww4nhSrfB479zeWzwfe", + "1 | Targets [10/10] : Hxcwz7irDp" ], "output_expert": [ - "0 | Staking : Set payee", - "1 | Payee [1/2] : 2EU92kgKXsTscM7zWTTZRWMMUUoqMKHMTRgwqk", - "1 | Payee [2/2] : MGJqRstFpq", + "0 | Staking : Validate cdd expiry nominators", + "1 | Targets [1/10] : 5DZmyZZ6ztre9SepCA9faBJCQXDd8n85q4bp3w", + "1 | Targets [2/10] : K4KDyicxGs", + "1 | Targets [3/10] : 5C5Rgkds3Gnw5EHVmgWf1DQ9nc5Np4Eb32PzVX", + "1 | Targets [4/10] : v4WzXj31zV", + "1 | Targets [5/10] : 5Gbjc3HWVE6xmAVdyRSEZ3tcUXcd4fdsmZcdRx", + "1 | Targets [6/10] : 7Qzsnv7JJY", + "1 | Targets [7/10] : 5CB6s3J3kB9WwHaq3REJxi6qyn9kQtxHeVLWUv", + "1 | Targets [8/10] : p7kQgmJFrY", + "1 | Targets [9/10] : 5GEU4TzWkfNvnQiGkf6Ww4nhSrfB479zeWzwfe", + "1 | Targets [10/10] : Hxcwz7irDp", "2 | Chain : Polymesh", "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 651, - "name": "Staking_Set_controller", - "blob": "110804c1db1bc1e1aa732243490c29461a3e63b91dd88ad50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 650, + "name": "Staking_Validate_cdd_expiry_nominators", + "blob": "111c1442683728ce80bbeb8bc2d60272401a5a61c8c3752be4cd7646df026e35a34b6f008ccf2185eeddd862a8a228ca41e6c2cc4848ab04bdcaad75d5944fd08e1948c89b6cc70106cd9dfbfaeb50ae568e334a0b71134a3bf6539a046eccf7a3d21a04e0eb3cca1b0642d2429b165a7d4799452f61581fb18bb6c0691b13e5431a61b862f1c279831c030fcf3b8aadfb5c2dd57401fada346592e3173a98b0f2044ad503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Set controller", - "1 | Controller [1/2] : c1db1bc1e1aa732243490c29461a3e63b91dd8", - "1 | Controller [2/2] : 8a", - "2 | Tip : POLYX 55.555555" + "0 | Staking : Validate cdd expiry nominators", + "1 | Targets [1/10] : 5DZmyZZ6ztre9SepCA9faBJCQXDd8n85q4bp3w", + "1 | Targets [2/10] : K4KDyicxGs", + "1 | Targets [3/10] : 5C5Rgkds3Gnw5EHVmgWf1DQ9nc5Np4Eb32PzVX", + "1 | Targets [4/10] : v4WzXj31zV", + "1 | Targets [5/10] : 5Gbjc3HWVE6xmAVdyRSEZ3tcUXcd4fdsmZcdRx", + "1 | Targets [6/10] : 7Qzsnv7JJY", + "1 | Targets [7/10] : 5CB6s3J3kB9WwHaq3REJxi6qyn9kQtxHeVLWUv", + "1 | Targets [8/10] : p7kQgmJFrY", + "1 | Targets [9/10] : 5GEU4TzWkfNvnQiGkf6Ww4nhSrfB479zeWzwfe", + "1 | Targets [10/10] : Hxcwz7irDp", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Staking : Set controller", - "1 | Controller [1/2] : c1db1bc1e1aa732243490c29461a3e63b91dd8", - "1 | Controller [2/2] : 8a", + "0 | Staking : Validate cdd expiry nominators", + "1 | Targets [1/10] : 5DZmyZZ6ztre9SepCA9faBJCQXDd8n85q4bp3w", + "1 | Targets [2/10] : K4KDyicxGs", + "1 | Targets [3/10] : 5C5Rgkds3Gnw5EHVmgWf1DQ9nc5Np4Eb32PzVX", + "1 | Targets [4/10] : v4WzXj31zV", + "1 | Targets [5/10] : 5Gbjc3HWVE6xmAVdyRSEZ3tcUXcd4fdsmZcdRx", + "1 | Targets [6/10] : 7Qzsnv7JJY", + "1 | Targets [7/10] : 5CB6s3J3kB9WwHaq3REJxi6qyn9kQtxHeVLWUv", + "1 | Targets [8/10] : p7kQgmJFrY", + "1 | Targets [9/10] : 5GEU4TzWkfNvnQiGkf6Ww4nhSrfB479zeWzwfe", + "1 | Targets [10/10] : Hxcwz7irDp", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 50283", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 651, + "name": "Staking_Payout_stakers_by_system", + "blob": "111d2e5388ccb167c9fe3baeba3fed959f63c4e8bceb6c7387a77940029c14239820d3040000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Payout stakers by system", + "1 | Validator stash [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "1 | Validator stash [2/2] : qta7VKQZKw", + "2 | Era : 1235", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" + ], + "output_expert": [ + "0 | Staking : Payout stakers by system", + "1 | Validator stash [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "1 | Validator stash [2/2] : qta7VKQZKw", + "2 | Era : 1235", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 652, - "name": "Staking_Set_controller", - "blob": "110804c1db1bc1e1aa732243490c29461a3e63b91dd88ad503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Payout_stakers_by_system", + "blob": "111d1ea4f867cc0e916cfbaa637a01eea0d3163df7d154720f78571790913a635219f7010000d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Set controller", - "1 | Controller [1/2] : c1db1bc1e1aa732243490c29461a3e63b91dd8", - "1 | Controller [2/2] : 8a", - "2 | Tip : POLYX 55.555555" + "0 | Staking : Payout stakers by system", + "1 | Validator stash [1/2] : 5CktJMt3EL46Fd9cgCmATqUnc4rBP6d1LDcAvK", + "1 | Validator stash [2/2] : SX5DnQkqUa", + "2 | Era : 503", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Staking : Set controller", - "1 | Controller [1/2] : c1db1bc1e1aa732243490c29461a3e63b91dd8", - "1 | Controller [2/2] : 8a", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Payout stakers by system", + "1 | Validator stash [1/2] : 5CktJMt3EL46Fd9cgCmATqUnc4rBP6d1LDcAvK", + "1 | Validator stash [2/2] : SX5DnQkqUa", + "2 | Era : 503", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 653, - "name": "Staking_Set_controller", - "blob": "1108031b5bf215374493b82427331e7a21c5dc7390a7f50938f6209701aa7fefa97f97d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Payout_stakers_by_system", + "blob": "111d2e5388ccb167c9fe3baeba3fed959f63c4e8bceb6c7387a77940029c142398209d1c0000d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Set controller", - "1 | Controller [1/2] : 1b5bf215374493b82427331e7a21c5dc7390a7", - "1 | Controller [2/2] : f50938f6209701aa7fefa97f97", - "2 | Tip : POLYX 1234.56789" + "0 | Staking : Payout stakers by system", + "1 | Validator stash [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "1 | Validator stash [2/2] : qta7VKQZKw", + "2 | Era : 7325", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Staking : Set controller", - "1 | Controller [1/2] : 1b5bf215374493b82427331e7a21c5dc7390a7", - "1 | Controller [2/2] : f50938f6209701aa7fefa97f97", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Payout stakers by system", + "1 | Validator stash [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "1 | Validator stash [2/2] : qta7VKQZKw", + "2 | Era : 7325", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 654, - "name": "Staking_Set_controller", - "blob": "110804c1db1bc1e1aa732243490c29461a3e63b91dd88ad503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Payout_stakers_by_system", + "blob": "111ddec0f4dc5fd3e8d150cf002bc6385185d188545a2d3c35459acb0fac525c276100000000d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Set controller", - "1 | Controller [1/2] : c1db1bc1e1aa732243490c29461a3e63b91dd8", - "1 | Controller [2/2] : 8a", - "2 | Tip : POLYX 5552342.355555" + "0 | Staking : Payout stakers by system", + "1 | Validator stash [1/2] : 5H6moo4wU5PEeHwthqGaP9oVjjAcG3PXyn196u", + "1 | Validator stash [2/2] : hgTRKhjCkB", + "2 | Era : 0", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Staking : Set controller", - "1 | Controller [1/2] : c1db1bc1e1aa732243490c29461a3e63b91dd8", - "1 | Controller [2/2] : 8a", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Payout stakers by system", + "1 | Validator stash [1/2] : 5H6moo4wU5PEeHwthqGaP9oVjjAcG3PXyn196u", + "1 | Validator stash [2/2] : hgTRKhjCkB", + "2 | Era : 0", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 655, - "name": "Staking_Set_controller", - "blob": "110802809a2cafb174b302f0f381d2705358111a9c905c258e089eb940a3046ae641e43fd503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Payout_stakers_by_system", + "blob": "111ddec0f4dc5fd3e8d150cf002bc6385185d188545a2d3c35459acb0fac525c2761d3040000d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Set controller", - "1 | Controller [1/2] : 9a2cafb174b302f0f381d2705358111a9c905c", - "1 | Controller [2/2] : 258e089eb940a3046ae641e43f", - "2 | Tip : POLYX 0.000987" + "0 | Staking : Payout stakers by system", + "1 | Validator stash [1/2] : 5H6moo4wU5PEeHwthqGaP9oVjjAcG3PXyn196u", + "1 | Validator stash [2/2] : hgTRKhjCkB", + "2 | Era : 1235", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Staking : Set controller", - "1 | Controller [1/2] : 9a2cafb174b302f0f381d2705358111a9c905c", - "1 | Controller [2/2] : 258e089eb940a3046ae641e43f", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Payout stakers by system", + "1 | Validator stash [1/2] : 5H6moo4wU5PEeHwthqGaP9oVjjAcG3PXyn196u", + "1 | Validator stash [2/2] : hgTRKhjCkB", + "2 | Era : 1235", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 656, - "name": "Staking_Set_validator_count", - "blob": "1109fe09f003d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Change_slashing_allowed_for", + "blob": "111e02d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Set validator count", - "1 | New : 16515711" + "0 | Staking : Change slashing allowed for", + "1 | Slashing switch : None", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Staking : Set validator count", - "1 | New : 16515711", + "0 | Staking : Change slashing allowed for", + "1 | Slashing switch : None", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 657, - "name": "Staking_Set_validator_count", - "blob": "1109ea53bf77d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Change_slashing_allowed_for", + "blob": "111e00d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Set validator count", - "1 | New : 502256890", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Staking : Change slashing allowed for", + "1 | Slashing switch : Validator", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Staking : Set validator count", - "1 | New : 502256890", + "0 | Staking : Change slashing allowed for", + "1 | Slashing switch : Validator", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 50283", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 658, - "name": "Staking_Set_validator_count", - "blob": "11093585d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Change_slashing_allowed_for", + "blob": "111e01d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Set validator count", - "1 | New : 8525", - "2 | Tip : POLYX 0.000987" + "0 | Staking : Change slashing allowed for", + "1 | Slashing switch : ValidatorAndNominator" ], "output_expert": [ - "0 | Staking : Set validator count", - "1 | New : 8525", + "0 | Staking : Change slashing allowed for", + "1 | Slashing switch : ValidatorAndNominator", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 659, - "name": "Staking_Set_validator_count", - "blob": "1109bab0bd02d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Change_slashing_allowed_for", + "blob": "111e02d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Set validator count", - "1 | New : 11496494", - "2 | Tip : POLYX 55.555555" + "0 | Staking : Change slashing allowed for", + "1 | Slashing switch : None", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Staking : Set validator count", - "1 | New : 11496494", + "0 | Staking : Change slashing allowed for", + "1 | Slashing switch : None", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 2339", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 660, - "name": "Staking_Set_validator_count", - "blob": "1109fe09f003d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Change_slashing_allowed_for", + "blob": "111e02d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Set validator count", - "1 | New : 16515711", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Staking : Change slashing allowed for", + "1 | Slashing switch : None", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Staking : Set validator count", - "1 | New : 16515711", + "0 | Staking : Change slashing allowed for", + "1 | Slashing switch : None", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 1", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 661, - "name": "Staking_Increase_validator_count", - "blob": "110aea53bf77d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Update_permissioned_validator_intended_count", + "blob": "111fc209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d3040000d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Increase validator count", - "1 | Additional : 502256890", - "2 | Tip : POLYX 55.555555" + "0 | Staking : Update permissioned validator intended", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | New intended count : 1235", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Staking : Increase validator count", - "1 | Additional : 502256890", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Update permissioned validator intended", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | New intended count : 1235", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 662, - "name": "Staking_Increase_validator_count", - "blob": "110abab0bd02d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Update_permissioned_validator_intended_count", + "blob": "111fc209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d3040000d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Increase validator count", - "1 | Additional : 11496494", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Staking : Update permissioned validator intended", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | New intended count : 1235", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Staking : Increase validator count", - "1 | Additional : 11496494", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Update permissioned validator intended", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | New intended count : 1235", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 663, - "name": "Staking_Increase_validator_count", - "blob": "110afe09f003d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Update_permissioned_validator_intended_count", + "blob": "111fc209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c49077089d1c0000d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Increase validator count", - "1 | Additional : 16515711", - "2 | Tip : POLYX 1234.56789" + "0 | Staking : Update permissioned validator intended", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | New intended count : 7325", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Staking : Increase validator count", - "1 | Additional : 16515711", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Update permissioned validator intended", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | New intended count : 7325", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 664, - "name": "Staking_Increase_validator_count", - "blob": "110a3585d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Update_permissioned_validator_intended_count", + "blob": "111fc209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c49077089d1c0000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Increase validator count", - "1 | Additional : 8525", - "2 | Tip : POLYX 0.000987" + "0 | Staking : Update permissioned validator intended", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | New intended count : 7325", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Staking : Increase validator count", - "1 | Additional : 8525", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Update permissioned validator intended", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | New intended count : 7325", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 665, - "name": "Staking_Increase_validator_count", - "blob": "110a3585d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Update_permissioned_validator_intended_count", + "blob": "111fc209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c49077089d1c0000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Increase validator count", - "1 | Additional : 8525", - "2 | Tip : POLYX 1234.56789" + "0 | Staking : Update permissioned validator intended", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | New intended count : 7325", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Staking : Increase validator count", - "1 | Additional : 8525", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Update permissioned validator intended", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | New intended count : 7325", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 666, - "name": "Staking_Scale_validator_count", - "blob": "110b64d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Chill_from_governance", + "blob": "1120c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708203c805abe04101b6fa4fc9e89c684ee50e9432d08db1ae39ec8998a801c26e328a0b64be421840cb0f57ae9a222ecb507c0e4815ad82c4c78feadfbc198468f7c08d0207b9604ddf69d9ef102862f1c814a5368907c6a451968bd43e70bcae53f1042100af1c38ad01e887cadd6c3691ee07c407e01a3e857a706a078b4522d697652f2b2f7065e209883ac75e5b3b953b4edb66391afddd00fed9bbd26edd22d801297f7ca7db4c5133f40e396b575dd3bbd9d15cbc7ff0c3a9de40a7577c01f88f08186b7b6b95ffcde374124d39e158f799da938b2634e65fd56e7e7d401159213b5d5cb1a6be9044efa7be7b00f9c12f755811a09840e7bc86098aa8cf30ed5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Scale validator count", - "1 | Factor : 100%", - "2 | Tip : POLYX 55.555555" + "0 | Staking : Chill from governance", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Stash keys [1/16] : 5DS2roYwteJYMxMztdRK6DJMwjgN6DWAkWzjEs", + "2 | Stash keys [2/16] : NZD5CoiXWo", + "2 | Stash keys [3/16] : 5FhRfw6bvEZnzaLAR6HnLUrdzuPVYQDY7EFtbV", + "2 | Stash keys [4/16] : 6CSU9zCoNV", + "2 | Stash keys [5/16] : 5CGG4q6R2B2xjDwFXyk7CA9HdWbsSMy5TYPfQN", + "2 | Stash keys [6/16] : 9he3kNizS2", + "2 | Stash keys [7/16] : 5CS2FLcgjJWzUZGu2WQ5eBaJfzd8EMQ1VmQMcn", + "2 | Stash keys [8/16] : QtJCTQiEcn", + "2 | Stash keys [9/16] : 5Ejr9Z3AQ2mZ91tURigFZtDT8Lg6wcjA3TmTAU", + "2 | Stash keys [10/16] : sGVo1NrpuH", + "2 | Stash keys [11/16] : 5ExdWXS1wsgZXSkK3ZdnVoTzjhLM2bc9hYyXr7", + "2 | Stash keys [12/16] : SV5DXXbHZk", + "2 | Stash keys [13/16] : 5FAFpCpNJiUxoqKkuYjCDTmakuxcc7NTAStJyL", + "2 | Stash keys [14/16] : KTFMModfEt", + "2 | Stash keys [15/16] : 5FNEhkrQ8pMGQroh5MNS7zSzHLtRAqpvw9nkFB", + "2 | Stash keys [16/16] : hC9ZyYVvgh", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Staking : Scale validator count", - "1 | Factor : 100%", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Chill from governance", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Stash keys [1/16] : 5DS2roYwteJYMxMztdRK6DJMwjgN6DWAkWzjEs", + "2 | Stash keys [2/16] : NZD5CoiXWo", + "2 | Stash keys [3/16] : 5FhRfw6bvEZnzaLAR6HnLUrdzuPVYQDY7EFtbV", + "2 | Stash keys [4/16] : 6CSU9zCoNV", + "2 | Stash keys [5/16] : 5CGG4q6R2B2xjDwFXyk7CA9HdWbsSMy5TYPfQN", + "2 | Stash keys [6/16] : 9he3kNizS2", + "2 | Stash keys [7/16] : 5CS2FLcgjJWzUZGu2WQ5eBaJfzd8EMQ1VmQMcn", + "2 | Stash keys [8/16] : QtJCTQiEcn", + "2 | Stash keys [9/16] : 5Ejr9Z3AQ2mZ91tURigFZtDT8Lg6wcjA3TmTAU", + "2 | Stash keys [10/16] : sGVo1NrpuH", + "2 | Stash keys [11/16] : 5ExdWXS1wsgZXSkK3ZdnVoTzjhLM2bc9hYyXr7", + "2 | Stash keys [12/16] : SV5DXXbHZk", + "2 | Stash keys [13/16] : 5FAFpCpNJiUxoqKkuYjCDTmakuxcc7NTAStJyL", + "2 | Stash keys [14/16] : KTFMModfEt", + "2 | Stash keys [15/16] : 5FNEhkrQ8pMGQroh5MNS7zSzHLtRAqpvw9nkFB", + "2 | Stash keys [16/16] : hC9ZyYVvgh", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 667, - "name": "Staking_Scale_validator_count", - "blob": "110b00d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Chill_from_governance", + "blob": "1120c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c49077081442683728ce80bbeb8bc2d60272401a5a61c8c3752be4cd7646df026e35a34b6f008ccf2185eeddd862a8a228ca41e6c2cc4848ab04bdcaad75d5944fd08e1948c89b6cc70106cd9dfbfaeb50ae568e334a0b71134a3bf6539a046eccf7a3d21a04e0eb3cca1b0642d2429b165a7d4799452f61581fb18bb6c0691b13e5431a61b862f1c279831c030fcf3b8aadfb5c2dd57401fada346592e3173a98b0f2044ad503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Scale validator count", - "1 | Factor : 0%", - "2 | Tip : POLYX 5552342.355555" + "0 | Staking : Chill from governance", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Stash keys [1/10] : 5DZmyZZ6ztre9SepCA9faBJCQXDd8n85q4bp3w", + "2 | Stash keys [2/10] : K4KDyicxGs", + "2 | Stash keys [3/10] : 5C5Rgkds3Gnw5EHVmgWf1DQ9nc5Np4Eb32PzVX", + "2 | Stash keys [4/10] : v4WzXj31zV", + "2 | Stash keys [5/10] : 5Gbjc3HWVE6xmAVdyRSEZ3tcUXcd4fdsmZcdRx", + "2 | Stash keys [6/10] : 7Qzsnv7JJY", + "2 | Stash keys [7/10] : 5CB6s3J3kB9WwHaq3REJxi6qyn9kQtxHeVLWUv", + "2 | Stash keys [8/10] : p7kQgmJFrY", + "2 | Stash keys [9/10] : 5GEU4TzWkfNvnQiGkf6Ww4nhSrfB479zeWzwfe", + "2 | Stash keys [10/10] : Hxcwz7irDp", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Staking : Scale validator count", - "1 | Factor : 0%", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Chill from governance", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Stash keys [1/10] : 5DZmyZZ6ztre9SepCA9faBJCQXDd8n85q4bp3w", + "2 | Stash keys [2/10] : K4KDyicxGs", + "2 | Stash keys [3/10] : 5C5Rgkds3Gnw5EHVmgWf1DQ9nc5Np4Eb32PzVX", + "2 | Stash keys [4/10] : v4WzXj31zV", + "2 | Stash keys [5/10] : 5Gbjc3HWVE6xmAVdyRSEZ3tcUXcd4fdsmZcdRx", + "2 | Stash keys [6/10] : 7Qzsnv7JJY", + "2 | Stash keys [7/10] : 5CB6s3J3kB9WwHaq3REJxi6qyn9kQtxHeVLWUv", + "2 | Stash keys [8/10] : p7kQgmJFrY", + "2 | Stash keys [9/10] : 5GEU4TzWkfNvnQiGkf6Ww4nhSrfB479zeWzwfe", + "2 | Stash keys [10/10] : Hxcwz7irDp", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 668, - "name": "Staking_Scale_validator_count", - "blob": "110b64d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Chill_from_governance", + "blob": "1120c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708180ef151c74547b7a7500a496af42d2fab49d1fcc6820a4e18310fa25ff1f208331c3a884cb495d43667130b4ac2de24742d1e20256845ff7455234cf9da6cba05d042abb5805b65960ea6515003d5b23c6c3fe964d7b867ff08cbe54d495c6958f24a5e29c643a8d4c84c11a8b718ca29f06d45046440011cfcbc4c9e36ab4a06806746fe2cd50eab68635ab87799ab8a0b47f14076a11d843875edd1826653534ee12d695c74d86d1476e7a82cc36fa43b1eefc47ff3d2818677bb1639553307d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Scale validator count", - "1 | Factor : 100%", - "2 | Tip : POLYX 0.000987" + "0 | Staking : Chill from governance", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Stash keys [1/12] : 5CQJDPUqmKoQm8WwHZ7BDPyjee5aw4ccmnV9Pw", + "2 | Stash keys [2/12] : LqriprPhPe", + "2 | Stash keys [3/12] : 5ChiavXNPqvPDVbKRmaFeJSkq3EXZd2rdUuf6n", + "2 | Stash keys [4/12] : UXQkWvn9CU", + "2 | Stash keys [5/12] : 5Gmmd4Rmn2PXc3M8n2V8vAgLDxwu21Yep337Qh", + "2 | Stash keys [6/12] : CqzSxwKhmT", + "2 | Stash keys [7/12] : 5HYPY77hv8zkcLYg3K244RU3YTuiZSdPCpDhqq", + "2 | Stash keys [8/12] : MNrFX6Ttoq", + "2 | Stash keys [9/12] : 5Ey4fbG9FXRxKw4JbxN8YTgu2H6UXUjVdehV6y", + "2 | Stash keys [10/12] : ZL6zfBpBBY", + "2 | Stash keys [11/12] : 5Dr8V1qXmG1xRUopT82MPCqZxfFHsFGqrpancB", + "2 | Stash keys [12/12] : TwjCZ6sjig" ], "output_expert": [ - "0 | Staking : Scale validator count", - "1 | Factor : 100%", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", + "0 | Staking : Chill from governance", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Stash keys [1/12] : 5CQJDPUqmKoQm8WwHZ7BDPyjee5aw4ccmnV9Pw", + "2 | Stash keys [2/12] : LqriprPhPe", + "2 | Stash keys [3/12] : 5ChiavXNPqvPDVbKRmaFeJSkq3EXZd2rdUuf6n", + "2 | Stash keys [4/12] : UXQkWvn9CU", + "2 | Stash keys [5/12] : 5Gmmd4Rmn2PXc3M8n2V8vAgLDxwu21Yep337Qh", + "2 | Stash keys [6/12] : CqzSxwKhmT", + "2 | Stash keys [7/12] : 5HYPY77hv8zkcLYg3K244RU3YTuiZSdPCpDhqq", + "2 | Stash keys [8/12] : MNrFX6Ttoq", + "2 | Stash keys [9/12] : 5Ey4fbG9FXRxKw4JbxN8YTgu2H6UXUjVdehV6y", + "2 | Stash keys [10/12] : ZL6zfBpBBY", + "2 | Stash keys [11/12] : 5Dr8V1qXmG1xRUopT82MPCqZxfFHsFGqrpancB", + "2 | Stash keys [12/12] : TwjCZ6sjig", + "3 | Chain : Polymesh", + "4 | Nonce : 0", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 669, - "name": "Staking_Scale_validator_count", - "blob": "110b64d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Chill_from_governance", + "blob": "1120c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c49077081442683728ce80bbeb8bc2d60272401a5a61c8c3752be4cd7646df026e35a34b6f008ccf2185eeddd862a8a228ca41e6c2cc4848ab04bdcaad75d5944fd08e1948c89b6cc70106cd9dfbfaeb50ae568e334a0b71134a3bf6539a046eccf7a3d21a04e0eb3cca1b0642d2429b165a7d4799452f61581fb18bb6c0691b13e5431a61b862f1c279831c030fcf3b8aadfb5c2dd57401fada346592e3173a98b0f2044ad5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Scale validator count", - "1 | Factor : 100%", - "2 | Tip : POLYX 55.555555" + "0 | Staking : Chill from governance", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Stash keys [1/10] : 5DZmyZZ6ztre9SepCA9faBJCQXDd8n85q4bp3w", + "2 | Stash keys [2/10] : K4KDyicxGs", + "2 | Stash keys [3/10] : 5C5Rgkds3Gnw5EHVmgWf1DQ9nc5Np4Eb32PzVX", + "2 | Stash keys [4/10] : v4WzXj31zV", + "2 | Stash keys [5/10] : 5Gbjc3HWVE6xmAVdyRSEZ3tcUXcd4fdsmZcdRx", + "2 | Stash keys [6/10] : 7Qzsnv7JJY", + "2 | Stash keys [7/10] : 5CB6s3J3kB9WwHaq3REJxi6qyn9kQtxHeVLWUv", + "2 | Stash keys [8/10] : p7kQgmJFrY", + "2 | Stash keys [9/10] : 5GEU4TzWkfNvnQiGkf6Ww4nhSrfB479zeWzwfe", + "2 | Stash keys [10/10] : Hxcwz7irDp", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Staking : Scale validator count", - "1 | Factor : 100%", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 670, - "name": "Staking_Scale_validator_count", - "blob": "110b64d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Scale validator count", - "1 | Factor : 100%", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Staking : Scale validator count", - "1 | Factor : 100%", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Chill from governance", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Stash keys [1/10] : 5DZmyZZ6ztre9SepCA9faBJCQXDd8n85q4bp3w", + "2 | Stash keys [2/10] : K4KDyicxGs", + "2 | Stash keys [3/10] : 5C5Rgkds3Gnw5EHVmgWf1DQ9nc5Np4Eb32PzVX", + "2 | Stash keys [4/10] : v4WzXj31zV", + "2 | Stash keys [5/10] : 5Gbjc3HWVE6xmAVdyRSEZ3tcUXcd4fdsmZcdRx", + "2 | Stash keys [6/10] : 7Qzsnv7JJY", + "2 | Stash keys [7/10] : 5CB6s3J3kB9WwHaq3REJxi6qyn9kQtxHeVLWUv", + "2 | Stash keys [8/10] : p7kQgmJFrY", + "2 | Stash keys [9/10] : 5GEU4TzWkfNvnQiGkf6Ww4nhSrfB479zeWzwfe", + "2 | Stash keys [10/10] : Hxcwz7irDp", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 671, - "name": "Staking_Add_permissioned_validator", - "blob": "110c44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af019d1c0000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 670, + "name": "Staking_Chill_from_governance", + "blob": "1120c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708180ef151c74547b7a7500a496af42d2fab49d1fcc6820a4e18310fa25ff1f208331c3a884cb495d43667130b4ac2de24742d1e20256845ff7455234cf9da6cba05d042abb5805b65960ea6515003d5b23c6c3fe964d7b867ff08cbe54d495c6958f24a5e29c643a8d4c84c11a8b718ca29f06d45046440011cfcbc4c9e36ab4a06806746fe2cd50eab68635ab87799ab8a0b47f14076a11d843875edd1826653534ee12d695c74d86d1476e7a82cc36fa43b1eefc47ff3d2818677bb1639553307d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Add permissioned validator", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Intended count : 7325", + "0 | Staking : Chill from governance", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Stash keys [1/12] : 5CQJDPUqmKoQm8WwHZ7BDPyjee5aw4ccmnV9Pw", + "2 | Stash keys [2/12] : LqriprPhPe", + "2 | Stash keys [3/12] : 5ChiavXNPqvPDVbKRmaFeJSkq3EXZd2rdUuf6n", + "2 | Stash keys [4/12] : UXQkWvn9CU", + "2 | Stash keys [5/12] : 5Gmmd4Rmn2PXc3M8n2V8vAgLDxwu21Yep337Qh", + "2 | Stash keys [6/12] : CqzSxwKhmT", + "2 | Stash keys [7/12] : 5HYPY77hv8zkcLYg3K244RU3YTuiZSdPCpDhqq", + "2 | Stash keys [8/12] : MNrFX6Ttoq", + "2 | Stash keys [9/12] : 5Ey4fbG9FXRxKw4JbxN8YTgu2H6UXUjVdehV6y", + "2 | Stash keys [10/12] : ZL6zfBpBBY", + "2 | Stash keys [11/12] : 5Dr8V1qXmG1xRUopT82MPCqZxfFHsFGqrpancB", + "2 | Stash keys [12/12] : TwjCZ6sjig", "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Staking : Add permissioned validator", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Intended count : 7325", + "0 | Staking : Chill from governance", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Stash keys [1/12] : 5CQJDPUqmKoQm8WwHZ7BDPyjee5aw4ccmnV9Pw", + "2 | Stash keys [2/12] : LqriprPhPe", + "2 | Stash keys [3/12] : 5ChiavXNPqvPDVbKRmaFeJSkq3EXZd2rdUuf6n", + "2 | Stash keys [4/12] : UXQkWvn9CU", + "2 | Stash keys [5/12] : 5Gmmd4Rmn2PXc3M8n2V8vAgLDxwu21Yep337Qh", + "2 | Stash keys [6/12] : CqzSxwKhmT", + "2 | Stash keys [7/12] : 5HYPY77hv8zkcLYg3K244RU3YTuiZSdPCpDhqq", + "2 | Stash keys [8/12] : MNrFX6Ttoq", + "2 | Stash keys [9/12] : 5Ey4fbG9FXRxKw4JbxN8YTgu2H6UXUjVdehV6y", + "2 | Stash keys [10/12] : ZL6zfBpBBY", + "2 | Stash keys [11/12] : 5Dr8V1qXmG1xRUopT82MPCqZxfFHsFGqrpancB", + "2 | Stash keys [12/12] : TwjCZ6sjig", "3 | Chain : Polymesh", - "4 | Nonce : 0", + "4 | Nonce : 1", "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 671, + "name": "Staking_Set_commission_cap", + "blob": "1121f87b0877d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Staking : Set commission cap", + "1 | New cap : 199.7044728%", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" + ], + "output_expert": [ + "0 | Staking : Set commission cap", + "1 | New cap : 199.7044728%", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 672, - "name": "Staking_Add_permissioned_validator", - "blob": "110c44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af0100000000d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Set_commission_cap", + "blob": "1121f87b0877d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Add permissioned validator", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Intended count : 0", - "3 | Tip : POLYX 5552342.355555" + "0 | Staking : Set commission cap", + "1 | New cap : 199.7044728%", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Staking : Add permissioned validator", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Intended count : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Set commission cap", + "1 | New cap : 199.7044728%", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 673, - "name": "Staking_Add_permissioned_validator", - "blob": "110c44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af01d3040000d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Set_commission_cap", + "blob": "1121f87b0877d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Add permissioned validator", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Intended count : 1235", - "3 | Tip : POLYX 55.555555" + "0 | Staking : Set commission cap", + "1 | New cap : 199.7044728%" ], "output_expert": [ - "0 | Staking : Add permissioned validator", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Intended count : 1235", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Set commission cap", + "1 | New cap : 199.7044728%", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 674, - "name": "Staking_Add_permissioned_validator", - "blob": "110c44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af01d3040000d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Set_commission_cap", + "blob": "1121f87b0877d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Add permissioned validator", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Intended count : 1235", - "3 | Tip : POLYX 0.000987" + "0 | Staking : Set commission cap", + "1 | New cap : 199.7044728%", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Staking : Add permissioned validator", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Intended count : 1235", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Set commission cap", + "1 | New cap : 199.7044728%", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 675, - "name": "Staking_Add_permissioned_validator", - "blob": "110c44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af019d1c0000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Staking_Set_commission_cap", + "blob": "1121ef62a7b4d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Add permissioned validator", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Intended count : 7325", - "3 | Tip : POLYX 0.000987" + "0 | Staking : Set commission cap", + "1 | New cap : 303.0868719%", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Staking : Add permissioned validator", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Intended count : 7325", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Staking : Set commission cap", + "1 | New cap : 303.0868719%", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 676, - "name": "Staking_Remove_permissioned_validator", - "blob": "110d44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Session_Set_keys", + "blob": "1300863520ae45b8505fa4e9e25c2c8574c59250169a41b959360ebcf0c3184b62b9679bda57953551e6a190e32b0bd830b9cc3aae6cef228c2ce089073a0fe6807f93bb5d47793bbfe899133390e72f92472b0bf6ddc053f6065d2cbbf61a0d5205517215443966449c11261e9316cedbdd44b303a7b2ee30a8bb2dd9daa4a11b330102b2019b12199bd8c5694f336189f576c8c8f5411b35d6f33faaaf68fd63d1091377b3cf2c9aba4beccafacf81dc55f29f744e5b8d0fde968939a0fa857737c3e6cbd66ea6a34a41bb9adc85657ef9bfec225ae9b86e487242e402518d5634bff9105f73fa07aa99a66f929317789925234a209f75dd3401231a403d4ee9122a30d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Remove permissioned validator", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af" + "0 | Session : Set keys", + "1 | Keys [1/7] : 863520ae45b8505fa4e9e25c2c8574c5925016", + "1 | Keys [2/7] : 9a41b959360ebcf0c3184b62b9679bda579535", + "1 | Keys [3/7] : 51e6a190e32b0bd830b9cc3aae6cef228c2ce0", + "1 | Keys [4/7] : 89073a0fe6807f93bb5d47793bbfe899133390", + "1 | Keys [5/7] : e72f92472b0bf6ddc053f6065d2cbbf61a0d52", + "1 | Keys [6/7] : 05517215443966449c11261e9316cedbdd44b3", + "1 | Keys [7/7] : 03a7b2ee30a8bb2dd9daa4a11b33", + "2 | Proof [1/7] : b2019b12199bd8c5694f336189f576c8c8f541", + "2 | Proof [2/7] : 1b35d6f33faaaf68fd63d1091377b3cf2c9aba", + "2 | Proof [3/7] : 4beccafacf81dc55f29f744e5b8d0fde968939", + "2 | Proof [4/7] : a0fa857737c3e6cbd66ea6a34a41bb9adc8565", + "2 | Proof [5/7] : 7ef9bfec225ae9b86e487242e402518d5634bf", + "2 | Proof [6/7] : f9105f73fa07aa99a66f929317789925234a20", + "2 | Proof [7/7] : 9f75dd3401231a403d4ee9122a30", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Staking : Remove permissioned validator", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Session : Set keys", + "1 | Keys [1/7] : 863520ae45b8505fa4e9e25c2c8574c5925016", + "1 | Keys [2/7] : 9a41b959360ebcf0c3184b62b9679bda579535", + "1 | Keys [3/7] : 51e6a190e32b0bd830b9cc3aae6cef228c2ce0", + "1 | Keys [4/7] : 89073a0fe6807f93bb5d47793bbfe899133390", + "1 | Keys [5/7] : e72f92472b0bf6ddc053f6065d2cbbf61a0d52", + "1 | Keys [6/7] : 05517215443966449c11261e9316cedbdd44b3", + "1 | Keys [7/7] : 03a7b2ee30a8bb2dd9daa4a11b33", + "2 | Proof [1/7] : b2019b12199bd8c5694f336189f576c8c8f541", + "2 | Proof [2/7] : 1b35d6f33faaaf68fd63d1091377b3cf2c9aba", + "2 | Proof [3/7] : 4beccafacf81dc55f29f744e5b8d0fde968939", + "2 | Proof [4/7] : a0fa857737c3e6cbd66ea6a34a41bb9adc8565", + "2 | Proof [5/7] : 7ef9bfec225ae9b86e487242e402518d5634bf", + "2 | Proof [6/7] : f9105f73fa07aa99a66f929317789925234a20", + "2 | Proof [7/7] : 9f75dd3401231a403d4ee9122a30", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 677, - "name": "Staking_Remove_permissioned_validator", - "blob": "110d44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Session_Set_keys", + "blob": "1300ae0d9f634ab4fab25b0775957fcb847ed084b5e186e0e6d91ba48db4646addf8f8f6a0a3a1b78250d5754e553cb2302931984a680cc82d3a4ac7ba1d423ba5e326943ab47a432791441536df23675c8d48cf4c1e7157d405ea0e2483af14bcca5951b3688aa116accafdee0ac71591f4c35dedb90a284838d6bc3b2d268924588026ac0480331bc9ed5ac80af46ec594e1adfd225a3cd010373e2f0d3c09c2a76bd5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Remove permissioned validator", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 0.000987" + "0 | Session : Set keys", + "1 | Keys [1/7] : ae0d9f634ab4fab25b0775957fcb847ed084b5", + "1 | Keys [2/7] : e186e0e6d91ba48db4646addf8f8f6a0a3a1b7", + "1 | Keys [3/7] : 8250d5754e553cb2302931984a680cc82d3a4a", + "1 | Keys [4/7] : c7ba1d423ba5e326943ab47a432791441536df", + "1 | Keys [5/7] : 23675c8d48cf4c1e7157d405ea0e2483af14bc", + "1 | Keys [6/7] : ca5951b3688aa116accafdee0ac71591f4c35d", + "1 | Keys [7/7] : edb90a284838d6bc3b2d26892458", + "2 | Proof [1/2] : 26ac0480331bc9ed5ac80af46ec594e1adfd22", + "2 | Proof [2/2] : 5a3cd010373e2f0d3c09c2a76b" ], "output_expert": [ - "0 | Staking : Remove permissioned validator", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", + "0 | Session : Set keys", + "1 | Keys [1/7] : ae0d9f634ab4fab25b0775957fcb847ed084b5", + "1 | Keys [2/7] : e186e0e6d91ba48db4646addf8f8f6a0a3a1b7", + "1 | Keys [3/7] : 8250d5754e553cb2302931984a680cc82d3a4a", + "1 | Keys [4/7] : c7ba1d423ba5e326943ab47a432791441536df", + "1 | Keys [5/7] : 23675c8d48cf4c1e7157d405ea0e2483af14bc", + "1 | Keys [6/7] : ca5951b3688aa116accafdee0ac71591f4c35d", + "1 | Keys [7/7] : edb90a284838d6bc3b2d26892458", + "2 | Proof [1/2] : 26ac0480331bc9ed5ac80af46ec594e1adfd22", + "2 | Proof [2/2] : 5a3cd010373e2f0d3c09c2a76b", + "3 | Chain : Polymesh", + "4 | Nonce : 0", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 678, - "name": "Staking_Remove_permissioned_validator", - "blob": "110d44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Session_Set_keys", + "blob": "1300ae0d9f634ab4fab25b0775957fcb847ed084b5e186e0e6d91ba48db4646addf8f8f6a0a3a1b78250d5754e553cb2302931984a680cc82d3a4ac7ba1d423ba5e326943ab47a432791441536df23675c8d48cf4c1e7157d405ea0e2483af14bcca5951b3688aa116accafdee0ac71591f4c35dedb90a284838d6bc3b2d268924580102d2ce880b42c502e3ae6db5cbdb4644d41929aaf1473b3dffacebfe059c2410288ad0a2b82b7fec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a643ca3d75f249d6aff034afa699cb0f81638a8fec3ac9306b7a68e50aef4b18c58f123b750d4dd9033d5d2ac77de3e6faa49e76688e8768e038da2c68d18c8fbb71153e2ee911bd5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Remove permissioned validator", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af" + "0 | Session : Set keys", + "1 | Keys [1/7] : ae0d9f634ab4fab25b0775957fcb847ed084b5", + "1 | Keys [2/7] : e186e0e6d91ba48db4646addf8f8f6a0a3a1b7", + "1 | Keys [3/7] : 8250d5754e553cb2302931984a680cc82d3a4a", + "1 | Keys [4/7] : c7ba1d423ba5e326943ab47a432791441536df", + "1 | Keys [5/7] : 23675c8d48cf4c1e7157d405ea0e2483af14bc", + "1 | Keys [6/7] : ca5951b3688aa116accafdee0ac71591f4c35d", + "1 | Keys [7/7] : edb90a284838d6bc3b2d26892458", + "2 | Proof [1/7] : d2ce880b42c502e3ae6db5cbdb4644d41929aa", + "2 | Proof [2/7] : f1473b3dffacebfe059c2410288ad0a2b82b7f", + "2 | Proof [3/7] : ec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a", + "2 | Proof [4/7] : 643ca3d75f249d6aff034afa699cb0f81638a8", + "2 | Proof [5/7] : fec3ac9306b7a68e50aef4b18c58f123b750d4", + "2 | Proof [6/7] : dd9033d5d2ac77de3e6faa49e76688e8768e03", + "2 | Proof [7/7] : 8da2c68d18c8fbb71153e2ee911b" ], "output_expert": [ - "0 | Staking : Remove permissioned validator", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Session : Set keys", + "1 | Keys [1/7] : ae0d9f634ab4fab25b0775957fcb847ed084b5", + "1 | Keys [2/7] : e186e0e6d91ba48db4646addf8f8f6a0a3a1b7", + "1 | Keys [3/7] : 8250d5754e553cb2302931984a680cc82d3a4a", + "1 | Keys [4/7] : c7ba1d423ba5e326943ab47a432791441536df", + "1 | Keys [5/7] : 23675c8d48cf4c1e7157d405ea0e2483af14bc", + "1 | Keys [6/7] : ca5951b3688aa116accafdee0ac71591f4c35d", + "1 | Keys [7/7] : edb90a284838d6bc3b2d26892458", + "2 | Proof [1/7] : d2ce880b42c502e3ae6db5cbdb4644d41929aa", + "2 | Proof [2/7] : f1473b3dffacebfe059c2410288ad0a2b82b7f", + "2 | Proof [3/7] : ec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a", + "2 | Proof [4/7] : 643ca3d75f249d6aff034afa699cb0f81638a8", + "2 | Proof [5/7] : fec3ac9306b7a68e50aef4b18c58f123b750d4", + "2 | Proof [6/7] : dd9033d5d2ac77de3e6faa49e76688e8768e03", + "2 | Proof [7/7] : 8da2c68d18c8fbb71153e2ee911b", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 679, - "name": "Staking_Remove_permissioned_validator", - "blob": "110d44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Session_Set_keys", + "blob": "1300ae0d9f634ab4fab25b0775957fcb847ed084b5e186e0e6d91ba48db4646addf8f8f6a0a3a1b78250d5754e553cb2302931984a680cc82d3a4ac7ba1d423ba5e326943ab47a432791441536df23675c8d48cf4c1e7157d405ea0e2483af14bcca5951b3688aa116accafdee0ac71591f4c35dedb90a284838d6bc3b2d268924588026ac0480331bc9ed5ac80af46ec594e1adfd225a3cd010373e2f0d3c09c2a76bd503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Remove permissioned validator", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 1234.56789" + "0 | Session : Set keys", + "1 | Keys [1/7] : ae0d9f634ab4fab25b0775957fcb847ed084b5", + "1 | Keys [2/7] : e186e0e6d91ba48db4646addf8f8f6a0a3a1b7", + "1 | Keys [3/7] : 8250d5754e553cb2302931984a680cc82d3a4a", + "1 | Keys [4/7] : c7ba1d423ba5e326943ab47a432791441536df", + "1 | Keys [5/7] : 23675c8d48cf4c1e7157d405ea0e2483af14bc", + "1 | Keys [6/7] : ca5951b3688aa116accafdee0ac71591f4c35d", + "1 | Keys [7/7] : edb90a284838d6bc3b2d26892458", + "2 | Proof [1/2] : 26ac0480331bc9ed5ac80af46ec594e1adfd22", + "2 | Proof [2/2] : 5a3cd010373e2f0d3c09c2a76b", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Staking : Remove permissioned validator", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Session : Set keys", + "1 | Keys [1/7] : ae0d9f634ab4fab25b0775957fcb847ed084b5", + "1 | Keys [2/7] : e186e0e6d91ba48db4646addf8f8f6a0a3a1b7", + "1 | Keys [3/7] : 8250d5754e553cb2302931984a680cc82d3a4a", + "1 | Keys [4/7] : c7ba1d423ba5e326943ab47a432791441536df", + "1 | Keys [5/7] : 23675c8d48cf4c1e7157d405ea0e2483af14bc", + "1 | Keys [6/7] : ca5951b3688aa116accafdee0ac71591f4c35d", + "1 | Keys [7/7] : edb90a284838d6bc3b2d26892458", + "2 | Proof [1/2] : 26ac0480331bc9ed5ac80af46ec594e1adfd22", + "2 | Proof [2/2] : 5a3cd010373e2f0d3c09c2a76b", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 680, - "name": "Staking_Remove_permissioned_validator", - "blob": "110d44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Session_Set_keys", + "blob": "1300ae0d9f634ab4fab25b0775957fcb847ed084b5e186e0e6d91ba48db4646addf8f8f6a0a3a1b78250d5754e553cb2302931984a680cc82d3a4ac7ba1d423ba5e326943ab47a432791441536df23675c8d48cf4c1e7157d405ea0e2483af14bcca5951b3688aa116accafdee0ac71591f4c35dedb90a284838d6bc3b2d2689245880c878e7402f4abf94866f8ba269a0122786b8cefaf7e3a6b9dab902d1c556e081d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Remove permissioned validator", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Session : Set keys", + "1 | Keys [1/7] : ae0d9f634ab4fab25b0775957fcb847ed084b5", + "1 | Keys [2/7] : e186e0e6d91ba48db4646addf8f8f6a0a3a1b7", + "1 | Keys [3/7] : 8250d5754e553cb2302931984a680cc82d3a4a", + "1 | Keys [4/7] : c7ba1d423ba5e326943ab47a432791441536df", + "1 | Keys [5/7] : 23675c8d48cf4c1e7157d405ea0e2483af14bc", + "1 | Keys [6/7] : ca5951b3688aa116accafdee0ac71591f4c35d", + "1 | Keys [7/7] : edb90a284838d6bc3b2d26892458", + "2 | Proof [1/2] : c878e7402f4abf94866f8ba269a0122786b8ce", + "2 | Proof [2/2] : faf7e3a6b9dab902d1c556e081", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Staking : Remove permissioned validator", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Session : Set keys", + "1 | Keys [1/7] : ae0d9f634ab4fab25b0775957fcb847ed084b5", + "1 | Keys [2/7] : e186e0e6d91ba48db4646addf8f8f6a0a3a1b7", + "1 | Keys [3/7] : 8250d5754e553cb2302931984a680cc82d3a4a", + "1 | Keys [4/7] : c7ba1d423ba5e326943ab47a432791441536df", + "1 | Keys [5/7] : 23675c8d48cf4c1e7157d405ea0e2483af14bc", + "1 | Keys [6/7] : ca5951b3688aa116accafdee0ac71591f4c35d", + "1 | Keys [7/7] : edb90a284838d6bc3b2d26892458", + "2 | Proof [1/2] : c878e7402f4abf94866f8ba269a0122786b8ce", + "2 | Proof [2/2] : faf7e3a6b9dab902d1c556e081", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 681, - "name": "Staking_Validate_cdd_expiry_nominators", - "blob": "110e245a83c5f5eb8fe058647fd967c9e0b8912ef43a3b54f2d5797b734bd1303ea525d4eabdf738980035141be70c36dadb2fd793dc784a34d69662c8fd76b8b6b571ce62f5d9f0f0a21fd82bf6fd14a2e0e2792a32d0c1a0def593f2ba636e506932a4a3b22576feb6fdd412bfcd2c23eaada547124a5a31c25c8fa6c7cccf49af79aa51db374df134ae2a8149945ad4c40b5477c8f1e5539c114acc5d2a172b3c4eace7f73dff3b4c882c4d9c9f9c14a08a8b735765ec362e97552b3d1f54615212be449c27ee1f68348105362b2ddae1084d29a4a6ad44347569ed55c1edafb32e32b0724069e8bd803526896d122c43594b3f25ec18733ce4a6cd04fedf58040646b630a95c22e0ee1105f41d77ba2919fefe28153ee392d1491b9e312b56fe1fd5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Session_Purge_keys", + "blob": "1301d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Validate cdd expiry nominators", - "1 | Targets [1/18] : 2EVbZGKShTaeRX7pxiavwnuLX7zZANQnniQNtN", - "1 | Targets [2/18] : CHfBVYgP6H", - "1 | Targets [3/18] : 2HG5zCzvfdep2WQoPbouCeMn8UsX39PgzpwccM", - "1 | Targets [4/18] : LufQ1PRRMz", - "1 | Targets [5/18] : 2H7XN5aB2hcYQyXJaszmP5pHN8NTziaUtB9MeQ", - "1 | Targets [6/18] : u4tytTp3cd", - "1 | Targets [7/18] : 2GAnaoLMWDBkENwBBhydq6iY12zn9yfwVbULCJ", - "1 | Targets [8/18] : NYpnCfpVpX", - "1 | Targets [9/18] : 2GJEZQBjorsidfZS6FssizrgP5SSbzGexa7mTL", - "1 | Targets [10/18] : k4fTTwgeix", - "1 | Targets [11/18] : 2GMdFHGRo9t5CUWKKf4LUyw6oSjpayMUn6HBsE", - "1 | Targets [12/18] : YEq5uBgrjF", - "1 | Targets [13/18] : 2GkPaibFMWxrj3Yu8D4pDWi87ctmKN1n1y7gZU", - "1 | Targets [14/18] : vhUpFEzid8", - "1 | Targets [15/18] : 2DbNusSYCRpCWG3ku4Nj7gUo57Vb1Kdi2gFzSD", - "1 | Targets [16/18] : b8Tfe32shh", - "1 | Targets [17/18] : 2E3daNzH8jxwdCM66BgSrmxiYjZh5kCHEd59UM", - "1 | Targets [18/18] : kK11S3YT7H", - "2 | Tip : POLYX 55.555555" + "0 | Session : Purge keys", + "1 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Staking : Validate cdd expiry nominators", - "1 | Targets [1/18] : 2EVbZGKShTaeRX7pxiavwnuLX7zZANQnniQNtN", - "1 | Targets [2/18] : CHfBVYgP6H", - "1 | Targets [3/18] : 2HG5zCzvfdep2WQoPbouCeMn8UsX39PgzpwccM", - "1 | Targets [4/18] : LufQ1PRRMz", - "1 | Targets [5/18] : 2H7XN5aB2hcYQyXJaszmP5pHN8NTziaUtB9MeQ", - "1 | Targets [6/18] : u4tytTp3cd", - "1 | Targets [7/18] : 2GAnaoLMWDBkENwBBhydq6iY12zn9yfwVbULCJ", - "1 | Targets [8/18] : NYpnCfpVpX", - "1 | Targets [9/18] : 2GJEZQBjorsidfZS6FssizrgP5SSbzGexa7mTL", - "1 | Targets [10/18] : k4fTTwgeix", - "1 | Targets [11/18] : 2GMdFHGRo9t5CUWKKf4LUyw6oSjpayMUn6HBsE", - "1 | Targets [12/18] : YEq5uBgrjF", - "1 | Targets [13/18] : 2GkPaibFMWxrj3Yu8D4pDWi87ctmKN1n1y7gZU", - "1 | Targets [14/18] : vhUpFEzid8", - "1 | Targets [15/18] : 2DbNusSYCRpCWG3ku4Nj7gUo57Vb1Kdi2gFzSD", - "1 | Targets [16/18] : b8Tfe32shh", - "1 | Targets [17/18] : 2E3daNzH8jxwdCM66BgSrmxiYjZh5kCHEd59UM", - "1 | Targets [18/18] : kK11S3YT7H", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Session : Purge keys", + "1 | Chain : Polymesh", + "2 | Nonce : 0", + "3 | Tip : POLYX 0.000987", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 682, - "name": "Staking_Validate_cdd_expiry_nominators", - "blob": "110e205a6d6f58b12d2e969aac068530e2357714798433b2c83e2858bff56b8e4e9f54baeb7c644974d4ac7afd1ffe9570179d65d88d90bc18f87b8d1570591f728a7afa4d19868e3cef263b1360556633acdabc5ec95faf2992ec9b20da1450bbc24ede796b1dd3b1b86e9f5cedef5637575c7226c77d4da1b4ca02493c5d5cfc7f00e299c2e71b2bbcca2d3b501cef354896427089f072f485b2e6c2a57ce5a1845d141e54f5cf87806bfb0c42d1f959d736c6e5f3c3eb496585222138156365e1357007d34d3e58bcdbeb8a1f24de64b20bfaa0f63c1eacff0de21f354540eea50fa211c5f03d0d0925898dd5260a9285bb27f78878907767c556e466154bc2837fd5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Session_Purge_keys", + "blob": "1301d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Validate cdd expiry nominators", - "1 | Targets [1/16] : 2EVUvPFB6D1zigKL7L1ooKTweerKDDdMurq65H", - "1 | Targets [2/16] : 5gz9D8sHJa", - "1 | Targets [3/16] : 2Gfzxp9xKQwt6rbDuCfcSsC365EjNY9YKGr4nZ", - "1 | Targets [4/16] : JgM25rEzcD", - "1 | Targets [5/16] : 2J76ydZh4tbHUo6zxDCD3KzFVCbzHcjUsFFRfM", - "1 | Targets [6/16] : gsyg18dr7P", - "1 | Targets [7/16] : 2HUcoTe9uZhzUCZnDZPTBVK3AtUYEh3Hb7fNES", - "1 | Targets [8/16] : nyoPan5XHf", - "1 | Targets [9/16] : 2Ha2bpo22CF2dVYqqJvzMrv2K2t51Ecd7FqD8L", - "1 | Targets [10/16] : 35ZrUevzDu", - "1 | Targets [11/16] : 2CuJ54LD9LDNn7Gpw7omSfjptqJ36EDDsiTW3y", - "1 | Targets [12/16] : 5fV2d8Wh9H", - "1 | Targets [13/16] : 2EyonnyPLtWuV55D3w1uCEHjrgndM9KiPcM8BY", - "1 | Targets [14/16] : QhVVGJ6EX2", - "1 | Targets [15/16] : 2G7R94BZZKNRHDV2KaPkDCNzAqgX6xXEnuv7KV", - "1 | Targets [16/16] : shd6B9irVe", - "2 | Tip : POLYX 0.000987" + "0 | Session : Purge keys", + "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "1 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Staking : Validate cdd expiry nominators", - "1 | Targets [1/16] : 2EVUvPFB6D1zigKL7L1ooKTweerKDDdMurq65H", - "1 | Targets [2/16] : 5gz9D8sHJa", - "1 | Targets [3/16] : 2Gfzxp9xKQwt6rbDuCfcSsC365EjNY9YKGr4nZ", - "1 | Targets [4/16] : JgM25rEzcD", - "1 | Targets [5/16] : 2J76ydZh4tbHUo6zxDCD3KzFVCbzHcjUsFFRfM", - "1 | Targets [6/16] : gsyg18dr7P", - "1 | Targets [7/16] : 2HUcoTe9uZhzUCZnDZPTBVK3AtUYEh3Hb7fNES", - "1 | Targets [8/16] : nyoPan5XHf", - "1 | Targets [9/16] : 2Ha2bpo22CF2dVYqqJvzMrv2K2t51Ecd7FqD8L", - "1 | Targets [10/16] : 35ZrUevzDu", - "1 | Targets [11/16] : 2CuJ54LD9LDNn7Gpw7omSfjptqJ36EDDsiTW3y", - "1 | Targets [12/16] : 5fV2d8Wh9H", - "1 | Targets [13/16] : 2EyonnyPLtWuV55D3w1uCEHjrgndM9KiPcM8BY", - "1 | Targets [14/16] : QhVVGJ6EX2", - "1 | Targets [15/16] : 2G7R94BZZKNRHDV2KaPkDCNzAqgX6xXEnuv7KV", - "1 | Targets [16/16] : shd6B9irVe", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Session : Purge keys", + "1 | Chain : Polymesh", + "2 | Nonce : 50283", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 683, - "name": "Staking_Validate_cdd_expiry_nominators", - "blob": "110e24aace0f1af55dc40774b400b446e034f0e011aa710cb86c0e1fc0a3d4361d6e0286d75a78e2896e4df2016b573eb1ee9f95bfaa0cda2f08d8c7100486e16dec41e809c3d297a6570d91ebfdb1d02c2f71f4d39f37738d95deea9b638369f652433ab777a25770714f66b3cd37ade6593950efa0b5aa89ea623ef8413436ac06424a1161e39c52248f044fb11f10e595c898da44b1c04f66325b8b55ef9fa0ac5de885795de34f09ea5844086885bc975ae21db1ed7266e7f1e2be36b5c0bcb33be204b422e7496a246a6cb8a273392e686c488744da6ddb90d362d84991d6c202cc836dae498e7e89e690fdebd6dd30e7a72444e80dd81a775872c4c25f22827d029a5dc5dd1a0c5a9f7b9820c3559b01667977db4f19d2f32bb57a8a8ac95713d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Session_Purge_keys", + "blob": "1301d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Validate cdd expiry nominators", - "1 | Targets [1/18] : 2GJsTN1px9c724zcDSvTF1AFrCYPRw3BVZ9SHx", - "1 | Targets [2/18] : YTWPqW9xrV", - "1 | Targets [3/18] : 2FViVX37TonX67AyFCnJxEJykRcXyfw4x9TbYH", - "1 | Targets [4/18] : TthQMC1vd9", - "1 | Targets [5/18] : 2HhA7VHCLU6wz96SLHt1hSYDDixK7zBf8Mg4hV", - "1 | Targets [6/18] : VBaVb8fWrK", - "1 | Targets [7/18] : 2DmuP4Lphsbxw3nX4SgFGDnv24Az6cLvvZuTmZ", - "1 | Targets [8/18] : AH9PJJpjnu", - "1 | Targets [9/18] : 2E82ovE9BadujB6rM46yfuj9xJHroUjJCnaAz9", - "1 | Targets [10/18] : VeVnFvE1ez", - "1 | Targets [11/18] : 2Hhnrwumdh2J4Nic3tMN9czqZFQNa2aPUHaV4j", - "1 | Targets [12/18] : Br4fgVSt7K", - "1 | Targets [13/18] : 2HZGKcxZha9usiAZpPU9WEkWgT7ptUsBVRP8DW", - "1 | Targets [14/18] : BKxAMMUZ9U", - "1 | Targets [15/18] : 2H54uwJb7GVawibjrjpNikak4d8NThjkqT7U59", - "1 | Targets [16/18] : hWq8o5tHZY", - "1 | Targets [17/18] : 2CWL48VapnasNqqLE7zbjoB92xASvVKViNrXwM", - "1 | Targets [18/18] : dyGSCmDazj" + "0 | Session : Purge keys", + "1 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Staking : Validate cdd expiry nominators", - "1 | Targets [1/18] : 2GJsTN1px9c724zcDSvTF1AFrCYPRw3BVZ9SHx", - "1 | Targets [2/18] : YTWPqW9xrV", - "1 | Targets [3/18] : 2FViVX37TonX67AyFCnJxEJykRcXyfw4x9TbYH", - "1 | Targets [4/18] : TthQMC1vd9", - "1 | Targets [5/18] : 2HhA7VHCLU6wz96SLHt1hSYDDixK7zBf8Mg4hV", - "1 | Targets [6/18] : VBaVb8fWrK", - "1 | Targets [7/18] : 2DmuP4Lphsbxw3nX4SgFGDnv24Az6cLvvZuTmZ", - "1 | Targets [8/18] : AH9PJJpjnu", - "1 | Targets [9/18] : 2E82ovE9BadujB6rM46yfuj9xJHroUjJCnaAz9", - "1 | Targets [10/18] : VeVnFvE1ez", - "1 | Targets [11/18] : 2Hhnrwumdh2J4Nic3tMN9czqZFQNa2aPUHaV4j", - "1 | Targets [12/18] : Br4fgVSt7K", - "1 | Targets [13/18] : 2HZGKcxZha9usiAZpPU9WEkWgT7ptUsBVRP8DW", - "1 | Targets [14/18] : BKxAMMUZ9U", - "1 | Targets [15/18] : 2H54uwJb7GVawibjrjpNikak4d8NThjkqT7U59", - "1 | Targets [16/18] : hWq8o5tHZY", - "1 | Targets [17/18] : 2CWL48VapnasNqqLE7zbjoB92xASvVKViNrXwM", - "1 | Targets [18/18] : dyGSCmDazj", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "0 | Session : Purge keys", + "1 | Chain : Polymesh", + "2 | Nonce : 2339", + "3 | Tip : POLYX 5552342.355555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 684, - "name": "Staking_Validate_cdd_expiry_nominators", - "blob": "110e14902dd1f008c2e472c447fffee377563eed940cc79e96f3be4571dc93143ab8203a47acef8333aec26e75d7b540e14763d988cc2099c8a4d53455503d72619775c2c044954daa239a417fd6d9116c04ef3746896d315a89f8593f5bb34564d36f163a4fda6ecf5064f89b10533959fb14b1d47821a38b76e7f5cb637ebd4136730ad4c11f47ba1e4e17ae21027b2de9170e3a5e98fe01896d57398a9961f04900d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Session_Purge_keys", + "blob": "1301d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Validate cdd expiry nominators", - "1 | Targets [1/10] : 2FhxcJNoWm7dxnynVtezdpLBctNVbb5F3W9aA4", - "1 | Targets [2/10] : vjYSz3qT9t", - "1 | Targets [3/10] : 2DmLAvwAu3XMBnf9DQPGGoU9VkRkugFacJaZAv", - "1 | Targets [4/10] : 2pcKyNmzv7", - "1 | Targets [5/10] : 2GrGWQMady9kZFpcNHuXDBFp9ck6n316q2VX1A", - "1 | Targets [6/10] : BzVY4BPEe1", - "1 | Targets [7/10] : 2Cx4UhS6b39ZfRceuuHTJeWhiQM6512VrYwXQp", - "1 | Targets [8/10] : wmRknwQokt", - "1 | Targets [9/10] : 2Ch7nMMZpaZJ4fqcJLAWzm9WCSz5uPMAAhmUjx", - "1 | Targets [10/10] : Saz1LEMrjg", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Session : Purge keys", + "1 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Staking : Validate cdd expiry nominators", - "1 | Targets [1/10] : 2FhxcJNoWm7dxnynVtezdpLBctNVbb5F3W9aA4", - "1 | Targets [2/10] : vjYSz3qT9t", - "1 | Targets [3/10] : 2DmLAvwAu3XMBnf9DQPGGoU9VkRkugFacJaZAv", - "1 | Targets [4/10] : 2pcKyNmzv7", - "1 | Targets [5/10] : 2GrGWQMady9kZFpcNHuXDBFp9ck6n316q2VX1A", - "1 | Targets [6/10] : BzVY4BPEe1", - "1 | Targets [7/10] : 2Cx4UhS6b39ZfRceuuHTJeWhiQM6512VrYwXQp", - "1 | Targets [8/10] : wmRknwQokt", - "1 | Targets [9/10] : 2Ch7nMMZpaZJ4fqcJLAWzm9WCSz5uPMAAhmUjx", - "1 | Targets [10/10] : Saz1LEMrjg", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Session : Purge keys", + "1 | Chain : Polymesh", + "2 | Nonce : 100", + "3 | Tip : POLYX 1234.56789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 685, - "name": "Staking_Validate_cdd_expiry_nominators", - "blob": "110e205a6d6f58b12d2e969aac068530e2357714798433b2c83e2858bff56b8e4e9f54baeb7c644974d4ac7afd1ffe9570179d65d88d90bc18f87b8d1570591f728a7afa4d19868e3cef263b1360556633acdabc5ec95faf2992ec9b20da1450bbc24ede796b1dd3b1b86e9f5cedef5637575c7226c77d4da1b4ca02493c5d5cfc7f00e299c2e71b2bbcca2d3b501cef354896427089f072f485b2e6c2a57ce5a1845d141e54f5cf87806bfb0c42d1f959d736c6e5f3c3eb496585222138156365e1357007d34d3e58bcdbeb8a1f24de64b20bfaa0f63c1eacff0de21f354540eea50fa211c5f03d0d0925898dd5260a9285bb27f78878907767c556e466154bc2837fd503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Session_Purge_keys", + "blob": "1301d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Validate cdd expiry nominators", - "1 | Targets [1/16] : 2EVUvPFB6D1zigKL7L1ooKTweerKDDdMurq65H", - "1 | Targets [2/16] : 5gz9D8sHJa", - "1 | Targets [3/16] : 2Gfzxp9xKQwt6rbDuCfcSsC365EjNY9YKGr4nZ", - "1 | Targets [4/16] : JgM25rEzcD", - "1 | Targets [5/16] : 2J76ydZh4tbHUo6zxDCD3KzFVCbzHcjUsFFRfM", - "1 | Targets [6/16] : gsyg18dr7P", - "1 | Targets [7/16] : 2HUcoTe9uZhzUCZnDZPTBVK3AtUYEh3Hb7fNES", - "1 | Targets [8/16] : nyoPan5XHf", - "1 | Targets [9/16] : 2Ha2bpo22CF2dVYqqJvzMrv2K2t51Ecd7FqD8L", - "1 | Targets [10/16] : 35ZrUevzDu", - "1 | Targets [11/16] : 2CuJ54LD9LDNn7Gpw7omSfjptqJ36EDDsiTW3y", - "1 | Targets [12/16] : 5fV2d8Wh9H", - "1 | Targets [13/16] : 2EyonnyPLtWuV55D3w1uCEHjrgndM9KiPcM8BY", - "1 | Targets [14/16] : QhVVGJ6EX2", - "1 | Targets [15/16] : 2G7R94BZZKNRHDV2KaPkDCNzAqgX6xXEnuv7KV", - "1 | Targets [16/16] : shd6B9irVe", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Session : Purge keys", + "1 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Staking : Validate cdd expiry nominators", - "1 | Targets [1/16] : 2EVUvPFB6D1zigKL7L1ooKTweerKDDdMurq65H", - "1 | Targets [2/16] : 5gz9D8sHJa", - "1 | Targets [3/16] : 2Gfzxp9xKQwt6rbDuCfcSsC365EjNY9YKGr4nZ", - "1 | Targets [4/16] : JgM25rEzcD", - "1 | Targets [5/16] : 2J76ydZh4tbHUo6zxDCD3KzFVCbzHcjUsFFRfM", - "1 | Targets [6/16] : gsyg18dr7P", - "1 | Targets [7/16] : 2HUcoTe9uZhzUCZnDZPTBVK3AtUYEh3Hb7fNES", - "1 | Targets [8/16] : nyoPan5XHf", - "1 | Targets [9/16] : 2Ha2bpo22CF2dVYqqJvzMrv2K2t51Ecd7FqD8L", - "1 | Targets [10/16] : 35ZrUevzDu", - "1 | Targets [11/16] : 2CuJ54LD9LDNn7Gpw7omSfjptqJ36EDDsiTW3y", - "1 | Targets [12/16] : 5fV2d8Wh9H", - "1 | Targets [13/16] : 2EyonnyPLtWuV55D3w1uCEHjrgndM9KiPcM8BY", - "1 | Targets [14/16] : QhVVGJ6EX2", - "1 | Targets [15/16] : 2G7R94BZZKNRHDV2KaPkDCNzAqgX6xXEnuv7KV", - "1 | Targets [16/16] : shd6B9irVe", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Session : Purge keys", + "1 | Chain : Polymesh", + "2 | Nonce : 1", + "3 | Tip : POLYX 55.555555", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 686, - "name": "Staking_Set_commission_cap", - "blob": "110f710c67fdd5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Sudo_Sudo", + "blob": "19000000083434d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Set commission cap", - "1 | New cap : 425.1389041%" + "0 | Sudo : Sudo", + "1 | Call [1/2] : Remark", + "1 | Call [2/2] : 3434", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Staking : Set commission cap", - "1 | New cap : 425.1389041%", + "0 | Sudo : Sudo", + "1 | Call [1/2] : Remark", + "1 | Call [2/2] : 3434", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 0", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 687, - "name": "Staking_Set_commission_cap", - "blob": "110f710c67fdd5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Sudo_Sudo", + "blob": "19000000083434d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Set commission cap", - "1 | New cap : 425.1389041%", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Sudo : Sudo", + "1 | Call [1/2] : Remark", + "1 | Call [2/2] : 3434", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Staking : Set commission cap", - "1 | New cap : 425.1389041%", + "0 | Sudo : Sudo", + "1 | Call [1/2] : Remark", + "1 | Call [2/2] : 3434", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 50283", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 688, - "name": "Staking_Set_commission_cap", - "blob": "110f3903c566d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Sudo_Sudo", + "blob": "19000000083434d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Set commission cap", - "1 | New cap : 172.4187449%", - "2 | Tip : POLYX 5552342.355555" + "0 | Sudo : Sudo", + "1 | Call [1/2] : Remark", + "1 | Call [2/2] : 3434", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Staking : Set commission cap", - "1 | New cap : 172.4187449%", + "0 | Sudo : Sudo", + "1 | Call [1/2] : Remark", + "1 | Call [2/2] : 3434", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 689, - "name": "Staking_Set_commission_cap", - "blob": "110f3903c566d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Sudo_Sudo", + "blob": "19000000083434d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Set commission cap", - "1 | New cap : 172.4187449%", + "0 | Sudo : Sudo", + "1 | Call [1/2] : Remark", + "1 | Call [2/2] : 3434", "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Staking : Set commission cap", - "1 | New cap : 172.4187449%", + "0 | Sudo : Sudo", + "1 | Call [1/2] : Remark", + "1 | Call [2/2] : 3434", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 1", "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 690, - "name": "Staking_Set_commission_cap", - "blob": "110f3903c566d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Sudo_Sudo", + "blob": "19000000083434d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Set commission cap", - "1 | New cap : 172.4187449%", - "2 | Tip : POLYX 1234.56789" + "0 | Sudo : Sudo", + "1 | Call [1/2] : Remark", + "1 | Call [2/2] : 3434", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Staking : Set commission cap", - "1 | New cap : 172.4187449%", + "0 | Sudo : Sudo", + "1 | Call [1/2] : Remark", + "1 | Call [2/2] : 3434", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 0", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 691, - "name": "Staking_Set_min_bond_threshold", - "blob": "111040d8127ea9f0d1cdf6126ec9c838c9bad5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Sudo_Sudo_unchecked_weight", + "blob": "19010000083434d6b9750ca2f53943d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Set min bond threshold", - "1 | New value [1/2] : POLYX 24828121060746971842942860419690", - "1 | New value [2/2] : 4.68768", - "2 | Tip : POLYX 0.000987" + "0 | Sudo : Sudo unchecked weight", + "1 | Call [1/2] : Remark", + "1 | Call [2/2] : 3434", + "2 | Weight [1/2] : 52260469", + "2 | Weight [2/2] : 281967976", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Staking : Set min bond threshold", - "1 | New value [1/2] : POLYX 24828121060746971842942860419690", - "1 | New value [2/2] : 4.68768", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sudo : Sudo unchecked weight", + "1 | Call [1/2] : Remark", + "1 | Call [2/2] : 3434", + "2 | Weight [1/2] : 52260469", + "2 | Weight [2/2] : 281967976", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 692, - "name": "Staking_Set_min_bond_threshold", - "blob": "111040d8127ea9f0d1cdf6126ec9c838c9bad503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Sudo_Sudo_unchecked_weight", + "blob": "1901000008343413ebd18da2a0682bd213e3b1c6f54a741ea9d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Set min bond threshold", - "1 | New value [1/2] : POLYX 24828121060746971842942860419690", - "1 | New value [2/2] : 4.68768", - "2 | Tip : POLYX 5552342.355555" + "0 | Sudo : Sudo unchecked weight", + "1 | Call [1/2] : Remark", + "1 | Call [2/2] : 3434", + "2 | Weight [1/2] : 15144313211094684139", + "2 | Weight [2/2] : 12186305507010982371" ], "output_expert": [ - "0 | Staking : Set min bond threshold", - "1 | New value [1/2] : POLYX 24828121060746971842942860419690", - "1 | New value [2/2] : 4.68768", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", + "0 | Sudo : Sudo unchecked weight", + "1 | Call [1/2] : Remark", + "1 | Call [2/2] : 3434", + "2 | Weight [1/2] : 15144313211094684139", + "2 | Weight [2/2] : 12186305507010982371", + "3 | Chain : Polymesh", + "4 | Nonce : 1", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 693, - "name": "Staking_Set_min_bond_threshold", - "blob": "111040d8127ea9f0d1cdf6126ec9c838c9bad503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Sudo_Sudo_unchecked_weight", + "blob": "1901000008343413ebd18da2a0682bd213e3b1c6f54a741ea9d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Set min bond threshold", - "1 | New value [1/2] : POLYX 24828121060746971842942860419690", - "1 | New value [2/2] : 4.68768", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Sudo : Sudo unchecked weight", + "1 | Call [1/2] : Remark", + "1 | Call [2/2] : 3434", + "2 | Weight [1/2] : 15144313211094684139", + "2 | Weight [2/2] : 12186305507010982371", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Staking : Set min bond threshold", - "1 | New value [1/2] : POLYX 24828121060746971842942860419690", - "1 | New value [2/2] : 4.68768", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sudo : Sudo unchecked weight", + "1 | Call [1/2] : Remark", + "1 | Call [2/2] : 3434", + "2 | Weight [1/2] : 15144313211094684139", + "2 | Weight [2/2] : 12186305507010982371", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 694, - "name": "Staking_Set_min_bond_threshold", - "blob": "111040d8127ea9f0d1cdf6126ec9c838c9bad503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Sudo_Sudo_unchecked_weight", + "blob": "190100000834343641c20b88d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Set min bond threshold", - "1 | New value [1/2] : POLYX 24828121060746971842942860419690", - "1 | New value [2/2] : 4.68768", - "2 | Tip : POLYX 1234.56789" + "0 | Sudo : Sudo unchecked weight", + "1 | Call [1/2] : Remark", + "1 | Call [2/2] : 3434", + "2 | Weight [1/2] : 49320013", + "2 | Weight [2/2] : 34", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Staking : Set min bond threshold", - "1 | New value [1/2] : POLYX 24828121060746971842942860419690", - "1 | New value [2/2] : 4.68768", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sudo : Sudo unchecked weight", + "1 | Call [1/2] : Remark", + "1 | Call [2/2] : 3434", + "2 | Weight [1/2] : 49320013", + "2 | Weight [2/2] : 34", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 695, - "name": "Staking_Set_min_bond_threshold", - "blob": "111040d8127ea9f0d1cdf6126ec9c838c9bad50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Sudo_Sudo_unchecked_weight", + "blob": "19010000083434d6b9750ca2f53943d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Set min bond threshold", - "1 | New value [1/2] : POLYX 24828121060746971842942860419690", - "1 | New value [2/2] : 4.68768", - "2 | Tip : POLYX 0.000987" + "0 | Sudo : Sudo unchecked weight", + "1 | Call [1/2] : Remark", + "1 | Call [2/2] : 3434", + "2 | Weight [1/2] : 52260469", + "2 | Weight [2/2] : 281967976", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Staking : Set min bond threshold", - "1 | New value [1/2] : POLYX 24828121060746971842942860419690", - "1 | New value [2/2] : 4.68768", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sudo : Sudo unchecked weight", + "1 | Call [1/2] : Remark", + "1 | Call [2/2] : 3434", + "2 | Weight [1/2] : 52260469", + "2 | Weight [2/2] : 281967976", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 696, - "name": "Staking_Force_no_eras", - "blob": "1111d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Sudo_Set_key", + "blob": "190200091ce05c594d329e840099597454239c36e7eda559eed65df25575e8f96b5d2ed503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Force no eras", - "1 | Tip : POLYX 1234.56789" + "0 | Sudo : Set key", + "1 | New [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | New [2/2] : FbZrSrbmf8", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Staking : Force no eras", - "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip : POLYX 1234.56789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sudo : Set key", + "1 | New [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | New [2/2] : FbZrSrbmf8", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 697, - "name": "Staking_Force_no_eras", - "blob": "1111d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Sudo_Set_key", + "blob": "190200091ce05c594d329e840099597454239c36e7eda559eed65df25575e8f96b5d2ed5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Force no eras", - "1 | Tip : POLYX 0.000987" + "0 | Sudo : Set key", + "1 | New [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | New [2/2] : FbZrSrbmf8" ], "output_expert": [ - "0 | Staking : Force no eras", - "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Tip : POLYX 0.000987", + "0 | Sudo : Set key", + "1 | New [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | New [2/2] : FbZrSrbmf8", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 698, - "name": "Staking_Force_no_eras", - "blob": "1111d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Sudo_Set_key", + "blob": "190200091ce05c594d329e840099597454239c36e7eda559eed65df25575e8f96b5d2ed503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Force no eras", - "1 | Tip : POLYX 55.555555" + "0 | Sudo : Set key", + "1 | New [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | New [2/2] : FbZrSrbmf8", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Staking : Force no eras", - "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip : POLYX 55.555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sudo : Set key", + "1 | New [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | New [2/2] : FbZrSrbmf8", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 699, - "name": "Staking_Force_no_eras", - "blob": "1111d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Sudo_Set_key", + "blob": "190200091ce05c594d329e840099597454239c36e7eda559eed65df25575e8f96b5d2ed50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Force no eras", - "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "1 | Tip [2/2] : 3.456789" + "0 | Sudo : Set key", + "1 | New [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | New [2/2] : FbZrSrbmf8", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Staking : Force no eras", - "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sudo : Set key", + "1 | New [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | New [2/2] : FbZrSrbmf8", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 700, - "name": "Staking_Force_no_eras", - "blob": "1111d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Sudo_Set_key", + "blob": "190200091ce05c594d329e840099597454239c36e7eda559eed65df25575e8f96b5d2ed503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Force no eras", - "1 | Tip : POLYX 1234.56789" + "0 | Sudo : Set key", + "1 | New [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | New [2/2] : FbZrSrbmf8", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Staking : Force no eras", - "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Tip : POLYX 1234.56789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sudo : Set key", + "1 | New [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | New [2/2] : FbZrSrbmf8", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 701, - "name": "Staking_Force_new_era", - "blob": "1112d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Sudo_Sudo_as", + "blob": "190300091ce05c594d329e840099597454239c36e7eda559eed65df25575e8f96b5d2e0000083434d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Force new era" + "0 | Sudo : Sudo as", + "1 | Who [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Who [2/2] : FbZrSrbmf8", + "2 | Call [1/2] : Remark", + "2 | Call [2/2] : 3434" ], "output_expert": [ - "0 | Staking : Force new era", - "1 | Chain : Polymesh", - "2 | Nonce : 100", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "5 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sudo : Sudo as", + "1 | Who [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Who [2/2] : FbZrSrbmf8", + "2 | Call [1/2] : Remark", + "2 | Call [2/2] : 3434", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 702, - "name": "Staking_Force_new_era", - "blob": "1112d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Sudo_Sudo_as", + "blob": "190300091ce05c594d329e840099597454239c36e7eda559eed65df25575e8f96b5d2e0000083434d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Force new era", - "1 | Tip : POLYX 55.555555" + "0 | Sudo : Sudo as", + "1 | Who [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Who [2/2] : FbZrSrbmf8", + "2 | Call [1/2] : Remark", + "2 | Call [2/2] : 3434", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Staking : Force new era", - "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip : POLYX 55.555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sudo : Sudo as", + "1 | Who [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Who [2/2] : FbZrSrbmf8", + "2 | Call [1/2] : Remark", + "2 | Call [2/2] : 3434", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 703, - "name": "Staking_Force_new_era", - "blob": "1112d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Sudo_Sudo_as", + "blob": "190300091ce05c594d329e840099597454239c36e7eda559eed65df25575e8f96b5d2e0000083434d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Force new era", - "1 | Tip : POLYX 55.555555" + "0 | Sudo : Sudo as", + "1 | Who [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Who [2/2] : FbZrSrbmf8", + "2 | Call [1/2] : Remark", + "2 | Call [2/2] : 3434", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Staking : Force new era", - "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Tip : POLYX 55.555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sudo : Sudo as", + "1 | Who [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Who [2/2] : FbZrSrbmf8", + "2 | Call [1/2] : Remark", + "2 | Call [2/2] : 3434", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 704, - "name": "Staking_Force_new_era", - "blob": "1112d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Sudo_Sudo_as", + "blob": "190300091ce05c594d329e840099597454239c36e7eda559eed65df25575e8f96b5d2e0000083434d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Force new era", - "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "1 | Tip [2/2] : 3.456789" + "0 | Sudo : Sudo as", + "1 | Who [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Who [2/2] : FbZrSrbmf8", + "2 | Call [1/2] : Remark", + "2 | Call [2/2] : 3434", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Staking : Force new era", - "1 | Chain : Polymesh", - "2 | Nonce : 2339", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sudo : Sudo as", + "1 | Who [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Who [2/2] : FbZrSrbmf8", + "2 | Call [1/2] : Remark", + "2 | Call [2/2] : 3434", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 705, - "name": "Staking_Force_new_era", - "blob": "1112d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Sudo_Sudo_as", + "blob": "190300091ce05c594d329e840099597454239c36e7eda559eed65df25575e8f96b5d2e0000083434d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Force new era", - "1 | Tip : POLYX 55.555555" + "0 | Sudo : Sudo as", + "1 | Who [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Who [2/2] : FbZrSrbmf8", + "2 | Call [1/2] : Remark", + "2 | Call [2/2] : 3434", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Staking : Force new era", - "1 | Chain : Polymesh", - "2 | Nonce : 100", - "3 | Tip : POLYX 55.555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sudo : Sudo as", + "1 | Who [1/2] : 5CGesCBEYHHP28PHA1d3rgwBWq3mGMVcKNN1Kj", + "1 | Who [2/2] : FbZrSrbmf8", + "2 | Call [1/2] : Remark", + "2 | Call [2/2] : 3434", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 706, - "name": "Staking_Set_invulnerables", - "blob": "111324aace0f1af55dc40774b400b446e034f0e011aa710cb86c0e1fc0a3d4361d6e0286d75a78e2896e4df2016b573eb1ee9f95bfaa0cda2f08d8c7100486e16dec41e809c3d297a6570d91ebfdb1d02c2f71f4d39f37738d95deea9b638369f652433ab777a25770714f66b3cd37ade6593950efa0b5aa89ea623ef8413436ac06424a1161e39c52248f044fb11f10e595c898da44b1c04f66325b8b55ef9fa0ac5de885795de34f09ea5844086885bc975ae21db1ed7266e7f1e2be36b5c0bcb33be204b422e7496a246a6cb8a273392e686c488744da6ddb90d362d84991d6c202cc836dae498e7e89e690fdebd6dd30e7a72444e80dd81a775872c4c25f22827d029a5dc5dd1a0c5a9f7b9820c3559b01667977db4f19d2f32bb57a8a8ac95713d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Register_unique_ticker", + "blob": "1a005449434b45522d3132333435d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Set invulnerables", - "1 | Invulnerables [1/18] : 2GJsTN1px9c724zcDSvTF1AFrCYPRw3BVZ9SHx", - "1 | Invulnerables [2/18] : YTWPqW9xrV", - "1 | Invulnerables [3/18] : 2FViVX37TonX67AyFCnJxEJykRcXyfw4x9TbYH", - "1 | Invulnerables [4/18] : TthQMC1vd9", - "1 | Invulnerables [5/18] : 2HhA7VHCLU6wz96SLHt1hSYDDixK7zBf8Mg4hV", - "1 | Invulnerables [6/18] : VBaVb8fWrK", - "1 | Invulnerables [7/18] : 2DmuP4Lphsbxw3nX4SgFGDnv24Az6cLvvZuTmZ", - "1 | Invulnerables [8/18] : AH9PJJpjnu", - "1 | Invulnerables [9/18] : 2E82ovE9BadujB6rM46yfuj9xJHroUjJCnaAz9", - "1 | Invulnerables [10/18] : VeVnFvE1ez", - "1 | Invulnerables [11/18] : 2Hhnrwumdh2J4Nic3tMN9czqZFQNa2aPUHaV4j", - "1 | Invulnerables [12/18] : Br4fgVSt7K", - "1 | Invulnerables [13/18] : 2HZGKcxZha9usiAZpPU9WEkWgT7ptUsBVRP8DW", - "1 | Invulnerables [14/18] : BKxAMMUZ9U", - "1 | Invulnerables [15/18] : 2H54uwJb7GVawibjrjpNikak4d8NThjkqT7U59", - "1 | Invulnerables [16/18] : hWq8o5tHZY", - "1 | Invulnerables [17/18] : 2CWL48VapnasNqqLE7zbjoB92xASvVKViNrXwM", - "1 | Invulnerables [18/18] : dyGSCmDazj", + "0 | Asset : Register unique ticker", + "1 | Ticker : TICKER-12345", "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Staking : Set invulnerables", - "1 | Invulnerables [1/18] : 2GJsTN1px9c724zcDSvTF1AFrCYPRw3BVZ9SHx", - "1 | Invulnerables [2/18] : YTWPqW9xrV", - "1 | Invulnerables [3/18] : 2FViVX37TonX67AyFCnJxEJykRcXyfw4x9TbYH", - "1 | Invulnerables [4/18] : TthQMC1vd9", - "1 | Invulnerables [5/18] : 2HhA7VHCLU6wz96SLHt1hSYDDixK7zBf8Mg4hV", - "1 | Invulnerables [6/18] : VBaVb8fWrK", - "1 | Invulnerables [7/18] : 2DmuP4Lphsbxw3nX4SgFGDnv24Az6cLvvZuTmZ", - "1 | Invulnerables [8/18] : AH9PJJpjnu", - "1 | Invulnerables [9/18] : 2E82ovE9BadujB6rM46yfuj9xJHroUjJCnaAz9", - "1 | Invulnerables [10/18] : VeVnFvE1ez", - "1 | Invulnerables [11/18] : 2Hhnrwumdh2J4Nic3tMN9czqZFQNa2aPUHaV4j", - "1 | Invulnerables [12/18] : Br4fgVSt7K", - "1 | Invulnerables [13/18] : 2HZGKcxZha9usiAZpPU9WEkWgT7ptUsBVRP8DW", - "1 | Invulnerables [14/18] : BKxAMMUZ9U", - "1 | Invulnerables [15/18] : 2H54uwJb7GVawibjrjpNikak4d8NThjkqT7U59", - "1 | Invulnerables [16/18] : hWq8o5tHZY", - "1 | Invulnerables [17/18] : 2CWL48VapnasNqqLE7zbjoB92xASvVKViNrXwM", - "1 | Invulnerables [18/18] : dyGSCmDazj", + "0 | Asset : Register unique ticker", + "1 | Ticker : TICKER-12345", "2 | Chain : Polymesh", "3 | Nonce : 1", "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 707, - "name": "Staking_Set_invulnerables", - "blob": "111324aace0f1af55dc40774b400b446e034f0e011aa710cb86c0e1fc0a3d4361d6e0286d75a78e2896e4df2016b573eb1ee9f95bfaa0cda2f08d8c7100486e16dec41e809c3d297a6570d91ebfdb1d02c2f71f4d39f37738d95deea9b638369f652433ab777a25770714f66b3cd37ade6593950efa0b5aa89ea623ef8413436ac06424a1161e39c52248f044fb11f10e595c898da44b1c04f66325b8b55ef9fa0ac5de885795de34f09ea5844086885bc975ae21db1ed7266e7f1e2be36b5c0bcb33be204b422e7496a246a6cb8a273392e686c488744da6ddb90d362d84991d6c202cc836dae498e7e89e690fdebd6dd30e7a72444e80dd81a775872c4c25f22827d029a5dc5dd1a0c5a9f7b9820c3559b01667977db4f19d2f32bb57a8a8ac95713d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Register_unique_ticker", + "blob": "1a005449434b45522d3132333435d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Set invulnerables", - "1 | Invulnerables [1/18] : 2GJsTN1px9c724zcDSvTF1AFrCYPRw3BVZ9SHx", - "1 | Invulnerables [2/18] : YTWPqW9xrV", - "1 | Invulnerables [3/18] : 2FViVX37TonX67AyFCnJxEJykRcXyfw4x9TbYH", - "1 | Invulnerables [4/18] : TthQMC1vd9", - "1 | Invulnerables [5/18] : 2HhA7VHCLU6wz96SLHt1hSYDDixK7zBf8Mg4hV", - "1 | Invulnerables [6/18] : VBaVb8fWrK", - "1 | Invulnerables [7/18] : 2DmuP4Lphsbxw3nX4SgFGDnv24Az6cLvvZuTmZ", - "1 | Invulnerables [8/18] : AH9PJJpjnu", - "1 | Invulnerables [9/18] : 2E82ovE9BadujB6rM46yfuj9xJHroUjJCnaAz9", - "1 | Invulnerables [10/18] : VeVnFvE1ez", - "1 | Invulnerables [11/18] : 2Hhnrwumdh2J4Nic3tMN9czqZFQNa2aPUHaV4j", - "1 | Invulnerables [12/18] : Br4fgVSt7K", - "1 | Invulnerables [13/18] : 2HZGKcxZha9usiAZpPU9WEkWgT7ptUsBVRP8DW", - "1 | Invulnerables [14/18] : BKxAMMUZ9U", - "1 | Invulnerables [15/18] : 2H54uwJb7GVawibjrjpNikak4d8NThjkqT7U59", - "1 | Invulnerables [16/18] : hWq8o5tHZY", - "1 | Invulnerables [17/18] : 2CWL48VapnasNqqLE7zbjoB92xASvVKViNrXwM", - "1 | Invulnerables [18/18] : dyGSCmDazj", - "2 | Tip : POLYX 0.000987" + "0 | Asset : Register unique ticker", + "1 | Ticker : TICKER-12345", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Staking : Set invulnerables", - "1 | Invulnerables [1/18] : 2GJsTN1px9c724zcDSvTF1AFrCYPRw3BVZ9SHx", - "1 | Invulnerables [2/18] : YTWPqW9xrV", - "1 | Invulnerables [3/18] : 2FViVX37TonX67AyFCnJxEJykRcXyfw4x9TbYH", - "1 | Invulnerables [4/18] : TthQMC1vd9", - "1 | Invulnerables [5/18] : 2HhA7VHCLU6wz96SLHt1hSYDDixK7zBf8Mg4hV", - "1 | Invulnerables [6/18] : VBaVb8fWrK", - "1 | Invulnerables [7/18] : 2DmuP4Lphsbxw3nX4SgFGDnv24Az6cLvvZuTmZ", - "1 | Invulnerables [8/18] : AH9PJJpjnu", - "1 | Invulnerables [9/18] : 2E82ovE9BadujB6rM46yfuj9xJHroUjJCnaAz9", - "1 | Invulnerables [10/18] : VeVnFvE1ez", - "1 | Invulnerables [11/18] : 2Hhnrwumdh2J4Nic3tMN9czqZFQNa2aPUHaV4j", - "1 | Invulnerables [12/18] : Br4fgVSt7K", - "1 | Invulnerables [13/18] : 2HZGKcxZha9usiAZpPU9WEkWgT7ptUsBVRP8DW", - "1 | Invulnerables [14/18] : BKxAMMUZ9U", - "1 | Invulnerables [15/18] : 2H54uwJb7GVawibjrjpNikak4d8NThjkqT7U59", - "1 | Invulnerables [16/18] : hWq8o5tHZY", - "1 | Invulnerables [17/18] : 2CWL48VapnasNqqLE7zbjoB92xASvVKViNrXwM", - "1 | Invulnerables [18/18] : dyGSCmDazj", + "0 | Asset : Register unique ticker", + "1 | Ticker : TICKER-12345", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 2339", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 708, - "name": "Staking_Set_invulnerables", - "blob": "111314902dd1f008c2e472c447fffee377563eed940cc79e96f3be4571dc93143ab8203a47acef8333aec26e75d7b540e14763d988cc2099c8a4d53455503d72619775c2c044954daa239a417fd6d9116c04ef3746896d315a89f8593f5bb34564d36f163a4fda6ecf5064f89b10533959fb14b1d47821a38b76e7f5cb637ebd4136730ad4c11f47ba1e4e17ae21027b2de9170e3a5e98fe01896d57398a9961f04900d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Register_unique_ticker", + "blob": "1a005449434b45522d3132333435d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Set invulnerables", - "1 | Invulnerables [1/10] : 2FhxcJNoWm7dxnynVtezdpLBctNVbb5F3W9aA4", - "1 | Invulnerables [2/10] : vjYSz3qT9t", - "1 | Invulnerables [3/10] : 2DmLAvwAu3XMBnf9DQPGGoU9VkRkugFacJaZAv", - "1 | Invulnerables [4/10] : 2pcKyNmzv7", - "1 | Invulnerables [5/10] : 2GrGWQMady9kZFpcNHuXDBFp9ck6n316q2VX1A", - "1 | Invulnerables [6/10] : BzVY4BPEe1", - "1 | Invulnerables [7/10] : 2Cx4UhS6b39ZfRceuuHTJeWhiQM6512VrYwXQp", - "1 | Invulnerables [8/10] : wmRknwQokt", - "1 | Invulnerables [9/10] : 2Ch7nMMZpaZJ4fqcJLAWzm9WCSz5uPMAAhmUjx", - "1 | Invulnerables [10/10] : Saz1LEMrjg", - "2 | Tip : POLYX 1234.56789" + "0 | Asset : Register unique ticker", + "1 | Ticker : TICKER-12345", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Staking : Set invulnerables", - "1 | Invulnerables [1/10] : 2FhxcJNoWm7dxnynVtezdpLBctNVbb5F3W9aA4", - "1 | Invulnerables [2/10] : vjYSz3qT9t", - "1 | Invulnerables [3/10] : 2DmLAvwAu3XMBnf9DQPGGoU9VkRkugFacJaZAv", - "1 | Invulnerables [4/10] : 2pcKyNmzv7", - "1 | Invulnerables [5/10] : 2GrGWQMady9kZFpcNHuXDBFp9ck6n316q2VX1A", - "1 | Invulnerables [6/10] : BzVY4BPEe1", - "1 | Invulnerables [7/10] : 2Cx4UhS6b39ZfRceuuHTJeWhiQM6512VrYwXQp", - "1 | Invulnerables [8/10] : wmRknwQokt", - "1 | Invulnerables [9/10] : 2Ch7nMMZpaZJ4fqcJLAWzm9WCSz5uPMAAhmUjx", - "1 | Invulnerables [10/10] : Saz1LEMrjg", + "0 | Asset : Register unique ticker", + "1 | Ticker : TICKER-12345", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 709, - "name": "Staking_Set_invulnerables", - "blob": "111314902dd1f008c2e472c447fffee377563eed940cc79e96f3be4571dc93143ab8203a47acef8333aec26e75d7b540e14763d988cc2099c8a4d53455503d72619775c2c044954daa239a417fd6d9116c04ef3746896d315a89f8593f5bb34564d36f163a4fda6ecf5064f89b10533959fb14b1d47821a38b76e7f5cb637ebd4136730ad4c11f47ba1e4e17ae21027b2de9170e3a5e98fe01896d57398a9961f04900d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Register_unique_ticker", + "blob": "1a005449434b45522d3132333435d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Set invulnerables", - "1 | Invulnerables [1/10] : 2FhxcJNoWm7dxnynVtezdpLBctNVbb5F3W9aA4", - "1 | Invulnerables [2/10] : vjYSz3qT9t", - "1 | Invulnerables [3/10] : 2DmLAvwAu3XMBnf9DQPGGoU9VkRkugFacJaZAv", - "1 | Invulnerables [4/10] : 2pcKyNmzv7", - "1 | Invulnerables [5/10] : 2GrGWQMady9kZFpcNHuXDBFp9ck6n316q2VX1A", - "1 | Invulnerables [6/10] : BzVY4BPEe1", - "1 | Invulnerables [7/10] : 2Cx4UhS6b39ZfRceuuHTJeWhiQM6512VrYwXQp", - "1 | Invulnerables [8/10] : wmRknwQokt", - "1 | Invulnerables [9/10] : 2Ch7nMMZpaZJ4fqcJLAWzm9WCSz5uPMAAhmUjx", - "1 | Invulnerables [10/10] : Saz1LEMrjg", - "2 | Tip : POLYX 1234.56789" + "0 | Asset : Register unique ticker", + "1 | Ticker : TICKER-12345", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Staking : Set invulnerables", - "1 | Invulnerables [1/10] : 2FhxcJNoWm7dxnynVtezdpLBctNVbb5F3W9aA4", - "1 | Invulnerables [2/10] : vjYSz3qT9t", - "1 | Invulnerables [3/10] : 2DmLAvwAu3XMBnf9DQPGGoU9VkRkugFacJaZAv", - "1 | Invulnerables [4/10] : 2pcKyNmzv7", - "1 | Invulnerables [5/10] : 2GrGWQMady9kZFpcNHuXDBFp9ck6n316q2VX1A", - "1 | Invulnerables [6/10] : BzVY4BPEe1", - "1 | Invulnerables [7/10] : 2Cx4UhS6b39ZfRceuuHTJeWhiQM6512VrYwXQp", - "1 | Invulnerables [8/10] : wmRknwQokt", - "1 | Invulnerables [9/10] : 2Ch7nMMZpaZJ4fqcJLAWzm9WCSz5uPMAAhmUjx", - "1 | Invulnerables [10/10] : Saz1LEMrjg", + "0 | Asset : Register unique ticker", + "1 | Ticker : TICKER-12345", "2 | Chain : Polymesh", "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 710, - "name": "Staking_Set_invulnerables", - "blob": "1113245a83c5f5eb8fe058647fd967c9e0b8912ef43a3b54f2d5797b734bd1303ea525d4eabdf738980035141be70c36dadb2fd793dc784a34d69662c8fd76b8b6b571ce62f5d9f0f0a21fd82bf6fd14a2e0e2792a32d0c1a0def593f2ba636e506932a4a3b22576feb6fdd412bfcd2c23eaada547124a5a31c25c8fa6c7cccf49af79aa51db374df134ae2a8149945ad4c40b5477c8f1e5539c114acc5d2a172b3c4eace7f73dff3b4c882c4d9c9f9c14a08a8b735765ec362e97552b3d1f54615212be449c27ee1f68348105362b2ddae1084d29a4a6ad44347569ed55c1edafb32e32b0724069e8bd803526896d122c43594b3f25ec18733ce4a6cd04fedf58040646b630a95c22e0ee1105f41d77ba2919fefe28153ee392d1491b9e312b56fe1fd5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Register_unique_ticker", + "blob": "1a005449434b45522d3132333435d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Set invulnerables", - "1 | Invulnerables [1/18] : 2EVbZGKShTaeRX7pxiavwnuLX7zZANQnniQNtN", - "1 | Invulnerables [2/18] : CHfBVYgP6H", - "1 | Invulnerables [3/18] : 2HG5zCzvfdep2WQoPbouCeMn8UsX39PgzpwccM", - "1 | Invulnerables [4/18] : LufQ1PRRMz", - "1 | Invulnerables [5/18] : 2H7XN5aB2hcYQyXJaszmP5pHN8NTziaUtB9MeQ", - "1 | Invulnerables [6/18] : u4tytTp3cd", - "1 | Invulnerables [7/18] : 2GAnaoLMWDBkENwBBhydq6iY12zn9yfwVbULCJ", - "1 | Invulnerables [8/18] : NYpnCfpVpX", - "1 | Invulnerables [9/18] : 2GJEZQBjorsidfZS6FssizrgP5SSbzGexa7mTL", - "1 | Invulnerables [10/18] : k4fTTwgeix", - "1 | Invulnerables [11/18] : 2GMdFHGRo9t5CUWKKf4LUyw6oSjpayMUn6HBsE", - "1 | Invulnerables [12/18] : YEq5uBgrjF", - "1 | Invulnerables [13/18] : 2GkPaibFMWxrj3Yu8D4pDWi87ctmKN1n1y7gZU", - "1 | Invulnerables [14/18] : vhUpFEzid8", - "1 | Invulnerables [15/18] : 2DbNusSYCRpCWG3ku4Nj7gUo57Vb1Kdi2gFzSD", - "1 | Invulnerables [16/18] : b8Tfe32shh", - "1 | Invulnerables [17/18] : 2E3daNzH8jxwdCM66BgSrmxiYjZh5kCHEd59UM", - "1 | Invulnerables [18/18] : kK11S3YT7H", - "2 | Tip : POLYX 1234.56789" + "0 | Asset : Register unique ticker", + "1 | Ticker : TICKER-12345" ], "output_expert": [ - "0 | Staking : Set invulnerables", - "1 | Invulnerables [1/18] : 2EVbZGKShTaeRX7pxiavwnuLX7zZANQnniQNtN", - "1 | Invulnerables [2/18] : CHfBVYgP6H", - "1 | Invulnerables [3/18] : 2HG5zCzvfdep2WQoPbouCeMn8UsX39PgzpwccM", - "1 | Invulnerables [4/18] : LufQ1PRRMz", - "1 | Invulnerables [5/18] : 2H7XN5aB2hcYQyXJaszmP5pHN8NTziaUtB9MeQ", - "1 | Invulnerables [6/18] : u4tytTp3cd", - "1 | Invulnerables [7/18] : 2GAnaoLMWDBkENwBBhydq6iY12zn9yfwVbULCJ", - "1 | Invulnerables [8/18] : NYpnCfpVpX", - "1 | Invulnerables [9/18] : 2GJEZQBjorsidfZS6FssizrgP5SSbzGexa7mTL", - "1 | Invulnerables [10/18] : k4fTTwgeix", - "1 | Invulnerables [11/18] : 2GMdFHGRo9t5CUWKKf4LUyw6oSjpayMUn6HBsE", - "1 | Invulnerables [12/18] : YEq5uBgrjF", - "1 | Invulnerables [13/18] : 2GkPaibFMWxrj3Yu8D4pDWi87ctmKN1n1y7gZU", - "1 | Invulnerables [14/18] : vhUpFEzid8", - "1 | Invulnerables [15/18] : 2DbNusSYCRpCWG3ku4Nj7gUo57Vb1Kdi2gFzSD", - "1 | Invulnerables [16/18] : b8Tfe32shh", - "1 | Invulnerables [17/18] : 2E3daNzH8jxwdCM66BgSrmxiYjZh5kCHEd59UM", - "1 | Invulnerables [18/18] : kK11S3YT7H", + "0 | Asset : Register unique ticker", + "1 | Ticker : TICKER-12345", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 711, - "name": "Staking_Force_unstake", - "blob": "1114248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d039d1c0000d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Accept_ticker_transfer", + "blob": "1a010000000000000000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Force unstake", - "1 | Stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Stash [2/2] : D5gRxEbABD", - "2 | Tip : POLYX 55.555555" + "0 | Asset : Accept ticker transfer", + "1 | Auth id : 0", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Staking : Force unstake", - "1 | Stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Stash [2/2] : D5gRxEbABD", - "2 | Num slashing spans : 7325", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Accept ticker transfer", + "1 | Auth id : 0", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 712, - "name": "Staking_Force_unstake", - "blob": "1114248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d3040000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Accept_ticker_transfer", + "blob": "1a010100000000000000d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Force unstake", - "1 | Stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Stash [2/2] : D5gRxEbABD", - "2 | Tip : POLYX 55.555555" + "0 | Asset : Accept ticker transfer", + "1 | Auth id : 1", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Staking : Force unstake", - "1 | Stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Stash [2/2] : D5gRxEbABD", - "2 | Num slashing spans : 1235", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Accept ticker transfer", + "1 | Auth id : 1", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 713, - "name": "Staking_Force_unstake", - "blob": "1114248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0300000000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Accept_ticker_transfer", + "blob": "1a012309000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Force unstake", - "1 | Stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Stash [2/2] : D5gRxEbABD" + "0 | Asset : Accept ticker transfer", + "1 | Auth id : 2339", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Staking : Force unstake", - "1 | Stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Stash [2/2] : D5gRxEbABD", - "2 | Num slashing spans : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", + "0 | Asset : Accept ticker transfer", + "1 | Auth id : 2339", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 714, - "name": "Staking_Force_unstake", - "blob": "1114248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03f7010000d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Accept_ticker_transfer", + "blob": "1a016bc4000000000000d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Force unstake", - "1 | Stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Stash [2/2] : D5gRxEbABD" + "0 | Asset : Accept ticker transfer", + "1 | Auth id : 50283", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Staking : Force unstake", - "1 | Stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Stash [2/2] : D5gRxEbABD", - "2 | Num slashing spans : 503", - "3 | Chain : Polymesh", - "4 | Nonce : 0", + "0 | Asset : Accept ticker transfer", + "1 | Auth id : 50283", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 715, - "name": "Staking_Force_unstake", - "blob": "1114248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0300000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Accept_ticker_transfer", + "blob": "1a010000000000000000d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Force unstake", - "1 | Stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Stash [2/2] : D5gRxEbABD", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Asset : Accept ticker transfer", + "1 | Auth id : 0", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Staking : Force unstake", - "1 | Stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Stash [2/2] : D5gRxEbABD", - "2 | Num slashing spans : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Accept ticker transfer", + "1 | Auth id : 0", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 716, - "name": "Staking_Force_new_era_always", - "blob": "1115d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Accept_asset_ownership_transfer", + "blob": "1a020100000000000000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Force new era always", - "1 | Tip : POLYX 5552342.355555" + "0 | Asset : Accept asset ownership transfer", + "1 | Auth id : 1", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Staking : Force new era always", - "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip : POLYX 5552342.355555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 717, - "name": "Staking_Force_new_era_always", - "blob": "1115d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "0 | Asset : Accept asset ownership transfer", + "1 | Auth id : 1", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 717, + "name": "Asset_Accept_asset_ownership_transfer", + "blob": "1a020000000000000000d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Force new era always", - "1 | Tip : POLYX 55.555555" + "0 | Asset : Accept asset ownership transfer", + "1 | Auth id : 0", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Staking : Force new era always", - "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip : POLYX 55.555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Accept asset ownership transfer", + "1 | Auth id : 0", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 718, - "name": "Staking_Force_new_era_always", - "blob": "1115d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Accept_asset_ownership_transfer", + "blob": "1a020000000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Force new era always", - "1 | Tip : POLYX 55.555555" + "0 | Asset : Accept asset ownership transfer", + "1 | Auth id : 0", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Staking : Force new era always", - "1 | Chain : Polymesh", - "2 | Nonce : 100", - "3 | Tip : POLYX 55.555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Accept asset ownership transfer", + "1 | Auth id : 0", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 719, - "name": "Staking_Force_new_era_always", - "blob": "1115d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Accept_asset_ownership_transfer", + "blob": "1a020100000000000000d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Force new era always", - "1 | Tip : POLYX 55.555555" + "0 | Asset : Accept asset ownership transfer", + "1 | Auth id : 1", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Staking : Force new era always", - "1 | Chain : Polymesh", - "2 | Nonce : 2339", - "3 | Tip : POLYX 55.555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Accept asset ownership transfer", + "1 | Auth id : 1", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 720, - "name": "Staking_Force_new_era_always", - "blob": "1115d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Accept_asset_ownership_transfer", + "blob": "1a026400000000000000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Force new era always", - "1 | Tip : POLYX 5552342.355555" + "0 | Asset : Accept asset ownership transfer", + "1 | Auth id : 100", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Staking : Force new era always", - "1 | Chain : Polymesh", - "2 | Nonce : 2339", - "3 | Tip : POLYX 5552342.355555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Accept asset ownership transfer", + "1 | Auth id : 100", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 721, - "name": "Staking_Cancel_deferred_slash", - "blob": "11160000000010200000000b000000200000000b000000d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Create_asset", + "blob": "1a032841737365744e616d653100001000303337383333313030013033373833333130300255533033373833333130303503485755504b52304d504f55384647584254333934014846756e64696e675f526f756e645f4e616d65d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Cancel deferred slash", - "1 | Era : 0", - "2 | Slash indices [1/4] : 32", - "2 | Slash indices [2/4] : 11", - "2 | Slash indices [3/4] : 32", - "2 | Slash indices [4/4] : 11" + "0 | Asset : Create asset", + "1 | Asset name : AssetName1", + "2 | Divisible : False", + "3 | Asset type : EquityCommon", + "4 | Asset identifiers [1/4] : 037833100", + "4 | Asset identifiers [2/4] : 037833100", + "4 | Asset identifiers [3/4] : US0378331005", + "4 | Asset identifiers [4/4] : HWUPKR0MPOU8FGXBT394", + "5 | Funding round name : Funding_Round_Name", + "6 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Staking : Cancel deferred slash", - "1 | Era : 0", - "2 | Slash indices [1/4] : 32", - "2 | Slash indices [2/4] : 11", - "2 | Slash indices [3/4] : 32", - "2 | Slash indices [4/4] : 11", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Create asset", + "1 | Asset name : AssetName1", + "2 | Divisible : False", + "3 | Asset type : EquityCommon", + "4 | Asset identifiers [1/4] : 037833100", + "4 | Asset identifiers [2/4] : 037833100", + "4 | Asset identifiers [3/4] : US0378331005", + "4 | Asset identifiers [4/4] : HWUPKR0MPOU8FGXBT394", + "5 | Funding round name : Funding_Round_Name", + "6 | Chain : Polymesh", + "7 | Nonce : 100", + "8 | Tip : POLYX 5552342.355555", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 722, - "name": "Staking_Cancel_deferred_slash", - "blob": "111600000000100d0000000c0000001300000023000000d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Create_asset", + "blob": "1a032841737365744e616d653201093ec7060000014846756e64696e675f526f756e645f4e616d65d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Cancel deferred slash", - "1 | Era : 0", - "2 | Slash indices [1/4] : 13", - "2 | Slash indices [2/4] : 12", - "2 | Slash indices [3/4] : 19", - "2 | Slash indices [4/4] : 35" + "0 | Asset : Create asset", + "1 | Asset name : AssetName2", + "2 | Divisible : True", + "3 | Asset type [1/2] : Custom", + "3 | Asset type [2/2] : 444222", + "4 | Asset identifiers : ", + "5 | Funding round name : Funding_Round_Name", + "6 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Staking : Cancel deferred slash", - "1 | Era : 0", - "2 | Slash indices [1/4] : 13", - "2 | Slash indices [2/4] : 12", - "2 | Slash indices [3/4] : 19", - "2 | Slash indices [4/4] : 35", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Create asset", + "1 | Asset name : AssetName2", + "2 | Divisible : True", + "3 | Asset type [1/2] : Custom", + "3 | Asset type [2/2] : 444222", + "4 | Asset identifiers : ", + "5 | Funding round name : Funding_Round_Name", + "6 | Chain : Polymesh", + "7 | Nonce : 100", + "8 | Tip : POLYX 0.000987", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 723, - "name": "Staking_Cancel_deferred_slash", - "blob": "111600000000100d0000000c0000001300000023000000d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Create_asset", + "blob": "1a032841737365744e616d653200093ec7060000014846756e64696e675f526f756e645f4e616d65d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Cancel deferred slash", - "1 | Era : 0", - "2 | Slash indices [1/4] : 13", - "2 | Slash indices [2/4] : 12", - "2 | Slash indices [3/4] : 19", - "2 | Slash indices [4/4] : 35", - "3 | Tip : POLYX 5552342.355555" + "0 | Asset : Create asset", + "1 | Asset name : AssetName2", + "2 | Divisible : False", + "3 | Asset type [1/2] : Custom", + "3 | Asset type [2/2] : 444222", + "4 | Asset identifiers : ", + "5 | Funding round name : Funding_Round_Name", + "6 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Staking : Cancel deferred slash", - "1 | Era : 0", - "2 | Slash indices [1/4] : 13", - "2 | Slash indices [2/4] : 12", - "2 | Slash indices [3/4] : 19", - "2 | Slash indices [4/4] : 35", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Create asset", + "1 | Asset name : AssetName2", + "2 | Divisible : False", + "3 | Asset type [1/2] : Custom", + "3 | Asset type [2/2] : 444222", + "4 | Asset identifiers : ", + "5 | Funding round name : Funding_Round_Name", + "6 | Chain : Polymesh", + "7 | Nonce : 0", + "8 | Tip : POLYX 0.000987", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 724, - "name": "Staking_Cancel_deferred_slash", - "blob": "111600000000100c000000290000003400000035000000d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Create_asset", + "blob": "1a032841737365744e616d6531000000014846756e64696e675f526f756e645f4e616d65d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Cancel deferred slash", - "1 | Era : 0", - "2 | Slash indices [1/4] : 12", - "2 | Slash indices [2/4] : 41", - "2 | Slash indices [3/4] : 52", - "2 | Slash indices [4/4] : 53", - "3 | Tip : POLYX 0.000987" + "0 | Asset : Create asset", + "1 | Asset name : AssetName1", + "2 | Divisible : False", + "3 | Asset type : EquityCommon", + "4 | Asset identifiers : ", + "5 | Funding round name : Funding_Round_Name", + "6 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Staking : Cancel deferred slash", - "1 | Era : 0", - "2 | Slash indices [1/4] : 12", - "2 | Slash indices [2/4] : 41", - "2 | Slash indices [3/4] : 52", - "2 | Slash indices [4/4] : 53", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Create asset", + "1 | Asset name : AssetName1", + "2 | Divisible : False", + "3 | Asset type : EquityCommon", + "4 | Asset identifiers : ", + "5 | Funding round name : Funding_Round_Name", + "6 | Chain : Polymesh", + "7 | Nonce : 1", + "8 | Tip : POLYX 0.000987", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 725, - "name": "Staking_Cancel_deferred_slash", - "blob": "1116f701000010200000000b000000200000000b000000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Create_asset", + "blob": "1a032841737365744e616d6531010000014846756e64696e675f526f756e645f4e616d65d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Cancel deferred slash", - "1 | Era : 503", - "2 | Slash indices [1/4] : 32", - "2 | Slash indices [2/4] : 11", - "2 | Slash indices [3/4] : 32", - "2 | Slash indices [4/4] : 11", - "3 | Tip : POLYX 55.555555" + "0 | Asset : Create asset", + "1 | Asset name : AssetName1", + "2 | Divisible : True", + "3 | Asset type : EquityCommon", + "4 | Asset identifiers : ", + "5 | Funding round name : Funding_Round_Name", + "6 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Staking : Cancel deferred slash", - "1 | Era : 503", - "2 | Slash indices [1/4] : 32", - "2 | Slash indices [2/4] : 11", - "2 | Slash indices [3/4] : 32", - "2 | Slash indices [4/4] : 11", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Create asset", + "1 | Asset name : AssetName1", + "2 | Divisible : True", + "3 | Asset type : EquityCommon", + "4 | Asset identifiers : ", + "5 | Funding round name : Funding_Round_Name", + "6 | Chain : Polymesh", + "7 | Nonce : 0", + "8 | Tip : POLYX 0.000987", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 726, - "name": "Staking_Payout_stakers", - "blob": "1117248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0300000000d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Freeze", + "blob": "1a04417373657449442d3132333435363738d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Validator stash [2/2] : D5gRxEbABD", - "2 | Era : 0", - "3 | Tip : POLYX 55.555555" + "0 | Asset : Freeze", + "1 | Asset id : AssetID-12345678", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Validator stash [2/2] : D5gRxEbABD", - "2 | Era : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Freeze", + "1 | Asset id : AssetID-12345678", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 727, - "name": "Staking_Payout_stakers", - "blob": "1117248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0334300000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Freeze", + "blob": "1a04417373657449442d3132333435363738d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Validator stash [2/2] : D5gRxEbABD", - "2 | Era : 12340", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Asset : Freeze", + "1 | Asset id : AssetID-12345678", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Validator stash [2/2] : D5gRxEbABD", - "2 | Era : 12340", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, + "0 | Asset : Freeze", + "1 | Asset id : AssetID-12345678", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, { "index": 728, - "name": "Staking_Payout_stakers", - "blob": "1117248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d3040000d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Freeze", + "blob": "1a04417373657449442d3132333435363738d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Validator stash [2/2] : D5gRxEbABD", - "2 | Era : 1235", - "3 | Tip : POLYX 55.555555" + "0 | Asset : Freeze", + "1 | Asset id : AssetID-12345678", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Validator stash [2/2] : D5gRxEbABD", - "2 | Era : 1235", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Freeze", + "1 | Asset id : AssetID-12345678", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 729, - "name": "Staking_Payout_stakers", - "blob": "1117248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0300000000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Freeze", + "blob": "1a04417373657449442d3132333435363738d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Validator stash [2/2] : D5gRxEbABD", - "2 | Era : 0", - "3 | Tip : POLYX 1234.56789" + "0 | Asset : Freeze", + "1 | Asset id : AssetID-12345678", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Validator stash [2/2] : D5gRxEbABD", - "2 | Era : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Freeze", + "1 | Asset id : AssetID-12345678", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 730, - "name": "Staking_Payout_stakers", - "blob": "1117248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0300000000d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Freeze", + "blob": "1a04417373657449442d3132333435363738d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Validator stash [2/2] : D5gRxEbABD", - "2 | Era : 0", - "3 | Tip : POLYX 0.000987" + "0 | Asset : Freeze", + "1 | Asset id : AssetID-12345678" ], "output_expert": [ - "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Validator stash [2/2] : D5gRxEbABD", - "2 | Era : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Freeze", + "1 | Asset id : AssetID-12345678", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 731, - "name": "Staking_Rebond", - "blob": "111833158139ae28a3dfaac5fe1560a5e9e05cd5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Unfreeze", + "blob": "1a05417373657449442d3132333435363738d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Rebond", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", + "0 | Asset : Unfreeze", + "1 | Asset id : AssetID-12345678", "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Staking : Rebond", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", + "0 | Asset : Unfreeze", + "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 2339", + "3 | Nonce : 50283", "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 732, - "name": "Staking_Rebond", - "blob": "111833158139ae28a3dfaac5fe1560a5e9e05cd503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Unfreeze", + "blob": "1a05417373657449442d3132333435363738d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Rebond", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Tip : POLYX 5552342.355555" + "0 | Asset : Unfreeze", + "1 | Asset id : AssetID-12345678", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Staking : Rebond", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", + "0 | Asset : Unfreeze", + "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 2339", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 733, - "name": "Staking_Rebond", - "blob": "11188ed73e0dd5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Unfreeze", + "blob": "1a05417373657449442d3132333435363738d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Rebond", - "1 | Amount : POLYX 55.555555", - "2 | Tip : POLYX 1234.56789" + "0 | Asset : Unfreeze", + "1 | Asset id : AssetID-12345678", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Staking : Rebond", - "1 | Amount : POLYX 55.555555", + "0 | Asset : Unfreeze", + "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 100", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 734, - "name": "Staking_Rebond", - "blob": "11180b63ce64c10c05d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Unfreeze", + "blob": "1a05417373657449442d3132333435363738d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Rebond", - "1 | Amount : POLYX 5552342.355555", - "2 | Tip : POLYX 5552342.355555" + "0 | Asset : Unfreeze", + "1 | Asset id : AssetID-12345678", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Staking : Rebond", - "1 | Amount : POLYX 5552342.355555", + "0 | Asset : Unfreeze", + "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 2339", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 735, - "name": "Staking_Rebond", - "blob": "11186d0fd503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Unfreeze", + "blob": "1a05417373657449442d3132333435363738d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Rebond", - "1 | Amount : POLYX 0.000987" + "0 | Asset : Unfreeze", + "1 | Asset id : AssetID-12345678", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Staking : Rebond", - "1 | Amount : POLYX 0.000987", + "0 | Asset : Unfreeze", + "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 736, - "name": "Staking_Set_history_depth", - "blob": "1119bab0bd02bab0bd02d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Rename_asset", + "blob": "1a06417373657449442d31323334353637382841737365744e616d6532d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Set history depth", - "1 | New history depth : 11496494", - "2 | Era items deleted : 11496494", - "3 | Tip : POLYX 0.000987" + "0 | Asset : Rename asset", + "1 | Asset id : AssetID-12345678", + "2 | Asset name : AssetName2", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Staking : Set history depth", - "1 | New history depth : 11496494", - "2 | Era items deleted : 11496494", + "0 | Asset : Rename asset", + "1 | Asset id : AssetID-12345678", + "2 | Asset name : AssetName2", "3 | Chain : Polymesh", "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 737, - "name": "Staking_Set_history_depth", - "blob": "11193585fe09f003d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Rename_asset", + "blob": "1a06417373657449442d31323334353637382841737365744e616d6532d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Set history depth", - "1 | New history depth : 8525", - "2 | Era items deleted : 16515711", - "3 | Tip : POLYX 1234.56789" + "0 | Asset : Rename asset", + "1 | Asset id : AssetID-12345678", + "2 | Asset name : AssetName2", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Staking : Set history depth", - "1 | New history depth : 8525", - "2 | Era items deleted : 16515711", + "0 | Asset : Rename asset", + "1 | Asset id : AssetID-12345678", + "2 | Asset name : AssetName2", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 2339", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 738, - "name": "Staking_Set_history_depth", - "blob": "1119ea53bf77fe09f003d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Rename_asset", + "blob": "1a06417373657449442d31323334353637382841737365744e616d6531d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Set history depth", - "1 | New history depth : 502256890", - "2 | Era items deleted : 16515711", - "3 | Tip : POLYX 1234.56789" + "0 | Asset : Rename asset", + "1 | Asset id : AssetID-12345678", + "2 | Asset name : AssetName1", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Staking : Set history depth", - "1 | New history depth : 502256890", - "2 | Era items deleted : 16515711", + "0 | Asset : Rename asset", + "1 | Asset id : AssetID-12345678", + "2 | Asset name : AssetName1", "3 | Chain : Polymesh", "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 739, - "name": "Staking_Set_history_depth", - "blob": "111935853585d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Rename_asset", + "blob": "1a06417373657449442d31323334353637382841737365744e616d6532d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Set history depth", - "1 | New history depth : 8525", - "2 | Era items deleted : 8525" + "0 | Asset : Rename asset", + "1 | Asset id : AssetID-12345678", + "2 | Asset name : AssetName2", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Staking : Set history depth", - "1 | New history depth : 8525", - "2 | Era items deleted : 8525", + "0 | Asset : Rename asset", + "1 | Asset id : AssetID-12345678", + "2 | Asset name : AssetName2", "3 | Chain : Polymesh", "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 740, - "name": "Staking_Set_history_depth", - "blob": "1119fe09f003ea53bf77d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Rename_asset", + "blob": "1a06417373657449442d31323334353637382841737365744e616d6532d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Set history depth", - "1 | New history depth : 16515711", - "2 | Era items deleted : 502256890", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Asset : Rename asset", + "1 | Asset id : AssetID-12345678", + "2 | Asset name : AssetName2", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Staking : Set history depth", - "1 | New history depth : 16515711", - "2 | Era items deleted : 502256890", + "0 | Asset : Rename asset", + "1 | Asset id : AssetID-12345678", + "2 | Asset name : AssetName2", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 100", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 741, - "name": "Staking_Reap_stash", - "blob": "111a248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d039d1c0000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Issue", + "blob": "1a07417373657449442d31323334353637383ce97b7ceb2af717b80bbcaa9326ce8301cc4beb0ae1950000d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Reap stash", - "1 | Stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Stash [2/2] : D5gRxEbABD", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Asset : Issue", + "1 | Asset id : AssetID-12345678", + "2 | Amount [1/2] : 175199263031626767267885072656780.4869", + "2 | Amount [2/2] : 72", + "3 | Portfolio kind : 164793783372748", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Staking : Reap stash", - "1 | Stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Stash [2/2] : D5gRxEbABD", - "2 | Num slashing spans : 7325", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Issue", + "1 | Asset id : AssetID-12345678", + "2 | Amount [1/2] : 175199263031626767267885072656780.4869", + "2 | Amount [2/2] : 72", + "3 | Portfolio kind : 164793783372748", + "4 | Chain : Polymesh", + "5 | Nonce : 2339", + "6 | Tip : POLYX 5552342.355555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 742, - "name": "Staking_Reap_stash", - "blob": "111a248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d3040000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Issue", + "blob": "1a07417373657449442d31323334353637383ce97b7ceb2af717b80bbcaa9326ce8300d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Reap stash", - "1 | Stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Stash [2/2] : D5gRxEbABD" + "0 | Asset : Issue", + "1 | Asset id : AssetID-12345678", + "2 | Amount [1/2] : 175199263031626767267885072656780.4869", + "2 | Amount [2/2] : 72", + "3 | Portfolio kind : Default" ], "output_expert": [ - "0 | Staking : Reap stash", - "1 | Stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Stash [2/2] : D5gRxEbABD", - "2 | Num slashing spans : 1235", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Issue", + "1 | Asset id : AssetID-12345678", + "2 | Amount [1/2] : 175199263031626767267885072656780.4869", + "2 | Amount [2/2] : 72", + "3 | Portfolio kind : Default", + "4 | Chain : Polymesh", + "5 | Nonce : 1", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 743, - "name": "Staking_Reap_stash", - "blob": "111a248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0334300000d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Issue", + "blob": "1a07417373657449442d31323334353637383ce97b7ceb2af717b80bbcaa9326ce8301141466c3803e0000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Reap stash", - "1 | Stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Stash [2/2] : D5gRxEbABD", - "2 | Tip : POLYX 55.555555" + "0 | Asset : Issue", + "1 | Asset id : AssetID-12345678", + "2 | Amount [1/2] : 175199263031626767267885072656780.4869", + "2 | Amount [2/2] : 72", + "3 | Portfolio kind : 68722754982932", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Staking : Reap stash", - "1 | Stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Stash [2/2] : D5gRxEbABD", - "2 | Num slashing spans : 12340", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Issue", + "1 | Asset id : AssetID-12345678", + "2 | Amount [1/2] : 175199263031626767267885072656780.4869", + "2 | Amount [2/2] : 72", + "3 | Portfolio kind : 68722754982932", + "4 | Chain : Polymesh", + "5 | Nonce : 0", + "6 | Tip : POLYX 5552342.355555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 744, - "name": "Staking_Reap_stash", - "blob": "111a248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d039d1c0000d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Issue", + "blob": "1a07417373657449442d31323334353637383ce97b7ceb2af717b80bbcaa9326ce8301cc4beb0ae1950000d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Reap stash", - "1 | Stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Stash [2/2] : D5gRxEbABD", - "2 | Tip : POLYX 5552342.355555" + "0 | Asset : Issue", + "1 | Asset id : AssetID-12345678", + "2 | Amount [1/2] : 175199263031626767267885072656780.4869", + "2 | Amount [2/2] : 72", + "3 | Portfolio kind : 164793783372748", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Staking : Reap stash", - "1 | Stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Stash [2/2] : D5gRxEbABD", - "2 | Num slashing spans : 7325", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Issue", + "1 | Asset id : AssetID-12345678", + "2 | Amount [1/2] : 175199263031626767267885072656780.4869", + "2 | Amount [2/2] : 72", + "3 | Portfolio kind : 164793783372748", + "4 | Chain : Polymesh", + "5 | Nonce : 2339", + "6 | Tip : POLYX 1234.56789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 745, - "name": "Staking_Reap_stash", - "blob": "111a248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d039d1c0000d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Issue", + "blob": "1a07417373657449442d31323334353637383ce97b7ceb2af717b80bbcaa9326ce8300d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Reap stash", - "1 | Stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Stash [2/2] : D5gRxEbABD" + "0 | Asset : Issue", + "1 | Asset id : AssetID-12345678", + "2 | Amount [1/2] : 175199263031626767267885072656780.4869", + "2 | Amount [2/2] : 72", + "3 | Portfolio kind : Default", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Staking : Reap stash", - "1 | Stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Stash [2/2] : D5gRxEbABD", - "2 | Num slashing spans : 7325", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Issue", + "1 | Asset id : AssetID-12345678", + "2 | Amount [1/2] : 175199263031626767267885072656780.4869", + "2 | Amount [2/2] : 72", + "3 | Portfolio kind : Default", + "4 | Chain : Polymesh", + "5 | Nonce : 2339", + "6 | Tip : POLYX 1234.56789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 746, - "name": "Staking_Payout_stakers_by_system", - "blob": "111d248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0334300000d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Redeem", + "blob": "1a08417373657449442d31323334353637383ce97b7ceb2af717b80bbcaa9326ce8300d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Payout stakers by system", - "1 | Validator stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Validator stash [2/2] : D5gRxEbABD", - "2 | Era : 12340", - "3 | Tip : POLYX 55.555555" + "0 | Asset : Redeem", + "1 | Asset id : AssetID-12345678", + "2 | Amount [1/2] : 175199263031626767267885072656780.4869", + "2 | Amount [2/2] : 72", + "3 | Portfolio kind : Default", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Staking : Payout stakers by system", - "1 | Validator stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Validator stash [2/2] : D5gRxEbABD", - "2 | Era : 12340", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Redeem", + "1 | Asset id : AssetID-12345678", + "2 | Amount [1/2] : 175199263031626767267885072656780.4869", + "2 | Amount [2/2] : 72", + "3 | Portfolio kind : Default", + "4 | Chain : Polymesh", + "5 | Nonce : 0", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 747, - "name": "Staking_Payout_stakers_by_system", - "blob": "111d248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0334300000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Redeem", + "blob": "1a08417373657449442d31323334353637383ce97b7ceb2af717b80bbcaa9326ce8301141466c3803e0000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Payout stakers by system", - "1 | Validator stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Validator stash [2/2] : D5gRxEbABD", - "2 | Era : 12340", - "3 | Tip : POLYX 1234.56789" + "0 | Asset : Redeem", + "1 | Asset id : AssetID-12345678", + "2 | Amount [1/2] : 175199263031626767267885072656780.4869", + "2 | Amount [2/2] : 72", + "3 | Portfolio kind : 68722754982932", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Staking : Payout stakers by system", - "1 | Validator stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Validator stash [2/2] : D5gRxEbABD", - "2 | Era : 12340", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Redeem", + "1 | Asset id : AssetID-12345678", + "2 | Amount [1/2] : 175199263031626767267885072656780.4869", + "2 | Amount [2/2] : 72", + "3 | Portfolio kind : 68722754982932", + "4 | Chain : Polymesh", + "5 | Nonce : 0", + "6 | Tip : POLYX 0.000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 748, - "name": "Staking_Payout_stakers_by_system", - "blob": "111d248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d3040000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Redeem", + "blob": "1a08417373657449442d31323334353637383ce97b7ceb2af717b80bbcaa9326ce8300d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Payout stakers by system", - "1 | Validator stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Validator stash [2/2] : D5gRxEbABD", - "2 | Era : 1235", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Asset : Redeem", + "1 | Asset id : AssetID-12345678", + "2 | Amount [1/2] : 175199263031626767267885072656780.4869", + "2 | Amount [2/2] : 72", + "3 | Portfolio kind : Default", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Staking : Payout stakers by system", - "1 | Validator stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Validator stash [2/2] : D5gRxEbABD", - "2 | Era : 1235", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Redeem", + "1 | Asset id : AssetID-12345678", + "2 | Amount [1/2] : 175199263031626767267885072656780.4869", + "2 | Amount [2/2] : 72", + "3 | Portfolio kind : Default", + "4 | Chain : Polymesh", + "5 | Nonce : 2339", + "6 | Tip : POLYX 0.000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 749, - "name": "Staking_Payout_stakers_by_system", - "blob": "111d248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d3040000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Redeem", + "blob": "1a08417373657449442d31323334353637383ce97b7ceb2af717b80bbcaa9326ce8301141466c3803e0000d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Payout stakers by system", - "1 | Validator stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Validator stash [2/2] : D5gRxEbABD", - "2 | Era : 1235", - "3 | Tip : POLYX 55.555555" + "0 | Asset : Redeem", + "1 | Asset id : AssetID-12345678", + "2 | Amount [1/2] : 175199263031626767267885072656780.4869", + "2 | Amount [2/2] : 72", + "3 | Portfolio kind : 68722754982932" ], "output_expert": [ - "0 | Staking : Payout stakers by system", - "1 | Validator stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Validator stash [2/2] : D5gRxEbABD", - "2 | Era : 1235", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", + "0 | Asset : Redeem", + "1 | Asset id : AssetID-12345678", + "2 | Amount [1/2] : 175199263031626767267885072656780.4869", + "2 | Amount [2/2] : 72", + "3 | Portfolio kind : 68722754982932", + "4 | Chain : Polymesh", + "5 | Nonce : 0", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 750, - "name": "Staking_Payout_stakers_by_system", - "blob": "111d248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0300000000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Redeem", + "blob": "1a08417373657449442d31323334353637383ce97b7ceb2af717b80bbcaa9326ce8300d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Payout stakers by system", - "1 | Validator stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Validator stash [2/2] : D5gRxEbABD", - "2 | Era : 0", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Asset : Redeem", + "1 | Asset id : AssetID-12345678", + "2 | Amount [1/2] : 175199263031626767267885072656780.4869", + "2 | Amount [2/2] : 72", + "3 | Portfolio kind : Default", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Staking : Payout stakers by system", - "1 | Validator stash [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Validator stash [2/2] : D5gRxEbABD", - "2 | Era : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Redeem", + "1 | Asset id : AssetID-12345678", + "2 | Amount [1/2] : 175199263031626767267885072656780.4869", + "2 | Amount [2/2] : 72", + "3 | Portfolio kind : Default", + "4 | Chain : Polymesh", + "5 | Nonce : 50283", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 751, - "name": "Staking_Change_slashing_allowed_for", - "blob": "111e01d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Make_divisible", + "blob": "1a09417373657449442d3132333435363738d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Change slashing allowed for", - "1 | Slashing switch : ValidatorAndNominator", - "2 | Tip : POLYX 55.555555" + "0 | Asset : Make divisible", + "1 | Asset id : AssetID-12345678", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Staking : Change slashing allowed for", - "1 | Slashing switch : ValidatorAndNominator", + "0 | Asset : Make divisible", + "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 752, - "name": "Staking_Change_slashing_allowed_for", - "blob": "111e01d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Make_divisible", + "blob": "1a09417373657449442d3132333435363738d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Change slashing allowed for", - "1 | Slashing switch : ValidatorAndNominator", - "2 | Tip : POLYX 0.000987" + "0 | Asset : Make divisible", + "1 | Asset id : AssetID-12345678" ], "output_expert": [ - "0 | Staking : Change slashing allowed for", - "1 | Slashing switch : ValidatorAndNominator", + "0 | Asset : Make divisible", + "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 753, - "name": "Staking_Change_slashing_allowed_for", - "blob": "111e00d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Make_divisible", + "blob": "1a09417373657449442d3132333435363738d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Change slashing allowed for", - "1 | Slashing switch : Validator", + "0 | Asset : Make divisible", + "1 | Asset id : AssetID-12345678", "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Staking : Change slashing allowed for", - "1 | Slashing switch : Validator", + "0 | Asset : Make divisible", + "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 1", "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 754, - "name": "Staking_Change_slashing_allowed_for", - "blob": "111e00d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Make_divisible", + "blob": "1a09417373657449442d3132333435363738d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Change slashing allowed for", - "1 | Slashing switch : Validator", - "2 | Tip : POLYX 1234.56789" + "0 | Asset : Make divisible", + "1 | Asset id : AssetID-12345678", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Staking : Change slashing allowed for", - "1 | Slashing switch : Validator", + "0 | Asset : Make divisible", + "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 755, - "name": "Staking_Change_slashing_allowed_for", - "blob": "111e00d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Make_divisible", + "blob": "1a09417373657449442d3132333435363738d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Change slashing allowed for", - "1 | Slashing switch : Validator", + "0 | Asset : Make divisible", + "1 | Asset id : AssetID-12345678", "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Staking : Change slashing allowed for", - "1 | Slashing switch : Validator", + "0 | Asset : Make divisible", + "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 1", + "3 | Nonce : 2339", "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 756, - "name": "Staking_Update_permissioned_validator_intended_count", - "blob": "111f44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af9d1c0000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Add_documents", + "blob": "1a0a085868747470733a2f2f646f63756d656e742e7572692e3101ecc692604b518b205142d32baa5f258edc586b79727f8c2c081ff4e254d6a8e7a032e095c951c73388fffae139ef753e0c5d2d73bb2be8322e1829150fcfb8b128446f63754e616d655f310120446f63755479706501f9be6186000000005868747470733a2f2f646f63756d656e742e7572692e3202bda2f56216a9e62c3bcd44e48aedf3eb957aa1f3bfd9ad446416b4083381d8dc9bd4d7834ac704a0c208b4b5733e4f7328446f63754e616d655f320120446f6375547970650191850cb705000000417373657449442d3132333435363738d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Update permissioned validator intended", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | New intended count : 7325", - "3 | Tip : POLYX 1234.56789" + "0 | Asset : Add documents", + "1 | Docs [1/15] : https://document.uri.1", + "1 | Docs [2/15] : ecc692604b518b205142d32baa5f258edc586b", + "1 | Docs [3/15] : 79727f8c2c081ff4e254d6a8e7a032e095c951", + "1 | Docs [4/15] : c73388fffae139ef753e0c5d2d73bb2be8322e", + "1 | Docs [5/15] : 1829150fcfb8b1", + "1 | Docs [6/15] : DocuName_1", + "1 | Docs [7/15] : DocuType", + "1 | Docs [8/15] : 2254552825", + "1 | Docs [9/15] : https://document.uri.2", + "1 | Docs [10/15] : bda2f56216a9e62c3bcd44e48aedf3eb957aa1", + "1 | Docs [11/15] : f3bfd9ad446416b4083381d8dc9bd4d7834ac7", + "1 | Docs [12/15] : 04a0c208b4b5733e4f73", + "1 | Docs [13/15] : DocuName_2", + "1 | Docs [14/15] : DocuType", + "1 | Docs [15/15] : 24545887633", + "2 | Asset id : AssetID-12345678", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Staking : Update permissioned validator intended", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | New intended count : 7325", + "0 | Asset : Add documents", + "1 | Docs [1/15] : https://document.uri.1", + "1 | Docs [2/15] : ecc692604b518b205142d32baa5f258edc586b", + "1 | Docs [3/15] : 79727f8c2c081ff4e254d6a8e7a032e095c951", + "1 | Docs [4/15] : c73388fffae139ef753e0c5d2d73bb2be8322e", + "1 | Docs [5/15] : 1829150fcfb8b1", + "1 | Docs [6/15] : DocuName_1", + "1 | Docs [7/15] : DocuType", + "1 | Docs [8/15] : 2254552825", + "1 | Docs [9/15] : https://document.uri.2", + "1 | Docs [10/15] : bda2f56216a9e62c3bcd44e48aedf3eb957aa1", + "1 | Docs [11/15] : f3bfd9ad446416b4083381d8dc9bd4d7834ac7", + "1 | Docs [12/15] : 04a0c208b4b5733e4f73", + "1 | Docs [13/15] : DocuName_2", + "1 | Docs [14/15] : DocuType", + "1 | Docs [15/15] : 24545887633", + "2 | Asset id : AssetID-12345678", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 50283", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 757, - "name": "Staking_Update_permissioned_validator_intended_count", - "blob": "111f44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af34300000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Add_documents", + "blob": "1a0a085868747470733a2f2f646f63756d656e742e7572692e3101ecc692604b518b205142d32baa5f258edc586b79727f8c2c081ff4e254d6a8e7a032e095c951c73388fffae139ef753e0c5d2d73bb2be8322e1829150fcfb8b128446f63754e616d655f310120446f63755479706501f9be6186000000005868747470733a2f2f646f63756d656e742e7572692e3202bda2f56216a9e62c3bcd44e48aedf3eb957aa1f3bfd9ad446416b4083381d8dc9bd4d7834ac704a0c208b4b5733e4f7328446f63754e616d655f320120446f6375547970650191850cb705000000417373657449442d3132333435363738d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Update permissioned validator intended", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | New intended count : 12340", + "0 | Asset : Add documents", + "1 | Docs [1/15] : https://document.uri.1", + "1 | Docs [2/15] : ecc692604b518b205142d32baa5f258edc586b", + "1 | Docs [3/15] : 79727f8c2c081ff4e254d6a8e7a032e095c951", + "1 | Docs [4/15] : c73388fffae139ef753e0c5d2d73bb2be8322e", + "1 | Docs [5/15] : 1829150fcfb8b1", + "1 | Docs [6/15] : DocuName_1", + "1 | Docs [7/15] : DocuType", + "1 | Docs [8/15] : 2254552825", + "1 | Docs [9/15] : https://document.uri.2", + "1 | Docs [10/15] : bda2f56216a9e62c3bcd44e48aedf3eb957aa1", + "1 | Docs [11/15] : f3bfd9ad446416b4083381d8dc9bd4d7834ac7", + "1 | Docs [12/15] : 04a0c208b4b5733e4f73", + "1 | Docs [13/15] : DocuName_2", + "1 | Docs [14/15] : DocuType", + "1 | Docs [15/15] : 24545887633", + "2 | Asset id : AssetID-12345678", "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Staking : Update permissioned validator intended", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | New intended count : 12340", + "0 | Asset : Add documents", + "1 | Docs [1/15] : https://document.uri.1", + "1 | Docs [2/15] : ecc692604b518b205142d32baa5f258edc586b", + "1 | Docs [3/15] : 79727f8c2c081ff4e254d6a8e7a032e095c951", + "1 | Docs [4/15] : c73388fffae139ef753e0c5d2d73bb2be8322e", + "1 | Docs [5/15] : 1829150fcfb8b1", + "1 | Docs [6/15] : DocuName_1", + "1 | Docs [7/15] : DocuType", + "1 | Docs [8/15] : 2254552825", + "1 | Docs [9/15] : https://document.uri.2", + "1 | Docs [10/15] : bda2f56216a9e62c3bcd44e48aedf3eb957aa1", + "1 | Docs [11/15] : f3bfd9ad446416b4083381d8dc9bd4d7834ac7", + "1 | Docs [12/15] : 04a0c208b4b5733e4f73", + "1 | Docs [13/15] : DocuName_2", + "1 | Docs [14/15] : DocuType", + "1 | Docs [15/15] : 24545887633", + "2 | Asset id : AssetID-12345678", "3 | Chain : Polymesh", - "4 | Nonce : 0", + "4 | Nonce : 50283", "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 758, - "name": "Staking_Update_permissioned_validator_intended_count", - "blob": "111f44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9aff7010000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Add_documents", + "blob": "1a0a00417373657449442d3132333435363738d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Update permissioned validator intended", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | New intended count : 503", - "3 | Tip : POLYX 5552342.355555" + "0 | Asset : Add documents", + "1 | Docs : ", + "2 | Asset id : AssetID-12345678", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Staking : Update permissioned validator intended", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | New intended count : 503", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", + "0 | Asset : Add documents", + "1 | Docs : ", + "2 | Asset id : AssetID-12345678", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 759, - "name": "Staking_Update_permissioned_validator_intended_count", - "blob": "111f44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9aff7010000d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Add_documents", + "blob": "1a0a00417373657449442d3132333435363738d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Update permissioned validator intended", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | New intended count : 503", - "3 | Tip : POLYX 55.555555" + "0 | Asset : Add documents", + "1 | Docs : ", + "2 | Asset id : AssetID-12345678", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Staking : Update permissioned validator intended", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | New intended count : 503", + "0 | Asset : Add documents", + "1 | Docs : ", + "2 | Asset id : AssetID-12345678", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 100", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 760, - "name": "Staking_Update_permissioned_validator_intended_count", - "blob": "111f44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd3040000d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Add_documents", + "blob": "1a0a085868747470733a2f2f646f63756d656e742e7572692e3101ecc692604b518b205142d32baa5f258edc586b79727f8c2c081ff4e254d6a8e7a032e095c951c73388fffae139ef753e0c5d2d73bb2be8322e1829150fcfb8b128446f63754e616d655f310120446f63755479706501f9be6186000000005868747470733a2f2f646f63756d656e742e7572692e3202bda2f56216a9e62c3bcd44e48aedf3eb957aa1f3bfd9ad446416b4083381d8dc9bd4d7834ac704a0c208b4b5733e4f7328446f63754e616d655f320120446f6375547970650191850cb705000000417373657449442d3132333435363738d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Update permissioned validator intended", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | New intended count : 1235" + "0 | Asset : Add documents", + "1 | Docs [1/15] : https://document.uri.1", + "1 | Docs [2/15] : ecc692604b518b205142d32baa5f258edc586b", + "1 | Docs [3/15] : 79727f8c2c081ff4e254d6a8e7a032e095c951", + "1 | Docs [4/15] : c73388fffae139ef753e0c5d2d73bb2be8322e", + "1 | Docs [5/15] : 1829150fcfb8b1", + "1 | Docs [6/15] : DocuName_1", + "1 | Docs [7/15] : DocuType", + "1 | Docs [8/15] : 2254552825", + "1 | Docs [9/15] : https://document.uri.2", + "1 | Docs [10/15] : bda2f56216a9e62c3bcd44e48aedf3eb957aa1", + "1 | Docs [11/15] : f3bfd9ad446416b4083381d8dc9bd4d7834ac7", + "1 | Docs [12/15] : 04a0c208b4b5733e4f73", + "1 | Docs [13/15] : DocuName_2", + "1 | Docs [14/15] : DocuType", + "1 | Docs [15/15] : 24545887633", + "2 | Asset id : AssetID-12345678", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Staking : Update permissioned validator intended", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | New intended count : 1235", + "0 | Asset : Add documents", + "1 | Docs [1/15] : https://document.uri.1", + "1 | Docs [2/15] : ecc692604b518b205142d32baa5f258edc586b", + "1 | Docs [3/15] : 79727f8c2c081ff4e254d6a8e7a032e095c951", + "1 | Docs [4/15] : c73388fffae139ef753e0c5d2d73bb2be8322e", + "1 | Docs [5/15] : 1829150fcfb8b1", + "1 | Docs [6/15] : DocuName_1", + "1 | Docs [7/15] : DocuType", + "1 | Docs [8/15] : 2254552825", + "1 | Docs [9/15] : https://document.uri.2", + "1 | Docs [10/15] : bda2f56216a9e62c3bcd44e48aedf3eb957aa1", + "1 | Docs [11/15] : f3bfd9ad446416b4083381d8dc9bd4d7834ac7", + "1 | Docs [12/15] : 04a0c208b4b5733e4f73", + "1 | Docs [13/15] : DocuName_2", + "1 | Docs [14/15] : DocuType", + "1 | Docs [15/15] : 24545887633", + "2 | Asset id : AssetID-12345678", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 50283", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 761, - "name": "Staking_Chill_from_governance", - "blob": "112044ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af24aace0f1af55dc40774b400b446e034f0e011aa710cb86c0e1fc0a3d4361d6e0286d75a78e2896e4df2016b573eb1ee9f95bfaa0cda2f08d8c7100486e16dec41e809c3d297a6570d91ebfdb1d02c2f71f4d39f37738d95deea9b638369f652433ab777a25770714f66b3cd37ade6593950efa0b5aa89ea623ef8413436ac06424a1161e39c52248f044fb11f10e595c898da44b1c04f66325b8b55ef9fa0ac5de885795de34f09ea5844086885bc975ae21db1ed7266e7f1e2be36b5c0bcb33be204b422e7496a246a6cb8a273392e686c488744da6ddb90d362d84991d6c202cc836dae498e7e89e690fdebd6dd30e7a72444e80dd81a775872c4c25f22827d029a5dc5dd1a0c5a9f7b9820c3559b01667977db4f19d2f32bb57a8a8ac95713d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Remove_documents", + "blob": "1a0b0400000000417373657449442d3132333435363738d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Chill from governance", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Stash keys [1/18] : 2GJsTN1px9c724zcDSvTF1AFrCYPRw3BVZ9SHx", - "2 | Stash keys [2/18] : YTWPqW9xrV", - "2 | Stash keys [3/18] : 2FViVX37TonX67AyFCnJxEJykRcXyfw4x9TbYH", - "2 | Stash keys [4/18] : TthQMC1vd9", - "2 | Stash keys [5/18] : 2HhA7VHCLU6wz96SLHt1hSYDDixK7zBf8Mg4hV", - "2 | Stash keys [6/18] : VBaVb8fWrK", - "2 | Stash keys [7/18] : 2DmuP4Lphsbxw3nX4SgFGDnv24Az6cLvvZuTmZ", - "2 | Stash keys [8/18] : AH9PJJpjnu", - "2 | Stash keys [9/18] : 2E82ovE9BadujB6rM46yfuj9xJHroUjJCnaAz9", - "2 | Stash keys [10/18] : VeVnFvE1ez", - "2 | Stash keys [11/18] : 2Hhnrwumdh2J4Nic3tMN9czqZFQNa2aPUHaV4j", - "2 | Stash keys [12/18] : Br4fgVSt7K", - "2 | Stash keys [13/18] : 2HZGKcxZha9usiAZpPU9WEkWgT7ptUsBVRP8DW", - "2 | Stash keys [14/18] : BKxAMMUZ9U", - "2 | Stash keys [15/18] : 2H54uwJb7GVawibjrjpNikak4d8NThjkqT7U59", - "2 | Stash keys [16/18] : hWq8o5tHZY", - "2 | Stash keys [17/18] : 2CWL48VapnasNqqLE7zbjoB92xASvVKViNrXwM", - "2 | Stash keys [18/18] : dyGSCmDazj", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Asset : Remove documents", + "1 | Docs id : 0", + "2 | Asset id : AssetID-12345678", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Staking : Chill from governance", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Stash keys [1/18] : 2GJsTN1px9c724zcDSvTF1AFrCYPRw3BVZ9SHx", - "2 | Stash keys [2/18] : YTWPqW9xrV", - "2 | Stash keys [3/18] : 2FViVX37TonX67AyFCnJxEJykRcXyfw4x9TbYH", - "2 | Stash keys [4/18] : TthQMC1vd9", - "2 | Stash keys [5/18] : 2HhA7VHCLU6wz96SLHt1hSYDDixK7zBf8Mg4hV", - "2 | Stash keys [6/18] : VBaVb8fWrK", - "2 | Stash keys [7/18] : 2DmuP4Lphsbxw3nX4SgFGDnv24Az6cLvvZuTmZ", - "2 | Stash keys [8/18] : AH9PJJpjnu", - "2 | Stash keys [9/18] : 2E82ovE9BadujB6rM46yfuj9xJHroUjJCnaAz9", - "2 | Stash keys [10/18] : VeVnFvE1ez", - "2 | Stash keys [11/18] : 2Hhnrwumdh2J4Nic3tMN9czqZFQNa2aPUHaV4j", - "2 | Stash keys [12/18] : Br4fgVSt7K", - "2 | Stash keys [13/18] : 2HZGKcxZha9usiAZpPU9WEkWgT7ptUsBVRP8DW", - "2 | Stash keys [14/18] : BKxAMMUZ9U", - "2 | Stash keys [15/18] : 2H54uwJb7GVawibjrjpNikak4d8NThjkqT7U59", - "2 | Stash keys [16/18] : hWq8o5tHZY", - "2 | Stash keys [17/18] : 2CWL48VapnasNqqLE7zbjoB92xASvVKViNrXwM", - "2 | Stash keys [18/18] : dyGSCmDazj", + "0 | Asset : Remove documents", + "1 | Docs id : 0", + "2 | Asset id : AssetID-12345678", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 1", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 762, - "name": "Staking_Chill_from_governance", - "blob": "112044ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af245a83c5f5eb8fe058647fd967c9e0b8912ef43a3b54f2d5797b734bd1303ea525d4eabdf738980035141be70c36dadb2fd793dc784a34d69662c8fd76b8b6b571ce62f5d9f0f0a21fd82bf6fd14a2e0e2792a32d0c1a0def593f2ba636e506932a4a3b22576feb6fdd412bfcd2c23eaada547124a5a31c25c8fa6c7cccf49af79aa51db374df134ae2a8149945ad4c40b5477c8f1e5539c114acc5d2a172b3c4eace7f73dff3b4c882c4d9c9f9c14a08a8b735765ec362e97552b3d1f54615212be449c27ee1f68348105362b2ddae1084d29a4a6ad44347569ed55c1edafb32e32b0724069e8bd803526896d122c43594b3f25ec18733ce4a6cd04fedf58040646b630a95c22e0ee1105f41d77ba2919fefe28153ee392d1491b9e312b56fe1fd5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Remove_documents", + "blob": "1a0b00417373657449442d3132333435363738d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Chill from governance", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Stash keys [1/18] : 2EVbZGKShTaeRX7pxiavwnuLX7zZANQnniQNtN", - "2 | Stash keys [2/18] : CHfBVYgP6H", - "2 | Stash keys [3/18] : 2HG5zCzvfdep2WQoPbouCeMn8UsX39PgzpwccM", - "2 | Stash keys [4/18] : LufQ1PRRMz", - "2 | Stash keys [5/18] : 2H7XN5aB2hcYQyXJaszmP5pHN8NTziaUtB9MeQ", - "2 | Stash keys [6/18] : u4tytTp3cd", - "2 | Stash keys [7/18] : 2GAnaoLMWDBkENwBBhydq6iY12zn9yfwVbULCJ", - "2 | Stash keys [8/18] : NYpnCfpVpX", - "2 | Stash keys [9/18] : 2GJEZQBjorsidfZS6FssizrgP5SSbzGexa7mTL", - "2 | Stash keys [10/18] : k4fTTwgeix", - "2 | Stash keys [11/18] : 2GMdFHGRo9t5CUWKKf4LUyw6oSjpayMUn6HBsE", - "2 | Stash keys [12/18] : YEq5uBgrjF", - "2 | Stash keys [13/18] : 2GkPaibFMWxrj3Yu8D4pDWi87ctmKN1n1y7gZU", - "2 | Stash keys [14/18] : vhUpFEzid8", - "2 | Stash keys [15/18] : 2DbNusSYCRpCWG3ku4Nj7gUo57Vb1Kdi2gFzSD", - "2 | Stash keys [16/18] : b8Tfe32shh", - "2 | Stash keys [17/18] : 2E3daNzH8jxwdCM66BgSrmxiYjZh5kCHEd59UM", - "2 | Stash keys [18/18] : kK11S3YT7H", - "3 | Tip : POLYX 55.555555" + "0 | Asset : Remove documents", + "1 | Docs id : ", + "2 | Asset id : AssetID-12345678", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Staking : Chill from governance", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Stash keys [1/18] : 2EVbZGKShTaeRX7pxiavwnuLX7zZANQnniQNtN", - "2 | Stash keys [2/18] : CHfBVYgP6H", - "2 | Stash keys [3/18] : 2HG5zCzvfdep2WQoPbouCeMn8UsX39PgzpwccM", - "2 | Stash keys [4/18] : LufQ1PRRMz", - "2 | Stash keys [5/18] : 2H7XN5aB2hcYQyXJaszmP5pHN8NTziaUtB9MeQ", - "2 | Stash keys [6/18] : u4tytTp3cd", - "2 | Stash keys [7/18] : 2GAnaoLMWDBkENwBBhydq6iY12zn9yfwVbULCJ", - "2 | Stash keys [8/18] : NYpnCfpVpX", - "2 | Stash keys [9/18] : 2GJEZQBjorsidfZS6FssizrgP5SSbzGexa7mTL", - "2 | Stash keys [10/18] : k4fTTwgeix", - "2 | Stash keys [11/18] : 2GMdFHGRo9t5CUWKKf4LUyw6oSjpayMUn6HBsE", - "2 | Stash keys [12/18] : YEq5uBgrjF", - "2 | Stash keys [13/18] : 2GkPaibFMWxrj3Yu8D4pDWi87ctmKN1n1y7gZU", - "2 | Stash keys [14/18] : vhUpFEzid8", - "2 | Stash keys [15/18] : 2DbNusSYCRpCWG3ku4Nj7gUo57Vb1Kdi2gFzSD", - "2 | Stash keys [16/18] : b8Tfe32shh", - "2 | Stash keys [17/18] : 2E3daNzH8jxwdCM66BgSrmxiYjZh5kCHEd59UM", - "2 | Stash keys [18/18] : kK11S3YT7H", + "0 | Asset : Remove documents", + "1 | Docs id : ", + "2 | Asset id : AssetID-12345678", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 100", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 763, - "name": "Staking_Chill_from_governance", - "blob": "112044ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af14902dd1f008c2e472c447fffee377563eed940cc79e96f3be4571dc93143ab8203a47acef8333aec26e75d7b540e14763d988cc2099c8a4d53455503d72619775c2c044954daa239a417fd6d9116c04ef3746896d315a89f8593f5bb34564d36f163a4fda6ecf5064f89b10533959fb14b1d47821a38b76e7f5cb637ebd4136730ad4c11f47ba1e4e17ae21027b2de9170e3a5e98fe01896d57398a9961f04900d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Remove_documents", + "blob": "1a0b00417373657449442d3132333435363738d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Chill from governance", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Stash keys [1/10] : 2FhxcJNoWm7dxnynVtezdpLBctNVbb5F3W9aA4", - "2 | Stash keys [2/10] : vjYSz3qT9t", - "2 | Stash keys [3/10] : 2DmLAvwAu3XMBnf9DQPGGoU9VkRkugFacJaZAv", - "2 | Stash keys [4/10] : 2pcKyNmzv7", - "2 | Stash keys [5/10] : 2GrGWQMady9kZFpcNHuXDBFp9ck6n316q2VX1A", - "2 | Stash keys [6/10] : BzVY4BPEe1", - "2 | Stash keys [7/10] : 2Cx4UhS6b39ZfRceuuHTJeWhiQM6512VrYwXQp", - "2 | Stash keys [8/10] : wmRknwQokt", - "2 | Stash keys [9/10] : 2Ch7nMMZpaZJ4fqcJLAWzm9WCSz5uPMAAhmUjx", - "2 | Stash keys [10/10] : Saz1LEMrjg", - "3 | Tip : POLYX 0.000987" + "0 | Asset : Remove documents", + "1 | Docs id : ", + "2 | Asset id : AssetID-12345678", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Staking : Chill from governance", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Stash keys [1/10] : 2FhxcJNoWm7dxnynVtezdpLBctNVbb5F3W9aA4", - "2 | Stash keys [2/10] : vjYSz3qT9t", - "2 | Stash keys [3/10] : 2DmLAvwAu3XMBnf9DQPGGoU9VkRkugFacJaZAv", - "2 | Stash keys [4/10] : 2pcKyNmzv7", - "2 | Stash keys [5/10] : 2GrGWQMady9kZFpcNHuXDBFp9ck6n316q2VX1A", - "2 | Stash keys [6/10] : BzVY4BPEe1", - "2 | Stash keys [7/10] : 2Cx4UhS6b39ZfRceuuHTJeWhiQM6512VrYwXQp", - "2 | Stash keys [8/10] : wmRknwQokt", - "2 | Stash keys [9/10] : 2Ch7nMMZpaZJ4fqcJLAWzm9WCSz5uPMAAhmUjx", - "2 | Stash keys [10/10] : Saz1LEMrjg", + "0 | Asset : Remove documents", + "1 | Docs id : ", + "2 | Asset id : AssetID-12345678", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 2339", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 764, - "name": "Staking_Chill_from_governance", - "blob": "112044ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af24aace0f1af55dc40774b400b446e034f0e011aa710cb86c0e1fc0a3d4361d6e0286d75a78e2896e4df2016b573eb1ee9f95bfaa0cda2f08d8c7100486e16dec41e809c3d297a6570d91ebfdb1d02c2f71f4d39f37738d95deea9b638369f652433ab777a25770714f66b3cd37ade6593950efa0b5aa89ea623ef8413436ac06424a1161e39c52248f044fb11f10e595c898da44b1c04f66325b8b55ef9fa0ac5de885795de34f09ea5844086885bc975ae21db1ed7266e7f1e2be36b5c0bcb33be204b422e7496a246a6cb8a273392e686c488744da6ddb90d362d84991d6c202cc836dae498e7e89e690fdebd6dd30e7a72444e80dd81a775872c4c25f22827d029a5dc5dd1a0c5a9f7b9820c3559b01667977db4f19d2f32bb57a8a8ac95713d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Remove_documents", + "blob": "1a0b10672f0000406903000f000000bd3c1221417373657449442d3132333435363738d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Chill from governance", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Stash keys [1/18] : 2GJsTN1px9c724zcDSvTF1AFrCYPRw3BVZ9SHx", - "2 | Stash keys [2/18] : YTWPqW9xrV", - "2 | Stash keys [3/18] : 2FViVX37TonX67AyFCnJxEJykRcXyfw4x9TbYH", - "2 | Stash keys [4/18] : TthQMC1vd9", - "2 | Stash keys [5/18] : 2HhA7VHCLU6wz96SLHt1hSYDDixK7zBf8Mg4hV", - "2 | Stash keys [6/18] : VBaVb8fWrK", - "2 | Stash keys [7/18] : 2DmuP4Lphsbxw3nX4SgFGDnv24Az6cLvvZuTmZ", - "2 | Stash keys [8/18] : AH9PJJpjnu", - "2 | Stash keys [9/18] : 2E82ovE9BadujB6rM46yfuj9xJHroUjJCnaAz9", - "2 | Stash keys [10/18] : VeVnFvE1ez", - "2 | Stash keys [11/18] : 2Hhnrwumdh2J4Nic3tMN9czqZFQNa2aPUHaV4j", - "2 | Stash keys [12/18] : Br4fgVSt7K", - "2 | Stash keys [13/18] : 2HZGKcxZha9usiAZpPU9WEkWgT7ptUsBVRP8DW", - "2 | Stash keys [14/18] : BKxAMMUZ9U", - "2 | Stash keys [15/18] : 2H54uwJb7GVawibjrjpNikak4d8NThjkqT7U59", - "2 | Stash keys [16/18] : hWq8o5tHZY", - "2 | Stash keys [17/18] : 2CWL48VapnasNqqLE7zbjoB92xASvVKViNrXwM", - "2 | Stash keys [18/18] : dyGSCmDazj", - "3 | Tip : POLYX 0.000987" + "0 | Asset : Remove documents", + "1 | Docs id [1/4] : 12135", + "1 | Docs id [2/4] : 223552", + "1 | Docs id [3/4] : 15", + "1 | Docs id [4/4] : 554843325", + "2 | Asset id : AssetID-12345678", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Staking : Chill from governance", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Stash keys [1/18] : 2GJsTN1px9c724zcDSvTF1AFrCYPRw3BVZ9SHx", - "2 | Stash keys [2/18] : YTWPqW9xrV", - "2 | Stash keys [3/18] : 2FViVX37TonX67AyFCnJxEJykRcXyfw4x9TbYH", - "2 | Stash keys [4/18] : TthQMC1vd9", - "2 | Stash keys [5/18] : 2HhA7VHCLU6wz96SLHt1hSYDDixK7zBf8Mg4hV", - "2 | Stash keys [6/18] : VBaVb8fWrK", - "2 | Stash keys [7/18] : 2DmuP4Lphsbxw3nX4SgFGDnv24Az6cLvvZuTmZ", - "2 | Stash keys [8/18] : AH9PJJpjnu", - "2 | Stash keys [9/18] : 2E82ovE9BadujB6rM46yfuj9xJHroUjJCnaAz9", - "2 | Stash keys [10/18] : VeVnFvE1ez", - "2 | Stash keys [11/18] : 2Hhnrwumdh2J4Nic3tMN9czqZFQNa2aPUHaV4j", - "2 | Stash keys [12/18] : Br4fgVSt7K", - "2 | Stash keys [13/18] : 2HZGKcxZha9usiAZpPU9WEkWgT7ptUsBVRP8DW", - "2 | Stash keys [14/18] : BKxAMMUZ9U", - "2 | Stash keys [15/18] : 2H54uwJb7GVawibjrjpNikak4d8NThjkqT7U59", - "2 | Stash keys [16/18] : hWq8o5tHZY", - "2 | Stash keys [17/18] : 2CWL48VapnasNqqLE7zbjoB92xASvVKViNrXwM", - "2 | Stash keys [18/18] : dyGSCmDazj", + "0 | Asset : Remove documents", + "1 | Docs id [1/4] : 12135", + "1 | Docs id [2/4] : 223552", + "1 | Docs id [3/4] : 15", + "1 | Docs id [4/4] : 554843325", + "2 | Asset id : AssetID-12345678", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 0", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 765, - "name": "Staking_Chill_from_governance", - "blob": "112044ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af04ba927b84a939b6931edf46698f11bb9c9ecd1c765b70c79a3328f87a2add0a29d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Remove_documents", + "blob": "1a0b0400000000417373657449442d3132333435363738d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Staking : Chill from governance", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Stash keys [1/2] : 2GfYXKZC99GQUhEaCHbAAybZHijLN5tF2hBRRB", - "2 | Stash keys [2/2] : ew8LFC5gMt", - "3 | Tip : POLYX 1234.56789" + "0 | Asset : Remove documents", + "1 | Docs id : 0", + "2 | Asset id : AssetID-12345678" ], "output_expert": [ - "0 | Staking : Chill from governance", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Stash keys [1/2] : 2GfYXKZC99GQUhEaCHbAAybZHijLN5tF2hBRRB", - "2 | Stash keys [2/2] : ew8LFC5gMt", + "0 | Asset : Remove documents", + "1 | Docs id : 0", + "2 | Asset id : AssetID-12345678", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 50283", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 766, - "name": "Session_Set_keys", - "blob": "13006bdb2ec7ce5010ab64bb944654e6a10a43db985ec2698ad885cfb76f3fd6bfcb630ad14e84b68a26b63c1be1d424a1bc9e2964fb1d2111eefc1431ae2df19f6cdf2eb7cece28e6bb20615e29940cc402ee5d75d263f598d1999aaec66afab7a7d3e3935fed0edd43adbf4f26305acbabb2fbbf2bb03594c9f35beb2a21535ffd01016d0908114ac84677d153d7368feda69cef573eb81308a080f038a74d25a93fef148316d9d6f23f39d32353dccc05e3e15a573a8e62a74bbe1366bf9014cce144d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Set_funding_round", + "blob": "1a0c417373657449442d31323334353637382c526f756e644e616d655f31d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Session : Set keys", - "1 | Keys [1/7] : 6bdb2ec7ce5010ab64bb944654e6a10a43db98", - "1 | Keys [2/7] : 5ec2698ad885cfb76f3fd6bfcb630ad14e84b6", - "1 | Keys [3/7] : 8a26b63c1be1d424a1bc9e2964fb1d2111eefc", - "1 | Keys [4/7] : 1431ae2df19f6cdf2eb7cece28e6bb20615e29", - "1 | Keys [5/7] : 940cc402ee5d75d263f598d1999aaec66afab7", - "1 | Keys [6/7] : a7d3e3935fed0edd43adbf4f26305acbabb2fb", - "1 | Keys [7/7] : bf2bb03594c9f35beb2a21535ffd", - "2 | Proof [1/4] : 6d0908114ac84677d153d7368feda69cef573e", - "2 | Proof [2/4] : b81308a080f038a74d25a93fef148316d9d6f2", - "2 | Proof [3/4] : 3f39d32353dccc05e3e15a573a8e62a74bbe13", - "2 | Proof [4/4] : 66bf9014cce144" + "0 | Asset : Set funding round", + "1 | Asset id : AssetID-12345678", + "2 | Founding round name : RoundName_1" ], "output_expert": [ - "0 | Session : Set keys", - "1 | Keys [1/7] : 6bdb2ec7ce5010ab64bb944654e6a10a43db98", - "1 | Keys [2/7] : 5ec2698ad885cfb76f3fd6bfcb630ad14e84b6", - "1 | Keys [3/7] : 8a26b63c1be1d424a1bc9e2964fb1d2111eefc", - "1 | Keys [4/7] : 1431ae2df19f6cdf2eb7cece28e6bb20615e29", - "1 | Keys [5/7] : 940cc402ee5d75d263f598d1999aaec66afab7", - "1 | Keys [6/7] : a7d3e3935fed0edd43adbf4f26305acbabb2fb", - "1 | Keys [7/7] : bf2bb03594c9f35beb2a21535ffd", - "2 | Proof [1/4] : 6d0908114ac84677d153d7368feda69cef573e", - "2 | Proof [2/4] : b81308a080f038a74d25a93fef148316d9d6f2", - "2 | Proof [3/4] : 3f39d32353dccc05e3e15a573a8e62a74bbe13", - "2 | Proof [4/4] : 66bf9014cce144", + "0 | Asset : Set funding round", + "1 | Asset id : AssetID-12345678", + "2 | Founding round name : RoundName_1", "3 | Chain : Polymesh", - "4 | Nonce : 50283", + "4 | Nonce : 1", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 767, - "name": "Session_Set_keys", - "blob": "13001ba22fc599ef00bd6bc192dd239e20384085cf0ed25c038701d48c4ff195162cada1ef98706876afd24c474b2c37872dd9d38d2f00f75b17fc482d6484e24dcfd8b5605749d752e6abcaf0d719a4c4f9d46532ac5198e20d4994f5ab9ddeaf0d281ade46a894769e4474cf4dd0bf8aed7e2d90ef83b73e27e82b7034b4e3c12401016d0908114ac84677d153d7368feda69cef573eb81308a080f038a74d25a93fef148316d9d6f23f39d32353dccc05e3e15a573a8e62a74bbe1366bf9014cce144d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Set_funding_round", + "blob": "1a0c417373657449442d31323334353637382c526f756e644e616d655f32d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Session : Set keys", - "1 | Keys [1/7] : 1ba22fc599ef00bd6bc192dd239e20384085cf", - "1 | Keys [2/7] : 0ed25c038701d48c4ff195162cada1ef987068", - "1 | Keys [3/7] : 76afd24c474b2c37872dd9d38d2f00f75b17fc", - "1 | Keys [4/7] : 482d6484e24dcfd8b5605749d752e6abcaf0d7", - "1 | Keys [5/7] : 19a4c4f9d46532ac5198e20d4994f5ab9ddeaf", - "1 | Keys [6/7] : 0d281ade46a894769e4474cf4dd0bf8aed7e2d", - "1 | Keys [7/7] : 90ef83b73e27e82b7034b4e3c124", - "2 | Proof [1/4] : 6d0908114ac84677d153d7368feda69cef573e", - "2 | Proof [2/4] : b81308a080f038a74d25a93fef148316d9d6f2", - "2 | Proof [3/4] : 3f39d32353dccc05e3e15a573a8e62a74bbe13", - "2 | Proof [4/4] : 66bf9014cce144", - "3 | Tip : POLYX 0.000987" + "0 | Asset : Set funding round", + "1 | Asset id : AssetID-12345678", + "2 | Founding round name : RoundName_2", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Session : Set keys", - "1 | Keys [1/7] : 1ba22fc599ef00bd6bc192dd239e20384085cf", - "1 | Keys [2/7] : 0ed25c038701d48c4ff195162cada1ef987068", - "1 | Keys [3/7] : 76afd24c474b2c37872dd9d38d2f00f75b17fc", - "1 | Keys [4/7] : 482d6484e24dcfd8b5605749d752e6abcaf0d7", - "1 | Keys [5/7] : 19a4c4f9d46532ac5198e20d4994f5ab9ddeaf", - "1 | Keys [6/7] : 0d281ade46a894769e4474cf4dd0bf8aed7e2d", - "1 | Keys [7/7] : 90ef83b73e27e82b7034b4e3c124", - "2 | Proof [1/4] : 6d0908114ac84677d153d7368feda69cef573e", - "2 | Proof [2/4] : b81308a080f038a74d25a93fef148316d9d6f2", - "2 | Proof [3/4] : 3f39d32353dccc05e3e15a573a8e62a74bbe13", - "2 | Proof [4/4] : 66bf9014cce144", + "0 | Asset : Set funding round", + "1 | Asset id : AssetID-12345678", + "2 | Founding round name : RoundName_2", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 50283", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 768, - "name": "Session_Set_keys", - "blob": "13000129fd8ebfffaa99974ccae0ccaac4f3f49c27bf3f3e746f63bf5da5d15bfa10fb67d4866701e43149aeaee9f84da65180fe5afb11b7933fcdd0dbdb27f3a4ff58f88c689043bd9db76d53a20167ebda0ef293e502d328e4b879328c378d03fbb1ccc846dfdb5a2de06ef98c1710047c53ac3657c55edb575c5920f687dbfec50101a6d7930112b16e3b8649dcfe3a9c66cc2c34847d0dd05ad9f7d105ae3adad3d9e84cc085526559dea4a34add6b321ea04abd79fc38aad51749d93ec0031c63c8d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Set_funding_round", + "blob": "1a0c417373657449442d31323334353637382c526f756e644e616d655f32d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Session : Set keys", - "1 | Keys [1/7] : 0129fd8ebfffaa99974ccae0ccaac4f3f49c27", - "1 | Keys [2/7] : bf3f3e746f63bf5da5d15bfa10fb67d4866701", - "1 | Keys [3/7] : e43149aeaee9f84da65180fe5afb11b7933fcd", - "1 | Keys [4/7] : d0dbdb27f3a4ff58f88c689043bd9db76d53a2", - "1 | Keys [5/7] : 0167ebda0ef293e502d328e4b879328c378d03", - "1 | Keys [6/7] : fbb1ccc846dfdb5a2de06ef98c1710047c53ac", - "1 | Keys [7/7] : 3657c55edb575c5920f687dbfec5", - "2 | Proof [1/4] : a6d7930112b16e3b8649dcfe3a9c66cc2c3484", - "2 | Proof [2/4] : 7d0dd05ad9f7d105ae3adad3d9e84cc0855265", - "2 | Proof [3/4] : 59dea4a34add6b321ea04abd79fc38aad51749", - "2 | Proof [4/4] : d93ec0031c63c8" + "0 | Asset : Set funding round", + "1 | Asset id : AssetID-12345678", + "2 | Founding round name : RoundName_2", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Session : Set keys", - "1 | Keys [1/7] : 0129fd8ebfffaa99974ccae0ccaac4f3f49c27", - "1 | Keys [2/7] : bf3f3e746f63bf5da5d15bfa10fb67d4866701", - "1 | Keys [3/7] : e43149aeaee9f84da65180fe5afb11b7933fcd", - "1 | Keys [4/7] : d0dbdb27f3a4ff58f88c689043bd9db76d53a2", - "1 | Keys [5/7] : 0167ebda0ef293e502d328e4b879328c378d03", - "1 | Keys [6/7] : fbb1ccc846dfdb5a2de06ef98c1710047c53ac", - "1 | Keys [7/7] : 3657c55edb575c5920f687dbfec5", - "2 | Proof [1/4] : a6d7930112b16e3b8649dcfe3a9c66cc2c3484", - "2 | Proof [2/4] : 7d0dd05ad9f7d105ae3adad3d9e84cc0855265", - "2 | Proof [3/4] : 59dea4a34add6b321ea04abd79fc38aad51749", - "2 | Proof [4/4] : d93ec0031c63c8", + "0 | Asset : Set funding round", + "1 | Asset id : AssetID-12345678", + "2 | Founding round name : RoundName_2", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 1", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 769, - "name": "Session_Set_keys", - "blob": "13006bdb2ec7ce5010ab64bb944654e6a10a43db985ec2698ad885cfb76f3fd6bfcb630ad14e84b68a26b63c1be1d424a1bc9e2964fb1d2111eefc1431ae2df19f6cdf2eb7cece28e6bb20615e29940cc402ee5d75d263f598d1999aaec66afab7a7d3e3935fed0edd43adbf4f26305acbabb2fbbf2bb03594c9f35beb2a21535ffd80aa6a3cf21b1789d31250ee845cd2569fd46d8e0eaa6aa1ae8ce3429cbe2e02f1d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Set_funding_round", + "blob": "1a0c417373657449442d31323334353637382c526f756e644e616d655f32d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Session : Set keys", - "1 | Keys [1/7] : 6bdb2ec7ce5010ab64bb944654e6a10a43db98", - "1 | Keys [2/7] : 5ec2698ad885cfb76f3fd6bfcb630ad14e84b6", - "1 | Keys [3/7] : 8a26b63c1be1d424a1bc9e2964fb1d2111eefc", - "1 | Keys [4/7] : 1431ae2df19f6cdf2eb7cece28e6bb20615e29", - "1 | Keys [5/7] : 940cc402ee5d75d263f598d1999aaec66afab7", - "1 | Keys [6/7] : a7d3e3935fed0edd43adbf4f26305acbabb2fb", - "1 | Keys [7/7] : bf2bb03594c9f35beb2a21535ffd", - "2 | Proof [1/2] : aa6a3cf21b1789d31250ee845cd2569fd46d8e", - "2 | Proof [2/2] : 0eaa6aa1ae8ce3429cbe2e02f1", - "3 | Tip : POLYX 1234.56789" + "0 | Asset : Set funding round", + "1 | Asset id : AssetID-12345678", + "2 | Founding round name : RoundName_2", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Session : Set keys", - "1 | Keys [1/7] : 6bdb2ec7ce5010ab64bb944654e6a10a43db98", - "1 | Keys [2/7] : 5ec2698ad885cfb76f3fd6bfcb630ad14e84b6", - "1 | Keys [3/7] : 8a26b63c1be1d424a1bc9e2964fb1d2111eefc", - "1 | Keys [4/7] : 1431ae2df19f6cdf2eb7cece28e6bb20615e29", - "1 | Keys [5/7] : 940cc402ee5d75d263f598d1999aaec66afab7", - "1 | Keys [6/7] : a7d3e3935fed0edd43adbf4f26305acbabb2fb", - "1 | Keys [7/7] : bf2bb03594c9f35beb2a21535ffd", - "2 | Proof [1/2] : aa6a3cf21b1789d31250ee845cd2569fd46d8e", - "2 | Proof [2/2] : 0eaa6aa1ae8ce3429cbe2e02f1", + "0 | Asset : Set funding round", + "1 | Asset id : AssetID-12345678", + "2 | Founding round name : RoundName_2", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 2339", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 770, - "name": "Session_Set_keys", - "blob": "13006bdb2ec7ce5010ab64bb944654e6a10a43db985ec2698ad885cfb76f3fd6bfcb630ad14e84b68a26b63c1be1d424a1bc9e2964fb1d2111eefc1431ae2df19f6cdf2eb7cece28e6bb20615e29940cc402ee5d75d263f598d1999aaec66afab7a7d3e3935fed0edd43adbf4f26305acbabb2fbbf2bb03594c9f35beb2a21535ffd01013a83a7ff5037a23c0e43affbcc635966aa16484bf4aad5570831c098d7eaa04956dffa80bb93e6f18a1f496c3102ad749a5bd8d8be953c82c1e75595318b35bcd503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Set_funding_round", + "blob": "1a0c417373657449442d31323334353637382c526f756e644e616d655f31d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Session : Set keys", - "1 | Keys [1/7] : 6bdb2ec7ce5010ab64bb944654e6a10a43db98", - "1 | Keys [2/7] : 5ec2698ad885cfb76f3fd6bfcb630ad14e84b6", - "1 | Keys [3/7] : 8a26b63c1be1d424a1bc9e2964fb1d2111eefc", - "1 | Keys [4/7] : 1431ae2df19f6cdf2eb7cece28e6bb20615e29", - "1 | Keys [5/7] : 940cc402ee5d75d263f598d1999aaec66afab7", - "1 | Keys [6/7] : a7d3e3935fed0edd43adbf4f26305acbabb2fb", - "1 | Keys [7/7] : bf2bb03594c9f35beb2a21535ffd", - "2 | Proof [1/4] : 3a83a7ff5037a23c0e43affbcc635966aa1648", - "2 | Proof [2/4] : 4bf4aad5570831c098d7eaa04956dffa80bb93", - "2 | Proof [3/4] : e6f18a1f496c3102ad749a5bd8d8be953c82c1", - "2 | Proof [4/4] : e75595318b35bc" + "0 | Asset : Set funding round", + "1 | Asset id : AssetID-12345678", + "2 | Founding round name : RoundName_1", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Session : Set keys", - "1 | Keys [1/7] : 6bdb2ec7ce5010ab64bb944654e6a10a43db98", - "1 | Keys [2/7] : 5ec2698ad885cfb76f3fd6bfcb630ad14e84b6", - "1 | Keys [3/7] : 8a26b63c1be1d424a1bc9e2964fb1d2111eefc", - "1 | Keys [4/7] : 1431ae2df19f6cdf2eb7cece28e6bb20615e29", - "1 | Keys [5/7] : 940cc402ee5d75d263f598d1999aaec66afab7", - "1 | Keys [6/7] : a7d3e3935fed0edd43adbf4f26305acbabb2fb", - "1 | Keys [7/7] : bf2bb03594c9f35beb2a21535ffd", - "2 | Proof [1/4] : 3a83a7ff5037a23c0e43affbcc635966aa1648", - "2 | Proof [2/4] : 4bf4aad5570831c098d7eaa04956dffa80bb93", - "2 | Proof [3/4] : e6f18a1f496c3102ad749a5bd8d8be953c82c1", - "2 | Proof [4/4] : e75595318b35bc", + "0 | Asset : Set funding round", + "1 | Asset id : AssetID-12345678", + "2 | Founding round name : RoundName_1", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 1", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 771, - "name": "Session_Purge_keys", - "blob": "1301d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Update_identifiers", + "blob": "1a0d417373657449442d31323334353637381000303337383333313030013033373833333130300255533033373833333130303503485755504b52304d504f55384647584254333934d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Session : Purge keys", - "1 | Tip : POLYX 1234.56789" + "0 | Asset : Update identifiers", + "1 | Asset id : AssetID-12345678", + "2 | Asset identifiers [1/4] : 037833100", + "2 | Asset identifiers [2/4] : 037833100", + "2 | Asset identifiers [3/4] : US0378331005", + "2 | Asset identifiers [4/4] : HWUPKR0MPOU8FGXBT394", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Session : Purge keys", - "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Tip : POLYX 1234.56789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Update identifiers", + "1 | Asset id : AssetID-12345678", + "2 | Asset identifiers [1/4] : 037833100", + "2 | Asset identifiers [2/4] : 037833100", + "2 | Asset identifiers [3/4] : US0378331005", + "2 | Asset identifiers [4/4] : HWUPKR0MPOU8FGXBT394", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 772, - "name": "Session_Purge_keys", - "blob": "1301d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Update_identifiers", + "blob": "1a0d417373657449442d313233343536373800d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Session : Purge keys", - "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "1 | Tip [2/2] : 3.456789" + "0 | Asset : Update identifiers", + "1 | Asset id : AssetID-12345678", + "2 | Asset identifiers : ", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Session : Purge keys", - "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Update identifiers", + "1 | Asset id : AssetID-12345678", + "2 | Asset identifiers : ", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 773, - "name": "Session_Purge_keys", - "blob": "1301d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Update_identifiers", + "blob": "1a0d417373657449442d313233343536373800d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Session : Purge keys", - "1 | Tip : POLYX 1234.56789" + "0 | Asset : Update identifiers", + "1 | Asset id : AssetID-12345678", + "2 | Asset identifiers : " ], "output_expert": [ - "0 | Session : Purge keys", - "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip : POLYX 1234.56789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Update identifiers", + "1 | Asset id : AssetID-12345678", + "2 | Asset identifiers : ", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 774, - "name": "Session_Purge_keys", - "blob": "1301d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Update_identifiers", + "blob": "1a0d417373657449442d313233343536373800d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Session : Purge keys" + "0 | Asset : Update identifiers", + "1 | Asset id : AssetID-12345678", + "2 | Asset identifiers : ", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Session : Purge keys", - "1 | Chain : Polymesh", - "2 | Nonce : 100", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "5 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] + "0 | Asset : Update identifiers", + "1 | Asset id : AssetID-12345678", + "2 | Asset identifiers : ", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] }, { "index": 775, - "name": "Session_Purge_keys", - "blob": "1301d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Update_identifiers", + "blob": "1a0d417373657449442d313233343536373800d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Session : Purge keys", - "1 | Tip : POLYX 55.555555" + "0 | Asset : Update identifiers", + "1 | Asset id : AssetID-12345678", + "2 | Asset identifiers : ", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Session : Purge keys", - "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Tip : POLYX 55.555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Update identifiers", + "1 | Asset id : AssetID-12345678", + "2 | Asset identifiers : ", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 776, - "name": "Asset_Register_ticker", - "blob": "1a005449434b45522d3132333435d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Controller_transfer", + "blob": "1a0e417373657449442d31323334353637383ce97b7ceb2af717b80bbcaa9326ce8332e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Register ticker", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 55.555555" + "0 | Asset : Controller transfer", + "1 | Asset id : AssetID-12345678", + "2 | Amount [1/2] : 175199263031626767267885072656780.4869", + "2 | Amount [2/2] : 72", + "3 | From portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "3 | From portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "3 | From portfolio [3/3] : 123456", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Asset : Register ticker", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Controller transfer", + "1 | Asset id : AssetID-12345678", + "2 | Amount [1/2] : 175199263031626767267885072656780.4869", + "2 | Amount [2/2] : 72", + "3 | From portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "3 | From portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "3 | From portfolio [3/3] : 123456", + "4 | Chain : Polymesh", + "5 | Nonce : 2339", + "6 | Tip : POLYX 5552342.355555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 777, - "name": "Asset_Register_ticker", - "blob": "1a005449434b45522d3132333435d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Controller_transfer", + "blob": "1a0e417373657449442d31323334353637383ce97b7ceb2af717b80bbcaa9326ce8332e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Register ticker", - "1 | Ticker : TICKER-12345" + "0 | Asset : Controller transfer", + "1 | Asset id : AssetID-12345678", + "2 | Amount [1/2] : 175199263031626767267885072656780.4869", + "2 | Amount [2/2] : 72", + "3 | From portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "3 | From portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "3 | From portfolio [3/3] : 123456", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Asset : Register ticker", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Controller transfer", + "1 | Asset id : AssetID-12345678", + "2 | Amount [1/2] : 175199263031626767267885072656780.4869", + "2 | Amount [2/2] : 72", + "3 | From portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "3 | From portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "3 | From portfolio [3/3] : 123456", + "4 | Chain : Polymesh", + "5 | Nonce : 0", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 778, - "name": "Asset_Register_ticker", - "blob": "1a005449434b45522d3132333435d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Controller_transfer", + "blob": "1a0e417373657449442d31323334353637383ce97b7ceb2af717b80bbcaa9326ce8332e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Register ticker", - "1 | Ticker : TICKER-12345", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Asset : Controller transfer", + "1 | Asset id : AssetID-12345678", + "2 | Amount [1/2] : 175199263031626767267885072656780.4869", + "2 | Amount [2/2] : 72", + "3 | From portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "3 | From portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "3 | From portfolio [3/3] : 123456", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Asset : Register ticker", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Controller transfer", + "1 | Asset id : AssetID-12345678", + "2 | Amount [1/2] : 175199263031626767267885072656780.4869", + "2 | Amount [2/2] : 72", + "3 | From portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "3 | From portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "3 | From portfolio [3/3] : 123456", + "4 | Chain : Polymesh", + "5 | Nonce : 0", + "6 | Tip : POLYX 1234.56789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 779, - "name": "Asset_Register_ticker", - "blob": "1a005449434b45522d3132333435d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Controller_transfer", + "blob": "1a0e417373657449442d31323334353637383ce97b7ceb2af717b80bbcaa9326ce8332e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Register ticker", - "1 | Ticker : TICKER-12345" + "0 | Asset : Controller transfer", + "1 | Asset id : AssetID-12345678", + "2 | Amount [1/2] : 175199263031626767267885072656780.4869", + "2 | Amount [2/2] : 72", + "3 | From portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "3 | From portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "3 | From portfolio [3/3] : 123456", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Asset : Register ticker", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Controller transfer", + "1 | Asset id : AssetID-12345678", + "2 | Amount [1/2] : 175199263031626767267885072656780.4869", + "2 | Amount [2/2] : 72", + "3 | From portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "3 | From portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "3 | From portfolio [3/3] : 123456", + "4 | Chain : Polymesh", + "5 | Nonce : 2339", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 780, - "name": "Asset_Register_ticker", - "blob": "1a005449434b45522d3132333435d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Controller_transfer", + "blob": "1a0e417373657449442d31323334353637383ce97b7ceb2af717b80bbcaa9326ce8332e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Register ticker", - "1 | Ticker : TICKER-12345" + "0 | Asset : Controller transfer", + "1 | Asset id : AssetID-12345678", + "2 | Amount [1/2] : 175199263031626767267885072656780.4869", + "2 | Amount [2/2] : 72", + "3 | From portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "3 | From portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "3 | From portfolio [3/3] : 123456", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Asset : Register ticker", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Controller transfer", + "1 | Asset id : AssetID-12345678", + "2 | Amount [1/2] : 175199263031626767267885072656780.4869", + "2 | Amount [2/2] : 72", + "3 | From portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "3 | From portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "3 | From portfolio [3/3] : 123456", + "4 | Chain : Polymesh", + "5 | Nonce : 1", + "6 | Tip : POLYX 0.000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 781, - "name": "Asset_Accept_ticker_transfer", - "blob": "1a010000000000000000d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Register_custom_asset_type", + "blob": "1a0f100e2a0c49d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Accept ticker transfer", - "1 | Auth id : 0" + "0 | Asset : Register custom asset type", + "1 | Ty [1/4] : 14", + "1 | Ty [2/4] : 42", + "1 | Ty [3/4] : 12", + "1 | Ty [4/4] : 73", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Asset : Accept ticker transfer", - "1 | Auth id : 0", + "0 | Asset : Register custom asset type", + "1 | Ty [1/4] : 14", + "1 | Ty [2/4] : 42", + "1 | Ty [3/4] : 12", + "1 | Ty [4/4] : 73", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 782, - "name": "Asset_Accept_ticker_transfer", - "blob": "1a010000000000000000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Register_custom_asset_type", + "blob": "1a0f100e2a0c49d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Accept ticker transfer", - "1 | Auth id : 0" + "0 | Asset : Register custom asset type", + "1 | Ty [1/4] : 14", + "1 | Ty [2/4] : 42", + "1 | Ty [3/4] : 12", + "1 | Ty [4/4] : 73" ], "output_expert": [ - "0 | Asset : Accept ticker transfer", - "1 | Auth id : 0", + "0 | Asset : Register custom asset type", + "1 | Ty [1/4] : 14", + "1 | Ty [2/4] : 42", + "1 | Ty [3/4] : 12", + "1 | Ty [4/4] : 73", "2 | Chain : Polymesh", "3 | Nonce : 2339", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 783, - "name": "Asset_Accept_ticker_transfer", - "blob": "1a012309000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Register_custom_asset_type", + "blob": "1a0f10200b200bd503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Accept ticker transfer", - "1 | Auth id : 2339", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Asset : Register custom asset type", + "1 | Ty [1/4] : 32", + "1 | Ty [2/4] : 11", + "1 | Ty [3/4] : 32", + "1 | Ty [4/4] : 11" ], "output_expert": [ - "0 | Asset : Accept ticker transfer", - "1 | Auth id : 2339", + "0 | Asset : Register custom asset type", + "1 | Ty [1/4] : 32", + "1 | Ty [2/4] : 11", + "1 | Ty [3/4] : 32", + "1 | Ty [4/4] : 11", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 784, - "name": "Asset_Accept_ticker_transfer", - "blob": "1a010000000000000000d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Register_custom_asset_type", + "blob": "1a0f100e2a0c49d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Accept ticker transfer", - "1 | Auth id : 0", - "2 | Tip : POLYX 1234.56789" + "0 | Asset : Register custom asset type", + "1 | Ty [1/4] : 14", + "1 | Ty [2/4] : 42", + "1 | Ty [3/4] : 12", + "1 | Ty [4/4] : 73", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Asset : Accept ticker transfer", - "1 | Auth id : 0", + "0 | Asset : Register custom asset type", + "1 | Ty [1/4] : 14", + "1 | Ty [2/4] : 42", + "1 | Ty [3/4] : 12", + "1 | Ty [4/4] : 73", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 785, - "name": "Asset_Accept_ticker_transfer", - "blob": "1a012309000000000000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Register_custom_asset_type", + "blob": "1a0f100c293435d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Accept ticker transfer", - "1 | Auth id : 2339", - "2 | Tip : POLYX 0.000987" + "0 | Asset : Register custom asset type", + "1 | Ty [1/4] : 12", + "1 | Ty [2/4] : 41", + "1 | Ty [3/4] : 52", + "1 | Ty [4/4] : 53", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Asset : Accept ticker transfer", - "1 | Auth id : 2339", + "0 | Asset : Register custom asset type", + "1 | Ty [1/4] : 12", + "1 | Ty [2/4] : 41", + "1 | Ty [3/4] : 52", + "1 | Ty [4/4] : 53", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 100", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 786, - "name": "Asset_Accept_asset_ownership_transfer", - "blob": "1a026bc4000000000000d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Create_asset_with_custom_type", + "blob": "1a102841737365744e616d653101100d0c132300014846756e64696e675f526f756e645f4e616d65d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Accept asset ownership transfer", - "1 | Auth id : 50283", - "2 | Tip : POLYX 0.000987" + "0 | Asset : Create asset with custom type", + "1 | Asset name : AssetName1", + "2 | Divisible : True", + "3 | Custom asset type [1/4] : 13", + "3 | Custom asset type [2/4] : 12", + "3 | Custom asset type [3/4] : 19", + "3 | Custom asset type [4/4] : 35", + "4 | Asset identifiers : ", + "5 | Funding round name : Funding_Round_Name", + "6 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Asset : Accept asset ownership transfer", - "1 | Auth id : 50283", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Create asset with custom type", + "1 | Asset name : AssetName1", + "2 | Divisible : True", + "3 | Custom asset type [1/4] : 13", + "3 | Custom asset type [2/4] : 12", + "3 | Custom asset type [3/4] : 19", + "3 | Custom asset type [4/4] : 35", + "4 | Asset identifiers : ", + "5 | Funding round name : Funding_Round_Name", + "6 | Chain : Polymesh", + "7 | Nonce : 50283", + "8 | Tip : POLYX 0.000987", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 787, - "name": "Asset_Accept_asset_ownership_transfer", - "blob": "1a026bc4000000000000d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Create_asset_with_custom_type", + "blob": "1a102841737365744e616d653200100c29343500014846756e64696e675f526f756e645f4e616d65d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Accept asset ownership transfer", - "1 | Auth id : 50283", - "2 | Tip : POLYX 55.555555" + "0 | Asset : Create asset with custom type", + "1 | Asset name : AssetName2", + "2 | Divisible : False", + "3 | Custom asset type [1/4] : 12", + "3 | Custom asset type [2/4] : 41", + "3 | Custom asset type [3/4] : 52", + "3 | Custom asset type [4/4] : 53", + "4 | Asset identifiers : ", + "5 | Funding round name : Funding_Round_Name", + "6 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Asset : Accept asset ownership transfer", - "1 | Auth id : 50283", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Create asset with custom type", + "1 | Asset name : AssetName2", + "2 | Divisible : False", + "3 | Custom asset type [1/4] : 12", + "3 | Custom asset type [2/4] : 41", + "3 | Custom asset type [3/4] : 52", + "3 | Custom asset type [4/4] : 53", + "4 | Asset identifiers : ", + "5 | Funding round name : Funding_Round_Name", + "6 | Chain : Polymesh", + "7 | Nonce : 0", + "8 | Tip : POLYX 55.555555", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 788, - "name": "Asset_Accept_asset_ownership_transfer", - "blob": "1a020100000000000000d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Create_asset_with_custom_type", + "blob": "1a102841737365744e616d65310110200b200b00014846756e64696e675f526f756e645f4e616d65d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Accept asset ownership transfer", - "1 | Auth id : 1", - "2 | Tip : POLYX 5552342.355555" + "0 | Asset : Create asset with custom type", + "1 | Asset name : AssetName1", + "2 | Divisible : True", + "3 | Custom asset type [1/4] : 32", + "3 | Custom asset type [2/4] : 11", + "3 | Custom asset type [3/4] : 32", + "3 | Custom asset type [4/4] : 11", + "4 | Asset identifiers : ", + "5 | Funding round name : Funding_Round_Name", + "6 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Asset : Accept asset ownership transfer", - "1 | Auth id : 1", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Create asset with custom type", + "1 | Asset name : AssetName1", + "2 | Divisible : True", + "3 | Custom asset type [1/4] : 32", + "3 | Custom asset type [2/4] : 11", + "3 | Custom asset type [3/4] : 32", + "3 | Custom asset type [4/4] : 11", + "4 | Asset identifiers : ", + "5 | Funding round name : Funding_Round_Name", + "6 | Chain : Polymesh", + "7 | Nonce : 0", + "8 | Tip : POLYX 1234.56789", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 789, - "name": "Asset_Accept_asset_ownership_transfer", - "blob": "1a026400000000000000d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Create_asset_with_custom_type", + "blob": "1a102841737365744e616d653101100d0c132300014846756e64696e675f526f756e645f4e616d65d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Accept asset ownership transfer", - "1 | Auth id : 100", - "2 | Tip : POLYX 55.555555" + "0 | Asset : Create asset with custom type", + "1 | Asset name : AssetName1", + "2 | Divisible : True", + "3 | Custom asset type [1/4] : 13", + "3 | Custom asset type [2/4] : 12", + "3 | Custom asset type [3/4] : 19", + "3 | Custom asset type [4/4] : 35", + "4 | Asset identifiers : ", + "5 | Funding round name : Funding_Round_Name", + "6 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Asset : Accept asset ownership transfer", - "1 | Auth id : 100", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Create asset with custom type", + "1 | Asset name : AssetName1", + "2 | Divisible : True", + "3 | Custom asset type [1/4] : 13", + "3 | Custom asset type [2/4] : 12", + "3 | Custom asset type [3/4] : 19", + "3 | Custom asset type [4/4] : 35", + "4 | Asset identifiers : ", + "5 | Funding round name : Funding_Round_Name", + "6 | Chain : Polymesh", + "7 | Nonce : 100", + "8 | Tip : POLYX 5552342.355555", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 790, - "name": "Asset_Accept_asset_ownership_transfer", - "blob": "1a026bc4000000000000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Create_asset_with_custom_type", + "blob": "1a102841737365744e616d653200100c29343500014846756e64696e675f526f756e645f4e616d65d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Accept asset ownership transfer", - "1 | Auth id : 50283", - "2 | Tip : POLYX 1234.56789" + "0 | Asset : Create asset with custom type", + "1 | Asset name : AssetName2", + "2 | Divisible : False", + "3 | Custom asset type [1/4] : 12", + "3 | Custom asset type [2/4] : 41", + "3 | Custom asset type [3/4] : 52", + "3 | Custom asset type [4/4] : 53", + "4 | Asset identifiers : ", + "5 | Funding round name : Funding_Round_Name", + "6 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Asset : Accept asset ownership transfer", - "1 | Auth id : 50283", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Create asset with custom type", + "1 | Asset name : AssetName2", + "2 | Divisible : False", + "3 | Custom asset type [1/4] : 12", + "3 | Custom asset type [2/4] : 41", + "3 | Custom asset type [3/4] : 52", + "3 | Custom asset type [4/4] : 53", + "4 | Asset identifiers : ", + "5 | Funding round name : Funding_Round_Name", + "6 | Chain : Polymesh", + "7 | Nonce : 2339", + "8 | Tip : POLYX 5552342.355555", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 791, - "name": "Asset_Create_asset", - "blob": "1a032841737365744e616d65325449434b45522d313233343501093ec706001000303337383333313030013033373833333130300255533033373833333130303503485755504b52304d504f55384647584254333934014846756e64696e675f526f756e645f4e616d65d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Set_asset_metadata", + "blob": "1a11417373657449442d31323334353637380107eea70ad10cb2cb3048656c6c6f20776f726c64210101d20296490000000001d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Create asset", - "1 | Name : AssetName2", - "2 | Ticker : TICKER-12345", - "3 | Divisible : True", - "4 | Asset type [1/2] : Custom", - "4 | Asset type [2/2] : 444222", - "5 | Identifiers [1/4] : 037833100", - "5 | Identifiers [2/4] : 037833100", - "5 | Identifiers [3/4] : US0378331005", - "5 | Identifiers [4/4] : HWUPKR0MPOU8FGXBT394", - "6 | Funding round : Funding_Round_Name", - "7 | Tip : POLYX 55.555555" + "0 | Asset : Set asset metadata", + "1 | Asset id : AssetID-12345678", + "2 | Key : 14677808227520343559", + "3 | Value : 48656c6c6f20776f726c6421", + "4 | Detail [1/2] : 1234567890", + "4 | Detail [2/2] : Locked", + "5 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Asset : Create asset", - "1 | Name : AssetName2", - "2 | Ticker : TICKER-12345", - "3 | Divisible : True", - "4 | Asset type [1/2] : Custom", - "4 | Asset type [2/2] : 444222", - "5 | Identifiers [1/4] : 037833100", - "5 | Identifiers [2/4] : 037833100", - "5 | Identifiers [3/4] : US0378331005", - "5 | Identifiers [4/4] : HWUPKR0MPOU8FGXBT394", - "6 | Funding round : Funding_Round_Name", - "7 | Chain : Polymesh", - "8 | Nonce : 2339", - "9 | Tip : POLYX 55.555555", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Set asset metadata", + "1 | Asset id : AssetID-12345678", + "2 | Key : 14677808227520343559", + "3 | Value : 48656c6c6f20776f726c6421", + "4 | Detail [1/2] : 1234567890", + "4 | Detail [2/2] : Locked", + "5 | Chain : Polymesh", + "6 | Nonce : 0", + "7 | Tip : POLYX 0.000987", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 792, - "name": "Asset_Create_asset", - "blob": "1a032841737365744e616d65315449434b45522d313233343501093ec706001000303337383333313030013033373833333130300255533033373833333130303503485755504b52304d504f55384647584254333934014846756e64696e675f526f756e645f4e616d65d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Set_asset_metadata", + "blob": "1a11417373657449442d31323334353637380107eea70ad10cb2cb3048656c6c6f20776f726c64210101a17c50010000000000d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Create asset", - "1 | Name : AssetName1", - "2 | Ticker : TICKER-12345", - "3 | Divisible : True", - "4 | Asset type [1/2] : Custom", - "4 | Asset type [2/2] : 444222", - "5 | Identifiers [1/4] : 037833100", - "5 | Identifiers [2/4] : 037833100", - "5 | Identifiers [3/4] : US0378331005", - "5 | Identifiers [4/4] : HWUPKR0MPOU8FGXBT394", - "6 | Funding round : Funding_Round_Name" + "0 | Asset : Set asset metadata", + "1 | Asset id : AssetID-12345678", + "2 | Key : 14677808227520343559", + "3 | Value : 48656c6c6f20776f726c6421", + "4 | Detail [1/2] : 22052001", + "4 | Detail [2/2] : Unlocked", + "5 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Asset : Create asset", - "1 | Name : AssetName1", - "2 | Ticker : TICKER-12345", - "3 | Divisible : True", - "4 | Asset type [1/2] : Custom", - "4 | Asset type [2/2] : 444222", - "5 | Identifiers [1/4] : 037833100", - "5 | Identifiers [2/4] : 037833100", - "5 | Identifiers [3/4] : US0378331005", - "5 | Identifiers [4/4] : HWUPKR0MPOU8FGXBT394", - "6 | Funding round : Funding_Round_Name", - "7 | Chain : Polymesh", - "8 | Nonce : 100", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Set asset metadata", + "1 | Asset id : AssetID-12345678", + "2 | Key : 14677808227520343559", + "3 | Value : 48656c6c6f20776f726c6421", + "4 | Detail [1/2] : 22052001", + "4 | Detail [2/2] : Unlocked", + "5 | Chain : Polymesh", + "6 | Nonce : 50283", + "7 | Tip : POLYX 5552342.355555", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 793, - "name": "Asset_Create_asset", - "blob": "1a032841737365744e616d65325449434b45522d313233343500093ec7060000014846756e64696e675f526f756e645f4e616d65d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Set_asset_metadata", + "blob": "1a11417373657449442d31323334353637380049e42d231ac515743048656c6c6f20776f726c64210101d20296490000000001d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Create asset", - "1 | Name : AssetName2", - "2 | Ticker : TICKER-12345", - "3 | Divisible : False", - "4 | Asset type [1/2] : Custom", - "4 | Asset type [2/2] : 444222", - "5 | Identifiers : ", - "6 | Funding round : Funding_Round_Name", - "7 | Tip : POLYX 1234.56789" + "0 | Asset : Set asset metadata", + "1 | Asset id : AssetID-12345678", + "2 | Key : 8364808598960596041", + "3 | Value : 48656c6c6f20776f726c6421", + "4 | Detail [1/2] : 1234567890", + "4 | Detail [2/2] : Locked", + "5 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Asset : Create asset", - "1 | Name : AssetName2", - "2 | Ticker : TICKER-12345", - "3 | Divisible : False", - "4 | Asset type [1/2] : Custom", - "4 | Asset type [2/2] : 444222", - "5 | Identifiers : ", - "6 | Funding round : Funding_Round_Name", - "7 | Chain : Polymesh", - "8 | Nonce : 100", - "9 | Tip : POLYX 1234.56789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Set asset metadata", + "1 | Asset id : AssetID-12345678", + "2 | Key : 8364808598960596041", + "3 | Value : 48656c6c6f20776f726c6421", + "4 | Detail [1/2] : 1234567890", + "4 | Detail [2/2] : Locked", + "5 | Chain : Polymesh", + "6 | Nonce : 1", + "7 | Tip : POLYX 1234.56789", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 794, - "name": "Asset_Create_asset", - "blob": "1a032841737365744e616d65315449434b45522d313233343501093ec706001000303337383333313030013033373833333130300255533033373833333130303503485755504b52304d504f55384647584254333934014846756e64696e675f526f756e645f4e616d65d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Set_asset_metadata", + "blob": "1a11417373657449442d31323334353637380107eea70ad10cb2cb3048656c6c6f20776f726c64210101a17c50010000000000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Create asset", - "1 | Name : AssetName1", - "2 | Ticker : TICKER-12345", - "3 | Divisible : True", - "4 | Asset type [1/2] : Custom", - "4 | Asset type [2/2] : 444222", - "5 | Identifiers [1/4] : 037833100", - "5 | Identifiers [2/4] : 037833100", - "5 | Identifiers [3/4] : US0378331005", - "5 | Identifiers [4/4] : HWUPKR0MPOU8FGXBT394", - "6 | Funding round : Funding_Round_Name", - "7 | Tip : POLYX 5552342.355555" + "0 | Asset : Set asset metadata", + "1 | Asset id : AssetID-12345678", + "2 | Key : 14677808227520343559", + "3 | Value : 48656c6c6f20776f726c6421", + "4 | Detail [1/2] : 22052001", + "4 | Detail [2/2] : Unlocked", + "5 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Asset : Create asset", - "1 | Name : AssetName1", - "2 | Ticker : TICKER-12345", - "3 | Divisible : True", - "4 | Asset type [1/2] : Custom", - "4 | Asset type [2/2] : 444222", - "5 | Identifiers [1/4] : 037833100", - "5 | Identifiers [2/4] : 037833100", - "5 | Identifiers [3/4] : US0378331005", - "5 | Identifiers [4/4] : HWUPKR0MPOU8FGXBT394", - "6 | Funding round : Funding_Round_Name", - "7 | Chain : Polymesh", - "8 | Nonce : 0", - "9 | Tip : POLYX 5552342.355555", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Set asset metadata", + "1 | Asset id : AssetID-12345678", + "2 | Key : 14677808227520343559", + "3 | Value : 48656c6c6f20776f726c6421", + "4 | Detail [1/2] : 22052001", + "4 | Detail [2/2] : Unlocked", + "5 | Chain : Polymesh", + "6 | Nonce : 0", + "7 | Tip : POLYX 5552342.355555", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 795, - "name": "Asset_Create_asset", - "blob": "1a032841737365744e616d65325449434b45522d313233343500001000303337383333313030013033373833333130300255533033373833333130303503485755504b52304d504f55384647584254333934014846756e64696e675f526f756e645f4e616d65d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Set_asset_metadata", + "blob": "1a11417373657449442d31323334353637380107eea70ad10cb2cb3048656c6c6f20776f726c64210101a17c50010000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Create asset", - "1 | Name : AssetName2", - "2 | Ticker : TICKER-12345", - "3 | Divisible : False", - "4 | Asset type : EquityCommon", - "5 | Identifiers [1/4] : 037833100", - "5 | Identifiers [2/4] : 037833100", - "5 | Identifiers [3/4] : US0378331005", - "5 | Identifiers [4/4] : HWUPKR0MPOU8FGXBT394", - "6 | Funding round : Funding_Round_Name" + "0 | Asset : Set asset metadata", + "1 | Asset id : AssetID-12345678", + "2 | Key : 14677808227520343559", + "3 | Value : 48656c6c6f20776f726c6421", + "4 | Detail [1/2] : 22052001", + "4 | Detail [2/2] : Unlocked", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Asset : Create asset", - "1 | Name : AssetName2", - "2 | Ticker : TICKER-12345", - "3 | Divisible : False", - "4 | Asset type : EquityCommon", - "5 | Identifiers [1/4] : 037833100", - "5 | Identifiers [2/4] : 037833100", - "5 | Identifiers [3/4] : US0378331005", - "5 | Identifiers [4/4] : HWUPKR0MPOU8FGXBT394", - "6 | Funding round : Funding_Round_Name", - "7 | Chain : Polymesh", - "8 | Nonce : 1", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Set asset metadata", + "1 | Asset id : AssetID-12345678", + "2 | Key : 14677808227520343559", + "3 | Value : 48656c6c6f20776f726c6421", + "4 | Detail [1/2] : 22052001", + "4 | Detail [2/2] : Unlocked", + "5 | Chain : Polymesh", + "6 | Nonce : 2339", + "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "7 | Tip [2/2] : 3.456789", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 796, - "name": "Asset_Freeze", - "blob": "1a045449434b45522d3132333435d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Set_asset_metadata_details", + "blob": "1a12417373657449442d31323334353637380107eea70ad10cb2cb01206ff8030000000000d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Freeze", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 55.555555" + "0 | Asset : Set asset metadata details", + "1 | Asset id : AssetID-12345678", + "2 | Key : 14677808227520343559", + "3 | Detail [1/2] : 66613024", + "3 | Detail [2/2] : Unlocked", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Asset : Freeze", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Set asset metadata details", + "1 | Asset id : AssetID-12345678", + "2 | Key : 14677808227520343559", + "3 | Detail [1/2] : 66613024", + "3 | Detail [2/2] : Unlocked", + "4 | Chain : Polymesh", + "5 | Nonce : 2339", + "6 | Tip : POLYX 5552342.355555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 797, - "name": "Asset_Freeze", - "blob": "1a045449434b45522d3132333435d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Set_asset_metadata_details", + "blob": "1a12417373657449442d31323334353637380049e42d231ac51574010bcee40700000000028d7dee93ca550dccd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Freeze", - "1 | Ticker : TICKER-12345", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Asset : Set asset metadata details", + "1 | Asset id : AssetID-12345678", + "2 | Key : 8364808598960596041", + "3 | Detail [1/2] : 132435467", + "3 | Detail [2/2] : 14703502686988172685", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Asset : Freeze", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Set asset metadata details", + "1 | Asset id : AssetID-12345678", + "2 | Key : 8364808598960596041", + "3 | Detail [1/2] : 132435467", + "3 | Detail [2/2] : 14703502686988172685", + "4 | Chain : Polymesh", + "5 | Nonce : 2339", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 798, - "name": "Asset_Freeze", - "blob": "1a045449434b45522d3132333435d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Set_asset_metadata_details", + "blob": "1a12417373657449442d31323334353637380107eea70ad10cb2cb010bcee40700000000028d7dee93ca550dccd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Freeze", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 55.555555" + "0 | Asset : Set asset metadata details", + "1 | Asset id : AssetID-12345678", + "2 | Key : 14677808227520343559", + "3 | Detail [1/2] : 132435467", + "3 | Detail [2/2] : 14703502686988172685", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Asset : Freeze", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Set asset metadata details", + "1 | Asset id : AssetID-12345678", + "2 | Key : 14677808227520343559", + "3 | Detail [1/2] : 132435467", + "3 | Detail [2/2] : 14703502686988172685", + "4 | Chain : Polymesh", + "5 | Nonce : 2339", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 799, - "name": "Asset_Freeze", - "blob": "1a045449434b45522d3132333435d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Set_asset_metadata_details", + "blob": "1a12417373657449442d31323334353637380049e42d231ac51574010bcee40700000000028d7dee93ca550dccd5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Freeze", - "1 | Ticker : TICKER-12345" + "0 | Asset : Set asset metadata details", + "1 | Asset id : AssetID-12345678", + "2 | Key : 8364808598960596041", + "3 | Detail [1/2] : 132435467", + "3 | Detail [2/2] : 14703502686988172685", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Asset : Freeze", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Set asset metadata details", + "1 | Asset id : AssetID-12345678", + "2 | Key : 8364808598960596041", + "3 | Detail [1/2] : 132435467", + "3 | Detail [2/2] : 14703502686988172685", + "4 | Chain : Polymesh", + "5 | Nonce : 0", + "6 | Tip : POLYX 1234.56789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 800, - "name": "Asset_Freeze", - "blob": "1a045449434b45522d3132333435d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Set_asset_metadata_details", + "blob": "1a12417373657449442d31323334353637380107eea70ad10cb2cb010bcee40700000000028d7dee93ca550dccd503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Freeze", - "1 | Ticker : TICKER-12345" + "0 | Asset : Set asset metadata details", + "1 | Asset id : AssetID-12345678", + "2 | Key : 14677808227520343559", + "3 | Detail [1/2] : 132435467", + "3 | Detail [2/2] : 14703502686988172685", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Asset : Freeze", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Set asset metadata details", + "1 | Asset id : AssetID-12345678", + "2 | Key : 14677808227520343559", + "3 | Detail [1/2] : 132435467", + "3 | Detail [2/2] : 14703502686988172685", + "4 | Chain : Polymesh", + "5 | Nonce : 50283", + "6 | Tip : POLYX 0.000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 801, - "name": "Asset_Unfreeze", - "blob": "1a055449434b45522d3132333435d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Register_and_set_local_asset_metadata", + "blob": "1a13417373657449442d3132333435363738144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663f3048656c6c6f20776f726c64210101d20296490000000001d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Unfreeze", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 0.000987" + "0 | Asset : Register and set local asset metadata", + "1 | Asset id : AssetID-12345678", + "2 | Name : 4e616d6565", + "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", + "3 | Spec [2/3] : 496d7072657373697665207765627369746521", + "3 | Spec [3/3] : 57687920747970654465663f", + "4 | Value : 48656c6c6f20776f726c6421", + "5 | Detail [1/2] : 1234567890", + "5 | Detail [2/2] : Locked", + "6 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Asset : Unfreeze", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Register and set local asset metadata", + "1 | Asset id : AssetID-12345678", + "2 | Name : 4e616d6565", + "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", + "3 | Spec [2/3] : 496d7072657373697665207765627369746521", + "3 | Spec [3/3] : 57687920747970654465663f", + "4 | Value : 48656c6c6f20776f726c6421", + "5 | Detail [1/2] : 1234567890", + "5 | Detail [2/2] : Locked", + "6 | Chain : Polymesh", + "7 | Nonce : 100", + "8 | Tip : POLYX 55.555555", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 802, - "name": "Asset_Unfreeze", - "blob": "1a055449434b45522d3132333435d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Register_and_set_local_asset_metadata", + "blob": "1a13417373657449442d3132333435363738144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663f3048656c6c6f20776f726c64210101a17c50010000000000d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Unfreeze", - "1 | Ticker : TICKER-12345" + "0 | Asset : Register and set local asset metadata", + "1 | Asset id : AssetID-12345678", + "2 | Name : 4e616d6565", + "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", + "3 | Spec [2/3] : 496d7072657373697665207765627369746521", + "3 | Spec [3/3] : 57687920747970654465663f", + "4 | Value : 48656c6c6f20776f726c6421", + "5 | Detail [1/2] : 22052001", + "5 | Detail [2/2] : Unlocked", + "6 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Asset : Unfreeze", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Register and set local asset metadata", + "1 | Asset id : AssetID-12345678", + "2 | Name : 4e616d6565", + "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", + "3 | Spec [2/3] : 496d7072657373697665207765627369746521", + "3 | Spec [3/3] : 57687920747970654465663f", + "4 | Value : 48656c6c6f20776f726c6421", + "5 | Detail [1/2] : 22052001", + "5 | Detail [2/2] : Unlocked", + "6 | Chain : Polymesh", + "7 | Nonce : 2339", + "8 | Tip : POLYX 1234.56789", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 803, - "name": "Asset_Unfreeze", - "blob": "1a055449434b45522d3132333435d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Register_and_set_local_asset_metadata", + "blob": "1a13417373657449442d3132333435363738144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663f3048656c6c6f20776f726c64210101af14ca000000000002ef91dfce0f000000d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Unfreeze", - "1 | Ticker : TICKER-12345" + "0 | Asset : Register and set local asset metadata", + "1 | Asset id : AssetID-12345678", + "2 | Name : 4e616d6565", + "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", + "3 | Spec [2/3] : 496d7072657373697665207765627369746521", + "3 | Spec [3/3] : 57687920747970654465663f", + "4 | Value : 48656c6c6f20776f726c6421", + "5 | Detail [1/2] : 13243567", + "5 | Detail [2/2] : 67895267823", + "6 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Asset : Unfreeze", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Register and set local asset metadata", + "1 | Asset id : AssetID-12345678", + "2 | Name : 4e616d6565", + "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", + "3 | Spec [2/3] : 496d7072657373697665207765627369746521", + "3 | Spec [3/3] : 57687920747970654465663f", + "4 | Value : 48656c6c6f20776f726c6421", + "5 | Detail [1/2] : 13243567", + "5 | Detail [2/2] : 67895267823", + "6 | Chain : Polymesh", + "7 | Nonce : 2339", + "8 | Tip : POLYX 55.555555", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 804, - "name": "Asset_Unfreeze", - "blob": "1a055449434b45522d3132333435d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Register_and_set_local_asset_metadata", + "blob": "1a13417373657449442d3132333435363738144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663f3048656c6c6f20776f726c64210101a17c50010000000000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Unfreeze", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 5552342.355555" + "0 | Asset : Register and set local asset metadata", + "1 | Asset id : AssetID-12345678", + "2 | Name : 4e616d6565", + "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", + "3 | Spec [2/3] : 496d7072657373697665207765627369746521", + "3 | Spec [3/3] : 57687920747970654465663f", + "4 | Value : 48656c6c6f20776f726c6421", + "5 | Detail [1/2] : 22052001", + "5 | Detail [2/2] : Unlocked" ], "output_expert": [ - "0 | Asset : Unfreeze", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Register and set local asset metadata", + "1 | Asset id : AssetID-12345678", + "2 | Name : 4e616d6565", + "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", + "3 | Spec [2/3] : 496d7072657373697665207765627369746521", + "3 | Spec [3/3] : 57687920747970654465663f", + "4 | Value : 48656c6c6f20776f726c6421", + "5 | Detail [1/2] : 22052001", + "5 | Detail [2/2] : Unlocked", + "6 | Chain : Polymesh", + "7 | Nonce : 2339", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 805, - "name": "Asset_Unfreeze", - "blob": "1a055449434b45522d3132333435d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Register_and_set_local_asset_metadata", + "blob": "1a13417373657449442d3132333435363738144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663f3048656c6c6f20776f726c64210101a17c50010000000000d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Unfreeze", - "1 | Ticker : TICKER-12345", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Asset : Register and set local asset metadata", + "1 | Asset id : AssetID-12345678", + "2 | Name : 4e616d6565", + "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", + "3 | Spec [2/3] : 496d7072657373697665207765627369746521", + "3 | Spec [3/3] : 57687920747970654465663f", + "4 | Value : 48656c6c6f20776f726c6421", + "5 | Detail [1/2] : 22052001", + "5 | Detail [2/2] : Unlocked", + "6 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Asset : Unfreeze", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Register and set local asset metadata", + "1 | Asset id : AssetID-12345678", + "2 | Name : 4e616d6565", + "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", + "3 | Spec [2/3] : 496d7072657373697665207765627369746521", + "3 | Spec [3/3] : 57687920747970654465663f", + "4 | Value : 48656c6c6f20776f726c6421", + "5 | Detail [1/2] : 22052001", + "5 | Detail [2/2] : Unlocked", + "6 | Chain : Polymesh", + "7 | Nonce : 100", + "8 | Tip : POLYX 1234.56789", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 806, - "name": "Asset_Rename_asset", - "blob": "1a065449434b45522d31323334352841737365744e616d6532d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Register_asset_metadata_local_type", + "blob": "1a14417373657449442d3132333435363738144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Rename asset", - "1 | Ticker : TICKER-12345", - "2 | Name : AssetName2", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Asset : Register asset metadata local type", + "1 | Asset id : AssetID-12345678", + "2 | Name : 4e616d6565", + "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", + "3 | Spec [2/3] : 496d7072657373697665207765627369746521", + "3 | Spec [3/3] : 57687920747970654465663f", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Asset : Rename asset", - "1 | Ticker : TICKER-12345", - "2 | Name : AssetName2", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Register asset metadata local type", + "1 | Asset id : AssetID-12345678", + "2 | Name : 4e616d6565", + "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", + "3 | Spec [2/3] : 496d7072657373697665207765627369746521", + "3 | Spec [3/3] : 57687920747970654465663f", + "4 | Chain : Polymesh", + "5 | Nonce : 50283", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { "index": 807, - "name": "Asset_Rename_asset", - "blob": "1a065449434b45522d31323334352841737365744e616d6532d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Asset_Register_asset_metadata_local_type", + "blob": "1a14417373657449442d3132333435363738144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Rename asset", - "1 | Ticker : TICKER-12345", - "2 | Name : AssetName2", - "3 | Tip : POLYX 5552342.355555" + "0 | Asset : Register asset metadata local type", + "1 | Asset id : AssetID-12345678", + "2 | Name : 4e616d6565", + "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", + "3 | Spec [2/3] : 496d7072657373697665207765627369746521", + "3 | Spec [3/3] : 57687920747970654465663f", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Asset : Rename asset", - "1 | Ticker : TICKER-12345", - "2 | Name : AssetName2", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 808, - "name": "Asset_Rename_asset", - "blob": "1a065449434b45522d31323334352841737365744e616d6532d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Rename asset", - "1 | Ticker : TICKER-12345", - "2 | Name : AssetName2", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Asset : Rename asset", - "1 | Ticker : TICKER-12345", - "2 | Name : AssetName2", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 809, - "name": "Asset_Rename_asset", - "blob": "1a065449434b45522d31323334352841737365744e616d6532d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Rename asset", - "1 | Ticker : TICKER-12345", - "2 | Name : AssetName2", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Asset : Rename asset", - "1 | Ticker : TICKER-12345", - "2 | Name : AssetName2", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 810, - "name": "Asset_Rename_asset", - "blob": "1a065449434b45522d31323334352841737365744e616d6531d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Rename asset", - "1 | Ticker : TICKER-12345", - "2 | Name : AssetName1", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Asset : Rename asset", - "1 | Ticker : TICKER-12345", - "2 | Name : AssetName1", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 811, - "name": "Asset_Issue", - "blob": "1a075449434b45522d3132333435a6758c3aa9f7ac8766c5a254e283c97401bd0d90b68b8ef739d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Issue", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", - "3 | Portfolio kind : 4176963910123916733", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Asset : Issue", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", - "3 | Portfolio kind : 4176963910123916733", + "0 | Asset : Register asset metadata local type", + "1 | Asset id : AssetID-12345678", + "2 | Name : 4e616d6565", + "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", + "3 | Spec [2/3] : 496d7072657373697665207765627369746521", + "3 | Spec [3/3] : 57687920747970654465663f", "4 | Chain : Polymesh", "5 | Nonce : 1", - "6 | Tip : POLYX 55.555555", + "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 812, - "name": "Asset_Issue", - "blob": "1a075449434b45522d3132333435a6758c3aa9f7ac8766c5a254e283c97400d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 808, + "name": "Asset_Register_asset_metadata_local_type", + "blob": "1a14417373657449442d3132333435363738144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Issue", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", - "3 | Portfolio kind : Default", - "4 | Tip : POLYX 5552342.355555" + "0 | Asset : Register asset metadata local type", + "1 | Asset id : AssetID-12345678", + "2 | Name : 4e616d6565", + "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", + "3 | Spec [2/3] : 496d7072657373697665207765627369746521", + "3 | Spec [3/3] : 57687920747970654465663f", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Asset : Issue", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", - "3 | Portfolio kind : Default", + "0 | Asset : Register asset metadata local type", + "1 | Asset id : AssetID-12345678", + "2 | Name : 4e616d6565", + "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", + "3 | Spec [2/3] : 496d7072657373697665207765627369746521", + "3 | Spec [3/3] : 57687920747970654465663f", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 5552342.355555", + "5 | Nonce : 2339", + "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 813, - "name": "Asset_Issue", - "blob": "1a075449434b45522d3132333435a6758c3aa9f7ac8766c5a254e283c974017783de5904926d17d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 809, + "name": "Asset_Register_asset_metadata_local_type", + "blob": "1a14417373657449442d3132333435363738144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Issue", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", - "3 | Portfolio kind : 1688165982719083383", + "0 | Asset : Register asset metadata local type", + "1 | Asset id : AssetID-12345678", + "2 | Name : 4e616d6565", + "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", + "3 | Spec [2/3] : 496d7072657373697665207765627369746521", + "3 | Spec [3/3] : 57687920747970654465663f", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Asset : Issue", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", - "3 | Portfolio kind : 1688165982719083383", + "0 | Asset : Register asset metadata local type", + "1 | Asset id : AssetID-12345678", + "2 | Name : 4e616d6565", + "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", + "3 | Spec [2/3] : 496d7072657373697665207765627369746521", + "3 | Spec [3/3] : 57687920747970654465663f", "4 | Chain : Polymesh", "5 | Nonce : 1", "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 814, - "name": "Asset_Issue", - "blob": "1a075449434b45522d3132333435a6758c3aa9f7ac8766c5a254e283c974017783de5904926d17d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 810, + "name": "Asset_Register_asset_metadata_local_type", + "blob": "1a14417373657449442d3132333435363738144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Issue", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", - "3 | Portfolio kind : 1688165982719083383", - "4 | Tip : POLYX 55.555555" + "0 | Asset : Register asset metadata local type", + "1 | Asset id : AssetID-12345678", + "2 | Name : 4e616d6565", + "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", + "3 | Spec [2/3] : 496d7072657373697665207765627369746521", + "3 | Spec [3/3] : 57687920747970654465663f", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Asset : Issue", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", - "3 | Portfolio kind : 1688165982719083383", + "0 | Asset : Register asset metadata local type", + "1 | Asset id : AssetID-12345678", + "2 | Name : 4e616d6565", + "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", + "3 | Spec [2/3] : 496d7072657373697665207765627369746521", + "3 | Spec [3/3] : 57687920747970654465663f", "4 | Chain : Polymesh", "5 | Nonce : 100", - "6 | Tip : POLYX 55.555555", + "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 815, - "name": "Asset_Issue", - "blob": "1a075449434b45522d3132333435a6758c3aa9f7ac8766c5a254e283c97400d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 811, + "name": "Asset_Register_asset_metadata_global_type", + "blob": "1a15144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Issue", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", - "3 | Portfolio kind : Default", - "4 | Tip : POLYX 1234.56789" + "0 | Asset : Register asset metadata global type", + "1 | Name : 4e616d6565", + "2 | Spec [1/3] : 68747470733a2f2f6162632e78797a", + "2 | Spec [2/3] : 496d7072657373697665207765627369746521", + "2 | Spec [3/3] : 57687920747970654465663f", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Asset : Issue", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", - "3 | Portfolio kind : Default", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Register asset metadata global type", + "1 | Name : 4e616d6565", + "2 | Spec [1/3] : 68747470733a2f2f6162632e78797a", + "2 | Spec [2/3] : 496d7072657373697665207765627369746521", + "2 | Spec [3/3] : 57687920747970654465663f", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 816, - "name": "Asset_Redeem", - "blob": "1a085449434b45522d3132333435a6758c3aa9f7ac8766c5a254e283c974d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 812, + "name": "Asset_Register_asset_metadata_global_type", + "blob": "1a15144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Redeem", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", - "3 | Tip : POLYX 5552342.355555" + "0 | Asset : Register asset metadata global type", + "1 | Name : 4e616d6565", + "2 | Spec [1/3] : 68747470733a2f2f6162632e78797a", + "2 | Spec [2/3] : 496d7072657373697665207765627369746521", + "2 | Spec [3/3] : 57687920747970654465663f", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Asset : Redeem", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", + "0 | Asset : Register asset metadata global type", + "1 | Name : 4e616d6565", + "2 | Spec [1/3] : 68747470733a2f2f6162632e78797a", + "2 | Spec [2/3] : 496d7072657373697665207765627369746521", + "2 | Spec [3/3] : 57687920747970654465663f", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 100", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 817, - "name": "Asset_Redeem", - "blob": "1a085449434b45522d3132333435a6758c3aa9f7ac8766c5a254e283c974d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 813, + "name": "Asset_Register_asset_metadata_global_type", + "blob": "1a15144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Redeem", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", - "3 | Tip : POLYX 1234.56789" + "0 | Asset : Register asset metadata global type", + "1 | Name : 4e616d6565", + "2 | Spec [1/3] : 68747470733a2f2f6162632e78797a", + "2 | Spec [2/3] : 496d7072657373697665207765627369746521", + "2 | Spec [3/3] : 57687920747970654465663f", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Asset : Redeem", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", + "0 | Asset : Register asset metadata global type", + "1 | Name : 4e616d6565", + "2 | Spec [1/3] : 68747470733a2f2f6162632e78797a", + "2 | Spec [2/3] : 496d7072657373697665207765627369746521", + "2 | Spec [3/3] : 57687920747970654465663f", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 100", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 818, - "name": "Asset_Redeem", - "blob": "1a085449434b45522d3132333435a6758c3aa9f7ac8766c5a254e283c974d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 814, + "name": "Asset_Register_asset_metadata_global_type", + "blob": "1a15144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Redeem", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", - "3 | Tip : POLYX 55.555555" + "0 | Asset : Register asset metadata global type", + "1 | Name : 4e616d6565", + "2 | Spec [1/3] : 68747470733a2f2f6162632e78797a", + "2 | Spec [2/3] : 496d7072657373697665207765627369746521", + "2 | Spec [3/3] : 57687920747970654465663f", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Asset : Redeem", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", + "0 | Asset : Register asset metadata global type", + "1 | Name : 4e616d6565", + "2 | Spec [1/3] : 68747470733a2f2f6162632e78797a", + "2 | Spec [2/3] : 496d7072657373697665207765627369746521", + "2 | Spec [3/3] : 57687920747970654465663f", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 0", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 819, - "name": "Asset_Redeem", - "blob": "1a085449434b45522d3132333435a6758c3aa9f7ac8766c5a254e283c974d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 815, + "name": "Asset_Register_asset_metadata_global_type", + "blob": "1a15144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Redeem", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78" + "0 | Asset : Register asset metadata global type", + "1 | Name : 4e616d6565", + "2 | Spec [1/3] : 68747470733a2f2f6162632e78797a", + "2 | Spec [2/3] : 496d7072657373697665207765627369746521", + "2 | Spec [3/3] : 57687920747970654465663f", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Asset : Redeem", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", + "0 | Asset : Register asset metadata global type", + "1 | Name : 4e616d6565", + "2 | Spec [1/3] : 68747470733a2f2f6162632e78797a", + "2 | Spec [2/3] : 496d7072657373697665207765627369746521", + "2 | Spec [3/3] : 57687920747970654465663f", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 1", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 820, - "name": "Asset_Redeem", - "blob": "1a085449434b45522d3132333435a6758c3aa9f7ac8766c5a254e283c974d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 816, + "name": "Asset_Update_asset_type", + "blob": "1a16417373657449442d313233343536373800d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Redeem", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", + "0 | Asset : Update asset type", + "1 | Asset id : AssetID-12345678", + "2 | Asset type : EquityCommon", "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Asset : Redeem", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", + "0 | Asset : Update asset type", + "1 | Asset id : AssetID-12345678", + "2 | Asset type : EquityCommon", "3 | Chain : Polymesh", - "4 | Nonce : 50283", + "4 | Nonce : 100", "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 821, - "name": "Asset_Make_divisible", - "blob": "1a095449434b45522d3132333435d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Make divisible", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Asset : Make divisible", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 822, - "name": "Asset_Make_divisible", - "blob": "1a095449434b45522d3132333435d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Make divisible", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Asset : Make divisible", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 823, - "name": "Asset_Make_divisible", - "blob": "1a095449434b45522d3132333435d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Make divisible", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Asset : Make divisible", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 824, - "name": "Asset_Make_divisible", - "blob": "1a095449434b45522d3132333435d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 817, + "name": "Asset_Update_asset_type", + "blob": "1a16417373657449442d3132333435363738093ec70600d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Make divisible", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 1234.56789" + "0 | Asset : Update asset type", + "1 | Asset id : AssetID-12345678", + "2 | Asset type [1/2] : Custom", + "2 | Asset type [2/2] : 444222", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Asset : Make divisible", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Update asset type", + "1 | Asset id : AssetID-12345678", + "2 | Asset type [1/2] : Custom", + "2 | Asset type [2/2] : 444222", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 825, - "name": "Asset_Make_divisible", - "blob": "1a095449434b45522d3132333435d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 818, + "name": "Asset_Update_asset_type", + "blob": "1a16417373657449442d3132333435363738093ec70600d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Make divisible", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 1234.56789" + "0 | Asset : Update asset type", + "1 | Asset id : AssetID-12345678", + "2 | Asset type [1/2] : Custom", + "2 | Asset type [2/2] : 444222" ], "output_expert": [ - "0 | Asset : Make divisible", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", + "0 | Asset : Update asset type", + "1 | Asset id : AssetID-12345678", + "2 | Asset type [1/2] : Custom", + "2 | Asset type [2/2] : 444222", + "3 | Chain : Polymesh", + "4 | Nonce : 1", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 826, - "name": "Asset_Add_documents", - "blob": "1a0a005449434b45522d3132333435d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 819, + "name": "Asset_Update_asset_type", + "blob": "1a16417373657449442d313233343536373800d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Add documents", - "1 | Docs : ", - "2 | Ticker : TICKER-12345", + "0 | Asset : Update asset type", + "1 | Asset id : AssetID-12345678", + "2 | Asset type : EquityCommon", "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Asset : Add documents", - "1 | Docs : ", - "2 | Ticker : TICKER-12345", + "0 | Asset : Update asset type", + "1 | Asset id : AssetID-12345678", + "2 | Asset type : EquityCommon", "3 | Chain : Polymesh", - "4 | Nonce : 100", + "4 | Nonce : 50283", "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 827, - "name": "Asset_Add_documents", - "blob": "1a0a005449434b45522d3132333435d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 820, + "name": "Asset_Update_asset_type", + "blob": "1a16417373657449442d3132333435363738093ec70600d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Add documents", - "1 | Docs : ", - "2 | Ticker : TICKER-12345", + "0 | Asset : Update asset type", + "1 | Asset id : AssetID-12345678", + "2 | Asset type [1/2] : Custom", + "2 | Asset type [2/2] : 444222", "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Asset : Add documents", - "1 | Docs : ", - "2 | Ticker : TICKER-12345", + "0 | Asset : Update asset type", + "1 | Asset id : AssetID-12345678", + "2 | Asset type [1/2] : Custom", + "2 | Asset type [2/2] : 444222", "3 | Chain : Polymesh", - "4 | Nonce : 100", + "4 | Nonce : 0", "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 828, - "name": "Asset_Add_documents", - "blob": "1a0a085868747470733a2f2f646f63756d656e742e7572692e310128276d42dd7ee39a384fed87bd4a14421da058c9248005f6fdfd6204a1d58281a59f5679f67bc8c446a341f6a431984763992cc3d315a12367a536af949c70ad28446f63754e616d655f310120446f63755479706501f9be6186000000005868747470733a2f2f646f63756d656e742e7572692e320255ac836e0b105fb2d2523140ff982d5e0c145f6d25d27b512f0c83678b64eac1d89bfca284ab678cf1f96c9c892afbc928446f63754e616d655f320120446f6375547970650191850cb7050000005449434b45522d3132333435d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 821, + "name": "Asset_Remove_local_metadata_key", + "blob": "1a17417373657449442d31323334353637385e189424392162c0d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Add documents", - "1 | Docs [1/15] : https://document.uri.1", - "1 | Docs [2/15] : 28276d42dd7ee39a384fed87bd4a14421da058", - "1 | Docs [3/15] : c9248005f6fdfd6204a1d58281a59f5679f67b", - "1 | Docs [4/15] : c8c446a341f6a431984763992cc3d315a12367", - "1 | Docs [5/15] : a536af949c70ad", - "1 | Docs [6/15] : DocuName_1", - "1 | Docs [7/15] : DocuType", - "1 | Docs [8/15] : 2254552825", - "1 | Docs [9/15] : https://document.uri.2", - "1 | Docs [10/15] : 55ac836e0b105fb2d2523140ff982d5e0c145f", - "1 | Docs [11/15] : 6d25d27b512f0c83678b64eac1d89bfca284ab", - "1 | Docs [12/15] : 678cf1f96c9c892afbc9", - "1 | Docs [13/15] : DocuName_2", - "1 | Docs [14/15] : DocuType", - "1 | Docs [15/15] : 24545887633", - "2 | Ticker : TICKER-12345", - "3 | Tip : POLYX 1234.56789" + "0 | Asset : Remove local metadata key", + "1 | Asset id : AssetID-12345678", + "2 | Local key : 13862679132310345822", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Asset : Add documents", - "1 | Docs [1/15] : https://document.uri.1", - "1 | Docs [2/15] : 28276d42dd7ee39a384fed87bd4a14421da058", - "1 | Docs [3/15] : c9248005f6fdfd6204a1d58281a59f5679f67b", - "1 | Docs [4/15] : c8c446a341f6a431984763992cc3d315a12367", - "1 | Docs [5/15] : a536af949c70ad", - "1 | Docs [6/15] : DocuName_1", - "1 | Docs [7/15] : DocuType", - "1 | Docs [8/15] : 2254552825", - "1 | Docs [9/15] : https://document.uri.2", - "1 | Docs [10/15] : 55ac836e0b105fb2d2523140ff982d5e0c145f", - "1 | Docs [11/15] : 6d25d27b512f0c83678b64eac1d89bfca284ab", - "1 | Docs [12/15] : 678cf1f96c9c892afbc9", - "1 | Docs [13/15] : DocuName_2", - "1 | Docs [14/15] : DocuType", - "1 | Docs [15/15] : 24545887633", - "2 | Ticker : TICKER-12345", + "0 | Asset : Remove local metadata key", + "1 | Asset id : AssetID-12345678", + "2 | Local key : 13862679132310345822", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 0", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 829, - "name": "Asset_Add_documents", - "blob": "1a0a085868747470733a2f2f646f63756d656e742e7572692e310128276d42dd7ee39a384fed87bd4a14421da058c9248005f6fdfd6204a1d58281a59f5679f67bc8c446a341f6a431984763992cc3d315a12367a536af949c70ad28446f63754e616d655f310120446f63755479706501f9be6186000000005868747470733a2f2f646f63756d656e742e7572692e320255ac836e0b105fb2d2523140ff982d5e0c145f6d25d27b512f0c83678b64eac1d89bfca284ab678cf1f96c9c892afbc928446f63754e616d655f320120446f6375547970650191850cb7050000005449434b45522d3132333435d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 822, + "name": "Asset_Remove_local_metadata_key", + "blob": "1a17417373657449442d31323334353637386ac7a620275417dbd5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Add documents", - "1 | Docs [1/15] : https://document.uri.1", - "1 | Docs [2/15] : 28276d42dd7ee39a384fed87bd4a14421da058", - "1 | Docs [3/15] : c9248005f6fdfd6204a1d58281a59f5679f67b", - "1 | Docs [4/15] : c8c446a341f6a431984763992cc3d315a12367", - "1 | Docs [5/15] : a536af949c70ad", - "1 | Docs [6/15] : DocuName_1", - "1 | Docs [7/15] : DocuType", - "1 | Docs [8/15] : 2254552825", - "1 | Docs [9/15] : https://document.uri.2", - "1 | Docs [10/15] : 55ac836e0b105fb2d2523140ff982d5e0c145f", - "1 | Docs [11/15] : 6d25d27b512f0c83678b64eac1d89bfca284ab", - "1 | Docs [12/15] : 678cf1f96c9c892afbc9", - "1 | Docs [13/15] : DocuName_2", - "1 | Docs [14/15] : DocuType", - "1 | Docs [15/15] : 24545887633", - "2 | Ticker : TICKER-12345", - "3 | Tip : POLYX 1234.56789" + "0 | Asset : Remove local metadata key", + "1 | Asset id : AssetID-12345678", + "2 | Local key : 15787179545798821738", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Asset : Add documents", - "1 | Docs [1/15] : https://document.uri.1", - "1 | Docs [2/15] : 28276d42dd7ee39a384fed87bd4a14421da058", - "1 | Docs [3/15] : c9248005f6fdfd6204a1d58281a59f5679f67b", - "1 | Docs [4/15] : c8c446a341f6a431984763992cc3d315a12367", - "1 | Docs [5/15] : a536af949c70ad", - "1 | Docs [6/15] : DocuName_1", - "1 | Docs [7/15] : DocuType", - "1 | Docs [8/15] : 2254552825", - "1 | Docs [9/15] : https://document.uri.2", - "1 | Docs [10/15] : 55ac836e0b105fb2d2523140ff982d5e0c145f", - "1 | Docs [11/15] : 6d25d27b512f0c83678b64eac1d89bfca284ab", - "1 | Docs [12/15] : 678cf1f96c9c892afbc9", - "1 | Docs [13/15] : DocuName_2", - "1 | Docs [14/15] : DocuType", - "1 | Docs [15/15] : 24545887633", - "2 | Ticker : TICKER-12345", + "0 | Asset : Remove local metadata key", + "1 | Asset id : AssetID-12345678", + "2 | Local key : 15787179545798821738", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 1", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 830, - "name": "Asset_Add_documents", - "blob": "1a0a005449434b45522d3132333435d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 823, + "name": "Asset_Remove_local_metadata_key", + "blob": "1a17417373657449442d31323334353637385e189424392162c0d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Add documents", - "1 | Docs : ", - "2 | Ticker : TICKER-12345", - "3 | Tip : POLYX 1234.56789" + "0 | Asset : Remove local metadata key", + "1 | Asset id : AssetID-12345678", + "2 | Local key : 13862679132310345822", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Asset : Add documents", - "1 | Docs : ", - "2 | Ticker : TICKER-12345", + "0 | Asset : Remove local metadata key", + "1 | Asset id : AssetID-12345678", + "2 | Local key : 13862679132310345822", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 50283", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 831, - "name": "Asset_Remove_documents", - "blob": "1a0b005449434b45522d3132333435d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 824, + "name": "Asset_Remove_local_metadata_key", + "blob": "1a17417373657449442d31323334353637385e189424392162c0d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Remove documents", - "1 | Ids : ", - "2 | Ticker : TICKER-12345" + "0 | Asset : Remove local metadata key", + "1 | Asset id : AssetID-12345678", + "2 | Local key : 13862679132310345822" ], "output_expert": [ - "0 | Asset : Remove documents", - "1 | Ids : ", - "2 | Ticker : TICKER-12345", + "0 | Asset : Remove local metadata key", + "1 | Asset id : AssetID-12345678", + "2 | Local key : 13862679132310345822", "3 | Chain : Polymesh", - "4 | Nonce : 100", + "4 | Nonce : 1", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 832, - "name": "Asset_Remove_documents", - "blob": "1a0b005449434b45522d3132333435d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 825, + "name": "Asset_Remove_local_metadata_key", + "blob": "1a17417373657449442d31323334353637386ac7a620275417dbd503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Remove documents", - "1 | Ids : ", - "2 | Ticker : TICKER-12345", - "3 | Tip : POLYX 55.555555" + "0 | Asset : Remove local metadata key", + "1 | Asset id : AssetID-12345678", + "2 | Local key : 15787179545798821738", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Asset : Remove documents", - "1 | Ids : ", - "2 | Ticker : TICKER-12345", + "0 | Asset : Remove local metadata key", + "1 | Asset id : AssetID-12345678", + "2 | Local key : 15787179545798821738", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 50283", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 833, - "name": "Asset_Remove_documents", - "blob": "1a0b005449434b45522d3132333435d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 826, + "name": "Asset_Remove_metadata_value", + "blob": "1a18417373657449442d31323334353637380049e42d231ac51574d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Remove documents", - "1 | Ids : ", - "2 | Ticker : TICKER-12345", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Asset : Remove metadata value", + "1 | Asset id : AssetID-12345678", + "2 | Metadata key : 8364808598960596041" ], "output_expert": [ - "0 | Asset : Remove documents", - "1 | Ids : ", - "2 | Ticker : TICKER-12345", + "0 | Asset : Remove metadata value", + "1 | Asset id : AssetID-12345678", + "2 | Metadata key : 8364808598960596041", "3 | Chain : Polymesh", "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 834, - "name": "Asset_Remove_documents", - "blob": "1a0b04000000005449434b45522d3132333435d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 827, + "name": "Asset_Remove_metadata_value", + "blob": "1a18417373657449442d31323334353637380107eea70ad10cb2cbd50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Remove documents", - "1 | Ids : 0", - "2 | Ticker : TICKER-12345", - "3 | Tip : POLYX 1234.56789" + "0 | Asset : Remove metadata value", + "1 | Asset id : AssetID-12345678", + "2 | Metadata key : 14677808227520343559", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Asset : Remove documents", - "1 | Ids : 0", - "2 | Ticker : TICKER-12345", + "0 | Asset : Remove metadata value", + "1 | Asset id : AssetID-12345678", + "2 | Metadata key : 14677808227520343559", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 100", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 835, - "name": "Asset_Remove_documents", - "blob": "1a0b10672f0000406903000f000000bd3c12215449434b45522d3132333435d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 828, + "name": "Asset_Remove_metadata_value", + "blob": "1a18417373657449442d31323334353637380107eea70ad10cb2cbd503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Remove documents", - "1 | Ids [1/4] : 12135", - "1 | Ids [2/4] : 223552", - "1 | Ids [3/4] : 15", - "1 | Ids [4/4] : 554843325", - "2 | Ticker : TICKER-12345", - "3 | Tip : POLYX 5552342.355555" + "0 | Asset : Remove metadata value", + "1 | Asset id : AssetID-12345678", + "2 | Metadata key : 14677808227520343559" ], "output_expert": [ - "0 | Asset : Remove documents", - "1 | Ids [1/4] : 12135", - "1 | Ids [2/4] : 223552", - "1 | Ids [3/4] : 15", - "1 | Ids [4/4] : 554843325", - "2 | Ticker : TICKER-12345", + "0 | Asset : Remove metadata value", + "1 | Asset id : AssetID-12345678", + "2 | Metadata key : 14677808227520343559", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 50283", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 836, - "name": "Asset_Set_funding_round", - "blob": "1a0c5449434b45522d31323334352c526f756e644e616d655f32d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 829, + "name": "Asset_Remove_metadata_value", + "blob": "1a18417373657449442d31323334353637380049e42d231ac51574d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Set funding round", - "1 | Ticker : TICKER-12345", - "2 | Name : RoundName_2", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Asset : Remove metadata value", + "1 | Asset id : AssetID-12345678", + "2 | Metadata key : 8364808598960596041" ], "output_expert": [ - "0 | Asset : Set funding round", - "1 | Ticker : TICKER-12345", - "2 | Name : RoundName_2", + "0 | Asset : Remove metadata value", + "1 | Asset id : AssetID-12345678", + "2 | Metadata key : 8364808598960596041", "3 | Chain : Polymesh", "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 837, - "name": "Asset_Set_funding_round", - "blob": "1a0c5449434b45522d31323334352c526f756e644e616d655f31d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 830, + "name": "Asset_Remove_metadata_value", + "blob": "1a18417373657449442d31323334353637380107eea70ad10cb2cbd503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Set funding round", - "1 | Ticker : TICKER-12345", - "2 | Name : RoundName_1", - "3 | Tip : POLYX 55.555555" + "0 | Asset : Remove metadata value", + "1 | Asset id : AssetID-12345678", + "2 | Metadata key : 14677808227520343559", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Asset : Set funding round", - "1 | Ticker : TICKER-12345", - "2 | Name : RoundName_1", + "0 | Asset : Remove metadata value", + "1 | Asset id : AssetID-12345678", + "2 | Metadata key : 14677808227520343559", "3 | Chain : Polymesh", "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 838, - "name": "Asset_Set_funding_round", - "blob": "1a0c5449434b45522d31323334352c526f756e644e616d655f32d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 831, + "name": "Asset_Exempt_asset_affirmation", + "blob": "1a19417373657449442d3132333435363738d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Set funding round", - "1 | Ticker : TICKER-12345", - "2 | Name : RoundName_2", - "3 | Tip : POLYX 0.000987" + "0 | Asset : Exempt asset affirmation", + "1 | Asset id : AssetID-12345678", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Asset : Set funding round", - "1 | Ticker : TICKER-12345", - "2 | Name : RoundName_2", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Exempt asset affirmation", + "1 | Asset id : AssetID-12345678", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 839, - "name": "Asset_Set_funding_round", - "blob": "1a0c5449434b45522d31323334352c526f756e644e616d655f32d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 832, + "name": "Asset_Exempt_asset_affirmation", + "blob": "1a19417373657449442d3132333435363738d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Set funding round", - "1 | Ticker : TICKER-12345", - "2 | Name : RoundName_2", - "3 | Tip : POLYX 0.000987" + "0 | Asset : Exempt asset affirmation", + "1 | Asset id : AssetID-12345678", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Asset : Set funding round", - "1 | Ticker : TICKER-12345", - "2 | Name : RoundName_2", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Exempt asset affirmation", + "1 | Asset id : AssetID-12345678", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 840, - "name": "Asset_Set_funding_round", - "blob": "1a0c5449434b45522d31323334352c526f756e644e616d655f32d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 833, + "name": "Asset_Exempt_asset_affirmation", + "blob": "1a19417373657449442d3132333435363738d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Set funding round", - "1 | Ticker : TICKER-12345", - "2 | Name : RoundName_2", - "3 | Tip : POLYX 5552342.355555" + "0 | Asset : Exempt asset affirmation", + "1 | Asset id : AssetID-12345678", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Asset : Set funding round", - "1 | Ticker : TICKER-12345", - "2 | Name : RoundName_2", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Exempt asset affirmation", + "1 | Asset id : AssetID-12345678", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 841, - "name": "Asset_Update_identifiers", - "blob": "1a0d5449434b45522d313233343500d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 834, + "name": "Asset_Exempt_asset_affirmation", + "blob": "1a19417373657449442d3132333435363738d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Update identifiers", - "1 | Ticker : TICKER-12345", - "2 | Asset identifiers : ", - "3 | Tip : POLYX 0.000987" + "0 | Asset : Exempt asset affirmation", + "1 | Asset id : AssetID-12345678", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Asset : Update identifiers", - "1 | Ticker : TICKER-12345", - "2 | Asset identifiers : ", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Exempt asset affirmation", + "1 | Asset id : AssetID-12345678", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 842, - "name": "Asset_Update_identifiers", - "blob": "1a0d5449434b45522d31323334351000303337383333313030013033373833333130300255533033373833333130303503485755504b52304d504f55384647584254333934d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 835, + "name": "Asset_Exempt_asset_affirmation", + "blob": "1a19417373657449442d3132333435363738d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Update identifiers", - "1 | Ticker : TICKER-12345", - "2 | Asset identifiers [1/4] : 037833100", - "2 | Asset identifiers [2/4] : 037833100", - "2 | Asset identifiers [3/4] : US0378331005", - "2 | Asset identifiers [4/4] : HWUPKR0MPOU8FGXBT394", - "3 | Tip : POLYX 1234.56789" + "0 | Asset : Exempt asset affirmation", + "1 | Asset id : AssetID-12345678", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Asset : Update identifiers", - "1 | Ticker : TICKER-12345", - "2 | Asset identifiers [1/4] : 037833100", - "2 | Asset identifiers [2/4] : 037833100", - "2 | Asset identifiers [3/4] : US0378331005", - "2 | Asset identifiers [4/4] : HWUPKR0MPOU8FGXBT394", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Exempt asset affirmation", + "1 | Asset id : AssetID-12345678", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 843, - "name": "Asset_Update_identifiers", - "blob": "1a0d5449434b45522d31323334351000303337383333313030013033373833333130300255533033373833333130303503485755504b52304d504f55384647584254333934d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 836, + "name": "Asset_Remove_asset_affirmation_exemption", + "blob": "1a1a417373657449442d3132333435363738d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Update identifiers", - "1 | Ticker : TICKER-12345", - "2 | Asset identifiers [1/4] : 037833100", - "2 | Asset identifiers [2/4] : 037833100", - "2 | Asset identifiers [3/4] : US0378331005", - "2 | Asset identifiers [4/4] : HWUPKR0MPOU8FGXBT394", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Asset : Remove asset affirmation exemption", + "1 | Asset id : AssetID-12345678", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Asset : Update identifiers", - "1 | Ticker : TICKER-12345", - "2 | Asset identifiers [1/4] : 037833100", - "2 | Asset identifiers [2/4] : 037833100", - "2 | Asset identifiers [3/4] : US0378331005", - "2 | Asset identifiers [4/4] : HWUPKR0MPOU8FGXBT394", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Remove asset affirmation exemption", + "1 | Asset id : AssetID-12345678", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 844, - "name": "Asset_Update_identifiers", - "blob": "1a0d5449434b45522d313233343500d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 837, + "name": "Asset_Remove_asset_affirmation_exemption", + "blob": "1a1a417373657449442d3132333435363738d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Update identifiers", - "1 | Ticker : TICKER-12345", - "2 | Asset identifiers : ", - "3 | Tip : POLYX 5552342.355555" + "0 | Asset : Remove asset affirmation exemption", + "1 | Asset id : AssetID-12345678", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Asset : Update identifiers", - "1 | Ticker : TICKER-12345", - "2 | Asset identifiers : ", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Remove asset affirmation exemption", + "1 | Asset id : AssetID-12345678", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 845, - "name": "Asset_Update_identifiers", - "blob": "1a0d5449434b45522d313233343500d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 838, + "name": "Asset_Remove_asset_affirmation_exemption", + "blob": "1a1a417373657449442d3132333435363738d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Update identifiers", - "1 | Ticker : TICKER-12345", - "2 | Asset identifiers : ", - "3 | Tip : POLYX 5552342.355555" + "0 | Asset : Remove asset affirmation exemption", + "1 | Asset id : AssetID-12345678" ], "output_expert": [ - "0 | Asset : Update identifiers", - "1 | Ticker : TICKER-12345", - "2 | Asset identifiers : ", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Remove asset affirmation exemption", + "1 | Asset id : AssetID-12345678", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 846, - "name": "Asset_Controller_transfer", - "blob": "1a0e5449434b45522d3132333435a6758c3aa9f7ac8766c5a254e283c97464af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e2010000000000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 839, + "name": "Asset_Remove_asset_affirmation_exemption", + "blob": "1a1a417373657449442d3132333435363738d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", - "3 | From portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "3 | From portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "3 | From portfolio [3/3] : 123456", - "4 | Tip : POLYX 1234.56789" + "0 | Asset : Remove asset affirmation exemption", + "1 | Asset id : AssetID-12345678", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Asset : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", - "3 | From portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "3 | From portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "3 | From portfolio [3/3] : 123456", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Remove asset affirmation exemption", + "1 | Asset id : AssetID-12345678", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 847, - "name": "Asset_Controller_transfer", - "blob": "1a0e5449434b45522d3132333435a6758c3aa9f7ac8766c5a254e283c97464af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e2010000000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 840, + "name": "Asset_Remove_asset_affirmation_exemption", + "blob": "1a1a417373657449442d3132333435363738d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", - "3 | From portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "3 | From portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "3 | From portfolio [3/3] : 123456", - "4 | Tip : POLYX 5552342.355555" + "0 | Asset : Remove asset affirmation exemption", + "1 | Asset id : AssetID-12345678" ], "output_expert": [ - "0 | Asset : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", - "3 | From portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "3 | From portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "3 | From portfolio [3/3] : 123456", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Remove asset affirmation exemption", + "1 | Asset id : AssetID-12345678", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 848, - "name": "Asset_Controller_transfer", - "blob": "1a0e5449434b45522d3132333435a6758c3aa9f7ac8766c5a254e283c97464af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e2010000000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 841, + "name": "Asset_Pre_approve_asset", + "blob": "1a1b417373657449442d3132333435363738d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", - "3 | From portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "3 | From portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "3 | From portfolio [3/3] : 123456", - "4 | Tip : POLYX 5552342.355555" + "0 | Asset : Pre approve asset", + "1 | Asset id : AssetID-12345678", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Asset : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", - "3 | From portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "3 | From portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "3 | From portfolio [3/3] : 123456", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Pre approve asset", + "1 | Asset id : AssetID-12345678", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 849, - "name": "Asset_Controller_transfer", - "blob": "1a0e5449434b45522d3132333435a6758c3aa9f7ac8766c5a254e283c97464af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e2010000000000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 842, + "name": "Asset_Pre_approve_asset", + "blob": "1a1b417373657449442d3132333435363738d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", - "3 | From portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "3 | From portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "3 | From portfolio [3/3] : 123456", - "4 | Tip : POLYX 1234.56789" + "0 | Asset : Pre approve asset", + "1 | Asset id : AssetID-12345678" ], "output_expert": [ - "0 | Asset : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", - "3 | From portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "3 | From portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "3 | From portfolio [3/3] : 123456", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Pre approve asset", + "1 | Asset id : AssetID-12345678", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 850, - "name": "Asset_Controller_transfer", - "blob": "1a0e5449434b45522d3132333435a6758c3aa9f7ac8766c5a254e283c97464af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e2010000000000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 843, + "name": "Asset_Pre_approve_asset", + "blob": "1a1b417373657449442d3132333435363738d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", - "3 | From portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "3 | From portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "3 | From portfolio [3/3] : 123456", - "4 | Tip : POLYX 55.555555" + "0 | Asset : Pre approve asset", + "1 | Asset id : AssetID-12345678" ], "output_expert": [ - "0 | Asset : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", - "3 | From portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "3 | From portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "3 | From portfolio [3/3] : 123456", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Pre approve asset", + "1 | Asset id : AssetID-12345678", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 851, - "name": "Asset_Register_custom_asset_type", - "blob": "1a0f100e2a0c49d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 844, + "name": "Asset_Pre_approve_asset", + "blob": "1a1b417373657449442d3132333435363738d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Register custom asset type", - "1 | Ty [1/4] : 14", - "1 | Ty [2/4] : 42", - "1 | Ty [3/4] : 12", - "1 | Ty [4/4] : 73", + "0 | Asset : Pre approve asset", + "1 | Asset id : AssetID-12345678" + ], + "output_expert": [ + "0 | Asset : Pre approve asset", + "1 | Asset id : AssetID-12345678", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 845, + "name": "Asset_Pre_approve_asset", + "blob": "1a1b417373657449442d3132333435363738d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Asset : Pre approve asset", + "1 | Asset id : AssetID-12345678", "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Asset : Register custom asset type", - "1 | Ty [1/4] : 14", - "1 | Ty [2/4] : 42", - "1 | Ty [3/4] : 12", - "1 | Ty [4/4] : 73", + "0 | Asset : Pre approve asset", + "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", "3 | Nonce : 2339", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 852, - "name": "Asset_Register_custom_asset_type", - "blob": "1a0f100c293435d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 846, + "name": "Asset_Remove_asset_pre_approval", + "blob": "1a1c417373657449442d3132333435363738d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Register custom asset type", - "1 | Ty [1/4] : 12", - "1 | Ty [2/4] : 41", - "1 | Ty [3/4] : 52", - "1 | Ty [4/4] : 53", - "2 | Tip : POLYX 55.555555" + "0 | Asset : Remove asset pre approval", + "1 | Asset id : AssetID-12345678", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Asset : Register custom asset type", - "1 | Ty [1/4] : 12", - "1 | Ty [2/4] : 41", - "1 | Ty [3/4] : 52", - "1 | Ty [4/4] : 53", + "0 | Asset : Remove asset pre approval", + "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 2339", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 853, - "name": "Asset_Register_custom_asset_type", - "blob": "1a0f100c293435d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 847, + "name": "Asset_Remove_asset_pre_approval", + "blob": "1a1c417373657449442d3132333435363738d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Register custom asset type", - "1 | Ty [1/4] : 12", - "1 | Ty [2/4] : 41", - "1 | Ty [3/4] : 52", - "1 | Ty [4/4] : 53", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Asset : Remove asset pre approval", + "1 | Asset id : AssetID-12345678" ], "output_expert": [ - "0 | Asset : Register custom asset type", - "1 | Ty [1/4] : 12", - "1 | Ty [2/4] : 41", - "1 | Ty [3/4] : 52", - "1 | Ty [4/4] : 53", + "0 | Asset : Remove asset pre approval", + "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 854, - "name": "Asset_Register_custom_asset_type", - "blob": "1a0f100e2a0c49d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 848, + "name": "Asset_Remove_asset_pre_approval", + "blob": "1a1c417373657449442d3132333435363738d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Register custom asset type", - "1 | Ty [1/4] : 14", - "1 | Ty [2/4] : 42", - "1 | Ty [3/4] : 12", - "1 | Ty [4/4] : 73", - "2 | Tip : POLYX 1234.56789" + "0 | Asset : Remove asset pre approval", + "1 | Asset id : AssetID-12345678", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Asset : Register custom asset type", - "1 | Ty [1/4] : 14", - "1 | Ty [2/4] : 42", - "1 | Ty [3/4] : 12", - "1 | Ty [4/4] : 73", + "0 | Asset : Remove asset pre approval", + "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 855, - "name": "Asset_Register_custom_asset_type", - "blob": "1a0f100d0c1323d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 849, + "name": "Asset_Remove_asset_pre_approval", + "blob": "1a1c417373657449442d3132333435363738d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Register custom asset type", - "1 | Ty [1/4] : 13", - "1 | Ty [2/4] : 12", - "1 | Ty [3/4] : 19", - "1 | Ty [4/4] : 35", - "2 | Tip : POLYX 0.000987" + "0 | Asset : Remove asset pre approval", + "1 | Asset id : AssetID-12345678", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Asset : Register custom asset type", - "1 | Ty [1/4] : 13", - "1 | Ty [2/4] : 12", - "1 | Ty [3/4] : 19", - "1 | Ty [4/4] : 35", + "0 | Asset : Remove asset pre approval", + "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 856, - "name": "Asset_Create_asset_with_custom_type", - "blob": "1a102841737365744e616d65315449434b45522d313233343501100e2a0c491000303337383333313030013033373833333130300255533033373833333130303503485755504b52304d504f55384647584254333934014846756e64696e675f526f756e645f4e616d65d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 850, + "name": "Asset_Remove_asset_pre_approval", + "blob": "1a1c417373657449442d3132333435363738d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Create asset with custom type", - "1 | Name : AssetName1", - "2 | Ticker : TICKER-12345", - "3 | Divisible : True", - "4 | Custom asset type [1/4] : 14", - "4 | Custom asset type [2/4] : 42", - "4 | Custom asset type [3/4] : 12", - "4 | Custom asset type [4/4] : 73", - "5 | Identifiers [1/4] : 037833100", - "5 | Identifiers [2/4] : 037833100", - "5 | Identifiers [3/4] : US0378331005", - "5 | Identifiers [4/4] : HWUPKR0MPOU8FGXBT394", - "6 | Funding round : Funding_Round_Name", - "7 | Tip : POLYX 1234.56789" + "0 | Asset : Remove asset pre approval", + "1 | Asset id : AssetID-12345678", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Asset : Create asset with custom type", - "1 | Name : AssetName1", - "2 | Ticker : TICKER-12345", - "3 | Divisible : True", - "4 | Custom asset type [1/4] : 14", - "4 | Custom asset type [2/4] : 42", - "4 | Custom asset type [3/4] : 12", - "4 | Custom asset type [4/4] : 73", - "5 | Identifiers [1/4] : 037833100", - "5 | Identifiers [2/4] : 037833100", - "5 | Identifiers [3/4] : US0378331005", - "5 | Identifiers [4/4] : HWUPKR0MPOU8FGXBT394", - "6 | Funding round : Funding_Round_Name", - "7 | Chain : Polymesh", - "8 | Nonce : 2339", - "9 | Tip : POLYX 1234.56789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Remove asset pre approval", + "1 | Asset id : AssetID-12345678", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 857, - "name": "Asset_Create_asset_with_custom_type", - "blob": "1a102841737365744e616d65315449434b45522d313233343500100d0c132300014846756e64696e675f526f756e645f4e616d65d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 851, + "name": "Asset_Add_mandatory_mediators", + "blob": "1a1d417373657449442d313233343536373810149b869369178a115cb618e52246fc9dfa14cbe32e92dc17261798fffd25989a536d1131994a898243e7d84e71ecd64e2564ffb2194939ece85721bc1229b38bacd48e2bd35829780dca3e0f53d1d09e63ce03b5742e1e4cd37d3daf5c518f05d5ada77bccd8f3506f154b8bb418328e039048cce51bee705679ebb6aaf84fafd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Create asset with custom type", - "1 | Name : AssetName1", - "2 | Ticker : TICKER-12345", - "3 | Divisible : False", - "4 | Custom asset type [1/4] : 13", - "4 | Custom asset type [2/4] : 12", - "4 | Custom asset type [3/4] : 19", - "4 | Custom asset type [4/4] : 35", - "5 | Identifiers : ", - "6 | Funding round : Funding_Round_Name" + "0 | Asset : Add mandatory mediators", + "1 | Asset id : AssetID-12345678", + "2 | Mediators [1/8] : 149b869369178a115cb618e52246fc9dfa14cb", + "2 | Mediators [2/8] : e32e92dc17261798fffd25989a", + "2 | Mediators [3/8] : 536d1131994a898243e7d84e71ecd64e2564ff", + "2 | Mediators [4/8] : b2194939ece85721bc1229b38b", + "2 | Mediators [5/8] : acd48e2bd35829780dca3e0f53d1d09e63ce03", + "2 | Mediators [6/8] : b5742e1e4cd37d3daf5c518f05", + "2 | Mediators [7/8] : d5ada77bccd8f3506f154b8bb418328e039048", + "2 | Mediators [8/8] : cce51bee705679ebb6aaf84faf", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Asset : Create asset with custom type", - "1 | Name : AssetName1", - "2 | Ticker : TICKER-12345", - "3 | Divisible : False", - "4 | Custom asset type [1/4] : 13", - "4 | Custom asset type [2/4] : 12", - "4 | Custom asset type [3/4] : 19", - "4 | Custom asset type [4/4] : 35", - "5 | Identifiers : ", - "6 | Funding round : Funding_Round_Name", - "7 | Chain : Polymesh", - "8 | Nonce : 1", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Add mandatory mediators", + "1 | Asset id : AssetID-12345678", + "2 | Mediators [1/8] : 149b869369178a115cb618e52246fc9dfa14cb", + "2 | Mediators [2/8] : e32e92dc17261798fffd25989a", + "2 | Mediators [3/8] : 536d1131994a898243e7d84e71ecd64e2564ff", + "2 | Mediators [4/8] : b2194939ece85721bc1229b38b", + "2 | Mediators [5/8] : acd48e2bd35829780dca3e0f53d1d09e63ce03", + "2 | Mediators [6/8] : b5742e1e4cd37d3daf5c518f05", + "2 | Mediators [7/8] : d5ada77bccd8f3506f154b8bb418328e039048", + "2 | Mediators [8/8] : cce51bee705679ebb6aaf84faf", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 858, - "name": "Asset_Create_asset_with_custom_type", - "blob": "1a102841737365744e616d65315449434b45522d313233343500100e2a0c4900014846756e64696e675f526f756e645f4e616d65d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 852, + "name": "Asset_Add_mandatory_mediators", + "blob": "1a1d417373657449442d3132333435363738088bb35e3a7569efeb35566a8806ce18f7d1388d5015ad0bd78bb8048035339307f101128715a230d7091dda3214ddea74430aac297f351094794bd78f9e670bd2d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Create asset with custom type", - "1 | Name : AssetName1", - "2 | Ticker : TICKER-12345", - "3 | Divisible : False", - "4 | Custom asset type [1/4] : 14", - "4 | Custom asset type [2/4] : 42", - "4 | Custom asset type [3/4] : 12", - "4 | Custom asset type [4/4] : 73", - "5 | Identifiers : ", - "6 | Funding round : Funding_Round_Name", - "7 | Tip : POLYX 1234.56789" + "0 | Asset : Add mandatory mediators", + "1 | Asset id : AssetID-12345678", + "2 | Mediators [1/4] : 8bb35e3a7569efeb35566a8806ce18f7d1388d", + "2 | Mediators [2/4] : 5015ad0bd78bb8048035339307", + "2 | Mediators [3/4] : f101128715a230d7091dda3214ddea74430aac", + "2 | Mediators [4/4] : 297f351094794bd78f9e670bd2" ], "output_expert": [ - "0 | Asset : Create asset with custom type", - "1 | Name : AssetName1", - "2 | Ticker : TICKER-12345", - "3 | Divisible : False", - "4 | Custom asset type [1/4] : 14", - "4 | Custom asset type [2/4] : 42", - "4 | Custom asset type [3/4] : 12", - "4 | Custom asset type [4/4] : 73", - "5 | Identifiers : ", - "6 | Funding round : Funding_Round_Name", - "7 | Chain : Polymesh", - "8 | Nonce : 100", - "9 | Tip : POLYX 1234.56789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, + "0 | Asset : Add mandatory mediators", + "1 | Asset id : AssetID-12345678", + "2 | Mediators [1/4] : 8bb35e3a7569efeb35566a8806ce18f7d1388d", + "2 | Mediators [2/4] : 5015ad0bd78bb8048035339307", + "2 | Mediators [3/4] : f101128715a230d7091dda3214ddea74430aac", + "2 | Mediators [4/4] : 297f351094794bd78f9e670bd2", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, { - "index": 859, - "name": "Asset_Create_asset_with_custom_type", - "blob": "1a102841737365744e616d65315449434b45522d313233343501100c2934351000303337383333313030013033373833333130300255533033373833333130303503485755504b52304d504f55384647584254333934014846756e64696e675f526f756e645f4e616d65d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 853, + "name": "Asset_Add_mandatory_mediators", + "blob": "1a1d417373657449442d3132333435363738086bad91c1ec285a839d5a1c8c5a8d0c53591044aa2e030b3b74e2fb62d5336d50a2a4ce025ab2ad897cdce2799f84d2368eb8cdd2bbd9d2950e4653394c94561cd503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Create asset with custom type", - "1 | Name : AssetName1", - "2 | Ticker : TICKER-12345", - "3 | Divisible : True", - "4 | Custom asset type [1/4] : 12", - "4 | Custom asset type [2/4] : 41", - "4 | Custom asset type [3/4] : 52", - "4 | Custom asset type [4/4] : 53", - "5 | Identifiers [1/4] : 037833100", - "5 | Identifiers [2/4] : 037833100", - "5 | Identifiers [3/4] : US0378331005", - "5 | Identifiers [4/4] : HWUPKR0MPOU8FGXBT394", - "6 | Funding round : Funding_Round_Name", - "7 | Tip : POLYX 0.000987" + "0 | Asset : Add mandatory mediators", + "1 | Asset id : AssetID-12345678", + "2 | Mediators [1/4] : 6bad91c1ec285a839d5a1c8c5a8d0c53591044", + "2 | Mediators [2/4] : aa2e030b3b74e2fb62d5336d50", + "2 | Mediators [3/4] : a2a4ce025ab2ad897cdce2799f84d2368eb8cd", + "2 | Mediators [4/4] : d2bbd9d2950e4653394c94561c", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Asset : Create asset with custom type", - "1 | Name : AssetName1", - "2 | Ticker : TICKER-12345", - "3 | Divisible : True", - "4 | Custom asset type [1/4] : 12", - "4 | Custom asset type [2/4] : 41", - "4 | Custom asset type [3/4] : 52", - "4 | Custom asset type [4/4] : 53", - "5 | Identifiers [1/4] : 037833100", - "5 | Identifiers [2/4] : 037833100", - "5 | Identifiers [3/4] : US0378331005", - "5 | Identifiers [4/4] : HWUPKR0MPOU8FGXBT394", - "6 | Funding round : Funding_Round_Name", - "7 | Chain : Polymesh", - "8 | Nonce : 0", - "9 | Tip : POLYX 0.000987", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Add mandatory mediators", + "1 | Asset id : AssetID-12345678", + "2 | Mediators [1/4] : 6bad91c1ec285a839d5a1c8c5a8d0c53591044", + "2 | Mediators [2/4] : aa2e030b3b74e2fb62d5336d50", + "2 | Mediators [3/4] : a2a4ce025ab2ad897cdce2799f84d2368eb8cd", + "2 | Mediators [4/4] : d2bbd9d2950e4653394c94561c", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 860, - "name": "Asset_Create_asset_with_custom_type", - "blob": "1a102841737365744e616d65315449434b45522d31323334350010200b200b1000303337383333313030013033373833333130300255533033373833333130303503485755504b52304d504f55384647584254333934014846756e64696e675f526f756e645f4e616d65d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 854, + "name": "Asset_Add_mandatory_mediators", + "blob": "1a1d417373657449442d313233343536373810149b869369178a115cb618e52246fc9dfa14cbe32e92dc17261798fffd25989a536d1131994a898243e7d84e71ecd64e2564ffb2194939ece85721bc1229b38bacd48e2bd35829780dca3e0f53d1d09e63ce03b5742e1e4cd37d3daf5c518f05d5ada77bccd8f3506f154b8bb418328e039048cce51bee705679ebb6aaf84fafd503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Create asset with custom type", - "1 | Name : AssetName1", - "2 | Ticker : TICKER-12345", - "3 | Divisible : False", - "4 | Custom asset type [1/4] : 32", - "4 | Custom asset type [2/4] : 11", - "4 | Custom asset type [3/4] : 32", - "4 | Custom asset type [4/4] : 11", - "5 | Identifiers [1/4] : 037833100", - "5 | Identifiers [2/4] : 037833100", - "5 | Identifiers [3/4] : US0378331005", - "5 | Identifiers [4/4] : HWUPKR0MPOU8FGXBT394", - "6 | Funding round : Funding_Round_Name", - "7 | Tip : POLYX 0.000987" + "0 | Asset : Add mandatory mediators", + "1 | Asset id : AssetID-12345678", + "2 | Mediators [1/8] : 149b869369178a115cb618e52246fc9dfa14cb", + "2 | Mediators [2/8] : e32e92dc17261798fffd25989a", + "2 | Mediators [3/8] : 536d1131994a898243e7d84e71ecd64e2564ff", + "2 | Mediators [4/8] : b2194939ece85721bc1229b38b", + "2 | Mediators [5/8] : acd48e2bd35829780dca3e0f53d1d09e63ce03", + "2 | Mediators [6/8] : b5742e1e4cd37d3daf5c518f05", + "2 | Mediators [7/8] : d5ada77bccd8f3506f154b8bb418328e039048", + "2 | Mediators [8/8] : cce51bee705679ebb6aaf84faf", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Asset : Create asset with custom type", - "1 | Name : AssetName1", - "2 | Ticker : TICKER-12345", - "3 | Divisible : False", - "4 | Custom asset type [1/4] : 32", - "4 | Custom asset type [2/4] : 11", - "4 | Custom asset type [3/4] : 32", - "4 | Custom asset type [4/4] : 11", - "5 | Identifiers [1/4] : 037833100", - "5 | Identifiers [2/4] : 037833100", - "5 | Identifiers [3/4] : US0378331005", - "5 | Identifiers [4/4] : HWUPKR0MPOU8FGXBT394", - "6 | Funding round : Funding_Round_Name", - "7 | Chain : Polymesh", - "8 | Nonce : 100", - "9 | Tip : POLYX 0.000987", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Add mandatory mediators", + "1 | Asset id : AssetID-12345678", + "2 | Mediators [1/8] : 149b869369178a115cb618e52246fc9dfa14cb", + "2 | Mediators [2/8] : e32e92dc17261798fffd25989a", + "2 | Mediators [3/8] : 536d1131994a898243e7d84e71ecd64e2564ff", + "2 | Mediators [4/8] : b2194939ece85721bc1229b38b", + "2 | Mediators [5/8] : acd48e2bd35829780dca3e0f53d1d09e63ce03", + "2 | Mediators [6/8] : b5742e1e4cd37d3daf5c518f05", + "2 | Mediators [7/8] : d5ada77bccd8f3506f154b8bb418328e039048", + "2 | Mediators [8/8] : cce51bee705679ebb6aaf84faf", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 861, - "name": "Asset_Set_asset_metadata", - "blob": "1a115449434b45522d313233343500c0ee25ea27d4956d3048656c6c6f20776f726c64210101a17c50010000000000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 855, + "name": "Asset_Add_mandatory_mediators", + "blob": "1a1d417373657449442d3132333435363738048619b8b7687142fce1366ac45437fb41b0d56a7894114f377f6a459ebc2db09ad503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Set asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Key : 7896450789561200320", - "3 | Value : 48656c6c6f20776f726c6421", - "4 | Detail [1/2] : 22052001", - "4 | Detail [2/2] : Unlocked", - "5 | Tip : POLYX 1234.56789" + "0 | Asset : Add mandatory mediators", + "1 | Asset id : AssetID-12345678", + "2 | Mediators [1/2] : 8619b8b7687142fce1366ac45437fb41b0d56a", + "2 | Mediators [2/2] : 7894114f377f6a459ebc2db09a", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Asset : Set asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Key : 7896450789561200320", - "3 | Value : 48656c6c6f20776f726c6421", - "4 | Detail [1/2] : 22052001", - "4 | Detail [2/2] : Unlocked", - "5 | Chain : Polymesh", - "6 | Nonce : 100", - "7 | Tip : POLYX 1234.56789", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Add mandatory mediators", + "1 | Asset id : AssetID-12345678", + "2 | Mediators [1/2] : 8619b8b7687142fce1366ac45437fb41b0d56a", + "2 | Mediators [2/2] : 7894114f377f6a459ebc2db09a", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 862, - "name": "Asset_Set_asset_metadata", - "blob": "1a115449434b45522d31323334350139e0d7a8e4ed520b3048656c6c6f20776f726c64210101d20296490000000001d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 856, + "name": "Asset_Remove_mandatory_mediators", + "blob": "1a1e417373657449442d313233343536373810149b869369178a115cb618e52246fc9dfa14cbe32e92dc17261798fffd25989a536d1131994a898243e7d84e71ecd64e2564ffb2194939ece85721bc1229b38bacd48e2bd35829780dca3e0f53d1d09e63ce03b5742e1e4cd37d3daf5c518f05d5ada77bccd8f3506f154b8bb418328e039048cce51bee705679ebb6aaf84fafd503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Set asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Key : 815976048848527417", - "3 | Value : 48656c6c6f20776f726c6421", - "4 | Detail [1/2] : 1234567890", - "4 | Detail [2/2] : Locked", - "5 | Tip : POLYX 0.000987" + "0 | Asset : Remove mandatory mediators", + "1 | Asset id : AssetID-12345678", + "2 | Mediators [1/8] : 149b869369178a115cb618e52246fc9dfa14cb", + "2 | Mediators [2/8] : e32e92dc17261798fffd25989a", + "2 | Mediators [3/8] : 536d1131994a898243e7d84e71ecd64e2564ff", + "2 | Mediators [4/8] : b2194939ece85721bc1229b38b", + "2 | Mediators [5/8] : acd48e2bd35829780dca3e0f53d1d09e63ce03", + "2 | Mediators [6/8] : b5742e1e4cd37d3daf5c518f05", + "2 | Mediators [7/8] : d5ada77bccd8f3506f154b8bb418328e039048", + "2 | Mediators [8/8] : cce51bee705679ebb6aaf84faf", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Asset : Set asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Key : 815976048848527417", - "3 | Value : 48656c6c6f20776f726c6421", - "4 | Detail [1/2] : 1234567890", - "4 | Detail [2/2] : Locked", - "5 | Chain : Polymesh", - "6 | Nonce : 1", - "7 | Tip : POLYX 0.000987", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Remove mandatory mediators", + "1 | Asset id : AssetID-12345678", + "2 | Mediators [1/8] : 149b869369178a115cb618e52246fc9dfa14cb", + "2 | Mediators [2/8] : e32e92dc17261798fffd25989a", + "2 | Mediators [3/8] : 536d1131994a898243e7d84e71ecd64e2564ff", + "2 | Mediators [4/8] : b2194939ece85721bc1229b38b", + "2 | Mediators [5/8] : acd48e2bd35829780dca3e0f53d1d09e63ce03", + "2 | Mediators [6/8] : b5742e1e4cd37d3daf5c518f05", + "2 | Mediators [7/8] : d5ada77bccd8f3506f154b8bb418328e039048", + "2 | Mediators [8/8] : cce51bee705679ebb6aaf84faf", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 863, - "name": "Asset_Set_asset_metadata", - "blob": "1a115449434b45522d31323334350139e0d7a8e4ed520b3048656c6c6f20776f726c64210101af14ca000000000002ef91dfce0f000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 857, + "name": "Asset_Remove_mandatory_mediators", + "blob": "1a1e417373657449442d3132333435363738086bad91c1ec285a839d5a1c8c5a8d0c53591044aa2e030b3b74e2fb62d5336d50a2a4ce025ab2ad897cdce2799f84d2368eb8cdd2bbd9d2950e4653394c94561cd5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Set asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Key : 815976048848527417", - "3 | Value : 48656c6c6f20776f726c6421", - "4 | Detail [1/2] : 13243567", - "4 | Detail [2/2] : 67895267823", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789" + "0 | Asset : Remove mandatory mediators", + "1 | Asset id : AssetID-12345678", + "2 | Mediators [1/4] : 6bad91c1ec285a839d5a1c8c5a8d0c53591044", + "2 | Mediators [2/4] : aa2e030b3b74e2fb62d5336d50", + "2 | Mediators [3/4] : a2a4ce025ab2ad897cdce2799f84d2368eb8cd", + "2 | Mediators [4/4] : d2bbd9d2950e4653394c94561c", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Asset : Set asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Key : 815976048848527417", - "3 | Value : 48656c6c6f20776f726c6421", - "4 | Detail [1/2] : 13243567", - "4 | Detail [2/2] : 67895267823", - "5 | Chain : Polymesh", - "6 | Nonce : 50283", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Remove mandatory mediators", + "1 | Asset id : AssetID-12345678", + "2 | Mediators [1/4] : 6bad91c1ec285a839d5a1c8c5a8d0c53591044", + "2 | Mediators [2/4] : aa2e030b3b74e2fb62d5336d50", + "2 | Mediators [3/4] : a2a4ce025ab2ad897cdce2799f84d2368eb8cd", + "2 | Mediators [4/4] : d2bbd9d2950e4653394c94561c", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 864, - "name": "Asset_Set_asset_metadata", - "blob": "1a115449434b45522d313233343500c0ee25ea27d4956d3048656c6c6f20776f726c64210101a17c50010000000000d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 858, + "name": "Asset_Remove_mandatory_mediators", + "blob": "1a1e417373657449442d31323334353637380c21752f81a34457c2fd8b7b7954d6e93450c2c733f3c3a41de40a24202d177f07a04b86c76310abddcab01d891c66355889c8e7a723d53bf6f8b76c8e46d4fc1df85ed5750e60f6b724e98a4baeea510c5305b8198184032fa806a4faf0f4207ed503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Set asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Key : 7896450789561200320", - "3 | Value : 48656c6c6f20776f726c6421", - "4 | Detail [1/2] : 22052001", - "4 | Detail [2/2] : Unlocked", - "5 | Tip : POLYX 55.555555" + "0 | Asset : Remove mandatory mediators", + "1 | Asset id : AssetID-12345678", + "2 | Mediators [1/6] : 21752f81a34457c2fd8b7b7954d6e93450c2c7", + "2 | Mediators [2/6] : 33f3c3a41de40a24202d177f07", + "2 | Mediators [3/6] : a04b86c76310abddcab01d891c66355889c8e7", + "2 | Mediators [4/6] : a723d53bf6f8b76c8e46d4fc1d", + "2 | Mediators [5/6] : f85ed5750e60f6b724e98a4baeea510c5305b8", + "2 | Mediators [6/6] : 198184032fa806a4faf0f4207e", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Asset : Set asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Key : 7896450789561200320", - "3 | Value : 48656c6c6f20776f726c6421", - "4 | Detail [1/2] : 22052001", - "4 | Detail [2/2] : Unlocked", - "5 | Chain : Polymesh", - "6 | Nonce : 2339", - "7 | Tip : POLYX 55.555555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Remove mandatory mediators", + "1 | Asset id : AssetID-12345678", + "2 | Mediators [1/6] : 21752f81a34457c2fd8b7b7954d6e93450c2c7", + "2 | Mediators [2/6] : 33f3c3a41de40a24202d177f07", + "2 | Mediators [3/6] : a04b86c76310abddcab01d891c66355889c8e7", + "2 | Mediators [4/6] : a723d53bf6f8b76c8e46d4fc1d", + "2 | Mediators [5/6] : f85ed5750e60f6b724e98a4baeea510c5305b8", + "2 | Mediators [6/6] : 198184032fa806a4faf0f4207e", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 865, - "name": "Asset_Set_asset_metadata", - "blob": "1a115449434b45522d313233343500c0ee25ea27d4956d3048656c6c6f20776f726c64210101af14ca000000000002ef91dfce0f000000d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 859, + "name": "Asset_Remove_mandatory_mediators", + "blob": "1a1e417373657449442d3132333435363738048619b8b7687142fce1366ac45437fb41b0d56a7894114f377f6a459ebc2db09ad503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Set asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Key : 7896450789561200320", - "3 | Value : 48656c6c6f20776f726c6421", - "4 | Detail [1/2] : 13243567", - "4 | Detail [2/2] : 67895267823" + "0 | Asset : Remove mandatory mediators", + "1 | Asset id : AssetID-12345678", + "2 | Mediators [1/2] : 8619b8b7687142fce1366ac45437fb41b0d56a", + "2 | Mediators [2/2] : 7894114f377f6a459ebc2db09a", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Asset : Set asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Key : 7896450789561200320", - "3 | Value : 48656c6c6f20776f726c6421", - "4 | Detail [1/2] : 13243567", - "4 | Detail [2/2] : 67895267823", - "5 | Chain : Polymesh", - "6 | Nonce : 100", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Asset : Remove mandatory mediators", + "1 | Asset id : AssetID-12345678", + "2 | Mediators [1/2] : 8619b8b7687142fce1366ac45437fb41b0d56a", + "2 | Mediators [2/2] : 7894114f377f6a459ebc2db09a", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 866, - "name": "Asset_Set_asset_metadata_details", - "blob": "1a125449434b45522d31323334350139e0d7a8e4ed520b0104205ee51900000001d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 860, + "name": "Asset_Remove_mandatory_mediators", + "blob": "1a1e417373657449442d31323334353637380c21752f81a34457c2fd8b7b7954d6e93450c2c733f3c3a41de40a24202d177f07a04b86c76310abddcab01d891c66355889c8e7a723d53bf6f8b76c8e46d4fc1df85ed5750e60f6b724e98a4baeea510c5305b8198184032fa806a4faf0f4207ed5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Set asset metadata details", - "1 | Ticker : TICKER-12345", - "2 | Key : 815976048848527417", - "3 | Detail [1/2] : 111222333444", - "3 | Detail [2/2] : Locked" + "0 | Asset : Remove mandatory mediators", + "1 | Asset id : AssetID-12345678", + "2 | Mediators [1/6] : 21752f81a34457c2fd8b7b7954d6e93450c2c7", + "2 | Mediators [2/6] : 33f3c3a41de40a24202d177f07", + "2 | Mediators [3/6] : a04b86c76310abddcab01d891c66355889c8e7", + "2 | Mediators [4/6] : a723d53bf6f8b76c8e46d4fc1d", + "2 | Mediators [5/6] : f85ed5750e60f6b724e98a4baeea510c5305b8", + "2 | Mediators [6/6] : 198184032fa806a4faf0f4207e", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Asset : Set asset metadata details", - "1 | Ticker : TICKER-12345", - "2 | Key : 815976048848527417", - "3 | Detail [1/2] : 111222333444", - "3 | Detail [2/2] : Locked", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", + "0 | Asset : Remove mandatory mediators", + "1 | Asset id : AssetID-12345678", + "2 | Mediators [1/6] : 21752f81a34457c2fd8b7b7954d6e93450c2c7", + "2 | Mediators [2/6] : 33f3c3a41de40a24202d177f07", + "2 | Mediators [3/6] : a04b86c76310abddcab01d891c66355889c8e7", + "2 | Mediators [4/6] : a723d53bf6f8b76c8e46d4fc1d", + "2 | Mediators [5/6] : f85ed5750e60f6b724e98a4baeea510c5305b8", + "2 | Mediators [6/6] : 198184032fa806a4faf0f4207e", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 867, - "name": "Asset_Set_asset_metadata_details", - "blob": "1a125449434b45522d313233343500c0ee25ea27d4956d01206ff8030000000000d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 861, + "name": "Asset_Link_ticker_to_asset_id", + "blob": "1a1f5449434b45522d3132333435417373657449442d3132333435363738d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Set asset metadata details", + "0 | Asset : Link ticker to asset id", "1 | Ticker : TICKER-12345", - "2 | Key : 7896450789561200320", - "3 | Detail [1/2] : 66613024", - "3 | Detail [2/2] : Unlocked", - "4 | Tip : POLYX 55.555555" + "2 | Asset id : AssetID-12345678", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Asset : Set asset metadata details", + "0 | Asset : Link ticker to asset id", "1 | Ticker : TICKER-12345", - "2 | Key : 7896450789561200320", - "3 | Detail [1/2] : 66613024", - "3 | Detail [2/2] : Unlocked", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "2 | Asset id : AssetID-12345678", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 868, - "name": "Asset_Set_asset_metadata_details", - "blob": "1a125449434b45522d313233343500c0ee25ea27d4956d010bcee4070000000002a416c63e65ea2d95d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 862, + "name": "Asset_Link_ticker_to_asset_id", + "blob": "1a1f5449434b45522d3132333435417373657449442d3132333435363738d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Set asset metadata details", + "0 | Asset : Link ticker to asset id", "1 | Ticker : TICKER-12345", - "2 | Key : 7896450789561200320", - "3 | Detail [1/2] : 132435467", - "3 | Detail [2/2] : 10749505606169007780", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "2 | Asset id : AssetID-12345678", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Asset : Set asset metadata details", + "0 | Asset : Link ticker to asset id", "1 | Ticker : TICKER-12345", - "2 | Key : 7896450789561200320", - "3 | Detail [1/2] : 132435467", - "3 | Detail [2/2] : 10749505606169007780", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "2 | Asset id : AssetID-12345678", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 869, - "name": "Asset_Set_asset_metadata_details", - "blob": "1a125449434b45522d31323334350139e0d7a8e4ed520b0104205ee51900000001d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 863, + "name": "Asset_Link_ticker_to_asset_id", + "blob": "1a1f5449434b45522d3132333435417373657449442d3132333435363738d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Set asset metadata details", + "0 | Asset : Link ticker to asset id", "1 | Ticker : TICKER-12345", - "2 | Key : 815976048848527417", - "3 | Detail [1/2] : 111222333444", - "3 | Detail [2/2] : Locked", - "4 | Tip : POLYX 55.555555" + "2 | Asset id : AssetID-12345678", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Asset : Set asset metadata details", + "0 | Asset : Link ticker to asset id", "1 | Ticker : TICKER-12345", - "2 | Key : 815976048848527417", - "3 | Detail [1/2] : 111222333444", - "3 | Detail [2/2] : Locked", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "2 | Asset id : AssetID-12345678", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 870, - "name": "Asset_Set_asset_metadata_details", - "blob": "1a125449434b45522d31323334350139e0d7a8e4ed520b0104205ee51900000001d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 864, + "name": "Asset_Link_ticker_to_asset_id", + "blob": "1a1f5449434b45522d3132333435417373657449442d3132333435363738d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Set asset metadata details", + "0 | Asset : Link ticker to asset id", "1 | Ticker : TICKER-12345", - "2 | Key : 815976048848527417", - "3 | Detail [1/2] : 111222333444", - "3 | Detail [2/2] : Locked", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "2 | Asset id : AssetID-12345678", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Asset : Set asset metadata details", + "0 | Asset : Link ticker to asset id", "1 | Ticker : TICKER-12345", - "2 | Key : 815976048848527417", - "3 | Detail [1/2] : 111222333444", - "3 | Detail [2/2] : Locked", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "2 | Asset id : AssetID-12345678", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 871, - "name": "Asset_Register_and_set_local_asset_metadata", - "blob": "1a135449434b45522d3132333435144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663f3048656c6c6f20776f726c64210101a17c50010000000000d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 865, + "name": "Asset_Link_ticker_to_asset_id", + "blob": "1a1f5449434b45522d3132333435417373657449442d3132333435363738d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Register and set local asset metadata", + "0 | Asset : Link ticker to asset id", "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Value : 48656c6c6f20776f726c6421", - "5 | Detail [1/2] : 22052001", - "5 | Detail [2/2] : Unlocked", - "6 | Tip : POLYX 0.000987" + "2 | Asset id : AssetID-12345678", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Asset : Register and set local asset metadata", + "0 | Asset : Link ticker to asset id", "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Value : 48656c6c6f20776f726c6421", - "5 | Detail [1/2] : 22052001", - "5 | Detail [2/2] : Unlocked", - "6 | Chain : Polymesh", - "7 | Nonce : 0", - "8 | Tip : POLYX 0.000987", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "2 | Asset id : AssetID-12345678", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 872, - "name": "Asset_Register_and_set_local_asset_metadata", - "blob": "1a135449434b45522d3132333435144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663f3048656c6c6f20776f726c64210101af14ca000000000002ef91dfce0f000000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 866, + "name": "Capitaldistribution_Distribute", + "blob": "1b00417373657449442d31323334353637386fec2100011900000000000000417373657449442d3132333435363738fd56e5cad3287b54b2352f703dbeafc0fd56e5cad3287b54b2352f703dbeafc08000000000000000010008000000000000d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Register and set local asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Value : 48656c6c6f20776f726c6421", - "5 | Detail [1/2] : 13243567", - "5 | Detail [2/2] : 67895267823" + "0 | Capitaldistribution : Distribute", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Portfolio : 25", + "3 | Currency : AssetID-12345678", + "4 | Per share [1/2] : POLYX 25612428566640944380857301230667", + "4 | Per share [2/2] : 6.766461", + "5 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "5 | Amount [2/2] : 6.766461", + "6 | Payment at : 128", + "7 | Expires at : 2048", + "8 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Asset : Register and set local asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Value : 48656c6c6f20776f726c6421", - "5 | Detail [1/2] : 13243567", - "5 | Detail [2/2] : 67895267823", - "6 | Chain : Polymesh", - "7 | Nonce : 50283", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Capitaldistribution : Distribute", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Portfolio : 25", + "3 | Currency : AssetID-12345678", + "4 | Per share [1/2] : POLYX 25612428566640944380857301230667", + "4 | Per share [2/2] : 6.766461", + "5 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "5 | Amount [2/2] : 6.766461", + "6 | Payment at : 128", + "7 | Expires at : 2048", + "8 | Chain : Polymesh", + "9 | Nonce : 2339", + "10 | Tip : POLYX 1234.56789", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 873, - "name": "Asset_Register_and_set_local_asset_metadata", - "blob": "1a135449434b45522d3132333435144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663f3048656c6c6f20776f726c64210101af14ca000000000002ef91dfce0f000000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 867, + "name": "Capitaldistribution_Distribute", + "blob": "1b00417373657449442d31323334353637386fec2100011900000000000000417373657449442d3132333435363738fd56e5cad3287b54b2352f703dbeafc0fd56e5cad3287b54b2352f703dbeafc00001000000000000018000000000000000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Register and set local asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Value : 48656c6c6f20776f726c6421", - "5 | Detail [1/2] : 13243567", - "5 | Detail [2/2] : 67895267823" + "0 | Capitaldistribution : Distribute", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Portfolio : 25", + "3 | Currency : AssetID-12345678", + "4 | Per share [1/2] : POLYX 25612428566640944380857301230667", + "4 | Per share [2/2] : 6.766461", + "5 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "5 | Amount [2/2] : 6.766461", + "6 | Payment at : 256", + "7 | Expires at : 128", + "8 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Asset : Register and set local asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Value : 48656c6c6f20776f726c6421", - "5 | Detail [1/2] : 13243567", - "5 | Detail [2/2] : 67895267823", - "6 | Chain : Polymesh", - "7 | Nonce : 2339", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Capitaldistribution : Distribute", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Portfolio : 25", + "3 | Currency : AssetID-12345678", + "4 | Per share [1/2] : POLYX 25612428566640944380857301230667", + "4 | Per share [2/2] : 6.766461", + "5 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "5 | Amount [2/2] : 6.766461", + "6 | Payment at : 256", + "7 | Expires at : 128", + "8 | Chain : Polymesh", + "9 | Nonce : 0", + "10 | Tip : POLYX 0.000987", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 874, - "name": "Asset_Register_and_set_local_asset_metadata", - "blob": "1a135449434b45522d3132333435144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663f3048656c6c6f20776f726c64210101d20296490000000001d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 868, + "name": "Capitaldistribution_Distribute", + "blob": "1b00417373657449442d31323334353637386fec210001cadc000000000000417373657449442d3132333435363738fd56e5cad3287b54b2352f703dbeafc0fd56e5cad3287b54b2352f703dbeafc00001000000000000010001000000000000d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Register and set local asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Value : 48656c6c6f20776f726c6421", - "5 | Detail [1/2] : 1234567890", - "5 | Detail [2/2] : Locked", - "6 | Tip : POLYX 55.555555" + "0 | Capitaldistribution : Distribute", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Portfolio : 56522", + "3 | Currency : AssetID-12345678", + "4 | Per share [1/2] : POLYX 25612428566640944380857301230667", + "4 | Per share [2/2] : 6.766461", + "5 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "5 | Amount [2/2] : 6.766461", + "6 | Payment at : 256", + "7 | Expires at : 256", + "8 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Asset : Register and set local asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Value : 48656c6c6f20776f726c6421", - "5 | Detail [1/2] : 1234567890", - "5 | Detail [2/2] : Locked", - "6 | Chain : Polymesh", - "7 | Nonce : 100", - "8 | Tip : POLYX 55.555555", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Capitaldistribution : Distribute", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Portfolio : 56522", + "3 | Currency : AssetID-12345678", + "4 | Per share [1/2] : POLYX 25612428566640944380857301230667", + "4 | Per share [2/2] : 6.766461", + "5 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "5 | Amount [2/2] : 6.766461", + "6 | Payment at : 256", + "7 | Expires at : 256", + "8 | Chain : Polymesh", + "9 | Nonce : 100", + "10 | Tip : POLYX 5552342.355555", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 875, - "name": "Asset_Register_and_set_local_asset_metadata", - "blob": "1a135449434b45522d3132333435144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663f3048656c6c6f20776f726c64210101af14ca000000000002ef91dfce0f000000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 869, + "name": "Capitaldistribution_Distribute", + "blob": "1b00417373657449442d31323334353637386fec210001bb13000000000000417373657449442d3132333435363738fd56e5cad3287b54b2352f703dbeafc0fd56e5cad3287b54b2352f703dbeafc00001000000000000010001000000000000d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Register and set local asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Value : 48656c6c6f20776f726c6421", - "5 | Detail [1/2] : 13243567", - "5 | Detail [2/2] : 67895267823", - "6 | Tip : POLYX 0.000987" + "0 | Capitaldistribution : Distribute", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Portfolio : 5051", + "3 | Currency : AssetID-12345678", + "4 | Per share [1/2] : POLYX 25612428566640944380857301230667", + "4 | Per share [2/2] : 6.766461", + "5 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "5 | Amount [2/2] : 6.766461", + "6 | Payment at : 256", + "7 | Expires at : 256" ], "output_expert": [ - "0 | Asset : Register and set local asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Value : 48656c6c6f20776f726c6421", - "5 | Detail [1/2] : 13243567", - "5 | Detail [2/2] : 67895267823", - "6 | Chain : Polymesh", - "7 | Nonce : 2339", - "8 | Tip : POLYX 0.000987", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Capitaldistribution : Distribute", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Portfolio : 5051", + "3 | Currency : AssetID-12345678", + "4 | Per share [1/2] : POLYX 25612428566640944380857301230667", + "4 | Per share [2/2] : 6.766461", + "5 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "5 | Amount [2/2] : 6.766461", + "6 | Payment at : 256", + "7 | Expires at : 256", + "8 | Chain : Polymesh", + "9 | Nonce : 100", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 876, - "name": "Asset_Register_asset_metadata_local_type", - "blob": "1a145449434b45522d3132333435144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 870, + "name": "Capitaldistribution_Distribute", + "blob": "1b00417373657449442d31323334353637386fec210001cadc000000000000417373657449442d3132333435363738fd56e5cad3287b54b2352f703dbeafc0fd56e5cad3287b54b2352f703dbeafc00001000000000000018000000000000000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Register asset metadata local type", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Tip : POLYX 55.555555" + "0 | Capitaldistribution : Distribute", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Portfolio : 56522", + "3 | Currency : AssetID-12345678", + "4 | Per share [1/2] : POLYX 25612428566640944380857301230667", + "4 | Per share [2/2] : 6.766461", + "5 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "5 | Amount [2/2] : 6.766461", + "6 | Payment at : 256", + "7 | Expires at : 128" ], "output_expert": [ - "0 | Asset : Register asset metadata local type", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Capitaldistribution : Distribute", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Portfolio : 56522", + "3 | Currency : AssetID-12345678", + "4 | Per share [1/2] : POLYX 25612428566640944380857301230667", + "4 | Per share [2/2] : 6.766461", + "5 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "5 | Amount [2/2] : 6.766461", + "6 | Payment at : 256", + "7 | Expires at : 128", + "8 | Chain : Polymesh", + "9 | Nonce : 1", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 877, - "name": "Asset_Register_asset_metadata_local_type", - "blob": "1a145449434b45522d3132333435144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 871, + "name": "Capitaldistribution_Claim", + "blob": "1b01417373657449442d31323334353637386fec2100d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Register asset metadata local type", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Tip : POLYX 55.555555" + "0 | Capitaldistribution : Claim", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215" ], "output_expert": [ - "0 | Asset : Register asset metadata local type", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Capitaldistribution : Claim", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 878, - "name": "Asset_Register_asset_metadata_local_type", - "blob": "1a145449434b45522d3132333435144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 872, + "name": "Capitaldistribution_Claim", + "blob": "1b01417373657449442d31323334353637386fec2100d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Register asset metadata local type", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "0 | Capitaldistribution : Claim", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Asset : Register asset metadata local type", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Capitaldistribution : Claim", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 879, - "name": "Asset_Register_asset_metadata_local_type", - "blob": "1a145449434b45522d3132333435144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 873, + "name": "Capitaldistribution_Claim", + "blob": "1b01417373657449442d31323334353637386fec2100d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Register asset metadata local type", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Tip : POLYX 0.000987" + "0 | Capitaldistribution : Claim", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Asset : Register asset metadata local type", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Capitaldistribution : Claim", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 880, - "name": "Asset_Register_asset_metadata_local_type", - "blob": "1a145449434b45522d3132333435144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 874, + "name": "Capitaldistribution_Claim", + "blob": "1b01417373657449442d31323334353637386fec2100d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Register asset metadata local type", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f" + "0 | Capitaldistribution : Claim", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215" ], "output_expert": [ - "0 | Asset : Register asset metadata local type", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Capitaldistribution : Claim", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 881, - "name": "Asset_Register_asset_metadata_global_type", - "blob": "1a15144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 875, + "name": "Capitaldistribution_Claim", + "blob": "1b01417373657449442d31323334353637386fec2100d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Register asset metadata global type", - "1 | Name : 4e616d6565", - "2 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "2 | Spec [2/3] : 496d7072657373697665207765627369746521", - "2 | Spec [3/3] : 57687920747970654465663f", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Capitaldistribution : Claim", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Asset : Register asset metadata global type", - "1 | Name : 4e616d6565", - "2 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "2 | Spec [2/3] : 496d7072657373697665207765627369746521", - "2 | Spec [3/3] : 57687920747970654465663f", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Capitaldistribution : Claim", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 882, - "name": "Asset_Register_asset_metadata_global_type", - "blob": "1a15144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 876, + "name": "Capitaldistribution_Push_benefit", + "blob": "1b02417373657449442d31323334353637386fec2100c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Register asset metadata global type", - "1 | Name : 4e616d6565", - "2 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "2 | Spec [2/3] : 496d7072657373697665207765627369746521", - "2 | Spec [3/3] : 57687920747970654465663f", - "3 | Tip : POLYX 55.555555" + "0 | Capitaldistribution : Push benefit", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Holder [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Holder [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Asset : Register asset metadata global type", - "1 | Name : 4e616d6565", - "2 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "2 | Spec [2/3] : 496d7072657373697665207765627369746521", - "2 | Spec [3/3] : 57687920747970654465663f", + "0 | Capitaldistribution : Push benefit", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Holder [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Holder [2/2] : bd7a6512a7cb922c53c4907708", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 0", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 883, - "name": "Asset_Register_asset_metadata_global_type", - "blob": "1a15144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 877, + "name": "Capitaldistribution_Push_benefit", + "blob": "1b02417373657449442d31323334353637386fec2100c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Register asset metadata global type", - "1 | Name : 4e616d6565", - "2 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "2 | Spec [2/3] : 496d7072657373697665207765627369746521", - "2 | Spec [3/3] : 57687920747970654465663f", + "0 | Capitaldistribution : Push benefit", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Holder [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Holder [2/2] : bd7a6512a7cb922c53c4907708", "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Asset : Register asset metadata global type", - "1 | Name : 4e616d6565", - "2 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "2 | Spec [2/3] : 496d7072657373697665207765627369746521", - "2 | Spec [3/3] : 57687920747970654465663f", + "0 | Capitaldistribution : Push benefit", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Holder [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Holder [2/2] : bd7a6512a7cb922c53c4907708", "3 | Chain : Polymesh", - "4 | Nonce : 0", + "4 | Nonce : 100", "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 884, - "name": "Asset_Register_asset_metadata_global_type", - "blob": "1a15144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 878, + "name": "Capitaldistribution_Push_benefit", + "blob": "1b02417373657449442d31323334353637386fec2100c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Register asset metadata global type", - "1 | Name : 4e616d6565", - "2 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "2 | Spec [2/3] : 496d7072657373697665207765627369746521", - "2 | Spec [3/3] : 57687920747970654465663f", - "3 | Tip : POLYX 0.000987" + "0 | Capitaldistribution : Push benefit", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Holder [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Holder [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Asset : Register asset metadata global type", - "1 | Name : 4e616d6565", - "2 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "2 | Spec [2/3] : 496d7072657373697665207765627369746521", - "2 | Spec [3/3] : 57687920747970654465663f", + "0 | Capitaldistribution : Push benefit", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Holder [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Holder [2/2] : bd7a6512a7cb922c53c4907708", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 100", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 885, - "name": "Asset_Register_asset_metadata_global_type", - "blob": "1a15144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 879, + "name": "Capitaldistribution_Push_benefit", + "blob": "1b02417373657449442d31323334353637386fec2100c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Register asset metadata global type", - "1 | Name : 4e616d6565", - "2 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "2 | Spec [2/3] : 496d7072657373697665207765627369746521", - "2 | Spec [3/3] : 57687920747970654465663f", - "3 | Tip : POLYX 5552342.355555" + "0 | Capitaldistribution : Push benefit", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Holder [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Holder [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Asset : Register asset metadata global type", - "1 | Name : 4e616d6565", - "2 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "2 | Spec [2/3] : 496d7072657373697665207765627369746521", - "2 | Spec [3/3] : 57687920747970654465663f", + "0 | Capitaldistribution : Push benefit", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Holder [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Holder [2/2] : bd7a6512a7cb922c53c4907708", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 0", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 886, - "name": "Asset_Redeem_from_portfolio", - "blob": "1a165449434b45522d3132333435a6758c3aa9f7ac8766c5a254e283c97401664083c01528efb0d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 880, + "name": "Capitaldistribution_Push_benefit", + "blob": "1b02417373657449442d31323334353637386fec2100c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Redeem from portfolio", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", - "3 | Portfolio : 12749453143998414950" + "0 | Capitaldistribution : Push benefit", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Holder [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Holder [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Asset : Redeem from portfolio", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", - "3 | Portfolio : 12749453143998414950", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Era Phase : 61", + "0 | Capitaldistribution : Push benefit", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Holder [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Holder [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 887, - "name": "Asset_Redeem_from_portfolio", - "blob": "1a165449434b45522d3132333435a6758c3aa9f7ac8766c5a254e283c97401bd0d90b68b8ef739d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 881, + "name": "Capitaldistribution_Reclaim", + "blob": "1b03417373657449442d31323334353637386fec2100d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Redeem from portfolio", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", - "3 | Portfolio : 4176963910123916733" + "0 | Capitaldistribution : Reclaim", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Asset : Redeem from portfolio", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", - "3 | Portfolio : 4176963910123916733", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Capitaldistribution : Reclaim", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 888, - "name": "Asset_Redeem_from_portfolio", - "blob": "1a165449434b45522d3132333435a6758c3aa9f7ac8766c5a254e283c97401bd0d90b68b8ef739d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 882, + "name": "Capitaldistribution_Reclaim", + "blob": "1b03417373657449442d31323334353637386fec2100d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Redeem from portfolio", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", - "3 | Portfolio : 4176963910123916733" + "0 | Capitaldistribution : Reclaim", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Asset : Redeem from portfolio", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", - "3 | Portfolio : 4176963910123916733", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Capitaldistribution : Reclaim", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 889, - "name": "Asset_Redeem_from_portfolio", - "blob": "1a165449434b45522d3132333435a6758c3aa9f7ac8766c5a254e283c974017783de5904926d17d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 883, + "name": "Capitaldistribution_Reclaim", + "blob": "1b03417373657449442d31323334353637386fec2100d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Redeem from portfolio", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", - "3 | Portfolio : 1688165982719083383", - "4 | Tip : POLYX 1234.56789" + "0 | Capitaldistribution : Reclaim", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Asset : Redeem from portfolio", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", - "3 | Portfolio : 1688165982719083383", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Capitaldistribution : Reclaim", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 890, - "name": "Asset_Redeem_from_portfolio", - "blob": "1a165449434b45522d3132333435a6758c3aa9f7ac8766c5a254e283c974017783de5904926d17d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 884, + "name": "Capitaldistribution_Reclaim", + "blob": "1b03417373657449442d31323334353637386fec2100d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Redeem from portfolio", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", - "3 | Portfolio : 1688165982719083383" + "0 | Capitaldistribution : Reclaim", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Asset : Redeem from portfolio", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 155236774107032067208054119720528.1478", - "2 | Amount [2/2] : 78", - "3 | Portfolio : 1688165982719083383", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Capitaldistribution : Reclaim", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 891, - "name": "Asset_Update_asset_type", - "blob": "1a175449434b45522d313233343500d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 885, + "name": "Capitaldistribution_Reclaim", + "blob": "1b03417373657449442d31323334353637386fec2100d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Update asset type", - "1 | Ticker : TICKER-12345", - "2 | Asset type : EquityCommon", - "3 | Tip : POLYX 1234.56789" + "0 | Capitaldistribution : Reclaim", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Asset : Update asset type", - "1 | Ticker : TICKER-12345", - "2 | Asset type : EquityCommon", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Capitaldistribution : Reclaim", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 892, - "name": "Asset_Update_asset_type", - "blob": "1a175449434b45522d313233343500d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 886, + "name": "Capitaldistribution_Remove_distribution", + "blob": "1b04417373657449442d31323334353637386fec2100d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Update asset type", - "1 | Ticker : TICKER-12345", - "2 | Asset type : EquityCommon", - "3 | Tip : POLYX 5552342.355555" + "0 | Capitaldistribution : Remove distribution", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Asset : Update asset type", - "1 | Ticker : TICKER-12345", - "2 | Asset type : EquityCommon", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Capitaldistribution : Remove distribution", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 893, - "name": "Asset_Update_asset_type", - "blob": "1a175449434b45522d3132333435093ec70600d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 887, + "name": "Capitaldistribution_Remove_distribution", + "blob": "1b04417373657449442d31323334353637386fec2100d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Update asset type", - "1 | Ticker : TICKER-12345", - "2 | Asset type [1/2] : Custom", - "2 | Asset type [2/2] : 444222", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Capitaldistribution : Remove distribution", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Asset : Update asset type", - "1 | Ticker : TICKER-12345", - "2 | Asset type [1/2] : Custom", - "2 | Asset type [2/2] : 444222", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Capitaldistribution : Remove distribution", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 894, - "name": "Asset_Update_asset_type", - "blob": "1a175449434b45522d313233343500d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 888, + "name": "Capitaldistribution_Remove_distribution", + "blob": "1b04417373657449442d31323334353637386fec2100d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Update asset type", - "1 | Ticker : TICKER-12345", - "2 | Asset type : EquityCommon" + "0 | Capitaldistribution : Remove distribution", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Asset : Update asset type", - "1 | Ticker : TICKER-12345", - "2 | Asset type : EquityCommon", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", + "0 | Capitaldistribution : Remove distribution", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 895, - "name": "Asset_Update_asset_type", - "blob": "1a175449434b45522d313233343500d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 889, + "name": "Capitaldistribution_Remove_distribution", + "blob": "1b04417373657449442d31323334353637386fec2100d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Update asset type", - "1 | Ticker : TICKER-12345", - "2 | Asset type : EquityCommon", - "3 | Tip : POLYX 55.555555" + "0 | Capitaldistribution : Remove distribution", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Asset : Update asset type", - "1 | Ticker : TICKER-12345", - "2 | Asset type : EquityCommon", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Capitaldistribution : Remove distribution", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 896, - "name": "Asset_Remove_local_metadata_key", - "blob": "1a185449434b45522d3132333435ff98c106cf40871fd50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 890, + "name": "Capitaldistribution_Remove_distribution", + "blob": "1b04417373657449442d31323334353637386fec2100d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Remove local metadata key", - "1 | Ticker : TICKER-12345", - "2 | Local key : 2271855794947463423", - "3 | Tip : POLYX 0.000987" + "0 | Capitaldistribution : Remove distribution", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Asset : Remove local metadata key", - "1 | Ticker : TICKER-12345", - "2 | Local key : 2271855794947463423", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Capitaldistribution : Remove distribution", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 897, - "name": "Asset_Remove_local_metadata_key", - "blob": "1a185449434b45522d3132333435226fd997c2d435b8d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 891, + "name": "Checkpoint_Create_checkpoint", + "blob": "1c00417373657449442d3132333435363738d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Remove local metadata key", - "1 | Ticker : TICKER-12345", - "2 | Local key : 13273749408980758306", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Checkpoint : Create checkpoint", + "1 | Asset id : AssetID-12345678", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Asset : Remove local metadata key", - "1 | Ticker : TICKER-12345", - "2 | Local key : 13273749408980758306", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 898, - "name": "Asset_Remove_local_metadata_key", - "blob": "1a185449434b45522d3132333435ff98c106cf40871fd5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove local metadata key", - "1 | Ticker : TICKER-12345", - "2 | Local key : 2271855794947463423", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Asset : Remove local metadata key", - "1 | Ticker : TICKER-12345", - "2 | Local key : 2271855794947463423", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 899, - "name": "Asset_Remove_local_metadata_key", - "blob": "1a185449434b45522d3132333435ff98c106cf40871fd503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove local metadata key", - "1 | Ticker : TICKER-12345", - "2 | Local key : 2271855794947463423", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Asset : Remove local metadata key", - "1 | Ticker : TICKER-12345", - "2 | Local key : 2271855794947463423", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 900, - "name": "Asset_Remove_local_metadata_key", - "blob": "1a185449434b45522d3132333435226fd997c2d435b8d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove local metadata key", - "1 | Ticker : TICKER-12345", - "2 | Local key : 13273749408980758306", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Remove local metadata key", - "1 | Ticker : TICKER-12345", - "2 | Local key : 13273749408980758306", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 901, - "name": "Asset_Remove_metadata_value", - "blob": "1a195449434b45522d31323334350139e0d7a8e4ed520bd5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove metadata value", - "1 | Ticker : TICKER-12345", - "2 | Metadata key : 815976048848527417", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Asset : Remove metadata value", - "1 | Ticker : TICKER-12345", - "2 | Metadata key : 815976048848527417", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 902, - "name": "Asset_Remove_metadata_value", - "blob": "1a195449434b45522d31323334350139e0d7a8e4ed520bd503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove metadata value", - "1 | Ticker : TICKER-12345", - "2 | Metadata key : 815976048848527417" - ], - "output_expert": [ - "0 | Asset : Remove metadata value", - "1 | Ticker : TICKER-12345", - "2 | Metadata key : 815976048848527417", - "3 | Chain : Polymesh", - "4 | Nonce : 1", + "0 | Checkpoint : Create checkpoint", + "1 | Asset id : AssetID-12345678", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 903, - "name": "Asset_Remove_metadata_value", - "blob": "1a195449434b45522d313233343500c0ee25ea27d4956dd503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 892, + "name": "Checkpoint_Create_checkpoint", + "blob": "1c00417373657449442d3132333435363738d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Remove metadata value", - "1 | Ticker : TICKER-12345", - "2 | Metadata key : 7896450789561200320" + "0 | Checkpoint : Create checkpoint", + "1 | Asset id : AssetID-12345678", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Asset : Remove metadata value", - "1 | Ticker : TICKER-12345", - "2 | Metadata key : 7896450789561200320", - "3 | Chain : Polymesh", - "4 | Nonce : 1", + "0 | Checkpoint : Create checkpoint", + "1 | Asset id : AssetID-12345678", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 904, - "name": "Asset_Remove_metadata_value", - "blob": "1a195449434b45522d31323334350139e0d7a8e4ed520bd5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove metadata value", - "1 | Ticker : TICKER-12345", - "2 | Metadata key : 815976048848527417", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Remove metadata value", - "1 | Ticker : TICKER-12345", - "2 | Metadata key : 815976048848527417", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 905, - "name": "Asset_Remove_metadata_value", - "blob": "1a195449434b45522d31323334350139e0d7a8e4ed520bd503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 893, + "name": "Checkpoint_Create_checkpoint", + "blob": "1c00417373657449442d3132333435363738d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Remove metadata value", - "1 | Ticker : TICKER-12345", - "2 | Metadata key : 815976048848527417", - "3 | Tip : POLYX 0.000987" + "0 | Checkpoint : Create checkpoint", + "1 | Asset id : AssetID-12345678" ], "output_expert": [ - "0 | Asset : Remove metadata value", - "1 | Ticker : TICKER-12345", - "2 | Metadata key : 815976048848527417", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Checkpoint : Create checkpoint", + "1 | Asset id : AssetID-12345678", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 906, - "name": "Asset_Exempt_ticker_affirmation", - "blob": "1a1a5449434b45522d3132333435d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 894, + "name": "Checkpoint_Create_checkpoint", + "blob": "1c00417373657449442d3132333435363738d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Exempt ticker affirmation", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 5552342.355555" + "0 | Checkpoint : Create checkpoint", + "1 | Asset id : AssetID-12345678", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Asset : Exempt ticker affirmation", - "1 | Ticker : TICKER-12345", + "0 | Checkpoint : Create checkpoint", + "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 1", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 907, - "name": "Asset_Exempt_ticker_affirmation", - "blob": "1a1a5449434b45522d3132333435d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 895, + "name": "Checkpoint_Create_checkpoint", + "blob": "1c00417373657449442d3132333435363738d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Exempt ticker affirmation", - "1 | Ticker : TICKER-12345", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Checkpoint : Create checkpoint", + "1 | Asset id : AssetID-12345678", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Asset : Exempt ticker affirmation", - "1 | Ticker : TICKER-12345", + "0 | Checkpoint : Create checkpoint", + "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 100", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 908, - "name": "Asset_Exempt_ticker_affirmation", - "blob": "1a1a5449434b45522d3132333435d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 896, + "name": "Checkpoint_Set_schedules_max_complexity", + "blob": "1c012309000000000000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Exempt ticker affirmation", - "1 | Ticker : TICKER-12345", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Checkpoint : Set schedules max complexity", + "1 | Max complexity : 2339", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Asset : Exempt ticker affirmation", - "1 | Ticker : TICKER-12345", + "0 | Checkpoint : Set schedules max complexity", + "1 | Max complexity : 2339", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 50283", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 909, - "name": "Asset_Exempt_ticker_affirmation", - "blob": "1a1a5449434b45522d3132333435d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 897, + "name": "Checkpoint_Set_schedules_max_complexity", + "blob": "1c016bc4000000000000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Exempt ticker affirmation", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 55.555555" + "0 | Checkpoint : Set schedules max complexity", + "1 | Max complexity : 50283" ], "output_expert": [ - "0 | Asset : Exempt ticker affirmation", - "1 | Ticker : TICKER-12345", + "0 | Checkpoint : Set schedules max complexity", + "1 | Max complexity : 50283", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 910, - "name": "Asset_Exempt_ticker_affirmation", - "blob": "1a1a5449434b45522d3132333435d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 898, + "name": "Checkpoint_Set_schedules_max_complexity", + "blob": "1c010000000000000000d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Exempt ticker affirmation", - "1 | Ticker : TICKER-12345", + "0 | Checkpoint : Set schedules max complexity", + "1 | Max complexity : 0", "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Asset : Exempt ticker affirmation", - "1 | Ticker : TICKER-12345", + "0 | Checkpoint : Set schedules max complexity", + "1 | Max complexity : 0", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 100", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 911, - "name": "Asset_Remove_ticker_affirmation_exemption", - "blob": "1a1b5449434b45522d3132333435d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 899, + "name": "Checkpoint_Set_schedules_max_complexity", + "blob": "1c010100000000000000d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Remove ticker affirmation exemption", - "1 | Ticker : TICKER-12345" + "0 | Checkpoint : Set schedules max complexity", + "1 | Max complexity : 1", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Asset : Remove ticker affirmation exemption", - "1 | Ticker : TICKER-12345", + "0 | Checkpoint : Set schedules max complexity", + "1 | Max complexity : 1", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 0", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 912, - "name": "Asset_Remove_ticker_affirmation_exemption", - "blob": "1a1b5449434b45522d3132333435d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 900, + "name": "Checkpoint_Set_schedules_max_complexity", + "blob": "1c010100000000000000d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Remove ticker affirmation exemption", - "1 | Ticker : TICKER-12345" + "0 | Checkpoint : Set schedules max complexity", + "1 | Max complexity : 1" ], "output_expert": [ - "0 | Asset : Remove ticker affirmation exemption", - "1 | Ticker : TICKER-12345", + "0 | Checkpoint : Set schedules max complexity", + "1 | Max complexity : 1", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 100", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 913, - "name": "Asset_Remove_ticker_affirmation_exemption", - "blob": "1a1b5449434b45522d3132333435d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 901, + "name": "Checkpoint_Create_schedule", + "blob": "1c02417373657449442d313233343536373800d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Remove ticker affirmation exemption", - "1 | Ticker : TICKER-12345", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], + "0 | Checkpoint : Create schedule", + "1 | Asset id : AssetID-12345678", + "2 | Schedule : ", + "3 | Tip : POLYX 1234.56789" + ], "output_expert": [ - "0 | Asset : Remove ticker affirmation exemption", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Checkpoint : Create schedule", + "1 | Asset id : AssetID-12345678", + "2 | Schedule : ", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 914, - "name": "Asset_Remove_ticker_affirmation_exemption", - "blob": "1a1b5449434b45522d3132333435d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 902, + "name": "Checkpoint_Create_schedule", + "blob": "1c02417373657449442d313233343536373800d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Remove ticker affirmation exemption", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 1234.56789" + "0 | Checkpoint : Create schedule", + "1 | Asset id : AssetID-12345678", + "2 | Schedule : ", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Asset : Remove ticker affirmation exemption", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Checkpoint : Create schedule", + "1 | Asset id : AssetID-12345678", + "2 | Schedule : ", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 915, - "name": "Asset_Remove_ticker_affirmation_exemption", - "blob": "1a1b5449434b45522d3132333435d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 903, + "name": "Checkpoint_Create_schedule", + "blob": "1c02417373657449442d313233343536373800d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Remove ticker affirmation exemption", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 55.555555" + "0 | Checkpoint : Create schedule", + "1 | Asset id : AssetID-12345678", + "2 | Schedule : ", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Asset : Remove ticker affirmation exemption", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Checkpoint : Create schedule", + "1 | Asset id : AssetID-12345678", + "2 | Schedule : ", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 916, - "name": "Asset_Pre_approve_ticker", - "blob": "1a1c5449434b45522d3132333435d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 904, + "name": "Checkpoint_Create_schedule", + "blob": "1c02417373657449442d313233343536373800d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Pre approve ticker", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 0.000987" + "0 | Checkpoint : Create schedule", + "1 | Asset id : AssetID-12345678", + "2 | Schedule : ", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Asset : Pre approve ticker", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Checkpoint : Create schedule", + "1 | Asset id : AssetID-12345678", + "2 | Schedule : ", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 917, - "name": "Asset_Pre_approve_ticker", - "blob": "1a1c5449434b45522d3132333435d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 905, + "name": "Checkpoint_Create_schedule", + "blob": "1c02417373657449442d31323334353637380c0e985b8a242b9d32123bdd82cb33cbc3bc4a4416c5c12ceed5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Pre approve ticker", - "1 | Ticker : TICKER-12345", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Checkpoint : Create schedule", + "1 | Asset id : AssetID-12345678", + "2 | Schedule [1/3] : 3647118709180045326", + "2 | Schedule [2/3] : 14108427206835125010", + "2 | Schedule [3/3] : 17162305332228410044", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Asset : Pre approve ticker", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Checkpoint : Create schedule", + "1 | Asset id : AssetID-12345678", + "2 | Schedule [1/3] : 3647118709180045326", + "2 | Schedule [2/3] : 14108427206835125010", + "2 | Schedule [3/3] : 17162305332228410044", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 918, - "name": "Asset_Pre_approve_ticker", - "blob": "1a1c5449434b45522d3132333435d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 906, + "name": "Checkpoint_Remove_schedule", + "blob": "1c03417373657449442d3132333435363738150e020000000000d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Pre approve ticker", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 5552342.355555" + "0 | Checkpoint : Remove schedule", + "1 | Asset id : AssetID-12345678", + "2 | Id : 134677", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Asset : Pre approve ticker", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Checkpoint : Remove schedule", + "1 | Asset id : AssetID-12345678", + "2 | Id : 134677", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 919, - "name": "Asset_Pre_approve_ticker", - "blob": "1a1c5449434b45522d3132333435d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 907, + "name": "Checkpoint_Remove_schedule", + "blob": "1c03417373657449442d3132333435363738add8090000000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Pre approve ticker", - "1 | Ticker : TICKER-12345" + "0 | Checkpoint : Remove schedule", + "1 | Asset id : AssetID-12345678", + "2 | Id : 645293", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Asset : Pre approve ticker", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Checkpoint : Remove schedule", + "1 | Asset id : AssetID-12345678", + "2 | Id : 645293", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 920, - "name": "Asset_Pre_approve_ticker", - "blob": "1a1c5449434b45522d3132333435d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 908, + "name": "Checkpoint_Remove_schedule", + "blob": "1c03417373657449442d3132333435363738150e020000000000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Pre approve ticker", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 0.000987" + "0 | Checkpoint : Remove schedule", + "1 | Asset id : AssetID-12345678", + "2 | Id : 134677", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Asset : Pre approve ticker", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Checkpoint : Remove schedule", + "1 | Asset id : AssetID-12345678", + "2 | Id : 134677", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 921, - "name": "Asset_Remove_ticker_pre_approval", - "blob": "1a1d5449434b45522d3132333435d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 909, + "name": "Checkpoint_Remove_schedule", + "blob": "1c03417373657449442d31323334353637385398250000000000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Remove ticker pre approval", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 1234.56789" + "0 | Checkpoint : Remove schedule", + "1 | Asset id : AssetID-12345678", + "2 | Id : 2463827", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Asset : Remove ticker pre approval", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Checkpoint : Remove schedule", + "1 | Asset id : AssetID-12345678", + "2 | Id : 2463827", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 922, - "name": "Asset_Remove_ticker_pre_approval", - "blob": "1a1d5449434b45522d3132333435d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 910, + "name": "Checkpoint_Remove_schedule", + "blob": "1c03417373657449442d31323334353637385398250000000000d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Remove ticker pre approval", - "1 | Ticker : TICKER-12345" + "0 | Checkpoint : Remove schedule", + "1 | Asset id : AssetID-12345678", + "2 | Id : 2463827", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Asset : Remove ticker pre approval", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Checkpoint : Remove schedule", + "1 | Asset id : AssetID-12345678", + "2 | Id : 2463827", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 923, - "name": "Asset_Remove_ticker_pre_approval", - "blob": "1a1d5449434b45522d3132333435d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 911, + "name": "Compliancemanager_Add_compliance_requirement", + "blob": "1d00417373657449442d313233343536373804000001417373657449442d31323334353637380811b1d737e0dacccf620c1cc71d197d66bb448bb8b494d704382de0e749193ed4006d5875a03e8772e8cc53e4c42f58b823f70a224437c63b45b033b155d84e97ba0000d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Remove ticker pre approval", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 0.000987" + "0 | Compliancemanager : Add compliance requirement", + "1 | Asset id : AssetID-12345678", + "2 | Sender conditions [1/8] : Accredited", + "2 | Sender conditions [2/8] : AssetID-12345678", + "2 | Sender conditions [3/8] : 11b1d737e0dacccf620c1cc71d197d66bb448b", + "2 | Sender conditions [4/8] : b8b494d704382de0e749193ed4", + "2 | Sender conditions [5/8] : Any", + "2 | Sender conditions [6/8] : 6d5875a03e8772e8cc53e4c42f58b823f70a22", + "2 | Sender conditions [7/8] : 4437c63b45b033b155d84e97ba", + "2 | Sender conditions [8/8] : Any", + "3 | Receiver conditions : ", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Asset : Remove ticker pre approval", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Compliancemanager : Add compliance requirement", + "1 | Asset id : AssetID-12345678", + "2 | Sender conditions [1/8] : Accredited", + "2 | Sender conditions [2/8] : AssetID-12345678", + "2 | Sender conditions [3/8] : 11b1d737e0dacccf620c1cc71d197d66bb448b", + "2 | Sender conditions [4/8] : b8b494d704382de0e749193ed4", + "2 | Sender conditions [5/8] : Any", + "2 | Sender conditions [6/8] : 6d5875a03e8772e8cc53e4c42f58b823f70a22", + "2 | Sender conditions [7/8] : 4437c63b45b033b155d84e97ba", + "2 | Sender conditions [8/8] : Any", + "3 | Receiver conditions : ", + "4 | Chain : Polymesh", + "5 | Nonce : 100", + "6 | Tip : POLYX 5552342.355555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 924, - "name": "Asset_Remove_ticker_pre_approval", - "blob": "1a1d5449434b45522d3132333435d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 912, + "name": "Compliancemanager_Add_compliance_requirement", + "blob": "1d00417373657449442d313233343536373804000001417373657449442d31323334353637380811b1d737e0dacccf620c1cc71d197d66bb448bb8b494d704382de0e749193ed4006d5875a03e8772e8cc53e4c42f58b823f70a224437c63b45b033b155d84e97ba0004000001417373657449442d31323334353637380811b1d737e0dacccf620c1cc71d197d66bb448bb8b494d704382de0e749193ed4006d5875a03e8772e8cc53e4c42f58b823f70a224437c63b45b033b155d84e97ba00d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Remove ticker pre approval", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 5552342.355555" + "0 | Compliancemanager : Add compliance requirement", + "1 | Asset id : AssetID-12345678", + "2 | Sender conditions [1/8] : Accredited", + "2 | Sender conditions [2/8] : AssetID-12345678", + "2 | Sender conditions [3/8] : 11b1d737e0dacccf620c1cc71d197d66bb448b", + "2 | Sender conditions [4/8] : b8b494d704382de0e749193ed4", + "2 | Sender conditions [5/8] : Any", + "2 | Sender conditions [6/8] : 6d5875a03e8772e8cc53e4c42f58b823f70a22", + "2 | Sender conditions [7/8] : 4437c63b45b033b155d84e97ba", + "2 | Sender conditions [8/8] : Any", + "3 | Receiver conditions [1/8] : Accredited", + "3 | Receiver conditions [2/8] : AssetID-12345678", + "3 | Receiver conditions [3/8] : 11b1d737e0dacccf620c1cc71d197d66bb448b", + "3 | Receiver conditions [4/8] : b8b494d704382de0e749193ed4", + "3 | Receiver conditions [5/8] : Any", + "3 | Receiver conditions [6/8] : 6d5875a03e8772e8cc53e4c42f58b823f70a22", + "3 | Receiver conditions [7/8] : 4437c63b45b033b155d84e97ba", + "3 | Receiver conditions [8/8] : Any", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Asset : Remove ticker pre approval", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 925, - "name": "Asset_Remove_ticker_pre_approval", - "blob": "1a1d5449434b45522d3132333435d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove ticker pre approval", - "1 | Ticker : TICKER-12345", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Compliancemanager : Add compliance requirement", + "1 | Asset id : AssetID-12345678", + "2 | Sender conditions [1/8] : Accredited", + "2 | Sender conditions [2/8] : AssetID-12345678", + "2 | Sender conditions [3/8] : 11b1d737e0dacccf620c1cc71d197d66bb448b", + "2 | Sender conditions [4/8] : b8b494d704382de0e749193ed4", + "2 | Sender conditions [5/8] : Any", + "2 | Sender conditions [6/8] : 6d5875a03e8772e8cc53e4c42f58b823f70a22", + "2 | Sender conditions [7/8] : 4437c63b45b033b155d84e97ba", + "2 | Sender conditions [8/8] : Any", + "3 | Receiver conditions [1/8] : Accredited", + "3 | Receiver conditions [2/8] : AssetID-12345678", + "3 | Receiver conditions [3/8] : 11b1d737e0dacccf620c1cc71d197d66bb448b", + "3 | Receiver conditions [4/8] : b8b494d704382de0e749193ed4", + "3 | Receiver conditions [5/8] : Any", + "3 | Receiver conditions [6/8] : 6d5875a03e8772e8cc53e4c42f58b823f70a22", + "3 | Receiver conditions [7/8] : 4437c63b45b033b155d84e97ba", + "3 | Receiver conditions [8/8] : Any", + "4 | Chain : Polymesh", + "5 | Nonce : 100", + "6 | Tip : POLYX 1234.56789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 913, + "name": "Compliancemanager_Add_compliance_requirement", + "blob": "1d00417373657449442d313233343536373804000001417373657449442d31323334353637380811b1d737e0dacccf620c1cc71d197d66bb448bb8b494d704382de0e749193ed4006d5875a03e8772e8cc53e4c42f58b823f70a224437c63b45b033b155d84e97ba0000d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Compliancemanager : Add compliance requirement", + "1 | Asset id : AssetID-12345678", + "2 | Sender conditions [1/8] : Accredited", + "2 | Sender conditions [2/8] : AssetID-12345678", + "2 | Sender conditions [3/8] : 11b1d737e0dacccf620c1cc71d197d66bb448b", + "2 | Sender conditions [4/8] : b8b494d704382de0e749193ed4", + "2 | Sender conditions [5/8] : Any", + "2 | Sender conditions [6/8] : 6d5875a03e8772e8cc53e4c42f58b823f70a22", + "2 | Sender conditions [7/8] : 4437c63b45b033b155d84e97ba", + "2 | Sender conditions [8/8] : Any", + "3 | Receiver conditions : ", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Asset : Remove ticker pre approval", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Compliancemanager : Add compliance requirement", + "1 | Asset id : AssetID-12345678", + "2 | Sender conditions [1/8] : Accredited", + "2 | Sender conditions [2/8] : AssetID-12345678", + "2 | Sender conditions [3/8] : 11b1d737e0dacccf620c1cc71d197d66bb448b", + "2 | Sender conditions [4/8] : b8b494d704382de0e749193ed4", + "2 | Sender conditions [5/8] : Any", + "2 | Sender conditions [6/8] : 6d5875a03e8772e8cc53e4c42f58b823f70a22", + "2 | Sender conditions [7/8] : 4437c63b45b033b155d84e97ba", + "2 | Sender conditions [8/8] : Any", + "3 | Receiver conditions : ", + "4 | Chain : Polymesh", + "5 | Nonce : 50283", + "6 | Tip : POLYX 1234.56789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 926, - "name": "Asset_Add_mandatory_mediators", - "blob": "1a1e5449434b45522d3132333435047b3c8fa79e484735e8606a38e82be11a2f80be5ca9237f9fa197a8e7d7feefb8d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 914, + "name": "Compliancemanager_Add_compliance_requirement", + "blob": "1d00417373657449442d31323334353637380004000001417373657449442d31323334353637380811b1d737e0dacccf620c1cc71d197d66bb448bb8b494d704382de0e749193ed4006d5875a03e8772e8cc53e4c42f58b823f70a224437c63b45b033b155d84e97ba00d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Add mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/2] : 7b3c8fa79e484735e8606a38e82be11a2f80be", - "2 | Mediators [2/2] : 5ca9237f9fa197a8e7d7feefb8", - "3 | Tip : POLYX 5552342.355555" + "0 | Compliancemanager : Add compliance requirement", + "1 | Asset id : AssetID-12345678", + "2 | Sender conditions : ", + "3 | Receiver conditions [1/8] : Accredited", + "3 | Receiver conditions [2/8] : AssetID-12345678", + "3 | Receiver conditions [3/8] : 11b1d737e0dacccf620c1cc71d197d66bb448b", + "3 | Receiver conditions [4/8] : b8b494d704382de0e749193ed4", + "3 | Receiver conditions [5/8] : Any", + "3 | Receiver conditions [6/8] : 6d5875a03e8772e8cc53e4c42f58b823f70a22", + "3 | Receiver conditions [7/8] : 4437c63b45b033b155d84e97ba", + "3 | Receiver conditions [8/8] : Any", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Asset : Add mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/2] : 7b3c8fa79e484735e8606a38e82be11a2f80be", - "2 | Mediators [2/2] : 5ca9237f9fa197a8e7d7feefb8", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Compliancemanager : Add compliance requirement", + "1 | Asset id : AssetID-12345678", + "2 | Sender conditions : ", + "3 | Receiver conditions [1/8] : Accredited", + "3 | Receiver conditions [2/8] : AssetID-12345678", + "3 | Receiver conditions [3/8] : 11b1d737e0dacccf620c1cc71d197d66bb448b", + "3 | Receiver conditions [4/8] : b8b494d704382de0e749193ed4", + "3 | Receiver conditions [5/8] : Any", + "3 | Receiver conditions [6/8] : 6d5875a03e8772e8cc53e4c42f58b823f70a22", + "3 | Receiver conditions [7/8] : 4437c63b45b033b155d84e97ba", + "3 | Receiver conditions [8/8] : Any", + "4 | Chain : Polymesh", + "5 | Nonce : 1", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 927, - "name": "Asset_Add_mandatory_mediators", - "blob": "1a1e5449434b45522d313233343508316ebc04f2453790987488cdaa203f50e0a6e53b8de01d2c16176d1a48115867584694f5d0d7864c2a0fb151b40a7d9d8e3b5e768854bc2b8921f2be85b9125bd5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 915, + "name": "Compliancemanager_Add_compliance_requirement", + "blob": "1d00417373657449442d31323334353637380404000004040000d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Add mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/4] : 316ebc04f2453790987488cdaa203f50e0a6e5", - "2 | Mediators [2/4] : 3b8de01d2c16176d1a48115867", - "2 | Mediators [3/4] : 584694f5d0d7864c2a0fb151b40a7d9d8e3b5e", - "2 | Mediators [4/4] : 768854bc2b8921f2be85b9125b", - "3 | Tip : POLYX 1234.56789" + "0 | Compliancemanager : Add compliance requirement", + "1 | Asset id : AssetID-12345678", + "2 | Sender conditions : ExternalAgent", + "3 | Receiver conditions : ExternalAgent", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Asset : Add mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/4] : 316ebc04f2453790987488cdaa203f50e0a6e5", - "2 | Mediators [2/4] : 3b8de01d2c16176d1a48115867", - "2 | Mediators [3/4] : 584694f5d0d7864c2a0fb151b40a7d9d8e3b5e", - "2 | Mediators [4/4] : 768854bc2b8921f2be85b9125b", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Compliancemanager : Add compliance requirement", + "1 | Asset id : AssetID-12345678", + "2 | Sender conditions : ExternalAgent", + "3 | Receiver conditions : ExternalAgent", + "4 | Chain : Polymesh", + "5 | Nonce : 1", + "6 | Tip : POLYX 0.000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 928, - "name": "Asset_Add_mandatory_mediators", - "blob": "1a1e5449434b45522d313233343508316ebc04f2453790987488cdaa203f50e0a6e53b8de01d2c16176d1a48115867584694f5d0d7864c2a0fb151b40a7d9d8e3b5e768854bc2b8921f2be85b9125bd503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 916, + "name": "Compliancemanager_Remove_compliance_requirement", + "blob": "1d01417373657449442d31323334353637389d1c0000d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Add mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/4] : 316ebc04f2453790987488cdaa203f50e0a6e5", - "2 | Mediators [2/4] : 3b8de01d2c16176d1a48115867", - "2 | Mediators [3/4] : 584694f5d0d7864c2a0fb151b40a7d9d8e3b5e", - "2 | Mediators [4/4] : 768854bc2b8921f2be85b9125b", - "3 | Tip : POLYX 5552342.355555" + "0 | Compliancemanager : Remove compliance requirement", + "1 | Asset id : AssetID-12345678", + "2 | Id : 7325", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Asset : Add mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/4] : 316ebc04f2453790987488cdaa203f50e0a6e5", - "2 | Mediators [2/4] : 3b8de01d2c16176d1a48115867", - "2 | Mediators [3/4] : 584694f5d0d7864c2a0fb151b40a7d9d8e3b5e", - "2 | Mediators [4/4] : 768854bc2b8921f2be85b9125b", + "0 | Compliancemanager : Remove compliance requirement", + "1 | Asset id : AssetID-12345678", + "2 | Id : 7325", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 0", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 929, - "name": "Asset_Add_mandatory_mediators", - "blob": "1a1e5449434b45522d31323334351048807c902c7fd4de7cbf47a8c3ec026c076d3a17d424c0d895d734c16c9083bc6a7ecb315d984bfad66bc131c5fbfa2092befda34ef7567a943779bab3eb4a16aaefb648d69c05546cfc98b7266452bf540bf3ad9acf91e52a750cfb56e5feffe53b8830852b09d76b2cc38c13abbd850421f3b71e30049bc3e75ac40e83b706d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 917, + "name": "Compliancemanager_Remove_compliance_requirement", + "blob": "1d01417373657449442d313233343536373800000000d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Add mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/8] : 48807c902c7fd4de7cbf47a8c3ec026c076d3a", - "2 | Mediators [2/8] : 17d424c0d895d734c16c9083bc", - "2 | Mediators [3/8] : 6a7ecb315d984bfad66bc131c5fbfa2092befd", - "2 | Mediators [4/8] : a34ef7567a943779bab3eb4a16", - "2 | Mediators [5/8] : aaefb648d69c05546cfc98b7266452bf540bf3", - "2 | Mediators [6/8] : ad9acf91e52a750cfb56e5feff", - "2 | Mediators [7/8] : e53b8830852b09d76b2cc38c13abbd850421f3", - "2 | Mediators [8/8] : b71e30049bc3e75ac40e83b706" + "0 | Compliancemanager : Remove compliance requirement", + "1 | Asset id : AssetID-12345678", + "2 | Id : 0", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Asset : Add mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/8] : 48807c902c7fd4de7cbf47a8c3ec026c076d3a", - "2 | Mediators [2/8] : 17d424c0d895d734c16c9083bc", - "2 | Mediators [3/8] : 6a7ecb315d984bfad66bc131c5fbfa2092befd", - "2 | Mediators [4/8] : a34ef7567a943779bab3eb4a16", - "2 | Mediators [5/8] : aaefb648d69c05546cfc98b7266452bf540bf3", - "2 | Mediators [6/8] : ad9acf91e52a750cfb56e5feff", - "2 | Mediators [7/8] : e53b8830852b09d76b2cc38c13abbd850421f3", - "2 | Mediators [8/8] : b71e30049bc3e75ac40e83b706", + "0 | Compliancemanager : Remove compliance requirement", + "1 | Asset id : AssetID-12345678", + "2 | Id : 0", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 1", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 930, - "name": "Asset_Add_mandatory_mediators", - "blob": "1a1e5449434b45522d31323334350805ba64f0bae8f0d5ae14e6058509c0429b875488cb7035108f2b8a1e14d5509e49802d114b5ffe87526f0fbf33438df06a1ff778dd0fa1138af6d27579974f28d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 918, + "name": "Compliancemanager_Remove_compliance_requirement", + "blob": "1d01417373657449442d313233343536373834300000d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Add mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/4] : 05ba64f0bae8f0d5ae14e6058509c0429b8754", - "2 | Mediators [2/4] : 88cb7035108f2b8a1e14d5509e", - "2 | Mediators [3/4] : 49802d114b5ffe87526f0fbf33438df06a1ff7", - "2 | Mediators [4/4] : 78dd0fa1138af6d27579974f28", - "3 | Tip : POLYX 1234.56789" + "0 | Compliancemanager : Remove compliance requirement", + "1 | Asset id : AssetID-12345678", + "2 | Id : 12340", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Asset : Add mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/4] : 05ba64f0bae8f0d5ae14e6058509c0429b8754", - "2 | Mediators [2/4] : 88cb7035108f2b8a1e14d5509e", - "2 | Mediators [3/4] : 49802d114b5ffe87526f0fbf33438df06a1ff7", - "2 | Mediators [4/4] : 78dd0fa1138af6d27579974f28", + "0 | Compliancemanager : Remove compliance requirement", + "1 | Asset id : AssetID-12345678", + "2 | Id : 12340", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 2339", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 931, - "name": "Asset_Remove_mandatory_mediators", - "blob": "1a1f5449434b45522d313233343508316ebc04f2453790987488cdaa203f50e0a6e53b8de01d2c16176d1a48115867584694f5d0d7864c2a0fb151b40a7d9d8e3b5e768854bc2b8921f2be85b9125bd5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 919, + "name": "Compliancemanager_Remove_compliance_requirement", + "blob": "1d01417373657449442d3132333435363738f7010000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Remove mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/4] : 316ebc04f2453790987488cdaa203f50e0a6e5", - "2 | Mediators [2/4] : 3b8de01d2c16176d1a48115867", - "2 | Mediators [3/4] : 584694f5d0d7864c2a0fb151b40a7d9d8e3b5e", - "2 | Mediators [4/4] : 768854bc2b8921f2be85b9125b", - "3 | Tip : POLYX 1234.56789" + "0 | Compliancemanager : Remove compliance requirement", + "1 | Asset id : AssetID-12345678", + "2 | Id : 503", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Asset : Remove mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/4] : 316ebc04f2453790987488cdaa203f50e0a6e5", - "2 | Mediators [2/4] : 3b8de01d2c16176d1a48115867", - "2 | Mediators [3/4] : 584694f5d0d7864c2a0fb151b40a7d9d8e3b5e", - "2 | Mediators [4/4] : 768854bc2b8921f2be85b9125b", + "0 | Compliancemanager : Remove compliance requirement", + "1 | Asset id : AssetID-12345678", + "2 | Id : 503", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 0", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 932, - "name": "Asset_Remove_mandatory_mediators", - "blob": "1a1f5449434b45522d3132333435047b3c8fa79e484735e8606a38e82be11a2f80be5ca9237f9fa197a8e7d7feefb8d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 920, + "name": "Compliancemanager_Remove_compliance_requirement", + "blob": "1d01417373657449442d31323334353637389d1c0000d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Remove mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/2] : 7b3c8fa79e484735e8606a38e82be11a2f80be", - "2 | Mediators [2/2] : 5ca9237f9fa197a8e7d7feefb8", - "3 | Tip : POLYX 5552342.355555" + "0 | Compliancemanager : Remove compliance requirement", + "1 | Asset id : AssetID-12345678", + "2 | Id : 7325", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Asset : Remove mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/2] : 7b3c8fa79e484735e8606a38e82be11a2f80be", - "2 | Mediators [2/2] : 5ca9237f9fa197a8e7d7feefb8", + "0 | Compliancemanager : Remove compliance requirement", + "1 | Asset id : AssetID-12345678", + "2 | Id : 7325", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 1", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 933, - "name": "Asset_Remove_mandatory_mediators", - "blob": "1a1f5449434b45522d31323334350c55568d70831033a7c4efc39954daf37c5227a718f2d514d222eefd956d8ba07875385f45d18829e2327ed01c8df6266cee3942301ae0132fcb23a539276d7672d6bb45d6e643ca6c1525270807cc8c8a0f0cf4e94593f9cd47f08e222c8894cad503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 921, + "name": "Compliancemanager_Replace_asset_compliance", + "blob": "1d02417373657449442d31323334353637380404000001417373657449442d353738363232313208d12debeed8a904c4b5dde9ec9a89f45599980ded6e91d5ced5c19ae10ba3f34d001076b5fca2ac22f72be1eecdf56b3926fe7c101d552cd572fcaaf560d9bc8a21000000000000d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Remove mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/6] : 55568d70831033a7c4efc39954daf37c5227a7", - "2 | Mediators [2/6] : 18f2d514d222eefd956d8ba078", - "2 | Mediators [3/6] : 75385f45d18829e2327ed01c8df6266cee3942", - "2 | Mediators [4/6] : 301ae0132fcb23a539276d7672", - "2 | Mediators [5/6] : d6bb45d6e643ca6c1525270807cc8c8a0f0cf4", - "2 | Mediators [6/6] : e94593f9cd47f08e222c8894ca", + "0 | Compliancemanager : Replace asset compliance", + "1 | Asset id : AssetID-12345678", + "2 | Asset compliance [1/10] : Accredited", + "2 | Asset compliance [2/10] : AssetID-57862212", + "2 | Asset compliance [3/10] : d12debeed8a904c4b5dde9ec9a89f45599980d", + "2 | Asset compliance [4/10] : ed6e91d5ced5c19ae10ba3f34d", + "2 | Asset compliance [5/10] : Any", + "2 | Asset compliance [6/10] : 1076b5fca2ac22f72be1eecdf56b3926fe7c10", + "2 | Asset compliance [7/10] : 1d552cd572fcaaf560d9bc8a21", + "2 | Asset compliance [8/10] : Any", + "2 | Asset compliance [9/10] : ", + "2 | Asset compliance [10/10] : 0", "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Asset : Remove mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/6] : 55568d70831033a7c4efc39954daf37c5227a7", - "2 | Mediators [2/6] : 18f2d514d222eefd956d8ba078", - "2 | Mediators [3/6] : 75385f45d18829e2327ed01c8df6266cee3942", - "2 | Mediators [4/6] : 301ae0132fcb23a539276d7672", - "2 | Mediators [5/6] : d6bb45d6e643ca6c1525270807cc8c8a0f0cf4", - "2 | Mediators [6/6] : e94593f9cd47f08e222c8894ca", + "0 | Compliancemanager : Replace asset compliance", + "1 | Asset id : AssetID-12345678", + "2 | Asset compliance [1/10] : Accredited", + "2 | Asset compliance [2/10] : AssetID-57862212", + "2 | Asset compliance [3/10] : d12debeed8a904c4b5dde9ec9a89f45599980d", + "2 | Asset compliance [4/10] : ed6e91d5ced5c19ae10ba3f34d", + "2 | Asset compliance [5/10] : Any", + "2 | Asset compliance [6/10] : 1076b5fca2ac22f72be1eecdf56b3926fe7c10", + "2 | Asset compliance [7/10] : 1d552cd572fcaaf560d9bc8a21", + "2 | Asset compliance [8/10] : Any", + "2 | Asset compliance [9/10] : ", + "2 | Asset compliance [10/10] : 0", "3 | Chain : Polymesh", - "4 | Nonce : 50283", + "4 | Nonce : 2339", "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 934, - "name": "Asset_Remove_mandatory_mediators", - "blob": "1a1f5449434b45522d31323334351048807c902c7fd4de7cbf47a8c3ec026c076d3a17d424c0d895d734c16c9083bc6a7ecb315d984bfad66bc131c5fbfa2092befda34ef7567a943779bab3eb4a16aaefb648d69c05546cfc98b7266452bf540bf3ad9acf91e52a750cfb56e5feffe53b8830852b09d76b2cc38c13abbd850421f3b71e30049bc3e75ac40e83b706d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 922, + "name": "Compliancemanager_Replace_asset_compliance", + "blob": "1d02417373657449442d313233343536373800d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Remove mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/8] : 48807c902c7fd4de7cbf47a8c3ec026c076d3a", - "2 | Mediators [2/8] : 17d424c0d895d734c16c9083bc", - "2 | Mediators [3/8] : 6a7ecb315d984bfad66bc131c5fbfa2092befd", - "2 | Mediators [4/8] : a34ef7567a943779bab3eb4a16", - "2 | Mediators [5/8] : aaefb648d69c05546cfc98b7266452bf540bf3", - "2 | Mediators [6/8] : ad9acf91e52a750cfb56e5feff", - "2 | Mediators [7/8] : e53b8830852b09d76b2cc38c13abbd850421f3", - "2 | Mediators [8/8] : b71e30049bc3e75ac40e83b706" + "0 | Compliancemanager : Replace asset compliance", + "1 | Asset id : AssetID-12345678", + "2 | Asset compliance : ", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Asset : Remove mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/8] : 48807c902c7fd4de7cbf47a8c3ec026c076d3a", - "2 | Mediators [2/8] : 17d424c0d895d734c16c9083bc", - "2 | Mediators [3/8] : 6a7ecb315d984bfad66bc131c5fbfa2092befd", - "2 | Mediators [4/8] : a34ef7567a943779bab3eb4a16", - "2 | Mediators [5/8] : aaefb648d69c05546cfc98b7266452bf540bf3", - "2 | Mediators [6/8] : ad9acf91e52a750cfb56e5feff", - "2 | Mediators [7/8] : e53b8830852b09d76b2cc38c13abbd850421f3", - "2 | Mediators [8/8] : b71e30049bc3e75ac40e83b706", + "0 | Compliancemanager : Replace asset compliance", + "1 | Asset id : AssetID-12345678", + "2 | Asset compliance : ", "3 | Chain : Polymesh", "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 935, - "name": "Asset_Remove_mandatory_mediators", - "blob": "1a1f5449434b45522d3132333435047b3c8fa79e484735e8606a38e82be11a2f80be5ca9237f9fa197a8e7d7feefb8d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 923, + "name": "Compliancemanager_Replace_asset_compliance", + "blob": "1d02417373657449442d313233343536373800d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Asset : Remove mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/2] : 7b3c8fa79e484735e8606a38e82be11a2f80be", - "2 | Mediators [2/2] : 5ca9237f9fa197a8e7d7feefb8", + "0 | Compliancemanager : Replace asset compliance", + "1 | Asset id : AssetID-12345678", + "2 | Asset compliance : ", "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Asset : Remove mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/2] : 7b3c8fa79e484735e8606a38e82be11a2f80be", - "2 | Mediators [2/2] : 5ca9237f9fa197a8e7d7feefb8", + "0 | Compliancemanager : Replace asset compliance", + "1 | Asset id : AssetID-12345678", + "2 | Asset compliance : ", "3 | Chain : Polymesh", - "4 | Nonce : 0", + "4 | Nonce : 100", "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 936, - "name": "Capitaldistribution_Distribute", - "blob": "1b005449434b45522d31323341416fec210001bb130000000000005449434b45522d313233343540d8127ea9f0d1cdf6126ec9c838c9ba40d8127ea9f0d1cdf6126ec9c838c9ba0008000000000000010008000000000000d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 924, + "name": "Compliancemanager_Replace_asset_compliance", + "blob": "1d02417373657449442d31323334353637380404000001417373657449442d353738363232313208d12debeed8a904c4b5dde9ec9a89f45599980ded6e91d5ced5c19ae10ba3f34d001076b5fca2ac22f72be1eecdf56b3926fe7c101d552cd572fcaaf560d9bc8a21000000000000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Capitaldistribution : Distribute", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Portfolio : 5051", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 24828121060746971842942860419690", - "4 | Per share [2/2] : 4.68768", - "5 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "5 | Amount [2/2] : 4.68768", - "6 | Payment at : 2048", - "7 | Expires at : 2048", - "8 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Capitaldistribution : Distribute", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Portfolio : 5051", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 24828121060746971842942860419690", - "4 | Per share [2/2] : 4.68768", - "5 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "5 | Amount [2/2] : 4.68768", - "6 | Payment at : 2048", - "7 | Expires at : 2048", - "8 | Chain : Polymesh", - "9 | Nonce : 0", - "10 | Tip : POLYX 55.555555", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 937, - "name": "Capitaldistribution_Distribute", - "blob": "1b005449434b45522d31323341416fec210001cadc0000000000005449434b45522d313233343540d8127ea9f0d1cdf6126ec9c838c9ba40d8127ea9f0d1cdf6126ec9c838c9ba8000000000000000010001000000000000d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Capitaldistribution : Distribute", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Portfolio : 56522", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 24828121060746971842942860419690", - "4 | Per share [2/2] : 4.68768", - "5 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "5 | Amount [2/2] : 4.68768", - "6 | Payment at : 128", - "7 | Expires at : 256", - "8 | Tip : POLYX 0.000987" + "0 | Compliancemanager : Replace asset compliance", + "1 | Asset id : AssetID-12345678", + "2 | Asset compliance [1/10] : Accredited", + "2 | Asset compliance [2/10] : AssetID-57862212", + "2 | Asset compliance [3/10] : d12debeed8a904c4b5dde9ec9a89f45599980d", + "2 | Asset compliance [4/10] : ed6e91d5ced5c19ae10ba3f34d", + "2 | Asset compliance [5/10] : Any", + "2 | Asset compliance [6/10] : 1076b5fca2ac22f72be1eecdf56b3926fe7c10", + "2 | Asset compliance [7/10] : 1d552cd572fcaaf560d9bc8a21", + "2 | Asset compliance [8/10] : Any", + "2 | Asset compliance [9/10] : ", + "2 | Asset compliance [10/10] : 0", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Capitaldistribution : Distribute", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Portfolio : 56522", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 24828121060746971842942860419690", - "4 | Per share [2/2] : 4.68768", - "5 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "5 | Amount [2/2] : 4.68768", - "6 | Payment at : 128", - "7 | Expires at : 256", - "8 | Chain : Polymesh", - "9 | Nonce : 0", - "10 | Tip : POLYX 0.000987", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Compliancemanager : Replace asset compliance", + "1 | Asset id : AssetID-12345678", + "2 | Asset compliance [1/10] : Accredited", + "2 | Asset compliance [2/10] : AssetID-57862212", + "2 | Asset compliance [3/10] : d12debeed8a904c4b5dde9ec9a89f45599980d", + "2 | Asset compliance [4/10] : ed6e91d5ced5c19ae10ba3f34d", + "2 | Asset compliance [5/10] : Any", + "2 | Asset compliance [6/10] : 1076b5fca2ac22f72be1eecdf56b3926fe7c10", + "2 | Asset compliance [7/10] : 1d552cd572fcaaf560d9bc8a21", + "2 | Asset compliance [8/10] : Any", + "2 | Asset compliance [9/10] : ", + "2 | Asset compliance [10/10] : 0", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 938, - "name": "Capitaldistribution_Distribute", - "blob": "1b005449434b45522d31323341416fec21000119000000000000005449434b45522d313233343540d8127ea9f0d1cdf6126ec9c838c9ba40d8127ea9f0d1cdf6126ec9c838c9ba8000000000000000010001000000000000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 925, + "name": "Compliancemanager_Replace_asset_compliance", + "blob": "1d02417373657449442d313233343536373800d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Capitaldistribution : Distribute", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Portfolio : 25", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 24828121060746971842942860419690", - "4 | Per share [2/2] : 4.68768", - "5 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "5 | Amount [2/2] : 4.68768", - "6 | Payment at : 128", - "7 | Expires at : 256", - "8 | Tip : POLYX 1234.56789" + "0 | Compliancemanager : Replace asset compliance", + "1 | Asset id : AssetID-12345678", + "2 | Asset compliance : ", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Capitaldistribution : Distribute", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Portfolio : 25", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 24828121060746971842942860419690", - "4 | Per share [2/2] : 4.68768", - "5 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "5 | Amount [2/2] : 4.68768", - "6 | Payment at : 128", - "7 | Expires at : 256", - "8 | Chain : Polymesh", - "9 | Nonce : 0", - "10 | Tip : POLYX 1234.56789", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Compliancemanager : Replace asset compliance", + "1 | Asset id : AssetID-12345678", + "2 | Asset compliance : ", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 939, - "name": "Capitaldistribution_Distribute", - "blob": "1b005449434b45522d31323341416fec21000119000000000000005449434b45522d313233343540d8127ea9f0d1cdf6126ec9c838c9ba40d8127ea9f0d1cdf6126ec9c838c9ba0001000000000000010001000000000000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 926, + "name": "Compliancemanager_Reset_asset_compliance", + "blob": "1d03417373657449442d3132333435363738d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Capitaldistribution : Distribute", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Portfolio : 25", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 24828121060746971842942860419690", - "4 | Per share [2/2] : 4.68768", - "5 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "5 | Amount [2/2] : 4.68768", - "6 | Payment at : 256", - "7 | Expires at : 256" + "0 | Compliancemanager : Reset asset compliance", + "1 | Asset id : AssetID-12345678", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Capitaldistribution : Distribute", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Portfolio : 25", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 24828121060746971842942860419690", - "4 | Per share [2/2] : 4.68768", - "5 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "5 | Amount [2/2] : 4.68768", - "6 | Payment at : 256", - "7 | Expires at : 256", - "8 | Chain : Polymesh", - "9 | Nonce : 50283", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Compliancemanager : Reset asset compliance", + "1 | Asset id : AssetID-12345678", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 940, - "name": "Capitaldistribution_Distribute", - "blob": "1b005449434b45522d31323341416fec21000100000000000000005449434b45522d313233343540d8127ea9f0d1cdf6126ec9c838c9ba40d8127ea9f0d1cdf6126ec9c838c9ba8000000000000000010001000000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 927, + "name": "Compliancemanager_Reset_asset_compliance", + "blob": "1d03417373657449442d3132333435363738d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Capitaldistribution : Distribute", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Portfolio : 0", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 24828121060746971842942860419690", - "4 | Per share [2/2] : 4.68768", - "5 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "5 | Amount [2/2] : 4.68768", - "6 | Payment at : 128", - "7 | Expires at : 256", - "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "8 | Tip [2/2] : 3.456789" + "0 | Compliancemanager : Reset asset compliance", + "1 | Asset id : AssetID-12345678", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Capitaldistribution : Distribute", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Portfolio : 0", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 24828121060746971842942860419690", - "4 | Per share [2/2] : 4.68768", - "5 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "5 | Amount [2/2] : 4.68768", - "6 | Payment at : 128", - "7 | Expires at : 256", - "8 | Chain : Polymesh", - "9 | Nonce : 50283", - "10 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "10 | Tip [2/2] : 3.456789", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Compliancemanager : Reset asset compliance", + "1 | Asset id : AssetID-12345678", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 941, - "name": "Capitaldistribution_Claim", - "blob": "1b015449434b45522d31323341416fec2100d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 928, + "name": "Compliancemanager_Reset_asset_compliance", + "blob": "1d03417373657449442d3132333435363738d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Capitaldistribution : Claim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 5552342.355555" + "0 | Compliancemanager : Reset asset compliance", + "1 | Asset id : AssetID-12345678", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Capitaldistribution : Claim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", + "0 | Compliancemanager : Reset asset compliance", + "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 100", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 942, - "name": "Capitaldistribution_Claim", - "blob": "1b015449434b45522d31323341416fec2100d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 929, + "name": "Compliancemanager_Reset_asset_compliance", + "blob": "1d03417373657449442d3132333435363738d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Capitaldistribution : Claim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215" + "0 | Compliancemanager : Reset asset compliance", + "1 | Asset id : AssetID-12345678" ], "output_expert": [ - "0 | Capitaldistribution : Claim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", + "0 | Compliancemanager : Reset asset compliance", + "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 100", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 943, - "name": "Capitaldistribution_Claim", - "blob": "1b015449434b45522d31323341416fec2100d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 930, + "name": "Compliancemanager_Reset_asset_compliance", + "blob": "1d03417373657449442d3132333435363738d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Capitaldistribution : Claim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", + "0 | Compliancemanager : Reset asset compliance", + "1 | Asset id : AssetID-12345678", "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Capitaldistribution : Claim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", + "0 | Compliancemanager : Reset asset compliance", + "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 2339", + "3 | Nonce : 1", "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 944, - "name": "Capitaldistribution_Claim", - "blob": "1b015449434b45522d31323341416fec2100d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 931, + "name": "Compliancemanager_Pause_asset_compliance", + "blob": "1d04417373657449442d3132333435363738d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Capitaldistribution : Claim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 55.555555" + "0 | Compliancemanager : Pause asset compliance", + "1 | Asset id : AssetID-12345678", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Capitaldistribution : Claim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", + "0 | Compliancemanager : Pause asset compliance", + "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 50283", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 945, - "name": "Capitaldistribution_Claim", - "blob": "1b015449434b45522d31323341416fec2100d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 932, + "name": "Compliancemanager_Pause_asset_compliance", + "blob": "1d04417373657449442d3132333435363738d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Capitaldistribution : Claim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 55.555555" + "0 | Compliancemanager : Pause asset compliance", + "1 | Asset id : AssetID-12345678", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Capitaldistribution : Claim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", + "0 | Compliancemanager : Pause asset compliance", + "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 100", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 946, - "name": "Capitaldistribution_Push_benefit", - "blob": "1b025449434b45522d31323341416fec210044ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 933, + "name": "Compliancemanager_Pause_asset_compliance", + "blob": "1d04417373657449442d3132333435363738d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Capitaldistribution : Push benefit", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Holder [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Holder [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Tip : POLYX 5552342.355555" + "0 | Compliancemanager : Pause asset compliance", + "1 | Asset id : AssetID-12345678", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Capitaldistribution : Push benefit", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Holder [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Holder [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Compliancemanager : Pause asset compliance", + "1 | Asset id : AssetID-12345678", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 947, - "name": "Capitaldistribution_Push_benefit", - "blob": "1b025449434b45522d31323341416fec210044ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 934, + "name": "Compliancemanager_Pause_asset_compliance", + "blob": "1d04417373657449442d3132333435363738d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Capitaldistribution : Push benefit", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Holder [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Holder [2/2] : 99f2a85988d897db3b7b56d9af" + "0 | Compliancemanager : Pause asset compliance", + "1 | Asset id : AssetID-12345678", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Capitaldistribution : Push benefit", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Holder [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Holder [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Chain : Polymesh", - "4 | Nonce : 1", + "0 | Compliancemanager : Pause asset compliance", + "1 | Asset id : AssetID-12345678", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 948, - "name": "Capitaldistribution_Push_benefit", - "blob": "1b025449434b45522d31323341416fec210044ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 935, + "name": "Compliancemanager_Pause_asset_compliance", + "blob": "1d04417373657449442d3132333435363738d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Capitaldistribution : Push benefit", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Holder [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Holder [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Tip : POLYX 0.000987" + "0 | Compliancemanager : Pause asset compliance", + "1 | Asset id : AssetID-12345678", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Capitaldistribution : Push benefit", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Holder [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Holder [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Compliancemanager : Pause asset compliance", + "1 | Asset id : AssetID-12345678", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 949, - "name": "Capitaldistribution_Push_benefit", - "blob": "1b025449434b45522d31323341416fec210044ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 936, + "name": "Compliancemanager_Resume_asset_compliance", + "blob": "1d05417373657449442d3132333435363738d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Capitaldistribution : Push benefit", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Holder [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Holder [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Tip : POLYX 1234.56789" + "0 | Compliancemanager : Resume asset compliance", + "1 | Asset id : AssetID-12345678" ], "output_expert": [ - "0 | Capitaldistribution : Push benefit", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Holder [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Holder [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Compliancemanager : Resume asset compliance", + "1 | Asset id : AssetID-12345678", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 950, - "name": "Capitaldistribution_Push_benefit", - "blob": "1b025449434b45522d31323341416fec210044ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 937, + "name": "Compliancemanager_Resume_asset_compliance", + "blob": "1d05417373657449442d3132333435363738d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Capitaldistribution : Push benefit", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Holder [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Holder [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Tip : POLYX 0.000987" + "0 | Compliancemanager : Resume asset compliance", + "1 | Asset id : AssetID-12345678", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Capitaldistribution : Push benefit", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Holder [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Holder [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Compliancemanager : Resume asset compliance", + "1 | Asset id : AssetID-12345678", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 951, - "name": "Capitaldistribution_Reclaim", - "blob": "1b035449434b45522d31323341416fec2100d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 938, + "name": "Compliancemanager_Resume_asset_compliance", + "blob": "1d05417373657449442d3132333435363738d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Capitaldistribution : Reclaim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 1234.56789" + "0 | Compliancemanager : Resume asset compliance", + "1 | Asset id : AssetID-12345678", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Capitaldistribution : Reclaim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", + "0 | Compliancemanager : Resume asset compliance", + "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 952, - "name": "Capitaldistribution_Reclaim", - "blob": "1b035449434b45522d31323341416fec2100d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 939, + "name": "Compliancemanager_Resume_asset_compliance", + "blob": "1d05417373657449442d3132333435363738d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Capitaldistribution : Reclaim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 5552342.355555" + "0 | Compliancemanager : Resume asset compliance", + "1 | Asset id : AssetID-12345678" ], "output_expert": [ - "0 | Capitaldistribution : Reclaim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", + "0 | Compliancemanager : Resume asset compliance", + "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 953, - "name": "Capitaldistribution_Reclaim", - "blob": "1b035449434b45522d31323341416fec2100d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 940, + "name": "Compliancemanager_Resume_asset_compliance", + "blob": "1d05417373657449442d3132333435363738d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Capitaldistribution : Reclaim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", + "0 | Compliancemanager : Resume asset compliance", + "1 | Asset id : AssetID-12345678", "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Capitaldistribution : Reclaim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", + "0 | Compliancemanager : Resume asset compliance", + "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 2339", + "3 | Nonce : 1", "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 954, - "name": "Capitaldistribution_Reclaim", - "blob": "1b035449434b45522d31323341416fec2100d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 941, + "name": "Compliancemanager_Add_default_trusted_claim_issuer", + "blob": "1d06417373657449442d3132333435363738adb78a8de48e637f770be22cbd15db7a3369e4422683a5999db0f0db3c85673c00d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Capitaldistribution : Reclaim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Compliancemanager : Add default trusted claim issuer", + "1 | Asset id : AssetID-12345678", + "2 | Issuer [1/3] : adb78a8de48e637f770be22cbd15db7a3369e4", + "2 | Issuer [2/3] : 422683a5999db0f0db3c85673c", + "2 | Issuer [3/3] : Any", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Capitaldistribution : Reclaim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Compliancemanager : Add default trusted claim issuer", + "1 | Asset id : AssetID-12345678", + "2 | Issuer [1/3] : adb78a8de48e637f770be22cbd15db7a3369e4", + "2 | Issuer [2/3] : 422683a5999db0f0db3c85673c", + "2 | Issuer [3/3] : Any", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 955, - "name": "Capitaldistribution_Reclaim", - "blob": "1b035449434b45522d31323341416fec2100d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 942, + "name": "Compliancemanager_Add_default_trusted_claim_issuer", + "blob": "1d06417373657449442d3132333435363738adb78a8de48e637f770be22cbd15db7a3369e4422683a5999db0f0db3c85673c00d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Capitaldistribution : Reclaim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Compliancemanager : Add default trusted claim issuer", + "1 | Asset id : AssetID-12345678", + "2 | Issuer [1/3] : adb78a8de48e637f770be22cbd15db7a3369e4", + "2 | Issuer [2/3] : 422683a5999db0f0db3c85673c", + "2 | Issuer [3/3] : Any", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Capitaldistribution : Reclaim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Compliancemanager : Add default trusted claim issuer", + "1 | Asset id : AssetID-12345678", + "2 | Issuer [1/3] : adb78a8de48e637f770be22cbd15db7a3369e4", + "2 | Issuer [2/3] : 422683a5999db0f0db3c85673c", + "2 | Issuer [3/3] : Any", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 956, - "name": "Capitaldistribution_Remove_distribution", - "blob": "1b045449434b45522d31323341416fec2100d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 943, + "name": "Compliancemanager_Add_default_trusted_claim_issuer", + "blob": "1d06417373657449442d3132333435363738adb78a8de48e637f770be22cbd15db7a3369e4422683a5999db0f0db3c85673c00d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Capitaldistribution : Remove distribution", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215" + "0 | Compliancemanager : Add default trusted claim issuer", + "1 | Asset id : AssetID-12345678", + "2 | Issuer [1/3] : adb78a8de48e637f770be22cbd15db7a3369e4", + "2 | Issuer [2/3] : 422683a5999db0f0db3c85673c", + "2 | Issuer [3/3] : Any", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Capitaldistribution : Remove distribution", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Compliancemanager : Add default trusted claim issuer", + "1 | Asset id : AssetID-12345678", + "2 | Issuer [1/3] : adb78a8de48e637f770be22cbd15db7a3369e4", + "2 | Issuer [2/3] : 422683a5999db0f0db3c85673c", + "2 | Issuer [3/3] : Any", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 957, - "name": "Capitaldistribution_Remove_distribution", - "blob": "1b045449434b45522d31323341416fec2100d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 944, + "name": "Compliancemanager_Add_default_trusted_claim_issuer", + "blob": "1d06417373657449442d3132333435363738adb78a8de48e637f770be22cbd15db7a3369e4422683a5999db0f0db3c85673c00d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Capitaldistribution : Remove distribution", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 55.555555" + "0 | Compliancemanager : Add default trusted claim issuer", + "1 | Asset id : AssetID-12345678", + "2 | Issuer [1/3] : adb78a8de48e637f770be22cbd15db7a3369e4", + "2 | Issuer [2/3] : 422683a5999db0f0db3c85673c", + "2 | Issuer [3/3] : Any", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Capitaldistribution : Remove distribution", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Compliancemanager : Add default trusted claim issuer", + "1 | Asset id : AssetID-12345678", + "2 | Issuer [1/3] : adb78a8de48e637f770be22cbd15db7a3369e4", + "2 | Issuer [2/3] : 422683a5999db0f0db3c85673c", + "2 | Issuer [3/3] : Any", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 958, - "name": "Capitaldistribution_Remove_distribution", - "blob": "1b045449434b45522d31323341416fec2100d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 945, + "name": "Compliancemanager_Add_default_trusted_claim_issuer", + "blob": "1d06417373657449442d3132333435363738adb78a8de48e637f770be22cbd15db7a3369e4422683a5999db0f0db3c85673c00d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Capitaldistribution : Remove distribution", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Compliancemanager : Add default trusted claim issuer", + "1 | Asset id : AssetID-12345678", + "2 | Issuer [1/3] : adb78a8de48e637f770be22cbd15db7a3369e4", + "2 | Issuer [2/3] : 422683a5999db0f0db3c85673c", + "2 | Issuer [3/3] : Any", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Capitaldistribution : Remove distribution", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Compliancemanager : Add default trusted claim issuer", + "1 | Asset id : AssetID-12345678", + "2 | Issuer [1/3] : adb78a8de48e637f770be22cbd15db7a3369e4", + "2 | Issuer [2/3] : 422683a5999db0f0db3c85673c", + "2 | Issuer [3/3] : Any", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 959, - "name": "Capitaldistribution_Remove_distribution", - "blob": "1b045449434b45522d31323341416fec2100d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 946, + "name": "Compliancemanager_Remove_default_trusted_claim_issuer", + "blob": "1d07417373657449442d3132333435363738c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Capitaldistribution : Remove distribution", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 1234.56789" + "0 | Compliancemanager : Remove default trusted claim issuer", + "1 | Asset id : AssetID-12345678", + "2 | Issuer [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Issuer [2/2] : bd7a6512a7cb922c53c4907708" ], "output_expert": [ - "0 | Capitaldistribution : Remove distribution", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", + "0 | Compliancemanager : Remove default trusted claim issuer", + "1 | Asset id : AssetID-12345678", + "2 | Issuer [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Issuer [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 960, - "name": "Capitaldistribution_Remove_distribution", - "blob": "1b045449434b45522d31323341416fec2100d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 947, + "name": "Compliancemanager_Remove_default_trusted_claim_issuer", + "blob": "1d07417373657449442d3132333435363738c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Capitaldistribution : Remove distribution", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 55.555555" + "0 | Compliancemanager : Remove default trusted claim issuer", + "1 | Asset id : AssetID-12345678", + "2 | Issuer [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Issuer [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Capitaldistribution : Remove distribution", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Compliancemanager : Remove default trusted claim issuer", + "1 | Asset id : AssetID-12345678", + "2 | Issuer [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Issuer [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 961, - "name": "Checkpoint_Create_checkpoint", - "blob": "1c005449434b45522d3132333435d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 948, + "name": "Compliancemanager_Remove_default_trusted_claim_issuer", + "blob": "1d07417373657449442d3132333435363738c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Checkpoint : Create checkpoint", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 0.000987" + "0 | Compliancemanager : Remove default trusted claim issuer", + "1 | Asset id : AssetID-12345678", + "2 | Issuer [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Issuer [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Checkpoint : Create checkpoint", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Compliancemanager : Remove default trusted claim issuer", + "1 | Asset id : AssetID-12345678", + "2 | Issuer [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Issuer [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 962, - "name": "Checkpoint_Create_checkpoint", - "blob": "1c005449434b45522d3132333435d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 949, + "name": "Compliancemanager_Remove_default_trusted_claim_issuer", + "blob": "1d07417373657449442d3132333435363738c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Checkpoint : Create checkpoint", - "1 | Ticker : TICKER-12345" + "0 | Compliancemanager : Remove default trusted claim issuer", + "1 | Asset id : AssetID-12345678", + "2 | Issuer [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Issuer [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Checkpoint : Create checkpoint", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Compliancemanager : Remove default trusted claim issuer", + "1 | Asset id : AssetID-12345678", + "2 | Issuer [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Issuer [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 963, - "name": "Checkpoint_Create_checkpoint", - "blob": "1c005449434b45522d3132333435d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 950, + "name": "Compliancemanager_Remove_default_trusted_claim_issuer", + "blob": "1d07417373657449442d3132333435363738c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Checkpoint : Create checkpoint", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 1234.56789" + "0 | Compliancemanager : Remove default trusted claim issuer", + "1 | Asset id : AssetID-12345678", + "2 | Issuer [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Issuer [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Checkpoint : Create checkpoint", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Compliancemanager : Remove default trusted claim issuer", + "1 | Asset id : AssetID-12345678", + "2 | Issuer [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Issuer [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 964, - "name": "Checkpoint_Create_checkpoint", - "blob": "1c005449434b45522d3132333435d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 951, + "name": "Compliancemanager_Change_compliance_requirement", + "blob": "1d08417373657449442d313233343536373804000001417373657449442d353738363232313208a9a5569fd6fdd4c15e83d0b0f9992ed7f509a3f7d6e7ebc4cc59ed56ddf3817a006027cebb7f73aeaf7ff33bbd07fa2e0650e73900e30ecee86c7095b2a12634c0000000000000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Checkpoint : Create checkpoint", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 55.555555" + "0 | Compliancemanager : Change compliance requirement", + "1 | Asset id : AssetID-12345678", + "2 | New req [1/10] : Accredited", + "2 | New req [2/10] : AssetID-57862212", + "2 | New req [3/10] : a9a5569fd6fdd4c15e83d0b0f9992ed7f509a3", + "2 | New req [4/10] : f7d6e7ebc4cc59ed56ddf3817a", + "2 | New req [5/10] : Any", + "2 | New req [6/10] : 6027cebb7f73aeaf7ff33bbd07fa2e0650e739", + "2 | New req [7/10] : 00e30ecee86c7095b2a12634c0", + "2 | New req [8/10] : Any", + "2 | New req [9/10] : ", + "2 | New req [10/10] : 0", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Checkpoint : Create checkpoint", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Compliancemanager : Change compliance requirement", + "1 | Asset id : AssetID-12345678", + "2 | New req [1/10] : Accredited", + "2 | New req [2/10] : AssetID-57862212", + "2 | New req [3/10] : a9a5569fd6fdd4c15e83d0b0f9992ed7f509a3", + "2 | New req [4/10] : f7d6e7ebc4cc59ed56ddf3817a", + "2 | New req [5/10] : Any", + "2 | New req [6/10] : 6027cebb7f73aeaf7ff33bbd07fa2e0650e739", + "2 | New req [7/10] : 00e30ecee86c7095b2a12634c0", + "2 | New req [8/10] : Any", + "2 | New req [9/10] : ", + "2 | New req [10/10] : 0", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 965, - "name": "Checkpoint_Create_checkpoint", - "blob": "1c005449434b45522d3132333435d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 952, + "name": "Compliancemanager_Change_compliance_requirement", + "blob": "1d08417373657449442d313233343536373804000001417373657449442d353738363232313208a9a5569fd6fdd4c15e83d0b0f9992ed7f509a3f7d6e7ebc4cc59ed56ddf3817a006027cebb7f73aeaf7ff33bbd07fa2e0650e73900e30ecee86c7095b2a12634c0000000000000d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Checkpoint : Create checkpoint", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 5552342.355555" + "0 | Compliancemanager : Change compliance requirement", + "1 | Asset id : AssetID-12345678", + "2 | New req [1/10] : Accredited", + "2 | New req [2/10] : AssetID-57862212", + "2 | New req [3/10] : a9a5569fd6fdd4c15e83d0b0f9992ed7f509a3", + "2 | New req [4/10] : f7d6e7ebc4cc59ed56ddf3817a", + "2 | New req [5/10] : Any", + "2 | New req [6/10] : 6027cebb7f73aeaf7ff33bbd07fa2e0650e739", + "2 | New req [7/10] : 00e30ecee86c7095b2a12634c0", + "2 | New req [8/10] : Any", + "2 | New req [9/10] : ", + "2 | New req [10/10] : 0", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Checkpoint : Create checkpoint", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Compliancemanager : Change compliance requirement", + "1 | Asset id : AssetID-12345678", + "2 | New req [1/10] : Accredited", + "2 | New req [2/10] : AssetID-57862212", + "2 | New req [3/10] : a9a5569fd6fdd4c15e83d0b0f9992ed7f509a3", + "2 | New req [4/10] : f7d6e7ebc4cc59ed56ddf3817a", + "2 | New req [5/10] : Any", + "2 | New req [6/10] : 6027cebb7f73aeaf7ff33bbd07fa2e0650e739", + "2 | New req [7/10] : 00e30ecee86c7095b2a12634c0", + "2 | New req [8/10] : Any", + "2 | New req [9/10] : ", + "2 | New req [10/10] : 0", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 966, - "name": "Checkpoint_Set_schedules_max_complexity", - "blob": "1c016bc4000000000000d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 953, + "name": "Compliancemanager_Change_compliance_requirement", + "blob": "1d08417373657449442d313233343536373804000001417373657449442d353738363232313208a9a5569fd6fdd4c15e83d0b0f9992ed7f509a3f7d6e7ebc4cc59ed56ddf3817a006027cebb7f73aeaf7ff33bbd07fa2e0650e73900e30ecee86c7095b2a12634c0000000000000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Checkpoint : Set schedules max complexity", - "1 | Max complexity : 50283", - "2 | Tip : POLYX 5552342.355555" + "0 | Compliancemanager : Change compliance requirement", + "1 | Asset id : AssetID-12345678", + "2 | New req [1/10] : Accredited", + "2 | New req [2/10] : AssetID-57862212", + "2 | New req [3/10] : a9a5569fd6fdd4c15e83d0b0f9992ed7f509a3", + "2 | New req [4/10] : f7d6e7ebc4cc59ed56ddf3817a", + "2 | New req [5/10] : Any", + "2 | New req [6/10] : 6027cebb7f73aeaf7ff33bbd07fa2e0650e739", + "2 | New req [7/10] : 00e30ecee86c7095b2a12634c0", + "2 | New req [8/10] : Any", + "2 | New req [9/10] : ", + "2 | New req [10/10] : 0", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Checkpoint : Set schedules max complexity", - "1 | Max complexity : 50283", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", + "0 | Compliancemanager : Change compliance requirement", + "1 | Asset id : AssetID-12345678", + "2 | New req [1/10] : Accredited", + "2 | New req [2/10] : AssetID-57862212", + "2 | New req [3/10] : a9a5569fd6fdd4c15e83d0b0f9992ed7f509a3", + "2 | New req [4/10] : f7d6e7ebc4cc59ed56ddf3817a", + "2 | New req [5/10] : Any", + "2 | New req [6/10] : 6027cebb7f73aeaf7ff33bbd07fa2e0650e739", + "2 | New req [7/10] : 00e30ecee86c7095b2a12634c0", + "2 | New req [8/10] : Any", + "2 | New req [9/10] : ", + "2 | New req [10/10] : 0", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 954, + "name": "Compliancemanager_Change_compliance_requirement", + "blob": "1d08417373657449442d313233343536373804000001417373657449442d353738363232313208a9a5569fd6fdd4c15e83d0b0f9992ed7f509a3f7d6e7ebc4cc59ed56ddf3817a006027cebb7f73aeaf7ff33bbd07fa2e0650e73900e30ecee86c7095b2a12634c0000000000000d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Compliancemanager : Change compliance requirement", + "1 | Asset id : AssetID-12345678", + "2 | New req [1/10] : Accredited", + "2 | New req [2/10] : AssetID-57862212", + "2 | New req [3/10] : a9a5569fd6fdd4c15e83d0b0f9992ed7f509a3", + "2 | New req [4/10] : f7d6e7ebc4cc59ed56ddf3817a", + "2 | New req [5/10] : Any", + "2 | New req [6/10] : 6027cebb7f73aeaf7ff33bbd07fa2e0650e739", + "2 | New req [7/10] : 00e30ecee86c7095b2a12634c0", + "2 | New req [8/10] : Any", + "2 | New req [9/10] : ", + "2 | New req [10/10] : 0" + ], + "output_expert": [ + "0 | Compliancemanager : Change compliance requirement", + "1 | Asset id : AssetID-12345678", + "2 | New req [1/10] : Accredited", + "2 | New req [2/10] : AssetID-57862212", + "2 | New req [3/10] : a9a5569fd6fdd4c15e83d0b0f9992ed7f509a3", + "2 | New req [4/10] : f7d6e7ebc4cc59ed56ddf3817a", + "2 | New req [5/10] : Any", + "2 | New req [6/10] : 6027cebb7f73aeaf7ff33bbd07fa2e0650e739", + "2 | New req [7/10] : 00e30ecee86c7095b2a12634c0", + "2 | New req [8/10] : Any", + "2 | New req [9/10] : ", + "2 | New req [10/10] : 0", + "3 | Chain : Polymesh", + "4 | Nonce : 0", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 967, - "name": "Checkpoint_Set_schedules_max_complexity", - "blob": "1c012309000000000000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 955, + "name": "Compliancemanager_Change_compliance_requirement", + "blob": "1d08417373657449442d313233343536373804000001417373657449442d353738363232313208a9a5569fd6fdd4c15e83d0b0f9992ed7f509a3f7d6e7ebc4cc59ed56ddf3817a006027cebb7f73aeaf7ff33bbd07fa2e0650e73900e30ecee86c7095b2a12634c0000000000000d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Checkpoint : Set schedules max complexity", - "1 | Max complexity : 2339" + "0 | Compliancemanager : Change compliance requirement", + "1 | Asset id : AssetID-12345678", + "2 | New req [1/10] : Accredited", + "2 | New req [2/10] : AssetID-57862212", + "2 | New req [3/10] : a9a5569fd6fdd4c15e83d0b0f9992ed7f509a3", + "2 | New req [4/10] : f7d6e7ebc4cc59ed56ddf3817a", + "2 | New req [5/10] : Any", + "2 | New req [6/10] : 6027cebb7f73aeaf7ff33bbd07fa2e0650e739", + "2 | New req [7/10] : 00e30ecee86c7095b2a12634c0", + "2 | New req [8/10] : Any", + "2 | New req [9/10] : ", + "2 | New req [10/10] : 0", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Checkpoint : Set schedules max complexity", - "1 | Max complexity : 2339", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Compliancemanager : Change compliance requirement", + "1 | Asset id : AssetID-12345678", + "2 | New req [1/10] : Accredited", + "2 | New req [2/10] : AssetID-57862212", + "2 | New req [3/10] : a9a5569fd6fdd4c15e83d0b0f9992ed7f509a3", + "2 | New req [4/10] : f7d6e7ebc4cc59ed56ddf3817a", + "2 | New req [5/10] : Any", + "2 | New req [6/10] : 6027cebb7f73aeaf7ff33bbd07fa2e0650e739", + "2 | New req [7/10] : 00e30ecee86c7095b2a12634c0", + "2 | New req [8/10] : Any", + "2 | New req [9/10] : ", + "2 | New req [10/10] : 0", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 968, - "name": "Checkpoint_Set_schedules_max_complexity", - "blob": "1c016400000000000000d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 956, + "name": "Corporateaction_Set_max_details_length", + "blob": "1e00d3040000d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Checkpoint : Set schedules max complexity", - "1 | Max complexity : 100", - "2 | Tip : POLYX 0.000987" + "0 | Corporateaction : Set max details length", + "1 | Length : 1235", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Checkpoint : Set schedules max complexity", - "1 | Max complexity : 100", + "0 | Corporateaction : Set max details length", + "1 | Length : 1235", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 969, - "name": "Checkpoint_Set_schedules_max_complexity", - "blob": "1c010000000000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 957, + "name": "Corporateaction_Set_max_details_length", + "blob": "1e00d3040000d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Checkpoint : Set schedules max complexity", - "1 | Max complexity : 0", + "0 | Corporateaction : Set max details length", + "1 | Length : 1235", "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Checkpoint : Set schedules max complexity", - "1 | Max complexity : 0", + "0 | Corporateaction : Set max details length", + "1 | Length : 1235", "2 | Chain : Polymesh", - "3 | Nonce : 2339", + "3 | Nonce : 100", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 970, - "name": "Checkpoint_Set_schedules_max_complexity", - "blob": "1c016400000000000000d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 958, + "name": "Corporateaction_Set_max_details_length", + "blob": "1e0000000000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Checkpoint : Set schedules max complexity", - "1 | Max complexity : 100", - "2 | Tip : POLYX 5552342.355555" + "0 | Corporateaction : Set max details length", + "1 | Length : 0" ], "output_expert": [ - "0 | Checkpoint : Set schedules max complexity", - "1 | Max complexity : 100", + "0 | Corporateaction : Set max details length", + "1 | Length : 0", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 971, - "name": "Checkpoint_Create_schedule", - "blob": "1c025449434b45522d31323334350c7350fc46c7bbaec0f44363d929b3b5c0cf88c7df190820e2d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 959, + "name": "Corporateaction_Set_max_details_length", + "blob": "1e0034300000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Checkpoint : Create schedule", - "1 | Ticker : TICKER-12345", - "2 | Schedule [1/3] : 13884241165793644659", - "2 | Schedule [2/3] : 13886202018388984820", - "2 | Schedule [3/3] : 16294032359048054991", + "0 | Corporateaction : Set max details length", + "1 | Length : 12340", + "2 | Tip : POLYX 55.555555" + ], + "output_expert": [ + "0 | Corporateaction : Set max details length", + "1 | Length : 12340", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 960, + "name": "Corporateaction_Set_max_details_length", + "blob": "1e0034300000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Corporateaction : Set max details length", + "1 | Length : 12340" + ], + "output_expert": [ + "0 | Corporateaction : Set max details length", + "1 | Length : 12340", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 961, + "name": "Corporateaction_Set_default_targets", + "blob": "1e01417373657449442d313233343536373804e9124c2e5a46981ac58f2f77e2cd20df4b73f53a05c5ef4daf1bd073714582e200d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Corporateaction : Set default targets", + "1 | Asset id : AssetID-12345678", + "2 | Targets [1/3] : e9124c2e5a46981ac58f2f77e2cd20df4b73f5", + "2 | Targets [2/3] : 3a05c5ef4daf1bd073714582e2", + "2 | Targets [3/3] : Include", "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Checkpoint : Create schedule", - "1 | Ticker : TICKER-12345", - "2 | Schedule [1/3] : 13884241165793644659", - "2 | Schedule [2/3] : 13886202018388984820", - "2 | Schedule [3/3] : 16294032359048054991", + "0 | Corporateaction : Set default targets", + "1 | Asset id : AssetID-12345678", + "2 | Targets [1/3] : e9124c2e5a46981ac58f2f77e2cd20df4b73f5", + "2 | Targets [2/3] : 3a05c5ef4daf1bd073714582e2", + "2 | Targets [3/3] : Include", "3 | Chain : Polymesh", - "4 | Nonce : 50283", + "4 | Nonce : 0", "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 972, - "name": "Checkpoint_Create_schedule", - "blob": "1c025449434b45522d31323334350c7350fc46c7bbaec0f44363d929b3b5c0cf88c7df190820e2d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 962, + "name": "Corporateaction_Set_default_targets", + "blob": "1e01417373657449442d3132333435363738046eb6bcf812aafaddc8da073c05514ae240cef3cb33115d55f8f02aea1b4b8aa201d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Checkpoint : Create schedule", - "1 | Ticker : TICKER-12345", - "2 | Schedule [1/3] : 13884241165793644659", - "2 | Schedule [2/3] : 13886202018388984820", - "2 | Schedule [3/3] : 16294032359048054991", - "3 | Tip : POLYX 1234.56789" + "0 | Corporateaction : Set default targets", + "1 | Asset id : AssetID-12345678", + "2 | Targets [1/3] : 6eb6bcf812aafaddc8da073c05514ae240cef3", + "2 | Targets [2/3] : cb33115d55f8f02aea1b4b8aa2", + "2 | Targets [3/3] : Exclude", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Checkpoint : Create schedule", - "1 | Ticker : TICKER-12345", - "2 | Schedule [1/3] : 13884241165793644659", - "2 | Schedule [2/3] : 13886202018388984820", - "2 | Schedule [3/3] : 16294032359048054991", + "0 | Corporateaction : Set default targets", + "1 | Asset id : AssetID-12345678", + "2 | Targets [1/3] : 6eb6bcf812aafaddc8da073c05514ae240cef3", + "2 | Targets [2/3] : cb33115d55f8f02aea1b4b8aa2", + "2 | Targets [3/3] : Exclude", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 0", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 973, - "name": "Checkpoint_Create_schedule", - "blob": "1c025449434b45522d31323334350c7350fc46c7bbaec0f44363d929b3b5c0cf88c7df190820e2d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 963, + "name": "Corporateaction_Set_default_targets", + "blob": "1e01417373657449442d313233343536373804e9124c2e5a46981ac58f2f77e2cd20df4b73f53a05c5ef4daf1bd073714582e200d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Checkpoint : Create schedule", - "1 | Ticker : TICKER-12345", - "2 | Schedule [1/3] : 13884241165793644659", - "2 | Schedule [2/3] : 13886202018388984820", - "2 | Schedule [3/3] : 16294032359048054991", + "0 | Corporateaction : Set default targets", + "1 | Asset id : AssetID-12345678", + "2 | Targets [1/3] : e9124c2e5a46981ac58f2f77e2cd20df4b73f5", + "2 | Targets [2/3] : 3a05c5ef4daf1bd073714582e2", + "2 | Targets [3/3] : Include", + "3 | Tip : POLYX 5552342.355555" + ], + "output_expert": [ + "0 | Corporateaction : Set default targets", + "1 | Asset id : AssetID-12345678", + "2 | Targets [1/3] : e9124c2e5a46981ac58f2f77e2cd20df4b73f5", + "2 | Targets [2/3] : 3a05c5ef4daf1bd073714582e2", + "2 | Targets [3/3] : Include", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 964, + "name": "Corporateaction_Set_default_targets", + "blob": "1e01417373657449442d3132333435363738046eb6bcf812aafaddc8da073c05514ae240cef3cb33115d55f8f02aea1b4b8aa201d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Corporateaction : Set default targets", + "1 | Asset id : AssetID-12345678", + "2 | Targets [1/3] : 6eb6bcf812aafaddc8da073c05514ae240cef3", + "2 | Targets [2/3] : cb33115d55f8f02aea1b4b8aa2", + "2 | Targets [3/3] : Exclude", "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Checkpoint : Create schedule", - "1 | Ticker : TICKER-12345", - "2 | Schedule [1/3] : 13884241165793644659", - "2 | Schedule [2/3] : 13886202018388984820", - "2 | Schedule [3/3] : 16294032359048054991", + "0 | Corporateaction : Set default targets", + "1 | Asset id : AssetID-12345678", + "2 | Targets [1/3] : 6eb6bcf812aafaddc8da073c05514ae240cef3", + "2 | Targets [2/3] : cb33115d55f8f02aea1b4b8aa2", + "2 | Targets [3/3] : Exclude", "3 | Chain : Polymesh", - "4 | Nonce : 1", + "4 | Nonce : 2339", "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 974, - "name": "Checkpoint_Create_schedule", - "blob": "1c025449434b45522d313233343500d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 965, + "name": "Corporateaction_Set_default_targets", + "blob": "1e01417373657449442d313233343536373804e9124c2e5a46981ac58f2f77e2cd20df4b73f53a05c5ef4daf1bd073714582e200d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Checkpoint : Create schedule", - "1 | Ticker : TICKER-12345", - "2 | Schedule : ", - "3 | Tip : POLYX 1234.56789" + "0 | Corporateaction : Set default targets", + "1 | Asset id : AssetID-12345678", + "2 | Targets [1/3] : e9124c2e5a46981ac58f2f77e2cd20df4b73f5", + "2 | Targets [2/3] : 3a05c5ef4daf1bd073714582e2", + "2 | Targets [3/3] : Include", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Checkpoint : Create schedule", - "1 | Ticker : TICKER-12345", - "2 | Schedule : ", + "0 | Corporateaction : Set default targets", + "1 | Asset id : AssetID-12345678", + "2 | Targets [1/3] : e9124c2e5a46981ac58f2f77e2cd20df4b73f5", + "2 | Targets [2/3] : 3a05c5ef4daf1bd073714582e2", + "2 | Targets [3/3] : Include", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 0", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 975, - "name": "Checkpoint_Create_schedule", - "blob": "1c025449434b45522d31323334350c7350fc46c7bbaec0f44363d929b3b5c0cf88c7df190820e2d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 966, + "name": "Corporateaction_Set_default_withholding_tax", + "blob": "1e02417373657449442d313233343536373800000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Checkpoint : Create schedule", - "1 | Ticker : TICKER-12345", - "2 | Schedule [1/3] : 13884241165793644659", - "2 | Schedule [2/3] : 13886202018388984820", - "2 | Schedule [3/3] : 16294032359048054991", - "3 | Tip : POLYX 55.555555" + "0 | Corporateaction : Set default withholding tax", + "1 | Asset id : AssetID-12345678", + "2 | Tax : 0.0000%", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Checkpoint : Create schedule", - "1 | Ticker : TICKER-12345", - "2 | Schedule [1/3] : 13884241165793644659", - "2 | Schedule [2/3] : 13886202018388984820", - "2 | Schedule [3/3] : 16294032359048054991", + "0 | Corporateaction : Set default withholding tax", + "1 | Asset id : AssetID-12345678", + "2 | Tax : 0.0000%", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 1", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 976, - "name": "Checkpoint_Remove_schedule", - "blob": "1c035449434b45522d3132333435e793190000000000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 967, + "name": "Corporateaction_Set_default_withholding_tax", + "blob": "1e02417373657449442d3132333435363738400d0300d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Checkpoint : Remove schedule", - "1 | Ticker : TICKER-12345", - "2 | Id : 1676263", - "3 | Tip : POLYX 0.000987" + "0 | Corporateaction : Set default withholding tax", + "1 | Asset id : AssetID-12345678", + "2 | Tax : 20.0000%" ], "output_expert": [ - "0 | Checkpoint : Remove schedule", - "1 | Ticker : TICKER-12345", - "2 | Id : 1676263", + "0 | Corporateaction : Set default withholding tax", + "1 | Asset id : AssetID-12345678", + "2 | Tax : 20.0000%", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 100", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 977, - "name": "Checkpoint_Remove_schedule", - "blob": "1c035449434b45522d31323334351c42030000000000d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 968, + "name": "Corporateaction_Set_default_withholding_tax", + "blob": "1e02417373657449442d3132333435363738400d0300d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Checkpoint : Remove schedule", - "1 | Ticker : TICKER-12345", - "2 | Id : 213532" + "0 | Corporateaction : Set default withholding tax", + "1 | Asset id : AssetID-12345678", + "2 | Tax : 20.0000%" ], "output_expert": [ - "0 | Checkpoint : Remove schedule", - "1 | Ticker : TICKER-12345", - "2 | Id : 213532", + "0 | Corporateaction : Set default withholding tax", + "1 | Asset id : AssetID-12345678", + "2 | Tax : 20.0000%", "3 | Chain : Polymesh", "4 | Nonce : 100", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 978, - "name": "Checkpoint_Remove_schedule", - "blob": "1c035449434b45522d31323334359f09d20000000000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 969, + "name": "Corporateaction_Set_default_withholding_tax", + "blob": "1e02417373657449442d313233343536373823c2f001d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Checkpoint : Remove schedule", - "1 | Ticker : TICKER-12345", - "2 | Id : 13765023", - "3 | Tip : POLYX 5552342.355555" + "0 | Corporateaction : Set default withholding tax", + "1 | Asset id : AssetID-12345678", + "2 | Tax : 3255.5555%" ], "output_expert": [ - "0 | Checkpoint : Remove schedule", - "1 | Ticker : TICKER-12345", - "2 | Id : 13765023", + "0 | Corporateaction : Set default withholding tax", + "1 | Asset id : AssetID-12345678", + "2 | Tax : 3255.5555%", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 100", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 979, - "name": "Checkpoint_Remove_schedule", - "blob": "1c035449434b45522d31323334355398250000000000d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 970, + "name": "Corporateaction_Set_default_withholding_tax", + "blob": "1e02417373657449442d3132333435363738400d0300d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Checkpoint : Remove schedule", - "1 | Ticker : TICKER-12345", - "2 | Id : 2463827", + "0 | Corporateaction : Set default withholding tax", + "1 | Asset id : AssetID-12345678", + "2 | Tax : 20.0000%", "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Checkpoint : Remove schedule", - "1 | Ticker : TICKER-12345", - "2 | Id : 2463827", + "0 | Corporateaction : Set default withholding tax", + "1 | Asset id : AssetID-12345678", + "2 | Tax : 20.0000%", "3 | Chain : Polymesh", "4 | Nonce : 50283", "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 980, - "name": "Checkpoint_Remove_schedule", - "blob": "1c035449434b45522d3132333435150e020000000000d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 971, + "name": "Corporateaction_Set_did_withholding_tax", + "blob": "1e03417373657449442d3132333435363738c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c490770801400d0300d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Checkpoint : Remove schedule", - "1 | Ticker : TICKER-12345", - "2 | Id : 134677" + "0 | Corporateaction : Set did withholding tax", + "1 | Asset id : AssetID-12345678", + "2 | Taxed did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Taxed did [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tax : 20.0000%", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Checkpoint : Remove schedule", - "1 | Ticker : TICKER-12345", - "2 | Id : 134677", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Corporateaction : Set did withholding tax", + "1 | Asset id : AssetID-12345678", + "2 | Taxed did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Taxed did [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tax : 20.0000%", + "4 | Chain : Polymesh", + "5 | Nonce : 1", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 981, - "name": "Compliancemanager_Add_compliance_requirement", - "blob": "1d005449434b45522d31323334350404000004040000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 972, + "name": "Corporateaction_Set_did_withholding_tax", + "blob": "1e03417373657449442d3132333435363738c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c49077080123c2f001d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Add compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Sender conditions : ExternalAgent", - "3 | Receiver conditions : ExternalAgent" + "0 | Corporateaction : Set did withholding tax", + "1 | Asset id : AssetID-12345678", + "2 | Taxed did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Taxed did [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tax : 3255.5555%" ], "output_expert": [ - "0 | Compliancemanager : Add compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Sender conditions : ExternalAgent", - "3 | Receiver conditions : ExternalAgent", + "0 | Corporateaction : Set did withholding tax", + "1 | Asset id : AssetID-12345678", + "2 | Taxed did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Taxed did [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tax : 3255.5555%", "4 | Chain : Polymesh", - "5 | Nonce : 50283", + "5 | Nonce : 0", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 982, - "name": "Compliancemanager_Add_compliance_requirement", - "blob": "1d005449434b45522d31323334350004040000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 973, + "name": "Corporateaction_Set_did_withholding_tax", + "blob": "1e03417373657449442d3132333435363738c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c49077080100000000d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Add compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Sender conditions : ", - "3 | Receiver conditions : ExternalAgent" + "0 | Corporateaction : Set did withholding tax", + "1 | Asset id : AssetID-12345678", + "2 | Taxed did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Taxed did [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tax : 0.0000%", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Compliancemanager : Add compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Sender conditions : ", - "3 | Receiver conditions : ExternalAgent", + "0 | Corporateaction : Set did withholding tax", + "1 | Asset id : AssetID-12345678", + "2 | Taxed did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Taxed did [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tax : 0.0000%", "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Nonce : 2339", + "6 | Tip : POLYX 0.000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 983, - "name": "Compliancemanager_Add_compliance_requirement", - "blob": "1d005449434b45522d31323334350404000000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 974, + "name": "Corporateaction_Set_did_withholding_tax", + "blob": "1e03417373657449442d3132333435363738c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c490770801400d0300d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Add compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Sender conditions : ExternalAgent", - "3 | Receiver conditions : ", - "4 | Tip : POLYX 5552342.355555" + "0 | Corporateaction : Set did withholding tax", + "1 | Asset id : AssetID-12345678", + "2 | Taxed did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Taxed did [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tax : 20.0000%", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Compliancemanager : Add compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Sender conditions : ExternalAgent", - "3 | Receiver conditions : ", + "0 | Corporateaction : Set did withholding tax", + "1 | Asset id : AssetID-12345678", + "2 | Taxed did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Taxed did [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tax : 20.0000%", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 5552342.355555", + "5 | Nonce : 2339", + "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 984, - "name": "Compliancemanager_Add_compliance_requirement", - "blob": "1d005449434b45522d3132333435040000015449434b45522d3234303832084129c62148fb7e04b664fce75bca6a9f0bafd1c361510016caef8e03039e128c00043e376daddca57fac415ad7894f1bb131ccd17f4407d7b7862bcbccf560450900040000015449434b45522d3234303832084129c62148fb7e04b664fce75bca6a9f0bafd1c361510016caef8e03039e128c00043e376daddca57fac415ad7894f1bb131ccd17f4407d7b7862bcbccf560450900d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 975, + "name": "Corporateaction_Set_did_withholding_tax", + "blob": "1e03417373657449442d3132333435363738c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c490770801400d0300d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Add compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Sender conditions [1/8] : Accredited", - "2 | Sender conditions [2/8] : TICKER-24082", - "2 | Sender conditions [3/8] : 4129c62148fb7e04b664fce75bca6a9f0bafd1", - "2 | Sender conditions [4/8] : c361510016caef8e03039e128c", - "2 | Sender conditions [5/8] : Any", - "2 | Sender conditions [6/8] : 043e376daddca57fac415ad7894f1bb131ccd1", - "2 | Sender conditions [7/8] : 7f4407d7b7862bcbccf5604509", - "2 | Sender conditions [8/8] : Any", - "3 | Receiver conditions [1/8] : Accredited", - "3 | Receiver conditions [2/8] : TICKER-24082", - "3 | Receiver conditions [3/8] : 4129c62148fb7e04b664fce75bca6a9f0bafd1", - "3 | Receiver conditions [4/8] : c361510016caef8e03039e128c", - "3 | Receiver conditions [5/8] : Any", - "3 | Receiver conditions [6/8] : 043e376daddca57fac415ad7894f1bb131ccd1", - "3 | Receiver conditions [7/8] : 7f4407d7b7862bcbccf5604509", - "3 | Receiver conditions [8/8] : Any", - "4 | Tip : POLYX 5552342.355555" + "0 | Corporateaction : Set did withholding tax", + "1 | Asset id : AssetID-12345678", + "2 | Taxed did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Taxed did [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tax : 20.0000%", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Compliancemanager : Add compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Sender conditions [1/8] : Accredited", - "2 | Sender conditions [2/8] : TICKER-24082", - "2 | Sender conditions [3/8] : 4129c62148fb7e04b664fce75bca6a9f0bafd1", - "2 | Sender conditions [4/8] : c361510016caef8e03039e128c", - "2 | Sender conditions [5/8] : Any", - "2 | Sender conditions [6/8] : 043e376daddca57fac415ad7894f1bb131ccd1", - "2 | Sender conditions [7/8] : 7f4407d7b7862bcbccf5604509", - "2 | Sender conditions [8/8] : Any", - "3 | Receiver conditions [1/8] : Accredited", - "3 | Receiver conditions [2/8] : TICKER-24082", - "3 | Receiver conditions [3/8] : 4129c62148fb7e04b664fce75bca6a9f0bafd1", - "3 | Receiver conditions [4/8] : c361510016caef8e03039e128c", - "3 | Receiver conditions [5/8] : Any", - "3 | Receiver conditions [6/8] : 043e376daddca57fac415ad7894f1bb131ccd1", - "3 | Receiver conditions [7/8] : 7f4407d7b7862bcbccf5604509", - "3 | Receiver conditions [8/8] : Any", + "0 | Corporateaction : Set did withholding tax", + "1 | Asset id : AssetID-12345678", + "2 | Taxed did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Taxed did [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tax : 20.0000%", "4 | Chain : Polymesh", "5 | Nonce : 50283", - "6 | Tip : POLYX 5552342.355555", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 985, - "name": "Compliancemanager_Add_compliance_requirement", - "blob": "1d005449434b45522d3132333435040000015449434b45522d3234303832084129c62148fb7e04b664fce75bca6a9f0bafd1c361510016caef8e03039e128c00043e376daddca57fac415ad7894f1bb131ccd17f4407d7b7862bcbccf56045090000d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 976, + "name": "Corporateaction_Initiate_corporate_action", + "blob": "1e04417373657449442d3132333435363738000001000000000000005044657461696c7320412c2044657461696c7320420104df397a13693abfecda7c8ee412ae30eabdf8720596ea4c46cc03086dde82314f00010000000001044958aba9d0d37a1bb0c17ea73baa510d9eaa05928db6e549d031f47d68601aa5400d0300d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Add compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Sender conditions [1/8] : Accredited", - "2 | Sender conditions [2/8] : TICKER-24082", - "2 | Sender conditions [3/8] : 4129c62148fb7e04b664fce75bca6a9f0bafd1", - "2 | Sender conditions [4/8] : c361510016caef8e03039e128c", - "2 | Sender conditions [5/8] : Any", - "2 | Sender conditions [6/8] : 043e376daddca57fac415ad7894f1bb131ccd1", - "2 | Sender conditions [7/8] : 7f4407d7b7862bcbccf5604509", - "2 | Sender conditions [8/8] : Any", - "3 | Receiver conditions : ", - "4 | Tip : POLYX 55.555555" + "0 | Corporateaction : Initiate corporate action", + "1 | Asset id : AssetID-12345678", + "2 | Kind : PredictableBenefit", + "3 | Decl date : 256", + "4 | Record date : None", + "5 | Details : Details A, Details B", + "6 | Targets [1/3] : df397a13693abfecda7c8ee412ae30eabdf872", + "6 | Targets [2/3] : 0596ea4c46cc03086dde82314f", + "6 | Targets [3/3] : Include", + "7 | Default withholding tax : 0.0000%", + "8 | Withholding tax [1/3] : 4958aba9d0d37a1bb0c17ea73baa510d9eaa05", + "8 | Withholding tax [2/3] : 928db6e549d031f47d68601aa5", + "8 | Withholding tax [3/3] : 20.0000%" ], "output_expert": [ - "0 | Compliancemanager : Add compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Sender conditions [1/8] : Accredited", - "2 | Sender conditions [2/8] : TICKER-24082", - "2 | Sender conditions [3/8] : 4129c62148fb7e04b664fce75bca6a9f0bafd1", - "2 | Sender conditions [4/8] : c361510016caef8e03039e128c", - "2 | Sender conditions [5/8] : Any", - "2 | Sender conditions [6/8] : 043e376daddca57fac415ad7894f1bb131ccd1", - "2 | Sender conditions [7/8] : 7f4407d7b7862bcbccf5604509", - "2 | Sender conditions [8/8] : Any", - "3 | Receiver conditions : ", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Corporateaction : Initiate corporate action", + "1 | Asset id : AssetID-12345678", + "2 | Kind : PredictableBenefit", + "3 | Decl date : 256", + "4 | Record date : None", + "5 | Details : Details A, Details B", + "6 | Targets [1/3] : df397a13693abfecda7c8ee412ae30eabdf872", + "6 | Targets [2/3] : 0596ea4c46cc03086dde82314f", + "6 | Targets [3/3] : Include", + "7 | Default withholding tax : 0.0000%", + "8 | Withholding tax [1/3] : 4958aba9d0d37a1bb0c17ea73baa510d9eaa05", + "8 | Withholding tax [2/3] : 928db6e549d031f47d68601aa5", + "8 | Withholding tax [3/3] : 20.0000%", + "9 | Chain : Polymesh", + "10 | Nonce : 2339", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 986, - "name": "Compliancemanager_Remove_compliance_requirement", - "blob": "1d015449434b45522d31323334359d1c0000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 977, + "name": "Corporateaction_Initiate_corporate_action", + "blob": "1e04417373657449442d3132333435363738008000000000000000010091150000000000005044657461696c7320412c2044657461696c7320420104df397a13693abfecda7c8ee412ae30eabdf8720596ea4c46cc03086dde82314f00010000000001044958aba9d0d37a1bb0c17ea73baa510d9eaa05928db6e549d031f47d68601aa5400d0300d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Remove compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Id : 7325", - "3 | Tip : POLYX 1234.56789" + "0 | Corporateaction : Initiate corporate action", + "1 | Asset id : AssetID-12345678", + "2 | Kind : PredictableBenefit", + "3 | Decl date : 128", + "4 | Record date : 5521", + "5 | Details : Details A, Details B", + "6 | Targets [1/3] : df397a13693abfecda7c8ee412ae30eabdf872", + "6 | Targets [2/3] : 0596ea4c46cc03086dde82314f", + "6 | Targets [3/3] : Include", + "7 | Default withholding tax : 0.0000%", + "8 | Withholding tax [1/3] : 4958aba9d0d37a1bb0c17ea73baa510d9eaa05", + "8 | Withholding tax [2/3] : 928db6e549d031f47d68601aa5", + "8 | Withholding tax [3/3] : 20.0000%", + "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "9 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Compliancemanager : Remove compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Id : 7325", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Corporateaction : Initiate corporate action", + "1 | Asset id : AssetID-12345678", + "2 | Kind : PredictableBenefit", + "3 | Decl date : 128", + "4 | Record date : 5521", + "5 | Details : Details A, Details B", + "6 | Targets [1/3] : df397a13693abfecda7c8ee412ae30eabdf872", + "6 | Targets [2/3] : 0596ea4c46cc03086dde82314f", + "6 | Targets [3/3] : Include", + "7 | Default withholding tax : 0.0000%", + "8 | Withholding tax [1/3] : 4958aba9d0d37a1bb0c17ea73baa510d9eaa05", + "8 | Withholding tax [2/3] : 928db6e549d031f47d68601aa5", + "8 | Withholding tax [3/3] : 20.0000%", + "9 | Chain : Polymesh", + "10 | Nonce : 1", + "11 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "11 | Tip [2/2] : 3.456789", + "12 | Era Phase : 61", + "13 | Era Period : 64", + "14 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "14 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 987, - "name": "Compliancemanager_Remove_compliance_requirement", - "blob": "1d015449434b45522d3132333435d3040000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 978, + "name": "Corporateaction_Initiate_corporate_action", + "blob": "1e04417373657449442d3132333435363738030008000000000000005044657461696c7320412c2044657461696c732042010434061f054c68676c7994218569691e3f9b8e13e9c79bdaa1d0ee59779dd48bdf01010000000001044958aba9d0d37a1bb0c17ea73baa510d9eaa05928db6e549d031f47d68601aa5400d0300d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Remove compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Id : 1235", - "3 | Tip : POLYX 5552342.355555" + "0 | Corporateaction : Initiate corporate action", + "1 | Asset id : AssetID-12345678", + "2 | Kind : Reorganization", + "3 | Decl date : 2048", + "4 | Record date : None", + "5 | Details : Details A, Details B", + "6 | Targets [1/3] : 34061f054c68676c7994218569691e3f9b8e13", + "6 | Targets [2/3] : e9c79bdaa1d0ee59779dd48bdf", + "6 | Targets [3/3] : Exclude", + "7 | Default withholding tax : 0.0000%", + "8 | Withholding tax [1/3] : 4958aba9d0d37a1bb0c17ea73baa510d9eaa05", + "8 | Withholding tax [2/3] : 928db6e549d031f47d68601aa5", + "8 | Withholding tax [3/3] : 20.0000%", + "9 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Compliancemanager : Remove compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Id : 1235", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Corporateaction : Initiate corporate action", + "1 | Asset id : AssetID-12345678", + "2 | Kind : Reorganization", + "3 | Decl date : 2048", + "4 | Record date : None", + "5 | Details : Details A, Details B", + "6 | Targets [1/3] : 34061f054c68676c7994218569691e3f9b8e13", + "6 | Targets [2/3] : e9c79bdaa1d0ee59779dd48bdf", + "6 | Targets [3/3] : Exclude", + "7 | Default withholding tax : 0.0000%", + "8 | Withholding tax [1/3] : 4958aba9d0d37a1bb0c17ea73baa510d9eaa05", + "8 | Withholding tax [2/3] : 928db6e549d031f47d68601aa5", + "8 | Withholding tax [3/3] : 20.0000%", + "9 | Chain : Polymesh", + "10 | Nonce : 100", + "11 | Tip : POLYX 55.555555", + "12 | Era Phase : 61", + "13 | Era Period : 64", + "14 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "14 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 988, - "name": "Compliancemanager_Remove_compliance_requirement", - "blob": "1d015449434b45522d3132333435d3040000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 979, + "name": "Corporateaction_Initiate_corporate_action", + "blob": "1e04417373657449442d3132333435363738000008000000000000010091150000000000005044657461696c7320412c2044657461696c732042010434061f054c68676c7994218569691e3f9b8e13e9c79bdaa1d0ee59779dd48bdf010123c2f00101044958aba9d0d37a1bb0c17ea73baa510d9eaa05928db6e549d031f47d68601aa5400d0300d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Remove compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Id : 1235", + "0 | Corporateaction : Initiate corporate action", + "1 | Asset id : AssetID-12345678", + "2 | Kind : PredictableBenefit", + "3 | Decl date : 2048", + "4 | Record date : 5521", + "5 | Details : Details A, Details B", + "6 | Targets [1/3] : 34061f054c68676c7994218569691e3f9b8e13", + "6 | Targets [2/3] : e9c79bdaa1d0ee59779dd48bdf", + "6 | Targets [3/3] : Exclude", + "7 | Default withholding tax : 3255.5555%", + "8 | Withholding tax [1/3] : 4958aba9d0d37a1bb0c17ea73baa510d9eaa05", + "8 | Withholding tax [2/3] : 928db6e549d031f47d68601aa5", + "8 | Withholding tax [3/3] : 20.0000%" + ], + "output_expert": [ + "0 | Corporateaction : Initiate corporate action", + "1 | Asset id : AssetID-12345678", + "2 | Kind : PredictableBenefit", + "3 | Decl date : 2048", + "4 | Record date : 5521", + "5 | Details : Details A, Details B", + "6 | Targets [1/3] : 34061f054c68676c7994218569691e3f9b8e13", + "6 | Targets [2/3] : e9c79bdaa1d0ee59779dd48bdf", + "6 | Targets [3/3] : Exclude", + "7 | Default withholding tax : 3255.5555%", + "8 | Withholding tax [1/3] : 4958aba9d0d37a1bb0c17ea73baa510d9eaa05", + "8 | Withholding tax [2/3] : 928db6e549d031f47d68601aa5", + "8 | Withholding tax [3/3] : 20.0000%", + "9 | Chain : Polymesh", + "10 | Nonce : 50283", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 980, + "name": "Corporateaction_Initiate_corporate_action", + "blob": "1e04417373657449442d31323334353637380000080000000000000102cc820d00000000005044657461696c7320412c2044657461696c7320420104df397a13693abfecda7c8ee412ae30eabdf8720596ea4c46cc03086dde82314f00010000000001044958aba9d0d37a1bb0c17ea73baa510d9eaa05928db6e549d031f47d68601aa5400d0300d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Corporateaction : Initiate corporate action", + "1 | Asset id : AssetID-12345678", + "2 | Kind : PredictableBenefit", + "3 | Decl date : 2048", + "4 | Record date : 885452", + "5 | Details : Details A, Details B", + "6 | Targets [1/3] : df397a13693abfecda7c8ee412ae30eabdf872", + "6 | Targets [2/3] : 0596ea4c46cc03086dde82314f", + "6 | Targets [3/3] : Include", + "7 | Default withholding tax : 0.0000%", + "8 | Withholding tax [1/3] : 4958aba9d0d37a1bb0c17ea73baa510d9eaa05", + "8 | Withholding tax [2/3] : 928db6e549d031f47d68601aa5", + "8 | Withholding tax [3/3] : 20.0000%", + "9 | Tip : POLYX 0.000987" + ], + "output_expert": [ + "0 | Corporateaction : Initiate corporate action", + "1 | Asset id : AssetID-12345678", + "2 | Kind : PredictableBenefit", + "3 | Decl date : 2048", + "4 | Record date : 885452", + "5 | Details : Details A, Details B", + "6 | Targets [1/3] : df397a13693abfecda7c8ee412ae30eabdf872", + "6 | Targets [2/3] : 0596ea4c46cc03086dde82314f", + "6 | Targets [3/3] : Include", + "7 | Default withholding tax : 0.0000%", + "8 | Withholding tax [1/3] : 4958aba9d0d37a1bb0c17ea73baa510d9eaa05", + "8 | Withholding tax [2/3] : 928db6e549d031f47d68601aa5", + "8 | Withholding tax [3/3] : 20.0000%", + "9 | Chain : Polymesh", + "10 | Nonce : 1", + "11 | Tip : POLYX 0.000987", + "12 | Era Phase : 61", + "13 | Era Period : 64", + "14 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "14 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 981, + "name": "Corporateaction_Link_ca_doc", + "blob": "1e05417373657449442d31323334353637386fec210000d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Corporateaction : Link ca doc", + "1 | Id [1/2] : AssetID-12345678", + "1 | Id [2/2] : 2223215", + "2 | Docs : ", "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Compliancemanager : Remove compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Id : 1235", + "0 | Corporateaction : Link ca doc", + "1 | Id [1/2] : AssetID-12345678", + "1 | Id [2/2] : 2223215", + "2 | Docs : ", "3 | Chain : Polymesh", "4 | Nonce : 100", "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 989, - "name": "Compliancemanager_Remove_compliance_requirement", - "blob": "1d015449434b45522d3132333435d3040000d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 982, + "name": "Corporateaction_Link_ca_doc", + "blob": "1e05417373657449442d31323334353637386fec210000d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Remove compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Id : 1235", - "3 | Tip : POLYX 55.555555" + "0 | Corporateaction : Link ca doc", + "1 | Id [1/2] : AssetID-12345678", + "1 | Id [2/2] : 2223215", + "2 | Docs : ", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Compliancemanager : Remove compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Id : 1235", + "0 | Corporateaction : Link ca doc", + "1 | Id [1/2] : AssetID-12345678", + "1 | Id [2/2] : 2223215", + "2 | Docs : ", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 100", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 990, - "name": "Compliancemanager_Remove_compliance_requirement", - "blob": "1d015449434b45522d313233343500000000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 983, + "name": "Corporateaction_Link_ca_doc", + "blob": "1e05417373657449442d31323334353637386fec21000400000000d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Remove compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Id : 0", - "3 | Tip : POLYX 1234.56789" + "0 | Corporateaction : Link ca doc", + "1 | Id [1/2] : AssetID-12345678", + "1 | Id [2/2] : 2223215", + "2 | Docs : 0", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Compliancemanager : Remove compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Id : 0", + "0 | Corporateaction : Link ca doc", + "1 | Id [1/2] : AssetID-12345678", + "1 | Id [2/2] : 2223215", + "2 | Docs : 0", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 50283", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 991, - "name": "Compliancemanager_Replace_asset_compliance", - "blob": "1d025449434b45522d313233343500d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 984, + "name": "Corporateaction_Link_ca_doc", + "blob": "1e05417373657449442d31323334353637386fec210000d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Replace asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Asset compliance : ", - "3 | Tip : POLYX 55.555555" + "0 | Corporateaction : Link ca doc", + "1 | Id [1/2] : AssetID-12345678", + "1 | Id [2/2] : 2223215", + "2 | Docs : ", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Compliancemanager : Replace asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Asset compliance : ", + "0 | Corporateaction : Link ca doc", + "1 | Id [1/2] : AssetID-12345678", + "1 | Id [2/2] : 2223215", + "2 | Docs : ", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 1", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 992, - "name": "Compliancemanager_Replace_asset_compliance", - "blob": "1d025449434b45522d313233343500d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 985, + "name": "Corporateaction_Link_ca_doc", + "blob": "1e05417373657449442d31323334353637386fec21000400000000d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Replace asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Asset compliance : ", + "0 | Corporateaction : Link ca doc", + "1 | Id [1/2] : AssetID-12345678", + "1 | Id [2/2] : 2223215", + "2 | Docs : 0", "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Compliancemanager : Replace asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Asset compliance : ", + "0 | Corporateaction : Link ca doc", + "1 | Id [1/2] : AssetID-12345678", + "1 | Id [2/2] : 2223215", + "2 | Docs : 0", "3 | Chain : Polymesh", - "4 | Nonce : 50283", + "4 | Nonce : 2339", "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 993, - "name": "Compliancemanager_Replace_asset_compliance", - "blob": "1d025449434b45522d313233343504040000015449434b45522d33343536370889dfe80bc48d89f27a468a4546b8bd19b935e9f5b796849989011a9c46e3ecc0002c9d9598fbd90a99807855fb70a7858a9e8e80e1b9e8e40fc31330d89ac1ba0c000000000000d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 986, + "name": "Corporateaction_Remove_ca", + "blob": "1e06417373657449442d31323334353637386fec2100d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Replace asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Asset compliance [1/10] : Accredited", - "2 | Asset compliance [2/10] : TICKER-34567", - "2 | Asset compliance [3/10] : 89dfe80bc48d89f27a468a4546b8bd19b935e9", - "2 | Asset compliance [4/10] : f5b796849989011a9c46e3ecc0", - "2 | Asset compliance [5/10] : Any", - "2 | Asset compliance [6/10] : 2c9d9598fbd90a99807855fb70a7858a9e8e80", - "2 | Asset compliance [7/10] : e1b9e8e40fc31330d89ac1ba0c", - "2 | Asset compliance [8/10] : Any", - "2 | Asset compliance [9/10] : ", - "2 | Asset compliance [10/10] : 0", - "3 | Tip : POLYX 0.000987" + "0 | Corporateaction : Remove ca", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Compliancemanager : Replace asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Asset compliance [1/10] : Accredited", - "2 | Asset compliance [2/10] : TICKER-34567", - "2 | Asset compliance [3/10] : 89dfe80bc48d89f27a468a4546b8bd19b935e9", - "2 | Asset compliance [4/10] : f5b796849989011a9c46e3ecc0", - "2 | Asset compliance [5/10] : Any", - "2 | Asset compliance [6/10] : 2c9d9598fbd90a99807855fb70a7858a9e8e80", - "2 | Asset compliance [7/10] : e1b9e8e40fc31330d89ac1ba0c", - "2 | Asset compliance [8/10] : Any", - "2 | Asset compliance [9/10] : ", - "2 | Asset compliance [10/10] : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Corporateaction : Remove ca", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 994, - "name": "Compliancemanager_Replace_asset_compliance", - "blob": "1d025449434b45522d313233343500d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 987, + "name": "Corporateaction_Remove_ca", + "blob": "1e06417373657449442d31323334353637386fec2100d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Replace asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Asset compliance : " + "0 | Corporateaction : Remove ca", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Compliancemanager : Replace asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Asset compliance : ", - "3 | Chain : Polymesh", - "4 | Nonce : 0", + "0 | Corporateaction : Remove ca", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 995, - "name": "Compliancemanager_Replace_asset_compliance", - "blob": "1d025449434b45522d313233343504040000015449434b45522d33343536370889dfe80bc48d89f27a468a4546b8bd19b935e9f5b796849989011a9c46e3ecc0002c9d9598fbd90a99807855fb70a7858a9e8e80e1b9e8e40fc31330d89ac1ba0c000000000000d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 988, + "name": "Corporateaction_Remove_ca", + "blob": "1e06417373657449442d31323334353637386fec2100d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Replace asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Asset compliance [1/10] : Accredited", - "2 | Asset compliance [2/10] : TICKER-34567", - "2 | Asset compliance [3/10] : 89dfe80bc48d89f27a468a4546b8bd19b935e9", - "2 | Asset compliance [4/10] : f5b796849989011a9c46e3ecc0", - "2 | Asset compliance [5/10] : Any", - "2 | Asset compliance [6/10] : 2c9d9598fbd90a99807855fb70a7858a9e8e80", - "2 | Asset compliance [7/10] : e1b9e8e40fc31330d89ac1ba0c", - "2 | Asset compliance [8/10] : Any", - "2 | Asset compliance [9/10] : ", - "2 | Asset compliance [10/10] : 0", - "3 | Tip : POLYX 0.000987" + "0 | Corporateaction : Remove ca", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215" ], "output_expert": [ - "0 | Compliancemanager : Replace asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Asset compliance [1/10] : Accredited", - "2 | Asset compliance [2/10] : TICKER-34567", - "2 | Asset compliance [3/10] : 89dfe80bc48d89f27a468a4546b8bd19b935e9", - "2 | Asset compliance [4/10] : f5b796849989011a9c46e3ecc0", - "2 | Asset compliance [5/10] : Any", - "2 | Asset compliance [6/10] : 2c9d9598fbd90a99807855fb70a7858a9e8e80", - "2 | Asset compliance [7/10] : e1b9e8e40fc31330d89ac1ba0c", - "2 | Asset compliance [8/10] : Any", - "2 | Asset compliance [9/10] : ", - "2 | Asset compliance [10/10] : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Corporateaction : Remove ca", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 996, - "name": "Compliancemanager_Reset_asset_compliance", - "blob": "1d035449434b45522d3132333435d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 989, + "name": "Corporateaction_Remove_ca", + "blob": "1e06417373657449442d31323334353637386fec2100d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Reset asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 55.555555" + "0 | Corporateaction : Remove ca", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215" ], "output_expert": [ - "0 | Compliancemanager : Reset asset compliance", - "1 | Ticker : TICKER-12345", + "0 | Corporateaction : Remove ca", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 997, - "name": "Compliancemanager_Reset_asset_compliance", - "blob": "1d035449434b45522d3132333435d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 990, + "name": "Corporateaction_Remove_ca", + "blob": "1e06417373657449442d31323334353637386fec2100d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Reset asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 1234.56789" + "0 | Corporateaction : Remove ca", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Compliancemanager : Reset asset compliance", - "1 | Ticker : TICKER-12345", + "0 | Corporateaction : Remove ca", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 998, - "name": "Compliancemanager_Reset_asset_compliance", - "blob": "1d035449434b45522d3132333435d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 991, + "name": "Corporateaction_Change_record_date", + "blob": "1e07417373657449442d31323334353637386fec210000d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Reset asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 5552342.355555" + "0 | Corporateaction : Change record date", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Record date : None", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Compliancemanager : Reset asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Corporateaction : Change record date", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Record date : None", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 999, - "name": "Compliancemanager_Reset_asset_compliance", - "blob": "1d035449434b45522d3132333435d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 992, + "name": "Corporateaction_Change_record_date", + "blob": "1e07417373657449442d31323334353637386fec210000d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Reset asset compliance", - "1 | Ticker : TICKER-12345" + "0 | Corporateaction : Change record date", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Record date : None", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Compliancemanager : Reset asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Corporateaction : Change record date", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Record date : None", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1000, - "name": "Compliancemanager_Reset_asset_compliance", - "blob": "1d035449434b45522d3132333435d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 993, + "name": "Corporateaction_Change_record_date", + "blob": "1e07417373657449442d31323334353637386fec210000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Reset asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 1234.56789" + "0 | Corporateaction : Change record date", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Record date : None" ], "output_expert": [ - "0 | Compliancemanager : Reset asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", + "0 | Corporateaction : Change record date", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Record date : None", + "3 | Chain : Polymesh", + "4 | Nonce : 1", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1001, - "name": "Compliancemanager_Pause_asset_compliance", - "blob": "1d045449434b45522d3132333435d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 994, + "name": "Corporateaction_Change_record_date", + "blob": "1e07417373657449442d31323334353637386fec210001009115000000000000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Pause asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 55.555555" + "0 | Corporateaction : Change record date", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Record date : 5521", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Compliancemanager : Pause asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Corporateaction : Change record date", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Record date : 5521", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1002, - "name": "Compliancemanager_Pause_asset_compliance", - "blob": "1d045449434b45522d3132333435d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 995, + "name": "Corporateaction_Change_record_date", + "blob": "1e07417373657449442d31323334353637386fec210000d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Pause asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 1234.56789" + "0 | Corporateaction : Change record date", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Record date : None", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Compliancemanager : Pause asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Corporateaction : Change record date", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Record date : None", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1003, - "name": "Compliancemanager_Pause_asset_compliance", - "blob": "1d045449434b45522d3132333435d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 996, + "name": "Corporateaction_Initiate_corporate_action_and_distribute", + "blob": "1e08417373657449442d3132333435363738018dd451d685d498350102fe22d706e37751ca01028dd47dd80d2b71522d9936cb3c330ed8ea55bcc2c092d3262a50b2dfdb85c1b0d8e1c83ab551b331b182b06ea5cda83910ee18623c2698d45ccb5aaed2ee20d8b4c367bb40bfe05a5e536e8c482f416b722f66f48d2b8b0c567e125a8a170021aeba1e905d8c6ced18d6618e84f8230267e3681c04aee6bf600f758986789c8401083c3b8bef6af3aeec1fb990addf5058597f0ddf49af2ad208df2ae300f56a6b0446dada2b4e90645d3e1bd48d2adaadcc17ed06a9ac387897f270d067b82ddde30101000aca3e01083bc648cd793b97636b77d61f19a10976db87971351194d36d9d391d3867ae58abc19a1c1629761d22e0790f03f1ba60c4bc44441b24069cb53d8dbde62907a4ccaa953ccb20d09d201bb13000000000000417373657449442d3132333435363738fd56e5cad3287b54b2352f703dbeafc0fd56e5cad3287b54b2352f703dbeafc08000000000000000010001000000000000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Pause asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 55.555555" + "0 | Corporateaction : Initiate corporate action and distribu", + "1 | Ca args [1/23] : AssetID-12345678", + "1 | Ca args [2/23] : UnpredictableBenfit", + "1 | Ca args [3/23] : 3862070351761626253", + "1 | Ca args [4/23] : 14578565285731050238", + "1 | Ca args [5/23] : 8dd47dd80d2b71522d9936cb3c330ed8ea55bc", + "1 | Ca args [6/23] : c2c092d3262a50b2dfdb85c1b0d8e1c83ab551", + "1 | Ca args [7/23] : b331b182b06ea5cda83910ee18623c2698d45c", + "1 | Ca args [8/23] : cb5aaed2ee20d8b4c367bb40bfe05a5e536e8c", + "1 | Ca args [9/23] : 482f416b722f66f48d2b8b0c567e125a8a1700", + "1 | Ca args [10/23] : 21aeba1e905d8c6ced18d6618e84f8230267e3", + "1 | Ca args [11/23] : 681c04aee6bf600f758986789c84", + "1 | Ca args [12/23] : 3c3b8bef6af3aeec1fb990addf5058597f0ddf", + "1 | Ca args [13/23] : 49af2ad208df2ae300f56a6b04", + "1 | Ca args [14/23] : 46dada2b4e90645d3e1bd48d2adaadcc17ed06", + "1 | Ca args [15/23] : a9ac387897f270d067b82ddde3", + "1 | Ca args [16/23] : Exclude", + "1 | Ca args [17/23] : 105342.8224%", + "1 | Ca args [18/23] : 3bc648cd793b97636b77d61f19a10976db8797", + "1 | Ca args [19/23] : 1351194d36d9d391d3867ae58a", + "1 | Ca args [20/23] : 324856.0572%", + "1 | Ca args [21/23] : 629761d22e0790f03f1ba60c4bc44441b24069", + "1 | Ca args [22/23] : cb53d8dbde62907a4ccaa953cc", + "1 | Ca args [23/23] : 352380.8690%", + "2 | Portfolio : 5051", + "3 | Currency : AssetID-12345678", + "4 | Per share [1/2] : POLYX 25612428566640944380857301230667", + "4 | Per share [2/2] : 6.766461", + "5 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "5 | Amount [2/2] : 6.766461", + "6 | Payment at : 128", + "7 | Expires at : 256" ], "output_expert": [ - "0 | Compliancemanager : Pause asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Corporateaction : Initiate corporate action and distribu", + "1 | Ca args [1/23] : AssetID-12345678", + "1 | Ca args [2/23] : UnpredictableBenfit", + "1 | Ca args [3/23] : 3862070351761626253", + "1 | Ca args [4/23] : 14578565285731050238", + "1 | Ca args [5/23] : 8dd47dd80d2b71522d9936cb3c330ed8ea55bc", + "1 | Ca args [6/23] : c2c092d3262a50b2dfdb85c1b0d8e1c83ab551", + "1 | Ca args [7/23] : b331b182b06ea5cda83910ee18623c2698d45c", + "1 | Ca args [8/23] : cb5aaed2ee20d8b4c367bb40bfe05a5e536e8c", + "1 | Ca args [9/23] : 482f416b722f66f48d2b8b0c567e125a8a1700", + "1 | Ca args [10/23] : 21aeba1e905d8c6ced18d6618e84f8230267e3", + "1 | Ca args [11/23] : 681c04aee6bf600f758986789c84", + "1 | Ca args [12/23] : 3c3b8bef6af3aeec1fb990addf5058597f0ddf", + "1 | Ca args [13/23] : 49af2ad208df2ae300f56a6b04", + "1 | Ca args [14/23] : 46dada2b4e90645d3e1bd48d2adaadcc17ed06", + "1 | Ca args [15/23] : a9ac387897f270d067b82ddde3", + "1 | Ca args [16/23] : Exclude", + "1 | Ca args [17/23] : 105342.8224%", + "1 | Ca args [18/23] : 3bc648cd793b97636b77d61f19a10976db8797", + "1 | Ca args [19/23] : 1351194d36d9d391d3867ae58a", + "1 | Ca args [20/23] : 324856.0572%", + "1 | Ca args [21/23] : 629761d22e0790f03f1ba60c4bc44441b24069", + "1 | Ca args [22/23] : cb53d8dbde62907a4ccaa953cc", + "1 | Ca args [23/23] : 352380.8690%", + "2 | Portfolio : 5051", + "3 | Currency : AssetID-12345678", + "4 | Per share [1/2] : POLYX 25612428566640944380857301230667", + "4 | Per share [2/2] : 6.766461", + "5 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "5 | Amount [2/2] : 6.766461", + "6 | Payment at : 128", + "7 | Expires at : 256", + "8 | Chain : Polymesh", + "9 | Nonce : 50283", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1004, - "name": "Compliancemanager_Pause_asset_compliance", - "blob": "1d045449434b45522d3132333435d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 997, + "name": "Corporateaction_Initiate_corporate_action_and_distribute", + "blob": "1e08417373657449442d3132333435363738018dd451d685d498350102fe22d706e37751ca01028dd47dd80d2b71522d9936cb3c330ed8ea55bcc2c092d3262a50b2dfdb85c1b0d8e1c83ab551b331b182b06ea5cda83910ee18623c2698d45ccb5aaed2ee20d8b4c367bb40bfe05a5e536e8c482f416b722f66f48d2b8b0c567e125a8a170021aeba1e905d8c6ced18d6618e84f8230267e3681c04aee6bf600f758986789c8401083c3b8bef6af3aeec1fb990addf5058597f0ddf49af2ad208df2ae300f56a6b0446dada2b4e90645d3e1bd48d2adaadcc17ed06a9ac387897f270d067b82ddde30101000aca3e01083bc648cd793b97636b77d61f19a10976db87971351194d36d9d391d3867ae58abc19a1c1629761d22e0790f03f1ba60c4bc44441b24069cb53d8dbde62907a4ccaa953ccb20d09d2010000000000000000417373657449442d3132333435363738fd56e5cad3287b54b2352f703dbeafc0fd56e5cad3287b54b2352f703dbeafc08000000000000000010001000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Pause asset compliance", - "1 | Ticker : TICKER-12345" + "0 | Corporateaction : Initiate corporate action and distribu", + "1 | Ca args [1/23] : AssetID-12345678", + "1 | Ca args [2/23] : UnpredictableBenfit", + "1 | Ca args [3/23] : 3862070351761626253", + "1 | Ca args [4/23] : 14578565285731050238", + "1 | Ca args [5/23] : 8dd47dd80d2b71522d9936cb3c330ed8ea55bc", + "1 | Ca args [6/23] : c2c092d3262a50b2dfdb85c1b0d8e1c83ab551", + "1 | Ca args [7/23] : b331b182b06ea5cda83910ee18623c2698d45c", + "1 | Ca args [8/23] : cb5aaed2ee20d8b4c367bb40bfe05a5e536e8c", + "1 | Ca args [9/23] : 482f416b722f66f48d2b8b0c567e125a8a1700", + "1 | Ca args [10/23] : 21aeba1e905d8c6ced18d6618e84f8230267e3", + "1 | Ca args [11/23] : 681c04aee6bf600f758986789c84", + "1 | Ca args [12/23] : 3c3b8bef6af3aeec1fb990addf5058597f0ddf", + "1 | Ca args [13/23] : 49af2ad208df2ae300f56a6b04", + "1 | Ca args [14/23] : 46dada2b4e90645d3e1bd48d2adaadcc17ed06", + "1 | Ca args [15/23] : a9ac387897f270d067b82ddde3", + "1 | Ca args [16/23] : Exclude", + "1 | Ca args [17/23] : 105342.8224%", + "1 | Ca args [18/23] : 3bc648cd793b97636b77d61f19a10976db8797", + "1 | Ca args [19/23] : 1351194d36d9d391d3867ae58a", + "1 | Ca args [20/23] : 324856.0572%", + "1 | Ca args [21/23] : 629761d22e0790f03f1ba60c4bc44441b24069", + "1 | Ca args [22/23] : cb53d8dbde62907a4ccaa953cc", + "1 | Ca args [23/23] : 352380.8690%", + "2 | Portfolio : 0", + "3 | Currency : AssetID-12345678", + "4 | Per share [1/2] : POLYX 25612428566640944380857301230667", + "4 | Per share [2/2] : 6.766461", + "5 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "5 | Amount [2/2] : 6.766461", + "6 | Payment at : 128", + "7 | Expires at : 256", + "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "8 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Compliancemanager : Pause asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Corporateaction : Initiate corporate action and distribu", + "1 | Ca args [1/23] : AssetID-12345678", + "1 | Ca args [2/23] : UnpredictableBenfit", + "1 | Ca args [3/23] : 3862070351761626253", + "1 | Ca args [4/23] : 14578565285731050238", + "1 | Ca args [5/23] : 8dd47dd80d2b71522d9936cb3c330ed8ea55bc", + "1 | Ca args [6/23] : c2c092d3262a50b2dfdb85c1b0d8e1c83ab551", + "1 | Ca args [7/23] : b331b182b06ea5cda83910ee18623c2698d45c", + "1 | Ca args [8/23] : cb5aaed2ee20d8b4c367bb40bfe05a5e536e8c", + "1 | Ca args [9/23] : 482f416b722f66f48d2b8b0c567e125a8a1700", + "1 | Ca args [10/23] : 21aeba1e905d8c6ced18d6618e84f8230267e3", + "1 | Ca args [11/23] : 681c04aee6bf600f758986789c84", + "1 | Ca args [12/23] : 3c3b8bef6af3aeec1fb990addf5058597f0ddf", + "1 | Ca args [13/23] : 49af2ad208df2ae300f56a6b04", + "1 | Ca args [14/23] : 46dada2b4e90645d3e1bd48d2adaadcc17ed06", + "1 | Ca args [15/23] : a9ac387897f270d067b82ddde3", + "1 | Ca args [16/23] : Exclude", + "1 | Ca args [17/23] : 105342.8224%", + "1 | Ca args [18/23] : 3bc648cd793b97636b77d61f19a10976db8797", + "1 | Ca args [19/23] : 1351194d36d9d391d3867ae58a", + "1 | Ca args [20/23] : 324856.0572%", + "1 | Ca args [21/23] : 629761d22e0790f03f1ba60c4bc44441b24069", + "1 | Ca args [22/23] : cb53d8dbde62907a4ccaa953cc", + "1 | Ca args [23/23] : 352380.8690%", + "2 | Portfolio : 0", + "3 | Currency : AssetID-12345678", + "4 | Per share [1/2] : POLYX 25612428566640944380857301230667", + "4 | Per share [2/2] : 6.766461", + "5 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "5 | Amount [2/2] : 6.766461", + "6 | Payment at : 128", + "7 | Expires at : 256", + "8 | Chain : Polymesh", + "9 | Nonce : 0", + "10 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "10 | Tip [2/2] : 3.456789", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1005, - "name": "Compliancemanager_Pause_asset_compliance", - "blob": "1d045449434b45522d3132333435d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 998, + "name": "Corporateaction_Initiate_corporate_action_and_distribute", + "blob": "1e08417373657449442d3132333435363738018dd451d685d498350102fe22d706e37751ca01028dd47dd80d2b71522d9936cb3c330ed8ea55bcc2c092d3262a50b2dfdb85c1b0d8e1c83ab551b331b182b06ea5cda83910ee18623c2698d45ccb5aaed2ee20d8b4c367bb40bfe05a5e536e8c482f416b722f66f48d2b8b0c567e125a8a170021aeba1e905d8c6ced18d6618e84f8230267e3681c04aee6bf600f758986789c8401083c3b8bef6af3aeec1fb990addf5058597f0ddf49af2ad208df2ae300f56a6b0446dada2b4e90645d3e1bd48d2adaadcc17ed06a9ac387897f270d067b82ddde30101000aca3e01083bc648cd793b97636b77d61f19a10976db87971351194d36d9d391d3867ae58abc19a1c1629761d22e0790f03f1ba60c4bc44441b24069cb53d8dbde62907a4ccaa953ccb20d09d2010000000000000000417373657449442d3132333435363738fd56e5cad3287b54b2352f703dbeafc0fd56e5cad3287b54b2352f703dbeafc08000000000000000010008000000000000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Pause asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 5552342.355555" + "0 | Corporateaction : Initiate corporate action and distribu", + "1 | Ca args [1/23] : AssetID-12345678", + "1 | Ca args [2/23] : UnpredictableBenfit", + "1 | Ca args [3/23] : 3862070351761626253", + "1 | Ca args [4/23] : 14578565285731050238", + "1 | Ca args [5/23] : 8dd47dd80d2b71522d9936cb3c330ed8ea55bc", + "1 | Ca args [6/23] : c2c092d3262a50b2dfdb85c1b0d8e1c83ab551", + "1 | Ca args [7/23] : b331b182b06ea5cda83910ee18623c2698d45c", + "1 | Ca args [8/23] : cb5aaed2ee20d8b4c367bb40bfe05a5e536e8c", + "1 | Ca args [9/23] : 482f416b722f66f48d2b8b0c567e125a8a1700", + "1 | Ca args [10/23] : 21aeba1e905d8c6ced18d6618e84f8230267e3", + "1 | Ca args [11/23] : 681c04aee6bf600f758986789c84", + "1 | Ca args [12/23] : 3c3b8bef6af3aeec1fb990addf5058597f0ddf", + "1 | Ca args [13/23] : 49af2ad208df2ae300f56a6b04", + "1 | Ca args [14/23] : 46dada2b4e90645d3e1bd48d2adaadcc17ed06", + "1 | Ca args [15/23] : a9ac387897f270d067b82ddde3", + "1 | Ca args [16/23] : Exclude", + "1 | Ca args [17/23] : 105342.8224%", + "1 | Ca args [18/23] : 3bc648cd793b97636b77d61f19a10976db8797", + "1 | Ca args [19/23] : 1351194d36d9d391d3867ae58a", + "1 | Ca args [20/23] : 324856.0572%", + "1 | Ca args [21/23] : 629761d22e0790f03f1ba60c4bc44441b24069", + "1 | Ca args [22/23] : cb53d8dbde62907a4ccaa953cc", + "1 | Ca args [23/23] : 352380.8690%", + "2 | Portfolio : 0", + "3 | Currency : AssetID-12345678", + "4 | Per share [1/2] : POLYX 25612428566640944380857301230667", + "4 | Per share [2/2] : 6.766461", + "5 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "5 | Amount [2/2] : 6.766461", + "6 | Payment at : 128", + "7 | Expires at : 2048", + "8 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Compliancemanager : Pause asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Corporateaction : Initiate corporate action and distribu", + "1 | Ca args [1/23] : AssetID-12345678", + "1 | Ca args [2/23] : UnpredictableBenfit", + "1 | Ca args [3/23] : 3862070351761626253", + "1 | Ca args [4/23] : 14578565285731050238", + "1 | Ca args [5/23] : 8dd47dd80d2b71522d9936cb3c330ed8ea55bc", + "1 | Ca args [6/23] : c2c092d3262a50b2dfdb85c1b0d8e1c83ab551", + "1 | Ca args [7/23] : b331b182b06ea5cda83910ee18623c2698d45c", + "1 | Ca args [8/23] : cb5aaed2ee20d8b4c367bb40bfe05a5e536e8c", + "1 | Ca args [9/23] : 482f416b722f66f48d2b8b0c567e125a8a1700", + "1 | Ca args [10/23] : 21aeba1e905d8c6ced18d6618e84f8230267e3", + "1 | Ca args [11/23] : 681c04aee6bf600f758986789c84", + "1 | Ca args [12/23] : 3c3b8bef6af3aeec1fb990addf5058597f0ddf", + "1 | Ca args [13/23] : 49af2ad208df2ae300f56a6b04", + "1 | Ca args [14/23] : 46dada2b4e90645d3e1bd48d2adaadcc17ed06", + "1 | Ca args [15/23] : a9ac387897f270d067b82ddde3", + "1 | Ca args [16/23] : Exclude", + "1 | Ca args [17/23] : 105342.8224%", + "1 | Ca args [18/23] : 3bc648cd793b97636b77d61f19a10976db8797", + "1 | Ca args [19/23] : 1351194d36d9d391d3867ae58a", + "1 | Ca args [20/23] : 324856.0572%", + "1 | Ca args [21/23] : 629761d22e0790f03f1ba60c4bc44441b24069", + "1 | Ca args [22/23] : cb53d8dbde62907a4ccaa953cc", + "1 | Ca args [23/23] : 352380.8690%", + "2 | Portfolio : 0", + "3 | Currency : AssetID-12345678", + "4 | Per share [1/2] : POLYX 25612428566640944380857301230667", + "4 | Per share [2/2] : 6.766461", + "5 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "5 | Amount [2/2] : 6.766461", + "6 | Payment at : 128", + "7 | Expires at : 2048", + "8 | Chain : Polymesh", + "9 | Nonce : 0", + "10 | Tip : POLYX 0.000987", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1006, - "name": "Compliancemanager_Resume_asset_compliance", - "blob": "1d055449434b45522d3132333435d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 999, + "name": "Corporateaction_Initiate_corporate_action_and_distribute", + "blob": "1e08417373657449442d3132333435363738018dd451d685d498350102fe22d706e37751ca01028dd47dd80d2b71522d9936cb3c330ed8ea55bcc2c092d3262a50b2dfdb85c1b0d8e1c83ab551b331b182b06ea5cda83910ee18623c2698d45ccb5aaed2ee20d8b4c367bb40bfe05a5e536e8c482f416b722f66f48d2b8b0c567e125a8a170021aeba1e905d8c6ced18d6618e84f8230267e3681c04aee6bf600f758986789c8401083c3b8bef6af3aeec1fb990addf5058597f0ddf49af2ad208df2ae300f56a6b0446dada2b4e90645d3e1bd48d2adaadcc17ed06a9ac387897f270d067b82ddde30101000aca3e01083bc648cd793b97636b77d61f19a10976db87971351194d36d9d391d3867ae58abc19a1c1629761d22e0790f03f1ba60c4bc44441b24069cb53d8dbde62907a4ccaa953ccb20d09d201bb13000000000000417373657449442d3132333435363738fd56e5cad3287b54b2352f703dbeafc0fd56e5cad3287b54b2352f703dbeafc08000000000000000010001000000000000d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Resume asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 1234.56789" + "0 | Corporateaction : Initiate corporate action and distribu", + "1 | Ca args [1/23] : AssetID-12345678", + "1 | Ca args [2/23] : UnpredictableBenfit", + "1 | Ca args [3/23] : 3862070351761626253", + "1 | Ca args [4/23] : 14578565285731050238", + "1 | Ca args [5/23] : 8dd47dd80d2b71522d9936cb3c330ed8ea55bc", + "1 | Ca args [6/23] : c2c092d3262a50b2dfdb85c1b0d8e1c83ab551", + "1 | Ca args [7/23] : b331b182b06ea5cda83910ee18623c2698d45c", + "1 | Ca args [8/23] : cb5aaed2ee20d8b4c367bb40bfe05a5e536e8c", + "1 | Ca args [9/23] : 482f416b722f66f48d2b8b0c567e125a8a1700", + "1 | Ca args [10/23] : 21aeba1e905d8c6ced18d6618e84f8230267e3", + "1 | Ca args [11/23] : 681c04aee6bf600f758986789c84", + "1 | Ca args [12/23] : 3c3b8bef6af3aeec1fb990addf5058597f0ddf", + "1 | Ca args [13/23] : 49af2ad208df2ae300f56a6b04", + "1 | Ca args [14/23] : 46dada2b4e90645d3e1bd48d2adaadcc17ed06", + "1 | Ca args [15/23] : a9ac387897f270d067b82ddde3", + "1 | Ca args [16/23] : Exclude", + "1 | Ca args [17/23] : 105342.8224%", + "1 | Ca args [18/23] : 3bc648cd793b97636b77d61f19a10976db8797", + "1 | Ca args [19/23] : 1351194d36d9d391d3867ae58a", + "1 | Ca args [20/23] : 324856.0572%", + "1 | Ca args [21/23] : 629761d22e0790f03f1ba60c4bc44441b24069", + "1 | Ca args [22/23] : cb53d8dbde62907a4ccaa953cc", + "1 | Ca args [23/23] : 352380.8690%", + "2 | Portfolio : 5051", + "3 | Currency : AssetID-12345678", + "4 | Per share [1/2] : POLYX 25612428566640944380857301230667", + "4 | Per share [2/2] : 6.766461", + "5 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "5 | Amount [2/2] : 6.766461", + "6 | Payment at : 128", + "7 | Expires at : 256", + "8 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Compliancemanager : Resume asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Corporateaction : Initiate corporate action and distribu", + "1 | Ca args [1/23] : AssetID-12345678", + "1 | Ca args [2/23] : UnpredictableBenfit", + "1 | Ca args [3/23] : 3862070351761626253", + "1 | Ca args [4/23] : 14578565285731050238", + "1 | Ca args [5/23] : 8dd47dd80d2b71522d9936cb3c330ed8ea55bc", + "1 | Ca args [6/23] : c2c092d3262a50b2dfdb85c1b0d8e1c83ab551", + "1 | Ca args [7/23] : b331b182b06ea5cda83910ee18623c2698d45c", + "1 | Ca args [8/23] : cb5aaed2ee20d8b4c367bb40bfe05a5e536e8c", + "1 | Ca args [9/23] : 482f416b722f66f48d2b8b0c567e125a8a1700", + "1 | Ca args [10/23] : 21aeba1e905d8c6ced18d6618e84f8230267e3", + "1 | Ca args [11/23] : 681c04aee6bf600f758986789c84", + "1 | Ca args [12/23] : 3c3b8bef6af3aeec1fb990addf5058597f0ddf", + "1 | Ca args [13/23] : 49af2ad208df2ae300f56a6b04", + "1 | Ca args [14/23] : 46dada2b4e90645d3e1bd48d2adaadcc17ed06", + "1 | Ca args [15/23] : a9ac387897f270d067b82ddde3", + "1 | Ca args [16/23] : Exclude", + "1 | Ca args [17/23] : 105342.8224%", + "1 | Ca args [18/23] : 3bc648cd793b97636b77d61f19a10976db8797", + "1 | Ca args [19/23] : 1351194d36d9d391d3867ae58a", + "1 | Ca args [20/23] : 324856.0572%", + "1 | Ca args [21/23] : 629761d22e0790f03f1ba60c4bc44441b24069", + "1 | Ca args [22/23] : cb53d8dbde62907a4ccaa953cc", + "1 | Ca args [23/23] : 352380.8690%", + "2 | Portfolio : 5051", + "3 | Currency : AssetID-12345678", + "4 | Per share [1/2] : POLYX 25612428566640944380857301230667", + "4 | Per share [2/2] : 6.766461", + "5 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "5 | Amount [2/2] : 6.766461", + "6 | Payment at : 128", + "7 | Expires at : 256", + "8 | Chain : Polymesh", + "9 | Nonce : 2339", + "10 | Tip : POLYX 0.000987", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1007, - "name": "Compliancemanager_Resume_asset_compliance", - "blob": "1d055449434b45522d3132333435d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1000, + "name": "Corporateaction_Initiate_corporate_action_and_distribute", + "blob": "1e08417373657449442d3132333435363738018dd451d685d498350102fe22d706e37751ca01028dd47dd80d2b71522d9936cb3c330ed8ea55bcc2c092d3262a50b2dfdb85c1b0d8e1c83ab551b331b182b06ea5cda83910ee18623c2698d45ccb5aaed2ee20d8b4c367bb40bfe05a5e536e8c482f416b722f66f48d2b8b0c567e125a8a170021aeba1e905d8c6ced18d6618e84f8230267e3681c04aee6bf600f758986789c8401083c3b8bef6af3aeec1fb990addf5058597f0ddf49af2ad208df2ae300f56a6b0446dada2b4e90645d3e1bd48d2adaadcc17ed06a9ac387897f270d067b82ddde30101000aca3e01083bc648cd793b97636b77d61f19a10976db87971351194d36d9d391d3867ae58abc19a1c1629761d22e0790f03f1ba60c4bc44441b24069cb53d8dbde62907a4ccaa953ccb20d09d201cadc000000000000417373657449442d3132333435363738fd56e5cad3287b54b2352f703dbeafc0fd56e5cad3287b54b2352f703dbeafc08000000000000000018000000000000000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Resume asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 1234.56789" + "0 | Corporateaction : Initiate corporate action and distribu", + "1 | Ca args [1/23] : AssetID-12345678", + "1 | Ca args [2/23] : UnpredictableBenfit", + "1 | Ca args [3/23] : 3862070351761626253", + "1 | Ca args [4/23] : 14578565285731050238", + "1 | Ca args [5/23] : 8dd47dd80d2b71522d9936cb3c330ed8ea55bc", + "1 | Ca args [6/23] : c2c092d3262a50b2dfdb85c1b0d8e1c83ab551", + "1 | Ca args [7/23] : b331b182b06ea5cda83910ee18623c2698d45c", + "1 | Ca args [8/23] : cb5aaed2ee20d8b4c367bb40bfe05a5e536e8c", + "1 | Ca args [9/23] : 482f416b722f66f48d2b8b0c567e125a8a1700", + "1 | Ca args [10/23] : 21aeba1e905d8c6ced18d6618e84f8230267e3", + "1 | Ca args [11/23] : 681c04aee6bf600f758986789c84", + "1 | Ca args [12/23] : 3c3b8bef6af3aeec1fb990addf5058597f0ddf", + "1 | Ca args [13/23] : 49af2ad208df2ae300f56a6b04", + "1 | Ca args [14/23] : 46dada2b4e90645d3e1bd48d2adaadcc17ed06", + "1 | Ca args [15/23] : a9ac387897f270d067b82ddde3", + "1 | Ca args [16/23] : Exclude", + "1 | Ca args [17/23] : 105342.8224%", + "1 | Ca args [18/23] : 3bc648cd793b97636b77d61f19a10976db8797", + "1 | Ca args [19/23] : 1351194d36d9d391d3867ae58a", + "1 | Ca args [20/23] : 324856.0572%", + "1 | Ca args [21/23] : 629761d22e0790f03f1ba60c4bc44441b24069", + "1 | Ca args [22/23] : cb53d8dbde62907a4ccaa953cc", + "1 | Ca args [23/23] : 352380.8690%", + "2 | Portfolio : 56522", + "3 | Currency : AssetID-12345678", + "4 | Per share [1/2] : POLYX 25612428566640944380857301230667", + "4 | Per share [2/2] : 6.766461", + "5 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "5 | Amount [2/2] : 6.766461", + "6 | Payment at : 128", + "7 | Expires at : 128" ], "output_expert": [ - "0 | Compliancemanager : Resume asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Corporateaction : Initiate corporate action and distribu", + "1 | Ca args [1/23] : AssetID-12345678", + "1 | Ca args [2/23] : UnpredictableBenfit", + "1 | Ca args [3/23] : 3862070351761626253", + "1 | Ca args [4/23] : 14578565285731050238", + "1 | Ca args [5/23] : 8dd47dd80d2b71522d9936cb3c330ed8ea55bc", + "1 | Ca args [6/23] : c2c092d3262a50b2dfdb85c1b0d8e1c83ab551", + "1 | Ca args [7/23] : b331b182b06ea5cda83910ee18623c2698d45c", + "1 | Ca args [8/23] : cb5aaed2ee20d8b4c367bb40bfe05a5e536e8c", + "1 | Ca args [9/23] : 482f416b722f66f48d2b8b0c567e125a8a1700", + "1 | Ca args [10/23] : 21aeba1e905d8c6ced18d6618e84f8230267e3", + "1 | Ca args [11/23] : 681c04aee6bf600f758986789c84", + "1 | Ca args [12/23] : 3c3b8bef6af3aeec1fb990addf5058597f0ddf", + "1 | Ca args [13/23] : 49af2ad208df2ae300f56a6b04", + "1 | Ca args [14/23] : 46dada2b4e90645d3e1bd48d2adaadcc17ed06", + "1 | Ca args [15/23] : a9ac387897f270d067b82ddde3", + "1 | Ca args [16/23] : Exclude", + "1 | Ca args [17/23] : 105342.8224%", + "1 | Ca args [18/23] : 3bc648cd793b97636b77d61f19a10976db8797", + "1 | Ca args [19/23] : 1351194d36d9d391d3867ae58a", + "1 | Ca args [20/23] : 324856.0572%", + "1 | Ca args [21/23] : 629761d22e0790f03f1ba60c4bc44441b24069", + "1 | Ca args [22/23] : cb53d8dbde62907a4ccaa953cc", + "1 | Ca args [23/23] : 352380.8690%", + "2 | Portfolio : 56522", + "3 | Currency : AssetID-12345678", + "4 | Per share [1/2] : POLYX 25612428566640944380857301230667", + "4 | Per share [2/2] : 6.766461", + "5 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "5 | Amount [2/2] : 6.766461", + "6 | Payment at : 128", + "7 | Expires at : 128", + "8 | Chain : Polymesh", + "9 | Nonce : 50283", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1008, - "name": "Compliancemanager_Resume_asset_compliance", - "blob": "1d055449434b45522d3132333435d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1001, + "name": "Corporateballot_Attach_ballot", + "blob": "1f00417373657449442d31323334353637386fec21001027000000000000204e000000000000145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c653201d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Resume asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 1234.56789" + "0 | Corporateballot : Attach ballot", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Range [1/2] : 10000", + "2 | Range [2/2] : 20000", + "3 | Meta [1/5] : Title", + "3 | Meta [2/5] : MotionTitle", + "3 | Meta [3/5] : MotionInfoLink", + "3 | Meta [4/5] : ChoiceTitle1", + "3 | Meta [5/5] : ChoiceTitle2", + "4 | Rcv : True", + "5 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Compliancemanager : Resume asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Corporateballot : Attach ballot", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Range [1/2] : 10000", + "2 | Range [2/2] : 20000", + "3 | Meta [1/5] : Title", + "3 | Meta [2/5] : MotionTitle", + "3 | Meta [3/5] : MotionInfoLink", + "3 | Meta [4/5] : ChoiceTitle1", + "3 | Meta [5/5] : ChoiceTitle2", + "4 | Rcv : True", + "5 | Chain : Polymesh", + "6 | Nonce : 50283", + "7 | Tip : POLYX 0.000987", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1009, - "name": "Compliancemanager_Resume_asset_compliance", - "blob": "1d055449434b45522d3132333435d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1002, + "name": "Corporateballot_Attach_ballot", + "blob": "1f00417373657449442d31323334353637386fec21001027000000000000204e000000000000145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c653201d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Resume asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 0.000987" + "0 | Corporateballot : Attach ballot", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Range [1/2] : 10000", + "2 | Range [2/2] : 20000", + "3 | Meta [1/5] : Title", + "3 | Meta [2/5] : MotionTitle", + "3 | Meta [3/5] : MotionInfoLink", + "3 | Meta [4/5] : ChoiceTitle1", + "3 | Meta [5/5] : ChoiceTitle2", + "4 | Rcv : True", + "5 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Compliancemanager : Resume asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Corporateballot : Attach ballot", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Range [1/2] : 10000", + "2 | Range [2/2] : 20000", + "3 | Meta [1/5] : Title", + "3 | Meta [2/5] : MotionTitle", + "3 | Meta [3/5] : MotionInfoLink", + "3 | Meta [4/5] : ChoiceTitle1", + "3 | Meta [5/5] : ChoiceTitle2", + "4 | Rcv : True", + "5 | Chain : Polymesh", + "6 | Nonce : 50283", + "7 | Tip : POLYX 0.000987", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1010, - "name": "Compliancemanager_Resume_asset_compliance", - "blob": "1d055449434b45522d3132333435d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1003, + "name": "Corporateballot_Attach_ballot", + "blob": "1f00417373657449442d31323334353637386fec21001027000000000000204e000000000000145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c653201d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Resume asset compliance", - "1 | Ticker : TICKER-12345" + "0 | Corporateballot : Attach ballot", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Range [1/2] : 10000", + "2 | Range [2/2] : 20000", + "3 | Meta [1/5] : Title", + "3 | Meta [2/5] : MotionTitle", + "3 | Meta [3/5] : MotionInfoLink", + "3 | Meta [4/5] : ChoiceTitle1", + "3 | Meta [5/5] : ChoiceTitle2", + "4 | Rcv : True", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Compliancemanager : Resume asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Corporateballot : Attach ballot", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Range [1/2] : 10000", + "2 | Range [2/2] : 20000", + "3 | Meta [1/5] : Title", + "3 | Meta [2/5] : MotionTitle", + "3 | Meta [3/5] : MotionInfoLink", + "3 | Meta [4/5] : ChoiceTitle1", + "3 | Meta [5/5] : ChoiceTitle2", + "4 | Rcv : True", + "5 | Chain : Polymesh", + "6 | Nonce : 50283", + "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "7 | Tip [2/2] : 3.456789", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1011, - "name": "Compliancemanager_Add_default_trusted_claim_issuer", - "blob": "1d065449434b45522d3132333435af6c826ada3d576da91e43fa3198ae4ae7f59c08f04e539782209d1477c0e62600d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1004, + "name": "Corporateballot_Attach_ballot", + "blob": "1f00417373657449442d31323334353637386fec21001027000000000000204e000000000000145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c653201d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Add default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/3] : af6c826ada3d576da91e43fa3198ae4ae7f59c", - "2 | Issuer [2/3] : 08f04e539782209d1477c0e626", - "2 | Issuer [3/3] : Any", - "3 | Tip : POLYX 1234.56789" + "0 | Corporateballot : Attach ballot", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Range [1/2] : 10000", + "2 | Range [2/2] : 20000", + "3 | Meta [1/5] : Title", + "3 | Meta [2/5] : MotionTitle", + "3 | Meta [3/5] : MotionInfoLink", + "3 | Meta [4/5] : ChoiceTitle1", + "3 | Meta [5/5] : ChoiceTitle2", + "4 | Rcv : True", + "5 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Compliancemanager : Add default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/3] : af6c826ada3d576da91e43fa3198ae4ae7f59c", - "2 | Issuer [2/3] : 08f04e539782209d1477c0e626", - "2 | Issuer [3/3] : Any", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Corporateballot : Attach ballot", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Range [1/2] : 10000", + "2 | Range [2/2] : 20000", + "3 | Meta [1/5] : Title", + "3 | Meta [2/5] : MotionTitle", + "3 | Meta [3/5] : MotionInfoLink", + "3 | Meta [4/5] : ChoiceTitle1", + "3 | Meta [5/5] : ChoiceTitle2", + "4 | Rcv : True", + "5 | Chain : Polymesh", + "6 | Nonce : 2339", + "7 | Tip : POLYX 1234.56789", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1012, - "name": "Compliancemanager_Add_default_trusted_claim_issuer", - "blob": "1d065449434b45522d3132333435af6c826ada3d576da91e43fa3198ae4ae7f59c08f04e539782209d1477c0e62600d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1005, + "name": "Corporateballot_Attach_ballot", + "blob": "1f00417373657449442d31323334353637386fec21001027000000000000204e000000000000145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c653200d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Add default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/3] : af6c826ada3d576da91e43fa3198ae4ae7f59c", - "2 | Issuer [2/3] : 08f04e539782209d1477c0e626", - "2 | Issuer [3/3] : Any", - "3 | Tip : POLYX 5552342.355555" + "0 | Corporateballot : Attach ballot", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Range [1/2] : 10000", + "2 | Range [2/2] : 20000", + "3 | Meta [1/5] : Title", + "3 | Meta [2/5] : MotionTitle", + "3 | Meta [3/5] : MotionInfoLink", + "3 | Meta [4/5] : ChoiceTitle1", + "3 | Meta [5/5] : ChoiceTitle2", + "4 | Rcv : False", + "5 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Compliancemanager : Add default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/3] : af6c826ada3d576da91e43fa3198ae4ae7f59c", - "2 | Issuer [2/3] : 08f04e539782209d1477c0e626", - "2 | Issuer [3/3] : Any", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Corporateballot : Attach ballot", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Range [1/2] : 10000", + "2 | Range [2/2] : 20000", + "3 | Meta [1/5] : Title", + "3 | Meta [2/5] : MotionTitle", + "3 | Meta [3/5] : MotionInfoLink", + "3 | Meta [4/5] : ChoiceTitle1", + "3 | Meta [5/5] : ChoiceTitle2", + "4 | Rcv : False", + "5 | Chain : Polymesh", + "6 | Nonce : 1", + "7 | Tip : POLYX 55.555555", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1013, - "name": "Compliancemanager_Add_default_trusted_claim_issuer", - "blob": "1d065449434b45522d3132333435af6c826ada3d576da91e43fa3198ae4ae7f59c08f04e539782209d1477c0e62600d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1006, + "name": "Corporateballot_Vote", + "blob": "1f01417373657449442d31323334353637386fec210008ee0c5201000000000000000000000000011713fd23670000000000000000000000000001490ed5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Add default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/3] : af6c826ada3d576da91e43fa3198ae4ae7f59c", - "2 | Issuer [2/3] : 08f04e539782209d1477c0e626", - "2 | Issuer [3/3] : Any", - "3 | Tip : POLYX 1234.56789" + "0 | Corporateballot : Vote", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Votes [1/4] : POLYX 22.154478", + "2 | Votes [2/4] : 4887", + "2 | Votes [3/4] : POLYX 6.759421", + "2 | Votes [4/4] : 3657", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Compliancemanager : Add default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/3] : af6c826ada3d576da91e43fa3198ae4ae7f59c", - "2 | Issuer [2/3] : 08f04e539782209d1477c0e626", - "2 | Issuer [3/3] : Any", + "0 | Corporateballot : Vote", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Votes [1/4] : POLYX 22.154478", + "2 | Votes [2/4] : 4887", + "2 | Votes [3/4] : POLYX 6.759421", + "2 | Votes [4/4] : 3657", "3 | Chain : Polymesh", "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1014, - "name": "Compliancemanager_Add_default_trusted_claim_issuer", - "blob": "1d065449434b45522d3132333435af6c826ada3d576da91e43fa3198ae4ae7f59c08f04e539782209d1477c0e62600d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Add default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/3] : af6c826ada3d576da91e43fa3198ae4ae7f59c", - "2 | Issuer [2/3] : 08f04e539782209d1477c0e626", - "2 | Issuer [3/3] : Any" - ], - "output_expert": [ - "0 | Compliancemanager : Add default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/3] : af6c826ada3d576da91e43fa3198ae4ae7f59c", - "2 | Issuer [2/3] : 08f04e539782209d1477c0e626", - "2 | Issuer [3/3] : Any", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1015, - "name": "Compliancemanager_Add_default_trusted_claim_issuer", - "blob": "1d065449434b45522d3132333435af6c826ada3d576da91e43fa3198ae4ae7f59c08f04e539782209d1477c0e62600d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1007, + "name": "Corporateballot_Vote", + "blob": "1f01417373657449442d31323334353637386fec210008ee0c5201000000000000000000000000011713fd23670000000000000000000000000001490ed503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Add default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/3] : af6c826ada3d576da91e43fa3198ae4ae7f59c", - "2 | Issuer [2/3] : 08f04e539782209d1477c0e626", - "2 | Issuer [3/3] : Any", + "0 | Corporateballot : Vote", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Votes [1/4] : POLYX 22.154478", + "2 | Votes [2/4] : 4887", + "2 | Votes [3/4] : POLYX 6.759421", + "2 | Votes [4/4] : 3657", "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Compliancemanager : Add default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/3] : af6c826ada3d576da91e43fa3198ae4ae7f59c", - "2 | Issuer [2/3] : 08f04e539782209d1477c0e626", - "2 | Issuer [3/3] : Any", + "0 | Corporateballot : Vote", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Votes [1/4] : POLYX 22.154478", + "2 | Votes [2/4] : 4887", + "2 | Votes [3/4] : POLYX 6.759421", + "2 | Votes [4/4] : 3657", "3 | Chain : Polymesh", - "4 | Nonce : 0", + "4 | Nonce : 100", "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1016, - "name": "Compliancemanager_Remove_default_trusted_claim_issuer", - "blob": "1d075449434b45522d313233343544ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1008, + "name": "Corporateballot_Vote", + "blob": "1f01417373657449442d31323334353637386fec210008ee0c5201000000000000000000000000011713fd23670000000000000000000000000001490ed5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Remove default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Issuer [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Corporateballot : Vote", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Votes [1/4] : POLYX 22.154478", + "2 | Votes [2/4] : 4887", + "2 | Votes [3/4] : POLYX 6.759421", + "2 | Votes [4/4] : 3657", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Compliancemanager : Remove default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Issuer [2/2] : 99f2a85988d897db3b7b56d9af", + "0 | Corporateballot : Vote", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Votes [1/4] : POLYX 22.154478", + "2 | Votes [2/4] : 4887", + "2 | Votes [3/4] : POLYX 6.759421", + "2 | Votes [4/4] : 3657", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 2339", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1017, - "name": "Compliancemanager_Remove_default_trusted_claim_issuer", - "blob": "1d075449434b45522d313233343544ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1009, + "name": "Corporateballot_Vote", + "blob": "1f01417373657449442d31323334353637386fec210008ee0c5201000000000000000000000000011713fd23670000000000000000000000000001490ed5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Remove default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Issuer [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Tip : POLYX 1234.56789" + "0 | Corporateballot : Vote", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Votes [1/4] : POLYX 22.154478", + "2 | Votes [2/4] : 4887", + "2 | Votes [3/4] : POLYX 6.759421", + "2 | Votes [4/4] : 3657", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Compliancemanager : Remove default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Issuer [2/2] : 99f2a85988d897db3b7b56d9af", + "0 | Corporateballot : Vote", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Votes [1/4] : POLYX 22.154478", + "2 | Votes [2/4] : 4887", + "2 | Votes [3/4] : POLYX 6.759421", + "2 | Votes [4/4] : 3657", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 2339", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1018, - "name": "Compliancemanager_Remove_default_trusted_claim_issuer", - "blob": "1d075449434b45522d313233343544ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1010, + "name": "Corporateballot_Vote", + "blob": "1f01417373657449442d31323334353637386fec210000d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Remove default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Issuer [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Tip : POLYX 0.000987" + "0 | Corporateballot : Vote", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Votes : ", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Compliancemanager : Remove default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Issuer [2/2] : 99f2a85988d897db3b7b56d9af", + "0 | Corporateballot : Vote", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Votes : ", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 1", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1019, - "name": "Compliancemanager_Remove_default_trusted_claim_issuer", - "blob": "1d075449434b45522d313233343544ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1011, + "name": "Corporateballot_Change_end", + "blob": "1f02417373657449442d31323334353637386fec21000008000000000000d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Remove default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Issuer [2/2] : 99f2a85988d897db3b7b56d9af", + "0 | Corporateballot : Change end", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | End : 2048", + "3 | Tip : POLYX 1234.56789" + ], + "output_expert": [ + "0 | Corporateballot : Change end", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | End : 2048", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 1012, + "name": "Corporateballot_Change_end", + "blob": "1f02417373657449442d31323334353637386fec21000001000000000000d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Corporateballot : Change end", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | End : 256", "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Compliancemanager : Remove default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Issuer [2/2] : 99f2a85988d897db3b7b56d9af", + "0 | Corporateballot : Change end", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | End : 256", "3 | Chain : Polymesh", "4 | Nonce : 1", "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1020, - "name": "Compliancemanager_Remove_default_trusted_claim_issuer", - "blob": "1d075449434b45522d313233343544ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1013, + "name": "Corporateballot_Change_end", + "blob": "1f02417373657449442d31323334353637386fec21008000000000000000d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Remove default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Issuer [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Tip : POLYX 1234.56789" + "0 | Corporateballot : Change end", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | End : 128", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Compliancemanager : Remove default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Issuer [2/2] : 99f2a85988d897db3b7b56d9af", + "0 | Corporateballot : Change end", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | End : 128", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 1", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1021, - "name": "Compliancemanager_Change_compliance_requirement", - "blob": "1d085449434b45522d3132333435040000015449434b45522d33343536370871d676ff2e20022fdee1960365cd8e786eb9168a8b79cd8a00f02131db3ed2a70080bebd089f7cc49a44a70ab8880bbb1a3e2f401fc28f832f4a04ec2327806077000000000000d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1014, + "name": "Corporateballot_Change_end", + "blob": "1f02417373657449442d31323334353637386fec21000008000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Change compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | New req [1/10] : Accredited", - "2 | New req [2/10] : TICKER-34567", - "2 | New req [3/10] : 71d676ff2e20022fdee1960365cd8e786eb916", - "2 | New req [4/10] : 8a8b79cd8a00f02131db3ed2a7", - "2 | New req [5/10] : Any", - "2 | New req [6/10] : 80bebd089f7cc49a44a70ab8880bbb1a3e2f40", - "2 | New req [7/10] : 1fc28f832f4a04ec2327806077", - "2 | New req [8/10] : Any", - "2 | New req [9/10] : ", - "2 | New req [10/10] : 0", - "3 | Tip : POLYX 5552342.355555" + "0 | Corporateballot : Change end", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | End : 2048", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Compliancemanager : Change compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | New req [1/10] : Accredited", - "2 | New req [2/10] : TICKER-34567", - "2 | New req [3/10] : 71d676ff2e20022fdee1960365cd8e786eb916", - "2 | New req [4/10] : 8a8b79cd8a00f02131db3ed2a7", - "2 | New req [5/10] : Any", - "2 | New req [6/10] : 80bebd089f7cc49a44a70ab8880bbb1a3e2f40", - "2 | New req [7/10] : 1fc28f832f4a04ec2327806077", - "2 | New req [8/10] : Any", - "2 | New req [9/10] : ", - "2 | New req [10/10] : 0", + "0 | Corporateballot : Change end", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | End : 2048", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 0", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1022, - "name": "Compliancemanager_Change_compliance_requirement", - "blob": "1d085449434b45522d3132333435040000015449434b45522d33343536370871d676ff2e20022fdee1960365cd8e786eb9168a8b79cd8a00f02131db3ed2a70080bebd089f7cc49a44a70ab8880bbb1a3e2f401fc28f832f4a04ec2327806077000000000000d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1015, + "name": "Corporateballot_Change_end", + "blob": "1f02417373657449442d31323334353637386fec21000001000000000000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Change compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | New req [1/10] : Accredited", - "2 | New req [2/10] : TICKER-34567", - "2 | New req [3/10] : 71d676ff2e20022fdee1960365cd8e786eb916", - "2 | New req [4/10] : 8a8b79cd8a00f02131db3ed2a7", - "2 | New req [5/10] : Any", - "2 | New req [6/10] : 80bebd089f7cc49a44a70ab8880bbb1a3e2f40", - "2 | New req [7/10] : 1fc28f832f4a04ec2327806077", - "2 | New req [8/10] : Any", - "2 | New req [9/10] : ", - "2 | New req [10/10] : 0", - "3 | Tip : POLYX 1234.56789" + "0 | Corporateballot : Change end", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | End : 256", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Compliancemanager : Change compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | New req [1/10] : Accredited", - "2 | New req [2/10] : TICKER-34567", - "2 | New req [3/10] : 71d676ff2e20022fdee1960365cd8e786eb916", - "2 | New req [4/10] : 8a8b79cd8a00f02131db3ed2a7", - "2 | New req [5/10] : Any", - "2 | New req [6/10] : 80bebd089f7cc49a44a70ab8880bbb1a3e2f40", - "2 | New req [7/10] : 1fc28f832f4a04ec2327806077", - "2 | New req [8/10] : Any", - "2 | New req [9/10] : ", - "2 | New req [10/10] : 0", + "0 | Corporateballot : Change end", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | End : 256", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 100", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1023, - "name": "Compliancemanager_Change_compliance_requirement", - "blob": "1d085449434b45522d3132333435040000015449434b45522d33343536370871d676ff2e20022fdee1960365cd8e786eb9168a8b79cd8a00f02131db3ed2a70080bebd089f7cc49a44a70ab8880bbb1a3e2f401fc28f832f4a04ec2327806077000000000000d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1016, + "name": "Corporateballot_Change_meta", + "blob": "1f03417373657449442d31323334353637386fec2100145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c6532d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Change compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | New req [1/10] : Accredited", - "2 | New req [2/10] : TICKER-34567", - "2 | New req [3/10] : 71d676ff2e20022fdee1960365cd8e786eb916", - "2 | New req [4/10] : 8a8b79cd8a00f02131db3ed2a7", - "2 | New req [5/10] : Any", - "2 | New req [6/10] : 80bebd089f7cc49a44a70ab8880bbb1a3e2f40", - "2 | New req [7/10] : 1fc28f832f4a04ec2327806077", - "2 | New req [8/10] : Any", - "2 | New req [9/10] : ", - "2 | New req [10/10] : 0", - "3 | Tip : POLYX 5552342.355555" + "0 | Corporateballot : Change meta", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Meta [1/5] : Title", + "2 | Meta [2/5] : MotionTitle", + "2 | Meta [3/5] : MotionInfoLink", + "2 | Meta [4/5] : ChoiceTitle1", + "2 | Meta [5/5] : ChoiceTitle2", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Compliancemanager : Change compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | New req [1/10] : Accredited", - "2 | New req [2/10] : TICKER-34567", - "2 | New req [3/10] : 71d676ff2e20022fdee1960365cd8e786eb916", - "2 | New req [4/10] : 8a8b79cd8a00f02131db3ed2a7", - "2 | New req [5/10] : Any", - "2 | New req [6/10] : 80bebd089f7cc49a44a70ab8880bbb1a3e2f40", - "2 | New req [7/10] : 1fc28f832f4a04ec2327806077", - "2 | New req [8/10] : Any", - "2 | New req [9/10] : ", - "2 | New req [10/10] : 0", + "0 | Corporateballot : Change meta", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Meta [1/5] : Title", + "2 | Meta [2/5] : MotionTitle", + "2 | Meta [3/5] : MotionInfoLink", + "2 | Meta [4/5] : ChoiceTitle1", + "2 | Meta [5/5] : ChoiceTitle2", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 100", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1024, - "name": "Compliancemanager_Change_compliance_requirement", - "blob": "1d085449434b45522d3132333435040000015449434b45522d33343536370871d676ff2e20022fdee1960365cd8e786eb9168a8b79cd8a00f02131db3ed2a70080bebd089f7cc49a44a70ab8880bbb1a3e2f401fc28f832f4a04ec2327806077000000000000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1017, + "name": "Corporateballot_Change_meta", + "blob": "1f03417373657449442d31323334353637386fec2100145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c6532d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Change compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | New req [1/10] : Accredited", - "2 | New req [2/10] : TICKER-34567", - "2 | New req [3/10] : 71d676ff2e20022fdee1960365cd8e786eb916", - "2 | New req [4/10] : 8a8b79cd8a00f02131db3ed2a7", - "2 | New req [5/10] : Any", - "2 | New req [6/10] : 80bebd089f7cc49a44a70ab8880bbb1a3e2f40", - "2 | New req [7/10] : 1fc28f832f4a04ec2327806077", - "2 | New req [8/10] : Any", - "2 | New req [9/10] : ", - "2 | New req [10/10] : 0", + "0 | Corporateballot : Change meta", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Meta [1/5] : Title", + "2 | Meta [2/5] : MotionTitle", + "2 | Meta [3/5] : MotionInfoLink", + "2 | Meta [4/5] : ChoiceTitle1", + "2 | Meta [5/5] : ChoiceTitle2", "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Compliancemanager : Change compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | New req [1/10] : Accredited", - "2 | New req [2/10] : TICKER-34567", - "2 | New req [3/10] : 71d676ff2e20022fdee1960365cd8e786eb916", - "2 | New req [4/10] : 8a8b79cd8a00f02131db3ed2a7", - "2 | New req [5/10] : Any", - "2 | New req [6/10] : 80bebd089f7cc49a44a70ab8880bbb1a3e2f40", - "2 | New req [7/10] : 1fc28f832f4a04ec2327806077", - "2 | New req [8/10] : Any", - "2 | New req [9/10] : ", - "2 | New req [10/10] : 0", + "0 | Corporateballot : Change meta", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Meta [1/5] : Title", + "2 | Meta [2/5] : MotionTitle", + "2 | Meta [3/5] : MotionInfoLink", + "2 | Meta [4/5] : ChoiceTitle1", + "2 | Meta [5/5] : ChoiceTitle2", "3 | Chain : Polymesh", - "4 | Nonce : 1", + "4 | Nonce : 0", "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1025, - "name": "Compliancemanager_Change_compliance_requirement", - "blob": "1d085449434b45522d3132333435040000015449434b45522d33343536370871d676ff2e20022fdee1960365cd8e786eb9168a8b79cd8a00f02131db3ed2a70080bebd089f7cc49a44a70ab8880bbb1a3e2f401fc28f832f4a04ec2327806077000000000000d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1018, + "name": "Corporateballot_Change_meta", + "blob": "1f03417373657449442d31323334353637386fec2100145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c6532d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Compliancemanager : Change compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | New req [1/10] : Accredited", - "2 | New req [2/10] : TICKER-34567", - "2 | New req [3/10] : 71d676ff2e20022fdee1960365cd8e786eb916", - "2 | New req [4/10] : 8a8b79cd8a00f02131db3ed2a7", - "2 | New req [5/10] : Any", - "2 | New req [6/10] : 80bebd089f7cc49a44a70ab8880bbb1a3e2f40", - "2 | New req [7/10] : 1fc28f832f4a04ec2327806077", - "2 | New req [8/10] : Any", - "2 | New req [9/10] : ", - "2 | New req [10/10] : 0", + "0 | Corporateballot : Change meta", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Meta [1/5] : Title", + "2 | Meta [2/5] : MotionTitle", + "2 | Meta [3/5] : MotionInfoLink", + "2 | Meta [4/5] : ChoiceTitle1", + "2 | Meta [5/5] : ChoiceTitle2", "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Compliancemanager : Change compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | New req [1/10] : Accredited", - "2 | New req [2/10] : TICKER-34567", - "2 | New req [3/10] : 71d676ff2e20022fdee1960365cd8e786eb916", - "2 | New req [4/10] : 8a8b79cd8a00f02131db3ed2a7", - "2 | New req [5/10] : Any", - "2 | New req [6/10] : 80bebd089f7cc49a44a70ab8880bbb1a3e2f40", - "2 | New req [7/10] : 1fc28f832f4a04ec2327806077", - "2 | New req [8/10] : Any", - "2 | New req [9/10] : ", - "2 | New req [10/10] : 0", + "0 | Corporateballot : Change meta", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Meta [1/5] : Title", + "2 | Meta [2/5] : MotionTitle", + "2 | Meta [3/5] : MotionInfoLink", + "2 | Meta [4/5] : ChoiceTitle1", + "2 | Meta [5/5] : ChoiceTitle2", "3 | Chain : Polymesh", - "4 | Nonce : 2339", + "4 | Nonce : 1", "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1026, - "name": "Corporateaction_Set_max_details_length", - "blob": "1e009d1c0000d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1019, + "name": "Corporateballot_Change_meta", + "blob": "1f03417373657449442d31323334353637386fec2100145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c6532d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Set max details length", - "1 | Length : 7325", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Corporateaction : Set max details length", - "1 | Length : 7325", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1027, - "name": "Corporateaction_Set_max_details_length", - "blob": "1e0000000000d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Set max details length", - "1 | Length : 0", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Corporateaction : Set max details length", - "1 | Length : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1028, - "name": "Corporateaction_Set_max_details_length", - "blob": "1e0034300000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Set max details length", - "1 | Length : 12340", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Corporateaction : Set max details length", - "1 | Length : 12340", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1029, - "name": "Corporateaction_Set_max_details_length", - "blob": "1e009d1c0000d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Set max details length", - "1 | Length : 7325", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Corporateaction : Set max details length", - "1 | Length : 7325", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1030, - "name": "Corporateaction_Set_max_details_length", - "blob": "1e00f7010000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Set max details length", - "1 | Length : 503", - "2 | Tip : POLYX 1234.56789" + "0 | Corporateballot : Change meta", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Meta [1/5] : Title", + "2 | Meta [2/5] : MotionTitle", + "2 | Meta [3/5] : MotionInfoLink", + "2 | Meta [4/5] : ChoiceTitle1", + "2 | Meta [5/5] : ChoiceTitle2", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Corporateaction : Set max details length", - "1 | Length : 503", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Corporateballot : Change meta", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Meta [1/5] : Title", + "2 | Meta [2/5] : MotionTitle", + "2 | Meta [3/5] : MotionInfoLink", + "2 | Meta [4/5] : ChoiceTitle1", + "2 | Meta [5/5] : ChoiceTitle2", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1031, - "name": "Corporateaction_Set_default_targets", - "blob": "1e015449434b45522d313233343504a3cb7fcac0e69e9b49fae3e2a25d62d69fa3b18448ae51ebfb7b1f5cdd02c38400d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1020, + "name": "Corporateballot_Change_meta", + "blob": "1f03417373657449442d31323334353637386fec2100145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c6532d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Set default targets", - "1 | Ticker : TICKER-12345", - "2 | Targets [1/3] : a3cb7fcac0e69e9b49fae3e2a25d62d69fa3b1", - "2 | Targets [2/3] : 8448ae51ebfb7b1f5cdd02c384", - "2 | Targets [3/3] : Include", - "3 | Tip : POLYX 1234.56789" + "0 | Corporateballot : Change meta", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Meta [1/5] : Title", + "2 | Meta [2/5] : MotionTitle", + "2 | Meta [3/5] : MotionInfoLink", + "2 | Meta [4/5] : ChoiceTitle1", + "2 | Meta [5/5] : ChoiceTitle2", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Corporateaction : Set default targets", - "1 | Ticker : TICKER-12345", - "2 | Targets [1/3] : a3cb7fcac0e69e9b49fae3e2a25d62d69fa3b1", - "2 | Targets [2/3] : 8448ae51ebfb7b1f5cdd02c384", - "2 | Targets [3/3] : Include", + "0 | Corporateballot : Change meta", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Meta [1/5] : Title", + "2 | Meta [2/5] : MotionTitle", + "2 | Meta [3/5] : MotionInfoLink", + "2 | Meta [4/5] : ChoiceTitle1", + "2 | Meta [5/5] : ChoiceTitle2", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 2339", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1032, - "name": "Corporateaction_Set_default_targets", - "blob": "1e015449434b45522d3132333435048f8b78eb4f92aeceb3fb5faa6798030f33ba589148bf5fed1c1a205882a20ab201d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1021, + "name": "Corporateballot_Change_rcv", + "blob": "1f04417373657449442d31323334353637386fec210000d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Set default targets", - "1 | Ticker : TICKER-12345", - "2 | Targets [1/3] : 8f8b78eb4f92aeceb3fb5faa6798030f33ba58", - "2 | Targets [2/3] : 9148bf5fed1c1a205882a20ab2", - "2 | Targets [3/3] : Exclude", - "3 | Tip : POLYX 0.000987" + "0 | Corporateballot : Change rcv", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Rcv : False", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Corporateaction : Set default targets", - "1 | Ticker : TICKER-12345", - "2 | Targets [1/3] : 8f8b78eb4f92aeceb3fb5faa6798030f33ba58", - "2 | Targets [2/3] : 9148bf5fed1c1a205882a20ab2", - "2 | Targets [3/3] : Exclude", + "0 | Corporateballot : Change rcv", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Rcv : False", "3 | Chain : Polymesh", "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1033, - "name": "Corporateaction_Set_default_targets", - "blob": "1e015449434b45522d313233343504a3cb7fcac0e69e9b49fae3e2a25d62d69fa3b18448ae51ebfb7b1f5cdd02c38400d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1022, + "name": "Corporateballot_Change_rcv", + "blob": "1f04417373657449442d31323334353637386fec210000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Set default targets", - "1 | Ticker : TICKER-12345", - "2 | Targets [1/3] : a3cb7fcac0e69e9b49fae3e2a25d62d69fa3b1", - "2 | Targets [2/3] : 8448ae51ebfb7b1f5cdd02c384", - "2 | Targets [3/3] : Include", - "3 | Tip : POLYX 55.555555" + "0 | Corporateballot : Change rcv", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Rcv : False" ], "output_expert": [ - "0 | Corporateaction : Set default targets", - "1 | Ticker : TICKER-12345", - "2 | Targets [1/3] : a3cb7fcac0e69e9b49fae3e2a25d62d69fa3b1", - "2 | Targets [2/3] : 8448ae51ebfb7b1f5cdd02c384", - "2 | Targets [3/3] : Include", + "0 | Corporateballot : Change rcv", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Rcv : False", "3 | Chain : Polymesh", "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1034, - "name": "Corporateaction_Set_default_targets", - "blob": "1e015449434b45522d313233343504a3cb7fcac0e69e9b49fae3e2a25d62d69fa3b18448ae51ebfb7b1f5cdd02c38400d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1023, + "name": "Corporateballot_Change_rcv", + "blob": "1f04417373657449442d31323334353637386fec210001d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Set default targets", - "1 | Ticker : TICKER-12345", - "2 | Targets [1/3] : a3cb7fcac0e69e9b49fae3e2a25d62d69fa3b1", - "2 | Targets [2/3] : 8448ae51ebfb7b1f5cdd02c384", - "2 | Targets [3/3] : Include", - "3 | Tip : POLYX 1234.56789" + "0 | Corporateballot : Change rcv", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Rcv : True", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Corporateaction : Set default targets", - "1 | Ticker : TICKER-12345", - "2 | Targets [1/3] : a3cb7fcac0e69e9b49fae3e2a25d62d69fa3b1", - "2 | Targets [2/3] : 8448ae51ebfb7b1f5cdd02c384", - "2 | Targets [3/3] : Include", + "0 | Corporateballot : Change rcv", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Rcv : True", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 0", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1035, - "name": "Corporateaction_Set_default_targets", - "blob": "1e015449434b45522d313233343504a3cb7fcac0e69e9b49fae3e2a25d62d69fa3b18448ae51ebfb7b1f5cdd02c38400d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1024, + "name": "Corporateballot_Change_rcv", + "blob": "1f04417373657449442d31323334353637386fec210001d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Set default targets", - "1 | Ticker : TICKER-12345", - "2 | Targets [1/3] : a3cb7fcac0e69e9b49fae3e2a25d62d69fa3b1", - "2 | Targets [2/3] : 8448ae51ebfb7b1f5cdd02c384", - "2 | Targets [3/3] : Include", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Corporateballot : Change rcv", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Rcv : True", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Corporateaction : Set default targets", - "1 | Ticker : TICKER-12345", - "2 | Targets [1/3] : a3cb7fcac0e69e9b49fae3e2a25d62d69fa3b1", - "2 | Targets [2/3] : 8448ae51ebfb7b1f5cdd02c384", - "2 | Targets [3/3] : Include", + "0 | Corporateballot : Change rcv", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Rcv : True", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 0", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1036, - "name": "Corporateaction_Set_default_withholding_tax", - "blob": "1e025449434b45522d3132333435400d0300d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1025, + "name": "Corporateballot_Change_rcv", + "blob": "1f04417373657449442d31323334353637386fec210000d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Set default withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Tax : 20.0000%", + "0 | Corporateballot : Change rcv", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Rcv : False", "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Corporateaction : Set default withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Tax : 20.0000%", + "0 | Corporateballot : Change rcv", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Rcv : False", "3 | Chain : Polymesh", "4 | Nonce : 100", "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1037, - "name": "Corporateaction_Set_default_withholding_tax", - "blob": "1e025449434b45522d3132333435400d0300d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1026, + "name": "Corporateballot_Remove_ballot", + "blob": "1f05417373657449442d31323334353637386fec2100d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Set default withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Tax : 20.0000%" + "0 | Corporateballot : Remove ballot", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Corporateaction : Set default withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Tax : 20.0000%", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", + "0 | Corporateballot : Remove ballot", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1038, - "name": "Corporateaction_Set_default_withholding_tax", - "blob": "1e025449434b45522d313233343523c2f001d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Set default withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Tax : 3255.5555%", - "3 | Tip : POLYX 0.000987" + "index": 1027, + "name": "Corporateballot_Remove_ballot", + "blob": "1f05417373657449442d31323334353637386fec2100d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Corporateballot : Remove ballot", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Corporateaction : Set default withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Tax : 3255.5555%", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Corporateballot : Remove ballot", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1039, - "name": "Corporateaction_Set_default_withholding_tax", - "blob": "1e025449434b45522d313233343523c2f001d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1028, + "name": "Corporateballot_Remove_ballot", + "blob": "1f05417373657449442d31323334353637386fec2100d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Set default withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Tax : 3255.5555%", - "3 | Tip : POLYX 1234.56789" + "0 | Corporateballot : Remove ballot", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Corporateaction : Set default withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Tax : 3255.5555%", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Corporateballot : Remove ballot", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1040, - "name": "Corporateaction_Set_default_withholding_tax", - "blob": "1e025449434b45522d313233343500000000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1029, + "name": "Corporateballot_Remove_ballot", + "blob": "1f05417373657449442d31323334353637386fec2100d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Set default withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Tax : 0.0000%", - "3 | Tip : POLYX 1234.56789" + "0 | Corporateballot : Remove ballot", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Corporateaction : Set default withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Tax : 0.0000%", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Corporateballot : Remove ballot", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1041, - "name": "Corporateaction_Set_did_withholding_tax", - "blob": "1e035449434b45522d313233343544ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af0100000000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1030, + "name": "Corporateballot_Remove_ballot", + "blob": "1f05417373657449442d31323334353637386fec2100d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Set did withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Taxed did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Taxed did [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Tax : 0.0000%", - "4 | Tip : POLYX 1234.56789" + "0 | Corporateballot : Remove ballot", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Corporateaction : Set did withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Taxed did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Taxed did [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Tax : 0.0000%", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Corporateballot : Remove ballot", + "1 | Ca id [1/2] : AssetID-12345678", + "1 | Ca id [2/2] : 2223215", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1042, - "name": "Corporateaction_Set_did_withholding_tax", - "blob": "1e035449434b45522d313233343544ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af0123c2f001d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1031, + "name": "Pips_Set_prune_historical_pips", + "blob": "210000d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Set did withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Taxed did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Taxed did [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Tax : 3255.5555%", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "0 | Pips : Set prune historical pips", + "1 | Prune : False", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Corporateaction : Set did withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Taxed did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Taxed did [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Tax : 3255.5555%", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Set prune historical pips", + "1 | Prune : False", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1043, - "name": "Corporateaction_Set_did_withholding_tax", - "blob": "1e035449434b45522d313233343544ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af0100000000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1032, + "name": "Pips_Set_prune_historical_pips", + "blob": "210001d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Set did withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Taxed did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Taxed did [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Tax : 0.0000%", - "4 | Tip : POLYX 55.555555" + "0 | Pips : Set prune historical pips", + "1 | Prune : True", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Corporateaction : Set did withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Taxed did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Taxed did [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Tax : 0.0000%", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Set prune historical pips", + "1 | Prune : True", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1044, - "name": "Corporateaction_Set_did_withholding_tax", - "blob": "1e035449434b45522d313233343544ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af0123c2f001d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1033, + "name": "Pips_Set_prune_historical_pips", + "blob": "210001d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Set did withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Taxed did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Taxed did [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Tax : 3255.5555%", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "0 | Pips : Set prune historical pips", + "1 | Prune : True", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Corporateaction : Set did withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Taxed did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Taxed did [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Tax : 3255.5555%", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Set prune historical pips", + "1 | Prune : True", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1045, - "name": "Corporateaction_Set_did_withholding_tax", - "blob": "1e035449434b45522d313233343544ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af0123c2f001d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1034, + "name": "Pips_Set_prune_historical_pips", + "blob": "210000d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Set did withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Taxed did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Taxed did [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Tax : 3255.5555%", - "4 | Tip : POLYX 0.000987" + "0 | Pips : Set prune historical pips", + "1 | Prune : False", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Corporateaction : Set did withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Taxed did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Taxed did [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Tax : 3255.5555%", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Set prune historical pips", + "1 | Prune : False", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1046, - "name": "Corporateaction_Initiate_corporate_action", - "blob": "1e045449434b45522d31323334350380000000000000000102cc820d00000000005044657461696c7320412c2044657461696c7320420104ecd59ca9ce7d6b12d1f43bd6843e518417000673bc29486b31d83842dc1ba48e01010000000001043ca5f63dab35063fd42a75e4b36f0a8f4fd9e374317cbec08654aac3ecb21e74400d0300d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1035, + "name": "Pips_Set_prune_historical_pips", + "blob": "210000d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Initiate corporate action", - "1 | Ticker : TICKER-12345", - "2 | Kind : Reorganization", - "3 | Decl date : 128", - "4 | Record date : 885452", - "5 | Details : Details A, Details B", - "6 | Targets [1/3] : ecd59ca9ce7d6b12d1f43bd6843e5184170006", - "6 | Targets [2/3] : 73bc29486b31d83842dc1ba48e", - "6 | Targets [3/3] : Exclude", - "7 | Default withholding tax : 0.0000%", - "8 | Withholding tax [1/3] : 3ca5f63dab35063fd42a75e4b36f0a8f4fd9e3", - "8 | Withholding tax [2/3] : 74317cbec08654aac3ecb21e74", - "8 | Withholding tax [3/3] : 20.0000%", - "9 | Tip : POLYX 5552342.355555" + "0 | Pips : Set prune historical pips", + "1 | Prune : False", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Corporateaction : Initiate corporate action", - "1 | Ticker : TICKER-12345", - "2 | Kind : Reorganization", - "3 | Decl date : 128", - "4 | Record date : 885452", - "5 | Details : Details A, Details B", - "6 | Targets [1/3] : ecd59ca9ce7d6b12d1f43bd6843e5184170006", - "6 | Targets [2/3] : 73bc29486b31d83842dc1ba48e", - "6 | Targets [3/3] : Exclude", - "7 | Default withholding tax : 0.0000%", - "8 | Withholding tax [1/3] : 3ca5f63dab35063fd42a75e4b36f0a8f4fd9e3", - "8 | Withholding tax [2/3] : 74317cbec08654aac3ecb21e74", - "8 | Withholding tax [3/3] : 20.0000%", - "9 | Chain : Polymesh", - "10 | Nonce : 2339", - "11 | Tip : POLYX 5552342.355555", - "12 | Era Phase : 61", - "13 | Era Period : 64", - "14 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "14 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Set prune historical pips", + "1 | Prune : False", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1047, - "name": "Corporateaction_Initiate_corporate_action", - "blob": "1e045449434b45522d3132333435038000000000000000005044657461696c7320412c2044657461696c7320420104ecd59ca9ce7d6b12d1f43bd6843e518417000673bc29486b31d83842dc1ba48e010123c2f00101043ca5f63dab35063fd42a75e4b36f0a8f4fd9e374317cbec08654aac3ecb21e74400d0300d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1036, + "name": "Pips_Set_min_proposal_deposit", + "blob": "2101fd56e5cad3287b54b2352f703dbeafc0d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Initiate corporate action", - "1 | Ticker : TICKER-12345", - "2 | Kind : Reorganization", - "3 | Decl date : 128", - "4 | Record date : None", - "5 | Details : Details A, Details B", - "6 | Targets [1/3] : ecd59ca9ce7d6b12d1f43bd6843e5184170006", - "6 | Targets [2/3] : 73bc29486b31d83842dc1ba48e", - "6 | Targets [3/3] : Exclude", - "7 | Default withholding tax : 3255.5555%", - "8 | Withholding tax [1/3] : 3ca5f63dab35063fd42a75e4b36f0a8f4fd9e3", - "8 | Withholding tax [2/3] : 74317cbec08654aac3ecb21e74", - "8 | Withholding tax [3/3] : 20.0000%", - "9 | Tip : POLYX 55.555555" + "0 | Pips : Set min proposal deposit", + "1 | Deposit [1/2] : POLYX 25612428566640944380857301230667", + "1 | Deposit [2/2] : 6.766461", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Corporateaction : Initiate corporate action", - "1 | Ticker : TICKER-12345", - "2 | Kind : Reorganization", - "3 | Decl date : 128", - "4 | Record date : None", - "5 | Details : Details A, Details B", - "6 | Targets [1/3] : ecd59ca9ce7d6b12d1f43bd6843e5184170006", - "6 | Targets [2/3] : 73bc29486b31d83842dc1ba48e", - "6 | Targets [3/3] : Exclude", - "7 | Default withholding tax : 3255.5555%", - "8 | Withholding tax [1/3] : 3ca5f63dab35063fd42a75e4b36f0a8f4fd9e3", - "8 | Withholding tax [2/3] : 74317cbec08654aac3ecb21e74", - "8 | Withholding tax [3/3] : 20.0000%", - "9 | Chain : Polymesh", - "10 | Nonce : 1", - "11 | Tip : POLYX 55.555555", - "12 | Era Phase : 61", - "13 | Era Period : 64", - "14 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "14 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Set min proposal deposit", + "1 | Deposit [1/2] : POLYX 25612428566640944380857301230667", + "1 | Deposit [2/2] : 6.766461", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1048, - "name": "Corporateaction_Initiate_corporate_action", - "blob": "1e045449434b45522d31323334350080000000000000000102cc820d00000000005044657461696c7320412c2044657461696c7320420104e7eb67e4a8d53ee76c5ab4d71e119dc2a7ce00ed6bf1b32bd1fd43ab1ef5d8900001400d030001043ca5f63dab35063fd42a75e4b36f0a8f4fd9e374317cbec08654aac3ecb21e74400d0300d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1037, + "name": "Pips_Set_min_proposal_deposit", + "blob": "2101fd56e5cad3287b54b2352f703dbeafc0d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Initiate corporate action", - "1 | Ticker : TICKER-12345", - "2 | Kind : PredictableBenefit", - "3 | Decl date : 128", - "4 | Record date : 885452", - "5 | Details : Details A, Details B", - "6 | Targets [1/3] : e7eb67e4a8d53ee76c5ab4d71e119dc2a7ce00", - "6 | Targets [2/3] : ed6bf1b32bd1fd43ab1ef5d890", - "6 | Targets [3/3] : Include", - "7 | Default withholding tax : 20.0000%", - "8 | Withholding tax [1/3] : 3ca5f63dab35063fd42a75e4b36f0a8f4fd9e3", - "8 | Withholding tax [2/3] : 74317cbec08654aac3ecb21e74", - "8 | Withholding tax [3/3] : 20.0000%", - "9 | Tip : POLYX 1234.56789" + "0 | Pips : Set min proposal deposit", + "1 | Deposit [1/2] : POLYX 25612428566640944380857301230667", + "1 | Deposit [2/2] : 6.766461", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Corporateaction : Initiate corporate action", - "1 | Ticker : TICKER-12345", - "2 | Kind : PredictableBenefit", - "3 | Decl date : 128", - "4 | Record date : 885452", - "5 | Details : Details A, Details B", - "6 | Targets [1/3] : e7eb67e4a8d53ee76c5ab4d71e119dc2a7ce00", - "6 | Targets [2/3] : ed6bf1b32bd1fd43ab1ef5d890", - "6 | Targets [3/3] : Include", - "7 | Default withholding tax : 20.0000%", - "8 | Withholding tax [1/3] : 3ca5f63dab35063fd42a75e4b36f0a8f4fd9e3", - "8 | Withholding tax [2/3] : 74317cbec08654aac3ecb21e74", - "8 | Withholding tax [3/3] : 20.0000%", - "9 | Chain : Polymesh", - "10 | Nonce : 0", - "11 | Tip : POLYX 1234.56789", - "12 | Era Phase : 61", - "13 | Era Period : 64", - "14 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "14 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Set min proposal deposit", + "1 | Deposit [1/2] : POLYX 25612428566640944380857301230667", + "1 | Deposit [2/2] : 6.766461", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1049, - "name": "Corporateaction_Initiate_corporate_action", - "blob": "1e045449434b45522d3132333435038000000000000000005044657461696c7320412c2044657461696c7320420104ecd59ca9ce7d6b12d1f43bd6843e518417000673bc29486b31d83842dc1ba48e01010000000001043ca5f63dab35063fd42a75e4b36f0a8f4fd9e374317cbec08654aac3ecb21e74400d0300d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1038, + "name": "Pips_Set_min_proposal_deposit", + "blob": "2101fd56e5cad3287b54b2352f703dbeafc0d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Initiate corporate action", - "1 | Ticker : TICKER-12345", - "2 | Kind : Reorganization", - "3 | Decl date : 128", - "4 | Record date : None", - "5 | Details : Details A, Details B", - "6 | Targets [1/3] : ecd59ca9ce7d6b12d1f43bd6843e5184170006", - "6 | Targets [2/3] : 73bc29486b31d83842dc1ba48e", - "6 | Targets [3/3] : Exclude", - "7 | Default withholding tax : 0.0000%", - "8 | Withholding tax [1/3] : 3ca5f63dab35063fd42a75e4b36f0a8f4fd9e3", - "8 | Withholding tax [2/3] : 74317cbec08654aac3ecb21e74", - "8 | Withholding tax [3/3] : 20.0000%", - "9 | Tip : POLYX 5552342.355555" + "0 | Pips : Set min proposal deposit", + "1 | Deposit [1/2] : POLYX 25612428566640944380857301230667", + "1 | Deposit [2/2] : 6.766461", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Corporateaction : Initiate corporate action", - "1 | Ticker : TICKER-12345", - "2 | Kind : Reorganization", - "3 | Decl date : 128", - "4 | Record date : None", - "5 | Details : Details A, Details B", - "6 | Targets [1/3] : ecd59ca9ce7d6b12d1f43bd6843e5184170006", - "6 | Targets [2/3] : 73bc29486b31d83842dc1ba48e", - "6 | Targets [3/3] : Exclude", - "7 | Default withholding tax : 0.0000%", - "8 | Withholding tax [1/3] : 3ca5f63dab35063fd42a75e4b36f0a8f4fd9e3", - "8 | Withholding tax [2/3] : 74317cbec08654aac3ecb21e74", - "8 | Withholding tax [3/3] : 20.0000%", - "9 | Chain : Polymesh", - "10 | Nonce : 0", - "11 | Tip : POLYX 5552342.355555", - "12 | Era Phase : 61", - "13 | Era Period : 64", - "14 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "14 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Set min proposal deposit", + "1 | Deposit [1/2] : POLYX 25612428566640944380857301230667", + "1 | Deposit [2/2] : 6.766461", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1050, - "name": "Corporateaction_Initiate_corporate_action", - "blob": "1e045449434b45522d3132333435030001000000000000010091150000000000005044657461696c7320412c2044657461696c7320420104e7eb67e4a8d53ee76c5ab4d71e119dc2a7ce00ed6bf1b32bd1fd43ab1ef5d890000123c2f00101043ca5f63dab35063fd42a75e4b36f0a8f4fd9e374317cbec08654aac3ecb21e74400d0300d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1039, + "name": "Pips_Set_min_proposal_deposit", + "blob": "2101fd56e5cad3287b54b2352f703dbeafc0d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Initiate corporate action", - "1 | Ticker : TICKER-12345", - "2 | Kind : Reorganization", - "3 | Decl date : 256", - "4 | Record date : 5521", - "5 | Details : Details A, Details B", - "6 | Targets [1/3] : e7eb67e4a8d53ee76c5ab4d71e119dc2a7ce00", - "6 | Targets [2/3] : ed6bf1b32bd1fd43ab1ef5d890", - "6 | Targets [3/3] : Include", - "7 | Default withholding tax : 3255.5555%", - "8 | Withholding tax [1/3] : 3ca5f63dab35063fd42a75e4b36f0a8f4fd9e3", - "8 | Withholding tax [2/3] : 74317cbec08654aac3ecb21e74", - "8 | Withholding tax [3/3] : 20.0000%", - "9 | Tip : POLYX 5552342.355555" + "0 | Pips : Set min proposal deposit", + "1 | Deposit [1/2] : POLYX 25612428566640944380857301230667", + "1 | Deposit [2/2] : 6.766461" ], "output_expert": [ - "0 | Corporateaction : Initiate corporate action", - "1 | Ticker : TICKER-12345", - "2 | Kind : Reorganization", - "3 | Decl date : 256", - "4 | Record date : 5521", - "5 | Details : Details A, Details B", - "6 | Targets [1/3] : e7eb67e4a8d53ee76c5ab4d71e119dc2a7ce00", - "6 | Targets [2/3] : ed6bf1b32bd1fd43ab1ef5d890", - "6 | Targets [3/3] : Include", - "7 | Default withholding tax : 3255.5555%", - "8 | Withholding tax [1/3] : 3ca5f63dab35063fd42a75e4b36f0a8f4fd9e3", - "8 | Withholding tax [2/3] : 74317cbec08654aac3ecb21e74", - "8 | Withholding tax [3/3] : 20.0000%", - "9 | Chain : Polymesh", - "10 | Nonce : 50283", - "11 | Tip : POLYX 5552342.355555", - "12 | Era Phase : 61", - "13 | Era Period : 64", - "14 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "14 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Set min proposal deposit", + "1 | Deposit [1/2] : POLYX 25612428566640944380857301230667", + "1 | Deposit [2/2] : 6.766461", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1051, - "name": "Corporateaction_Link_ca_doc", - "blob": "1e055449434b45522d31323341416fec210010672f0000406903000f000000bd3c1221d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1040, + "name": "Pips_Set_min_proposal_deposit", + "blob": "2101fd56e5cad3287b54b2352f703dbeafc0d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Link ca doc", - "1 | Id [1/2] : TICKER-123AA", - "1 | Id [2/2] : 2223215", - "2 | Docs [1/4] : 12135", - "2 | Docs [2/4] : 223552", - "2 | Docs [3/4] : 15", - "2 | Docs [4/4] : 554843325", - "3 | Tip : POLYX 55.555555" + "0 | Pips : Set min proposal deposit", + "1 | Deposit [1/2] : POLYX 25612428566640944380857301230667", + "1 | Deposit [2/2] : 6.766461", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Corporateaction : Link ca doc", - "1 | Id [1/2] : TICKER-123AA", - "1 | Id [2/2] : 2223215", - "2 | Docs [1/4] : 12135", - "2 | Docs [2/4] : 223552", - "2 | Docs [3/4] : 15", - "2 | Docs [4/4] : 554843325", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Set min proposal deposit", + "1 | Deposit [1/2] : POLYX 25612428566640944380857301230667", + "1 | Deposit [2/2] : 6.766461", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1052, - "name": "Corporateaction_Link_ca_doc", - "blob": "1e055449434b45522d31323341416fec210000d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1041, + "name": "Pips_Set_default_enactment_period", + "blob": "210200000000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Link ca doc", - "1 | Id [1/2] : TICKER-123AA", - "1 | Id [2/2] : 2223215", - "2 | Docs : ", - "3 | Tip : POLYX 0.000987" + "0 | Pips : Set default enactment period", + "1 | Duration : 0" ], "output_expert": [ - "0 | Corporateaction : Link ca doc", - "1 | Id [1/2] : TICKER-123AA", - "1 | Id [2/2] : 2223215", - "2 | Docs : ", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Set default enactment period", + "1 | Duration : 0", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1053, - "name": "Corporateaction_Link_ca_doc", - "blob": "1e055449434b45522d31323341416fec210000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1042, + "name": "Pips_Set_default_enactment_period", + "blob": "210225010000d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Link ca doc", - "1 | Id [1/2] : TICKER-123AA", - "1 | Id [2/2] : 2223215", - "2 | Docs : ", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Pips : Set default enactment period", + "1 | Duration : 293", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Corporateaction : Link ca doc", - "1 | Id [1/2] : TICKER-123AA", - "1 | Id [2/2] : 2223215", - "2 | Docs : ", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Set default enactment period", + "1 | Duration : 293", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1054, - "name": "Corporateaction_Link_ca_doc", - "blob": "1e055449434b45522d31323341416fec210010672f0000406903000f000000bd3c1221d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1043, + "name": "Pips_Set_default_enactment_period", + "blob": "21027b000000d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Link ca doc", - "1 | Id [1/2] : TICKER-123AA", - "1 | Id [2/2] : 2223215", - "2 | Docs [1/4] : 12135", - "2 | Docs [2/4] : 223552", - "2 | Docs [3/4] : 15", - "2 | Docs [4/4] : 554843325", - "3 | Tip : POLYX 5552342.355555" + "0 | Pips : Set default enactment period", + "1 | Duration : 123", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Corporateaction : Link ca doc", - "1 | Id [1/2] : TICKER-123AA", - "1 | Id [2/2] : 2223215", - "2 | Docs [1/4] : 12135", - "2 | Docs [2/4] : 223552", - "2 | Docs [3/4] : 15", - "2 | Docs [4/4] : 554843325", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Set default enactment period", + "1 | Duration : 123", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1055, - "name": "Corporateaction_Link_ca_doc", - "blob": "1e055449434b45522d31323341416fec21000400000000d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1044, + "name": "Pips_Set_default_enactment_period", + "blob": "210201000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Link ca doc", - "1 | Id [1/2] : TICKER-123AA", - "1 | Id [2/2] : 2223215", - "2 | Docs : 0", - "3 | Tip : POLYX 55.555555" + "0 | Pips : Set default enactment period", + "1 | Duration : 1", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Corporateaction : Link ca doc", - "1 | Id [1/2] : TICKER-123AA", - "1 | Id [2/2] : 2223215", - "2 | Docs : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1056, - "name": "Corporateaction_Remove_ca", - "blob": "1e065449434b45522d31323341416fec2100d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Remove ca", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Corporateaction : Remove ca", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", + "0 | Pips : Set default enactment period", + "1 | Duration : 1", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 100", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1057, - "name": "Corporateaction_Remove_ca", - "blob": "1e065449434b45522d31323341416fec2100d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1045, + "name": "Pips_Set_default_enactment_period", + "blob": "210201000000d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Remove ca", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215" + "0 | Pips : Set default enactment period", + "1 | Duration : 1", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Corporateaction : Remove ca", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", + "0 | Pips : Set default enactment period", + "1 | Duration : 1", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 100", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1058, - "name": "Corporateaction_Remove_ca", - "blob": "1e065449434b45522d31323341416fec2100d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1046, + "name": "Pips_Set_pending_pip_expiry", + "blob": "210300a1860100d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Remove ca", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", + "0 | Pips : Set pending pip expiry", + "1 | Expiry : 100001", "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Corporateaction : Remove ca", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", + "0 | Pips : Set pending pip expiry", + "1 | Expiry : 100001", "2 | Chain : Polymesh", "3 | Nonce : 100", "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1059, - "name": "Corporateaction_Remove_ca", - "blob": "1e065449434b45522d31323341416fec2100d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1047, + "name": "Pips_Set_pending_pip_expiry", + "blob": "210301d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Remove ca", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 55.555555" + "0 | Pips : Set pending pip expiry", + "1 | Expiry : None", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Corporateaction : Remove ca", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", + "0 | Pips : Set pending pip expiry", + "1 | Expiry : None", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 100", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1060, - "name": "Corporateaction_Remove_ca", - "blob": "1e065449434b45522d31323341416fec2100d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1048, + "name": "Pips_Set_pending_pip_expiry", + "blob": "210301d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Remove ca", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 1234.56789" + "0 | Pips : Set pending pip expiry", + "1 | Expiry : None", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Corporateaction : Remove ca", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", + "0 | Pips : Set pending pip expiry", + "1 | Expiry : None", "2 | Chain : Polymesh", "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1061, - "name": "Corporateaction_Change_record_date", - "blob": "1e075449434b45522d31323341416fec210001009115000000000000d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1049, + "name": "Pips_Set_pending_pip_expiry", + "blob": "210300a1860100d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Change record date", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Record date : 5521", - "3 | Tip : POLYX 0.000987" + "0 | Pips : Set pending pip expiry", + "1 | Expiry : 100001" ], "output_expert": [ - "0 | Corporateaction : Change record date", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Record date : 5521", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Set pending pip expiry", + "1 | Expiry : 100001", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1062, - "name": "Corporateaction_Change_record_date", - "blob": "1e075449434b45522d31323341416fec210000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1050, + "name": "Pips_Set_pending_pip_expiry", + "blob": "210300a1860100d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Change record date", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Record date : None", - "3 | Tip : POLYX 1234.56789" + "0 | Pips : Set pending pip expiry", + "1 | Expiry : 100001", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Corporateaction : Change record date", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Record date : None", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Set pending pip expiry", + "1 | Expiry : 100001", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1063, - "name": "Corporateaction_Change_record_date", - "blob": "1e075449434b45522d31323341416fec210000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1051, + "name": "Pips_Set_max_pip_skip_count", + "blob": "210400d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Change record date", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Record date : None", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Pips : Set max pip skip count", + "1 | Max : 0", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Corporateaction : Change record date", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Record date : None", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Set max pip skip count", + "1 | Max : 0", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1064, - "name": "Corporateaction_Change_record_date", - "blob": "1e075449434b45522d31323341416fec21000102cc820d0000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1052, + "name": "Pips_Set_max_pip_skip_count", + "blob": "2104ffd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Change record date", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Record date : 885452", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Pips : Set max pip skip count", + "1 | Max : 255", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Corporateaction : Change record date", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Record date : 885452", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Set max pip skip count", + "1 | Max : 255", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1065, - "name": "Corporateaction_Change_record_date", - "blob": "1e075449434b45522d31323341416fec21000102cc820d0000000000d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1053, + "name": "Pips_Set_max_pip_skip_count", + "blob": "2104ffd503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Change record date", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Record date : 885452", - "3 | Tip : POLYX 0.000987" + "0 | Pips : Set max pip skip count", + "1 | Max : 255", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Corporateaction : Change record date", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Record date : 885452", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Set max pip skip count", + "1 | Max : 255", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1066, - "name": "Corporateaction_Initiate_corporate_action_and_distribute", - "blob": "1e085449434b45522d3334353637010e2c57125a910da70102e095f83643a2e49c80a38070cc227ba5d2f2c13c80bbd5d965129870739c94b4dab96c9f574358823b01089f8b1bbb9642b49aa620389690e98ce33a85253104c3eb2983e9f1c1da05a9d2affdb0f4a98dc4a6f03ccdcdbe3692247215348d53c9932e0a0a68837c999ac60101d37c9fbd0108dace6c9c0949bd367b3041282956fdcda7743f24f56b40ae1c67ff1a1c34904d1eead6cdd339eef97c439d1065dabd38acc95d36b9851c603fd577109650b49287388eca2e6c572c0100000000000000005449434b45522d313233343540d8127ea9f0d1cdf6126ec9c838c9ba40d8127ea9f0d1cdf6126ec9c838c9ba0008000000000000018000000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1054, + "name": "Pips_Set_max_pip_skip_count", + "blob": "21040dd503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Initiate corporate action and distribu", - "1 | Ca args [1/18] : TICKER-34567", - "1 | Ca args [2/18] : UnpredictableBenfit", - "1 | Ca args [3/18] : 12037437195071990798", - "1 | Ca args [4/18] : 11305339374175557088", - "1 | Ca args [5/18] : a38070cc227ba5d2f2c13c80bbd5d965129870", - "1 | Ca args [6/18] : 739c94b4dab96c9f574358823b", - "1 | Ca args [7/18] : 9f8b1bbb9642b49aa620389690e98ce33a8525", - "1 | Ca args [8/18] : 3104c3eb2983e9f1c1da05a9d2", - "1 | Ca args [9/18] : affdb0f4a98dc4a6f03ccdcdbe369224721534", - "1 | Ca args [10/18] : 8d53c9932e0a0a68837c999ac6", - "1 | Ca args [11/18] : Exclude", - "1 | Ca args [12/18] : 318134.6003%", - "1 | Ca args [13/18] : dace6c9c0949bd367b3041282956fdcda7743f", - "1 | Ca args [14/18] : 24f56b40ae1c67ff1a1c34904d", - "1 | Ca args [15/18] : 345341.3918%", - "1 | Ca args [16/18] : d339eef97c439d1065dabd38acc95d36b9851c", - "1 | Ca args [17/18] : 603fd577109650b49287388eca", - "1 | Ca args [18/18] : 74392.6830%", - "2 | Portfolio : 0", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 24828121060746971842942860419690", - "4 | Per share [2/2] : 4.68768", - "5 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "5 | Amount [2/2] : 4.68768", - "6 | Payment at : 2048", - "7 | Expires at : 128", - "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "8 | Tip [2/2] : 3.456789" + "0 | Pips : Set max pip skip count", + "1 | Max : 13" ], "output_expert": [ - "0 | Corporateaction : Initiate corporate action and distribu", - "1 | Ca args [1/18] : TICKER-34567", - "1 | Ca args [2/18] : UnpredictableBenfit", - "1 | Ca args [3/18] : 12037437195071990798", - "1 | Ca args [4/18] : 11305339374175557088", - "1 | Ca args [5/18] : a38070cc227ba5d2f2c13c80bbd5d965129870", - "1 | Ca args [6/18] : 739c94b4dab96c9f574358823b", - "1 | Ca args [7/18] : 9f8b1bbb9642b49aa620389690e98ce33a8525", - "1 | Ca args [8/18] : 3104c3eb2983e9f1c1da05a9d2", - "1 | Ca args [9/18] : affdb0f4a98dc4a6f03ccdcdbe369224721534", - "1 | Ca args [10/18] : 8d53c9932e0a0a68837c999ac6", - "1 | Ca args [11/18] : Exclude", - "1 | Ca args [12/18] : 318134.6003%", - "1 | Ca args [13/18] : dace6c9c0949bd367b3041282956fdcda7743f", - "1 | Ca args [14/18] : 24f56b40ae1c67ff1a1c34904d", - "1 | Ca args [15/18] : 345341.3918%", - "1 | Ca args [16/18] : d339eef97c439d1065dabd38acc95d36b9851c", - "1 | Ca args [17/18] : 603fd577109650b49287388eca", - "1 | Ca args [18/18] : 74392.6830%", - "2 | Portfolio : 0", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 24828121060746971842942860419690", - "4 | Per share [2/2] : 4.68768", - "5 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "5 | Amount [2/2] : 4.68768", - "6 | Payment at : 2048", - "7 | Expires at : 128", - "8 | Chain : Polymesh", - "9 | Nonce : 0", - "10 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "10 | Tip [2/2] : 3.456789", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Set max pip skip count", + "1 | Max : 13", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1067, - "name": "Corporateaction_Initiate_corporate_action_and_distribute", - "blob": "1e085449434b45522d3334353637010e2c57125a910da70102e095f83643a2e49c80a38070cc227ba5d2f2c13c80bbd5d965129870739c94b4dab96c9f574358823b01089f8b1bbb9642b49aa620389690e98ce33a85253104c3eb2983e9f1c1da05a9d2affdb0f4a98dc4a6f03ccdcdbe3692247215348d53c9932e0a0a68837c999ac60101d37c9fbd0108dace6c9c0949bd367b3041282956fdcda7743f24f56b40ae1c67ff1a1c34904d1eead6cdd339eef97c439d1065dabd38acc95d36b9851c603fd577109650b49287388eca2e6c572c0100000000000000005449434b45522d313233343540d8127ea9f0d1cdf6126ec9c838c9ba40d8127ea9f0d1cdf6126ec9c838c9ba0001000000000000018000000000000000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1055, + "name": "Pips_Set_max_pip_skip_count", + "blob": "2104ffd5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Initiate corporate action and distribu", - "1 | Ca args [1/18] : TICKER-34567", - "1 | Ca args [2/18] : UnpredictableBenfit", - "1 | Ca args [3/18] : 12037437195071990798", - "1 | Ca args [4/18] : 11305339374175557088", - "1 | Ca args [5/18] : a38070cc227ba5d2f2c13c80bbd5d965129870", - "1 | Ca args [6/18] : 739c94b4dab96c9f574358823b", - "1 | Ca args [7/18] : 9f8b1bbb9642b49aa620389690e98ce33a8525", - "1 | Ca args [8/18] : 3104c3eb2983e9f1c1da05a9d2", - "1 | Ca args [9/18] : affdb0f4a98dc4a6f03ccdcdbe369224721534", - "1 | Ca args [10/18] : 8d53c9932e0a0a68837c999ac6", - "1 | Ca args [11/18] : Exclude", - "1 | Ca args [12/18] : 318134.6003%", - "1 | Ca args [13/18] : dace6c9c0949bd367b3041282956fdcda7743f", - "1 | Ca args [14/18] : 24f56b40ae1c67ff1a1c34904d", - "1 | Ca args [15/18] : 345341.3918%", - "1 | Ca args [16/18] : d339eef97c439d1065dabd38acc95d36b9851c", - "1 | Ca args [17/18] : 603fd577109650b49287388eca", - "1 | Ca args [18/18] : 74392.6830%", - "2 | Portfolio : 0", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 24828121060746971842942860419690", - "4 | Per share [2/2] : 4.68768", - "5 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "5 | Amount [2/2] : 4.68768", - "6 | Payment at : 256", - "7 | Expires at : 128", - "8 | Tip : POLYX 55.555555" + "0 | Pips : Set max pip skip count", + "1 | Max : 255", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Corporateaction : Initiate corporate action and distribu", - "1 | Ca args [1/18] : TICKER-34567", - "1 | Ca args [2/18] : UnpredictableBenfit", - "1 | Ca args [3/18] : 12037437195071990798", - "1 | Ca args [4/18] : 11305339374175557088", - "1 | Ca args [5/18] : a38070cc227ba5d2f2c13c80bbd5d965129870", - "1 | Ca args [6/18] : 739c94b4dab96c9f574358823b", - "1 | Ca args [7/18] : 9f8b1bbb9642b49aa620389690e98ce33a8525", - "1 | Ca args [8/18] : 3104c3eb2983e9f1c1da05a9d2", - "1 | Ca args [9/18] : affdb0f4a98dc4a6f03ccdcdbe369224721534", - "1 | Ca args [10/18] : 8d53c9932e0a0a68837c999ac6", - "1 | Ca args [11/18] : Exclude", - "1 | Ca args [12/18] : 318134.6003%", - "1 | Ca args [13/18] : dace6c9c0949bd367b3041282956fdcda7743f", - "1 | Ca args [14/18] : 24f56b40ae1c67ff1a1c34904d", - "1 | Ca args [15/18] : 345341.3918%", - "1 | Ca args [16/18] : d339eef97c439d1065dabd38acc95d36b9851c", - "1 | Ca args [17/18] : 603fd577109650b49287388eca", - "1 | Ca args [18/18] : 74392.6830%", - "2 | Portfolio : 0", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 24828121060746971842942860419690", - "4 | Per share [2/2] : 4.68768", - "5 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "5 | Amount [2/2] : 4.68768", - "6 | Payment at : 256", - "7 | Expires at : 128", - "8 | Chain : Polymesh", - "9 | Nonce : 100", - "10 | Tip : POLYX 55.555555", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Set max pip skip count", + "1 | Max : 255", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1068, - "name": "Corporateaction_Initiate_corporate_action_and_distribute", - "blob": "1e085449434b45522d3334353637010e2c57125a910da70102e095f83643a2e49c80a38070cc227ba5d2f2c13c80bbd5d965129870739c94b4dab96c9f574358823b01089f8b1bbb9642b49aa620389690e98ce33a85253104c3eb2983e9f1c1da05a9d2affdb0f4a98dc4a6f03ccdcdbe3692247215348d53c9932e0a0a68837c999ac60101d37c9fbd0108dace6c9c0949bd367b3041282956fdcda7743f24f56b40ae1c67ff1a1c34904d1eead6cdd339eef97c439d1065dabd38acc95d36b9851c603fd577109650b49287388eca2e6c572c0100000000000000005449434b45522d313233343540d8127ea9f0d1cdf6126ec9c838c9ba40d8127ea9f0d1cdf6126ec9c838c9ba8000000000000000018000000000000000d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1056, + "name": "Pips_Set_active_pip_limit", + "blob": "2105f7010000d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Initiate corporate action and distribu", - "1 | Ca args [1/18] : TICKER-34567", - "1 | Ca args [2/18] : UnpredictableBenfit", - "1 | Ca args [3/18] : 12037437195071990798", - "1 | Ca args [4/18] : 11305339374175557088", - "1 | Ca args [5/18] : a38070cc227ba5d2f2c13c80bbd5d965129870", - "1 | Ca args [6/18] : 739c94b4dab96c9f574358823b", - "1 | Ca args [7/18] : 9f8b1bbb9642b49aa620389690e98ce33a8525", - "1 | Ca args [8/18] : 3104c3eb2983e9f1c1da05a9d2", - "1 | Ca args [9/18] : affdb0f4a98dc4a6f03ccdcdbe369224721534", - "1 | Ca args [10/18] : 8d53c9932e0a0a68837c999ac6", - "1 | Ca args [11/18] : Exclude", - "1 | Ca args [12/18] : 318134.6003%", - "1 | Ca args [13/18] : dace6c9c0949bd367b3041282956fdcda7743f", - "1 | Ca args [14/18] : 24f56b40ae1c67ff1a1c34904d", - "1 | Ca args [15/18] : 345341.3918%", - "1 | Ca args [16/18] : d339eef97c439d1065dabd38acc95d36b9851c", - "1 | Ca args [17/18] : 603fd577109650b49287388eca", - "1 | Ca args [18/18] : 74392.6830%", - "2 | Portfolio : 0", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 24828121060746971842942860419690", - "4 | Per share [2/2] : 4.68768", - "5 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "5 | Amount [2/2] : 4.68768", - "6 | Payment at : 128", - "7 | Expires at : 128", - "8 | Tip : POLYX 5552342.355555" + "0 | Pips : Set active pip limit", + "1 | Limit : 503", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Corporateaction : Initiate corporate action and distribu", - "1 | Ca args [1/18] : TICKER-34567", - "1 | Ca args [2/18] : UnpredictableBenfit", - "1 | Ca args [3/18] : 12037437195071990798", - "1 | Ca args [4/18] : 11305339374175557088", - "1 | Ca args [5/18] : a38070cc227ba5d2f2c13c80bbd5d965129870", - "1 | Ca args [6/18] : 739c94b4dab96c9f574358823b", - "1 | Ca args [7/18] : 9f8b1bbb9642b49aa620389690e98ce33a8525", - "1 | Ca args [8/18] : 3104c3eb2983e9f1c1da05a9d2", - "1 | Ca args [9/18] : affdb0f4a98dc4a6f03ccdcdbe369224721534", - "1 | Ca args [10/18] : 8d53c9932e0a0a68837c999ac6", - "1 | Ca args [11/18] : Exclude", - "1 | Ca args [12/18] : 318134.6003%", - "1 | Ca args [13/18] : dace6c9c0949bd367b3041282956fdcda7743f", - "1 | Ca args [14/18] : 24f56b40ae1c67ff1a1c34904d", - "1 | Ca args [15/18] : 345341.3918%", - "1 | Ca args [16/18] : d339eef97c439d1065dabd38acc95d36b9851c", - "1 | Ca args [17/18] : 603fd577109650b49287388eca", - "1 | Ca args [18/18] : 74392.6830%", - "2 | Portfolio : 0", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 24828121060746971842942860419690", - "4 | Per share [2/2] : 4.68768", - "5 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "5 | Amount [2/2] : 4.68768", - "6 | Payment at : 128", - "7 | Expires at : 128", - "8 | Chain : Polymesh", - "9 | Nonce : 50283", - "10 | Tip : POLYX 5552342.355555", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Set active pip limit", + "1 | Limit : 503", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1069, - "name": "Corporateaction_Initiate_corporate_action_and_distribute", - "blob": "1e085449434b45522d3334353637010e2c57125a910da70102e095f83643a2e49c80a38070cc227ba5d2f2c13c80bbd5d965129870739c94b4dab96c9f574358823b01089f8b1bbb9642b49aa620389690e98ce33a85253104c3eb2983e9f1c1da05a9d2affdb0f4a98dc4a6f03ccdcdbe3692247215348d53c9932e0a0a68837c999ac60101d37c9fbd0108dace6c9c0949bd367b3041282956fdcda7743f24f56b40ae1c67ff1a1c34904d1eead6cdd339eef97c439d1065dabd38acc95d36b9851c603fd577109650b49287388eca2e6c572c01cadc0000000000005449434b45522d313233343540d8127ea9f0d1cdf6126ec9c838c9ba40d8127ea9f0d1cdf6126ec9c838c9ba0001000000000000018000000000000000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1057, + "name": "Pips_Set_active_pip_limit", + "blob": "210500000000d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Initiate corporate action and distribu", - "1 | Ca args [1/18] : TICKER-34567", - "1 | Ca args [2/18] : UnpredictableBenfit", - "1 | Ca args [3/18] : 12037437195071990798", - "1 | Ca args [4/18] : 11305339374175557088", - "1 | Ca args [5/18] : a38070cc227ba5d2f2c13c80bbd5d965129870", - "1 | Ca args [6/18] : 739c94b4dab96c9f574358823b", - "1 | Ca args [7/18] : 9f8b1bbb9642b49aa620389690e98ce33a8525", - "1 | Ca args [8/18] : 3104c3eb2983e9f1c1da05a9d2", - "1 | Ca args [9/18] : affdb0f4a98dc4a6f03ccdcdbe369224721534", - "1 | Ca args [10/18] : 8d53c9932e0a0a68837c999ac6", - "1 | Ca args [11/18] : Exclude", - "1 | Ca args [12/18] : 318134.6003%", - "1 | Ca args [13/18] : dace6c9c0949bd367b3041282956fdcda7743f", - "1 | Ca args [14/18] : 24f56b40ae1c67ff1a1c34904d", - "1 | Ca args [15/18] : 345341.3918%", - "1 | Ca args [16/18] : d339eef97c439d1065dabd38acc95d36b9851c", - "1 | Ca args [17/18] : 603fd577109650b49287388eca", - "1 | Ca args [18/18] : 74392.6830%", - "2 | Portfolio : 56522", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 24828121060746971842942860419690", - "4 | Per share [2/2] : 4.68768", - "5 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "5 | Amount [2/2] : 4.68768", - "6 | Payment at : 256", - "7 | Expires at : 128" + "0 | Pips : Set active pip limit", + "1 | Limit : 0", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Corporateaction : Initiate corporate action and distribu", - "1 | Ca args [1/18] : TICKER-34567", - "1 | Ca args [2/18] : UnpredictableBenfit", - "1 | Ca args [3/18] : 12037437195071990798", - "1 | Ca args [4/18] : 11305339374175557088", - "1 | Ca args [5/18] : a38070cc227ba5d2f2c13c80bbd5d965129870", - "1 | Ca args [6/18] : 739c94b4dab96c9f574358823b", - "1 | Ca args [7/18] : 9f8b1bbb9642b49aa620389690e98ce33a8525", - "1 | Ca args [8/18] : 3104c3eb2983e9f1c1da05a9d2", - "1 | Ca args [9/18] : affdb0f4a98dc4a6f03ccdcdbe369224721534", - "1 | Ca args [10/18] : 8d53c9932e0a0a68837c999ac6", - "1 | Ca args [11/18] : Exclude", - "1 | Ca args [12/18] : 318134.6003%", - "1 | Ca args [13/18] : dace6c9c0949bd367b3041282956fdcda7743f", - "1 | Ca args [14/18] : 24f56b40ae1c67ff1a1c34904d", - "1 | Ca args [15/18] : 345341.3918%", - "1 | Ca args [16/18] : d339eef97c439d1065dabd38acc95d36b9851c", - "1 | Ca args [17/18] : 603fd577109650b49287388eca", - "1 | Ca args [18/18] : 74392.6830%", - "2 | Portfolio : 56522", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 24828121060746971842942860419690", - "4 | Per share [2/2] : 4.68768", - "5 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "5 | Amount [2/2] : 4.68768", - "6 | Payment at : 256", - "7 | Expires at : 128", - "8 | Chain : Polymesh", - "9 | Nonce : 50283", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Set active pip limit", + "1 | Limit : 0", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1070, - "name": "Corporateaction_Initiate_corporate_action_and_distribute", - "blob": "1e085449434b45522d3334353637010e2c57125a910da70102e095f83643a2e49c80a38070cc227ba5d2f2c13c80bbd5d965129870739c94b4dab96c9f574358823b01089f8b1bbb9642b49aa620389690e98ce33a85253104c3eb2983e9f1c1da05a9d2affdb0f4a98dc4a6f03ccdcdbe3692247215348d53c9932e0a0a68837c999ac60101d37c9fbd0108dace6c9c0949bd367b3041282956fdcda7743f24f56b40ae1c67ff1a1c34904d1eead6cdd339eef97c439d1065dabd38acc95d36b9851c603fd577109650b49287388eca2e6c572c01cadc0000000000005449434b45522d313233343540d8127ea9f0d1cdf6126ec9c838c9ba40d8127ea9f0d1cdf6126ec9c838c9ba0008000000000000018000000000000000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1058, + "name": "Pips_Set_active_pip_limit", + "blob": "2105f7010000d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateaction : Initiate corporate action and distribu", - "1 | Ca args [1/18] : TICKER-34567", - "1 | Ca args [2/18] : UnpredictableBenfit", - "1 | Ca args [3/18] : 12037437195071990798", - "1 | Ca args [4/18] : 11305339374175557088", - "1 | Ca args [5/18] : a38070cc227ba5d2f2c13c80bbd5d965129870", - "1 | Ca args [6/18] : 739c94b4dab96c9f574358823b", - "1 | Ca args [7/18] : 9f8b1bbb9642b49aa620389690e98ce33a8525", - "1 | Ca args [8/18] : 3104c3eb2983e9f1c1da05a9d2", - "1 | Ca args [9/18] : affdb0f4a98dc4a6f03ccdcdbe369224721534", - "1 | Ca args [10/18] : 8d53c9932e0a0a68837c999ac6", - "1 | Ca args [11/18] : Exclude", - "1 | Ca args [12/18] : 318134.6003%", - "1 | Ca args [13/18] : dace6c9c0949bd367b3041282956fdcda7743f", - "1 | Ca args [14/18] : 24f56b40ae1c67ff1a1c34904d", - "1 | Ca args [15/18] : 345341.3918%", - "1 | Ca args [16/18] : d339eef97c439d1065dabd38acc95d36b9851c", - "1 | Ca args [17/18] : 603fd577109650b49287388eca", - "1 | Ca args [18/18] : 74392.6830%", - "2 | Portfolio : 56522", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 24828121060746971842942860419690", - "4 | Per share [2/2] : 4.68768", - "5 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "5 | Amount [2/2] : 4.68768", - "6 | Payment at : 2048", - "7 | Expires at : 128", - "8 | Tip : POLYX 1234.56789" + "0 | Pips : Set active pip limit", + "1 | Limit : 503", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Corporateaction : Initiate corporate action and distribu", - "1 | Ca args [1/18] : TICKER-34567", - "1 | Ca args [2/18] : UnpredictableBenfit", - "1 | Ca args [3/18] : 12037437195071990798", - "1 | Ca args [4/18] : 11305339374175557088", - "1 | Ca args [5/18] : a38070cc227ba5d2f2c13c80bbd5d965129870", - "1 | Ca args [6/18] : 739c94b4dab96c9f574358823b", - "1 | Ca args [7/18] : 9f8b1bbb9642b49aa620389690e98ce33a8525", - "1 | Ca args [8/18] : 3104c3eb2983e9f1c1da05a9d2", - "1 | Ca args [9/18] : affdb0f4a98dc4a6f03ccdcdbe369224721534", - "1 | Ca args [10/18] : 8d53c9932e0a0a68837c999ac6", - "1 | Ca args [11/18] : Exclude", - "1 | Ca args [12/18] : 318134.6003%", - "1 | Ca args [13/18] : dace6c9c0949bd367b3041282956fdcda7743f", - "1 | Ca args [14/18] : 24f56b40ae1c67ff1a1c34904d", - "1 | Ca args [15/18] : 345341.3918%", - "1 | Ca args [16/18] : d339eef97c439d1065dabd38acc95d36b9851c", - "1 | Ca args [17/18] : 603fd577109650b49287388eca", - "1 | Ca args [18/18] : 74392.6830%", - "2 | Portfolio : 56522", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 24828121060746971842942860419690", - "4 | Per share [2/2] : 4.68768", - "5 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "5 | Amount [2/2] : 4.68768", - "6 | Payment at : 2048", - "7 | Expires at : 128", - "8 | Chain : Polymesh", - "9 | Nonce : 2339", - "10 | Tip : POLYX 1234.56789", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Set active pip limit", + "1 | Limit : 503", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1071, - "name": "Corporateballot_Attach_ballot", - "blob": "1f005449434b45522d31323341416fec21001027000000000000204e000000000000145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c653200d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1059, + "name": "Pips_Set_active_pip_limit", + "blob": "210534300000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateballot : Attach ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Range [1/2] : 10000", - "2 | Range [2/2] : 20000", - "3 | Meta [1/5] : Title", - "3 | Meta [2/5] : MotionTitle", - "3 | Meta [3/5] : MotionInfoLink", - "3 | Meta [4/5] : ChoiceTitle1", - "3 | Meta [5/5] : ChoiceTitle2", - "4 | Rcv : False", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789" + "0 | Pips : Set active pip limit", + "1 | Limit : 12340", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Corporateballot : Attach ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Range [1/2] : 10000", - "2 | Range [2/2] : 20000", - "3 | Meta [1/5] : Title", - "3 | Meta [2/5] : MotionTitle", - "3 | Meta [3/5] : MotionInfoLink", - "3 | Meta [4/5] : ChoiceTitle1", - "3 | Meta [5/5] : ChoiceTitle2", - "4 | Rcv : False", + "0 | Pips : Set active pip limit", + "1 | Limit : 12340", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 1060, + "name": "Pips_Set_active_pip_limit", + "blob": "2105f7010000d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Pips : Set active pip limit", + "1 | Limit : 503", + "2 | Tip : POLYX 55.555555" + ], + "output_expert": [ + "0 | Pips : Set active pip limit", + "1 | Limit : 503", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 1061, + "name": "Pips_Propose", + "blob": "21060000083434fd56e5cad3287b54b2352f703dbeafc0014468747470733a2f2f6d7975726c2e75726c0154546869732069732061206465736372697074696f6ed503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Pips : Propose", + "1 | Proposal [1/2] : Remark", + "1 | Proposal [2/2] : 3434", + "2 | Deposit [1/2] : POLYX 25612428566640944380857301230667", + "2 | Deposit [2/2] : 6.766461", + "3 | Url : https://myurl.url", + "4 | Description : This is a description", + "5 | Tip : POLYX 55.555555" + ], + "output_expert": [ + "0 | Pips : Propose", + "1 | Proposal [1/2] : Remark", + "1 | Proposal [2/2] : 3434", + "2 | Deposit [1/2] : POLYX 25612428566640944380857301230667", + "2 | Deposit [2/2] : 6.766461", + "3 | Url : https://myurl.url", + "4 | Description : This is a description", "5 | Chain : Polymesh", "6 | Nonce : 1", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789", + "7 | Tip : POLYX 55.555555", "8 | Era Phase : 61", "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1072, - "name": "Corporateballot_Attach_ballot", - "blob": "1f005449434b45522d31323341416fec21001027000000000000204e000000000000145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c653201d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1062, + "name": "Pips_Propose", + "blob": "21060000083434fd56e5cad3287b54b2352f703dbeafc0014468747470733a2f2f6d7975726c2e75726c0154546869732069732061206465736372697074696f6ed5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateballot : Attach ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Range [1/2] : 10000", - "2 | Range [2/2] : 20000", - "3 | Meta [1/5] : Title", - "3 | Meta [2/5] : MotionTitle", - "3 | Meta [3/5] : MotionInfoLink", - "3 | Meta [4/5] : ChoiceTitle1", - "3 | Meta [5/5] : ChoiceTitle2", - "4 | Rcv : True", + "0 | Pips : Propose", + "1 | Proposal [1/2] : Remark", + "1 | Proposal [2/2] : 3434", + "2 | Deposit [1/2] : POLYX 25612428566640944380857301230667", + "2 | Deposit [2/2] : 6.766461", + "3 | Url : https://myurl.url", + "4 | Description : This is a description", "5 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Corporateballot : Attach ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Range [1/2] : 10000", - "2 | Range [2/2] : 20000", - "3 | Meta [1/5] : Title", - "3 | Meta [2/5] : MotionTitle", - "3 | Meta [3/5] : MotionInfoLink", - "3 | Meta [4/5] : ChoiceTitle1", - "3 | Meta [5/5] : ChoiceTitle2", - "4 | Rcv : True", + "0 | Pips : Propose", + "1 | Proposal [1/2] : Remark", + "1 | Proposal [2/2] : 3434", + "2 | Deposit [1/2] : POLYX 25612428566640944380857301230667", + "2 | Deposit [2/2] : 6.766461", + "3 | Url : https://myurl.url", + "4 | Description : This is a description", "5 | Chain : Polymesh", - "6 | Nonce : 50283", + "6 | Nonce : 2339", "7 | Tip : POLYX 1234.56789", "8 | Era Phase : 61", "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1073, - "name": "Corporateballot_Attach_ballot", - "blob": "1f005449434b45522d31323341416fec21001027000000000000204e000000000000145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c653200d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1063, + "name": "Pips_Propose", + "blob": "21060000083434fd56e5cad3287b54b2352f703dbeafc0014468747470733a2f2f6d7975726c2e75726c0154546869732069732061206465736372697074696f6ed503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateballot : Attach ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Range [1/2] : 10000", - "2 | Range [2/2] : 20000", - "3 | Meta [1/5] : Title", - "3 | Meta [2/5] : MotionTitle", - "3 | Meta [3/5] : MotionInfoLink", - "3 | Meta [4/5] : ChoiceTitle1", - "3 | Meta [5/5] : ChoiceTitle2", - "4 | Rcv : False" + "0 | Pips : Propose", + "1 | Proposal [1/2] : Remark", + "1 | Proposal [2/2] : 3434", + "2 | Deposit [1/2] : POLYX 25612428566640944380857301230667", + "2 | Deposit [2/2] : 6.766461", + "3 | Url : https://myurl.url", + "4 | Description : This is a description", + "5 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Corporateballot : Attach ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Range [1/2] : 10000", - "2 | Range [2/2] : 20000", - "3 | Meta [1/5] : Title", - "3 | Meta [2/5] : MotionTitle", - "3 | Meta [3/5] : MotionInfoLink", - "3 | Meta [4/5] : ChoiceTitle1", - "3 | Meta [5/5] : ChoiceTitle2", - "4 | Rcv : False", + "0 | Pips : Propose", + "1 | Proposal [1/2] : Remark", + "1 | Proposal [2/2] : 3434", + "2 | Deposit [1/2] : POLYX 25612428566640944380857301230667", + "2 | Deposit [2/2] : 6.766461", + "3 | Url : https://myurl.url", + "4 | Description : This is a description", "5 | Chain : Polymesh", - "6 | Nonce : 2339", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Nonce : 1", + "7 | Tip : POLYX 5552342.355555", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1074, - "name": "Corporateballot_Attach_ballot", - "blob": "1f005449434b45522d31323341416fec21001027000000000000204e000000000000145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c653201d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1064, + "name": "Pips_Propose", + "blob": "21060000083434fd56e5cad3287b54b2352f703dbeafc0014468747470733a2f2f6d7975726c2e75726c0154546869732069732061206465736372697074696f6ed503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateballot : Attach ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Range [1/2] : 10000", - "2 | Range [2/2] : 20000", - "3 | Meta [1/5] : Title", - "3 | Meta [2/5] : MotionTitle", - "3 | Meta [3/5] : MotionInfoLink", - "3 | Meta [4/5] : ChoiceTitle1", - "3 | Meta [5/5] : ChoiceTitle2", - "4 | Rcv : True", - "5 | Tip : POLYX 0.000987" + "0 | Pips : Propose", + "1 | Proposal [1/2] : Remark", + "1 | Proposal [2/2] : 3434", + "2 | Deposit [1/2] : POLYX 25612428566640944380857301230667", + "2 | Deposit [2/2] : 6.766461", + "3 | Url : https://myurl.url", + "4 | Description : This is a description", + "5 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Corporateballot : Attach ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Range [1/2] : 10000", - "2 | Range [2/2] : 20000", - "3 | Meta [1/5] : Title", - "3 | Meta [2/5] : MotionTitle", - "3 | Meta [3/5] : MotionInfoLink", - "3 | Meta [4/5] : ChoiceTitle1", - "3 | Meta [5/5] : ChoiceTitle2", - "4 | Rcv : True", + "0 | Pips : Propose", + "1 | Proposal [1/2] : Remark", + "1 | Proposal [2/2] : 3434", + "2 | Deposit [1/2] : POLYX 25612428566640944380857301230667", + "2 | Deposit [2/2] : 6.766461", + "3 | Url : https://myurl.url", + "4 | Description : This is a description", "5 | Chain : Polymesh", - "6 | Nonce : 1", - "7 | Tip : POLYX 0.000987", + "6 | Nonce : 0", + "7 | Tip : POLYX 55.555555", "8 | Era Phase : 61", "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1075, - "name": "Corporateballot_Attach_ballot", - "blob": "1f005449434b45522d31323341416fec21001027000000000000204e000000000000145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c653200d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1065, + "name": "Pips_Propose", + "blob": "21060000083434fd56e5cad3287b54b2352f703dbeafc0014468747470733a2f2f6d7975726c2e75726c0154546869732069732061206465736372697074696f6ed50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateballot : Attach ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Range [1/2] : 10000", - "2 | Range [2/2] : 20000", - "3 | Meta [1/5] : Title", - "3 | Meta [2/5] : MotionTitle", - "3 | Meta [3/5] : MotionInfoLink", - "3 | Meta [4/5] : ChoiceTitle1", - "3 | Meta [5/5] : ChoiceTitle2", - "4 | Rcv : False" + "0 | Pips : Propose", + "1 | Proposal [1/2] : Remark", + "1 | Proposal [2/2] : 3434", + "2 | Deposit [1/2] : POLYX 25612428566640944380857301230667", + "2 | Deposit [2/2] : 6.766461", + "3 | Url : https://myurl.url", + "4 | Description : This is a description", + "5 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Corporateballot : Attach ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Range [1/2] : 10000", - "2 | Range [2/2] : 20000", - "3 | Meta [1/5] : Title", - "3 | Meta [2/5] : MotionTitle", - "3 | Meta [3/5] : MotionInfoLink", - "3 | Meta [4/5] : ChoiceTitle1", - "3 | Meta [5/5] : ChoiceTitle2", - "4 | Rcv : False", + "0 | Pips : Propose", + "1 | Proposal [1/2] : Remark", + "1 | Proposal [2/2] : 3434", + "2 | Deposit [1/2] : POLYX 25612428566640944380857301230667", + "2 | Deposit [2/2] : 6.766461", + "3 | Url : https://myurl.url", + "4 | Description : This is a description", "5 | Chain : Polymesh", "6 | Nonce : 100", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Tip : POLYX 0.000987", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1076, - "name": "Corporateballot_Vote", - "blob": "1f015449434b45522d31323341416fec210008ee0c5201000000000000000000000000011713fd23670000000000000000000000000001490ed50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1066, + "name": "Pips_Vote", + "blob": "2107775b000000fd56e5cad3287b54b2352f703dbeafc0d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateballot : Vote", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Votes [1/4] : POLYX 22.154478", - "2 | Votes [2/4] : 4887", - "2 | Votes [3/4] : POLYX 6.759421", - "2 | Votes [4/4] : 3657" + "0 | Pips : Vote", + "1 | Id : 23415", + "2 | Aye or nay : False", + "3 | Deposit [1/2] : POLYX 25612428566640944380857301230667", + "3 | Deposit [2/2] : 6.766461" ], "output_expert": [ - "0 | Corporateballot : Vote", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Votes [1/4] : POLYX 22.154478", - "2 | Votes [2/4] : 4887", - "2 | Votes [3/4] : POLYX 6.759421", - "2 | Votes [4/4] : 3657", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Vote", + "1 | Id : 23415", + "2 | Aye or nay : False", + "3 | Deposit [1/2] : POLYX 25612428566640944380857301230667", + "3 | Deposit [2/2] : 6.766461", + "4 | Chain : Polymesh", + "5 | Nonce : 1", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1077, - "name": "Corporateballot_Vote", - "blob": "1f015449434b45522d31323341416fec210008ee0c5201000000000000000000000000011713fd23670000000000000000000000000001490ed503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1067, + "name": "Pips_Vote", + "blob": "2107775b000001fd56e5cad3287b54b2352f703dbeafc0d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateballot : Vote", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Votes [1/4] : POLYX 22.154478", - "2 | Votes [2/4] : 4887", - "2 | Votes [3/4] : POLYX 6.759421", - "2 | Votes [4/4] : 3657", - "3 | Tip : POLYX 1234.56789" + "0 | Pips : Vote", + "1 | Id : 23415", + "2 | Aye or nay : True", + "3 | Deposit [1/2] : POLYX 25612428566640944380857301230667", + "3 | Deposit [2/2] : 6.766461" ], "output_expert": [ - "0 | Corporateballot : Vote", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Votes [1/4] : POLYX 22.154478", - "2 | Votes [2/4] : 4887", - "2 | Votes [3/4] : POLYX 6.759421", - "2 | Votes [4/4] : 3657", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 1234.56789", + "0 | Pips : Vote", + "1 | Id : 23415", + "2 | Aye or nay : True", + "3 | Deposit [1/2] : POLYX 25612428566640944380857301230667", + "3 | Deposit [2/2] : 6.766461", + "4 | Chain : Polymesh", + "5 | Nonce : 1", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1078, - "name": "Corporateballot_Vote", - "blob": "1f015449434b45522d31323341416fec210008ee0c5201000000000000000000000000011713fd23670000000000000000000000000001490ed50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1068, + "name": "Pips_Vote", + "blob": "21070000000001fd56e5cad3287b54b2352f703dbeafc0d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateballot : Vote", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Votes [1/4] : POLYX 22.154478", - "2 | Votes [2/4] : 4887", - "2 | Votes [3/4] : POLYX 6.759421", - "2 | Votes [4/4] : 3657", - "3 | Tip : POLYX 55.555555" + "0 | Pips : Vote", + "1 | Id : 0", + "2 | Aye or nay : True", + "3 | Deposit [1/2] : POLYX 25612428566640944380857301230667", + "3 | Deposit [2/2] : 6.766461", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Corporateballot : Vote", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Votes [1/4] : POLYX 22.154478", - "2 | Votes [2/4] : 4887", - "2 | Votes [3/4] : POLYX 6.759421", - "2 | Votes [4/4] : 3657", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Vote", + "1 | Id : 0", + "2 | Aye or nay : True", + "3 | Deposit [1/2] : POLYX 25612428566640944380857301230667", + "3 | Deposit [2/2] : 6.766461", + "4 | Chain : Polymesh", + "5 | Nonce : 100", + "6 | Tip : POLYX 5552342.355555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1079, - "name": "Corporateballot_Vote", - "blob": "1f015449434b45522d31323341416fec210008ee0c5201000000000000000000000000011713fd23670000000000000000000000000001490ed50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1069, + "name": "Pips_Vote", + "blob": "2107775b000000fd56e5cad3287b54b2352f703dbeafc0d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateballot : Vote", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Votes [1/4] : POLYX 22.154478", - "2 | Votes [2/4] : 4887", - "2 | Votes [3/4] : POLYX 6.759421", - "2 | Votes [4/4] : 3657", - "3 | Tip : POLYX 55.555555" + "0 | Pips : Vote", + "1 | Id : 23415", + "2 | Aye or nay : False", + "3 | Deposit [1/2] : POLYX 25612428566640944380857301230667", + "3 | Deposit [2/2] : 6.766461", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Corporateballot : Vote", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Votes [1/4] : POLYX 22.154478", - "2 | Votes [2/4] : 4887", - "2 | Votes [3/4] : POLYX 6.759421", - "2 | Votes [4/4] : 3657", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Vote", + "1 | Id : 23415", + "2 | Aye or nay : False", + "3 | Deposit [1/2] : POLYX 25612428566640944380857301230667", + "3 | Deposit [2/2] : 6.766461", + "4 | Chain : Polymesh", + "5 | Nonce : 100", + "6 | Tip : POLYX 1234.56789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1080, - "name": "Corporateballot_Vote", - "blob": "1f015449434b45522d31323341416fec210000d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1070, + "name": "Pips_Vote", + "blob": "2107775b000000fd56e5cad3287b54b2352f703dbeafc0d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateballot : Vote", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Votes : ", - "3 | Tip : POLYX 5552342.355555" + "0 | Pips : Vote", + "1 | Id : 23415", + "2 | Aye or nay : False", + "3 | Deposit [1/2] : POLYX 25612428566640944380857301230667", + "3 | Deposit [2/2] : 6.766461", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Corporateballot : Vote", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Votes : ", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Vote", + "1 | Id : 23415", + "2 | Aye or nay : False", + "3 | Deposit [1/2] : POLYX 25612428566640944380857301230667", + "3 | Deposit [2/2] : 6.766461", + "4 | Chain : Polymesh", + "5 | Nonce : 50283", + "6 | Tip : POLYX 1234.56789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1081, - "name": "Corporateballot_Change_end", - "blob": "1f025449434b45522d31323341416fec21000001000000000000d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1071, + "name": "Pips_Approve_committee_proposal", + "blob": "2108775b0000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateballot : Change end", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | End : 256", - "3 | Tip : POLYX 0.000987" + "0 | Pips : Approve committee proposal", + "1 | Id : 23415" ], "output_expert": [ - "0 | Corporateballot : Change end", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | End : 256", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Approve committee proposal", + "1 | Id : 23415", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1082, - "name": "Corporateballot_Change_end", - "blob": "1f025449434b45522d31323341416fec21000008000000000000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1072, + "name": "Pips_Approve_committee_proposal", + "blob": "210800000000d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateballot : Change end", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | End : 2048", - "3 | Tip : POLYX 1234.56789" + "0 | Pips : Approve committee proposal", + "1 | Id : 0", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Corporateballot : Change end", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | End : 2048", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Approve committee proposal", + "1 | Id : 0", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1083, - "name": "Corporateballot_Change_end", - "blob": "1f025449434b45522d31323341416fec21000001000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1073, + "name": "Pips_Approve_committee_proposal", + "blob": "210800000000d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateballot : Change end", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | End : 256", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Pips : Approve committee proposal", + "1 | Id : 0", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Corporateballot : Change end", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | End : 256", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Approve committee proposal", + "1 | Id : 0", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1084, - "name": "Corporateballot_Change_end", - "blob": "1f025449434b45522d31323341416fec21008000000000000000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1074, + "name": "Pips_Approve_committee_proposal", + "blob": "2108775b0000d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateballot : Change end", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | End : 128", - "3 | Tip : POLYX 55.555555" + "0 | Pips : Approve committee proposal", + "1 | Id : 23415", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Corporateballot : Change end", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | End : 128", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Approve committee proposal", + "1 | Id : 23415", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1085, - "name": "Corporateballot_Change_end", - "blob": "1f025449434b45522d31323341416fec21008000000000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1075, + "name": "Pips_Approve_committee_proposal", + "blob": "2108db030000d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateballot : Change end", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | End : 128", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Pips : Approve committee proposal", + "1 | Id : 987", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Corporateballot : Change end", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | End : 128", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Approve committee proposal", + "1 | Id : 987", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1086, - "name": "Corporateballot_Change_meta", - "blob": "1f035449434b45522d31323341416fec2100145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c6532d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1076, + "name": "Pips_Reject_proposal", + "blob": "2109775b0000d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateballot : Change meta", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Meta [1/5] : Title", - "2 | Meta [2/5] : MotionTitle", - "2 | Meta [3/5] : MotionInfoLink", - "2 | Meta [4/5] : ChoiceTitle1", - "2 | Meta [5/5] : ChoiceTitle2" + "0 | Pips : Reject proposal", + "1 | Id : 23415", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Corporateballot : Change meta", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Meta [1/5] : Title", - "2 | Meta [2/5] : MotionTitle", - "2 | Meta [3/5] : MotionInfoLink", - "2 | Meta [4/5] : ChoiceTitle1", - "2 | Meta [5/5] : ChoiceTitle2", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", + "0 | Pips : Reject proposal", + "1 | Id : 23415", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1087, - "name": "Corporateballot_Change_meta", - "blob": "1f035449434b45522d31323341416fec2100145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c6532d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1077, + "name": "Pips_Reject_proposal", + "blob": "210900000000d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateballot : Change meta", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Meta [1/5] : Title", - "2 | Meta [2/5] : MotionTitle", - "2 | Meta [3/5] : MotionInfoLink", - "2 | Meta [4/5] : ChoiceTitle1", - "2 | Meta [5/5] : ChoiceTitle2" + "0 | Pips : Reject proposal", + "1 | Id : 0", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Corporateballot : Change meta", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Meta [1/5] : Title", - "2 | Meta [2/5] : MotionTitle", - "2 | Meta [3/5] : MotionInfoLink", - "2 | Meta [4/5] : ChoiceTitle1", - "2 | Meta [5/5] : ChoiceTitle2", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", + "0 | Pips : Reject proposal", + "1 | Id : 0", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1088, - "name": "Corporateballot_Change_meta", - "blob": "1f035449434b45522d31323341416fec2100145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c6532d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1078, + "name": "Pips_Reject_proposal", + "blob": "2109775b0000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateballot : Change meta", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Meta [1/5] : Title", - "2 | Meta [2/5] : MotionTitle", - "2 | Meta [3/5] : MotionInfoLink", - "2 | Meta [4/5] : ChoiceTitle1", - "2 | Meta [5/5] : ChoiceTitle2", - "3 | Tip : POLYX 0.000987" + "0 | Pips : Reject proposal", + "1 | Id : 23415" ], "output_expert": [ - "0 | Corporateballot : Change meta", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Meta [1/5] : Title", - "2 | Meta [2/5] : MotionTitle", - "2 | Meta [3/5] : MotionInfoLink", - "2 | Meta [4/5] : ChoiceTitle1", - "2 | Meta [5/5] : ChoiceTitle2", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Reject proposal", + "1 | Id : 23415", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1089, - "name": "Corporateballot_Change_meta", - "blob": "1f035449434b45522d31323341416fec2100145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c6532d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1079, + "name": "Pips_Reject_proposal", + "blob": "210935300000d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateballot : Change meta", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Meta [1/5] : Title", - "2 | Meta [2/5] : MotionTitle", - "2 | Meta [3/5] : MotionInfoLink", - "2 | Meta [4/5] : ChoiceTitle1", - "2 | Meta [5/5] : ChoiceTitle2", - "3 | Tip : POLYX 55.555555" + "0 | Pips : Reject proposal", + "1 | Id : 12341", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Corporateballot : Change meta", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Meta [1/5] : Title", - "2 | Meta [2/5] : MotionTitle", - "2 | Meta [3/5] : MotionInfoLink", - "2 | Meta [4/5] : ChoiceTitle1", - "2 | Meta [5/5] : ChoiceTitle2", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Reject proposal", + "1 | Id : 12341", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1090, - "name": "Corporateballot_Change_meta", - "blob": "1f035449434b45522d31323341416fec2100145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c6532d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1080, + "name": "Pips_Reject_proposal", + "blob": "210935300000d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateballot : Change meta", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Meta [1/5] : Title", - "2 | Meta [2/5] : MotionTitle", - "2 | Meta [3/5] : MotionInfoLink", - "2 | Meta [4/5] : ChoiceTitle1", - "2 | Meta [5/5] : ChoiceTitle2" + "0 | Pips : Reject proposal", + "1 | Id : 12341", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Corporateballot : Change meta", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Meta [1/5] : Title", - "2 | Meta [2/5] : MotionTitle", - "2 | Meta [3/5] : MotionInfoLink", - "2 | Meta [4/5] : ChoiceTitle1", - "2 | Meta [5/5] : ChoiceTitle2", - "3 | Chain : Polymesh", - "4 | Nonce : 100", + "0 | Pips : Reject proposal", + "1 | Id : 12341", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1091, - "name": "Corporateballot_Change_rcv", - "blob": "1f045449434b45522d31323341416fec210001d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1081, + "name": "Pips_Prune_proposal", + "blob": "210a35300000d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateballot : Change rcv", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Rcv : True" + "0 | Pips : Prune proposal", + "1 | Id : 12341", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Corporateballot : Change rcv", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Rcv : True", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", + "0 | Pips : Prune proposal", + "1 | Id : 12341", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1092, - "name": "Corporateballot_Change_rcv", - "blob": "1f045449434b45522d31323341416fec210000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1082, + "name": "Pips_Prune_proposal", + "blob": "210adb030000d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateballot : Change rcv", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Rcv : False", - "3 | Tip : POLYX 5552342.355555" + "0 | Pips : Prune proposal", + "1 | Id : 987", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Corporateballot : Change rcv", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Rcv : False", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Prune proposal", + "1 | Id : 987", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1093, - "name": "Corporateballot_Change_rcv", - "blob": "1f045449434b45522d31323341416fec210001d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1083, + "name": "Pips_Prune_proposal", + "blob": "210adb030000d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateballot : Change rcv", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Rcv : True" + "0 | Pips : Prune proposal", + "1 | Id : 987", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Corporateballot : Change rcv", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Rcv : True", - "3 | Chain : Polymesh", - "4 | Nonce : 1", + "0 | Pips : Prune proposal", + "1 | Id : 987", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1094, - "name": "Corporateballot_Change_rcv", - "blob": "1f045449434b45522d31323341416fec210000d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1084, + "name": "Pips_Prune_proposal", + "blob": "210a775b0000d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateballot : Change rcv", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Rcv : False", - "3 | Tip : POLYX 0.000987" + "0 | Pips : Prune proposal", + "1 | Id : 23415", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Corporateballot : Change rcv", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Rcv : False", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Prune proposal", + "1 | Id : 23415", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1095, - "name": "Corporateballot_Change_rcv", - "blob": "1f045449434b45522d31323341416fec210000d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1085, + "name": "Pips_Prune_proposal", + "blob": "210a775b0000d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateballot : Change rcv", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Rcv : False", + "0 | Pips : Prune proposal", + "1 | Id : 23415", + "2 | Tip : POLYX 1234.56789" + ], + "output_expert": [ + "0 | Pips : Prune proposal", + "1 | Id : 23415", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 1086, + "name": "Pips_Reschedule_execution", + "blob": "210bdb03000001149d1d21d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Pips : Reschedule execution", + "1 | Id : 987", + "2 | Until : 555588884", "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Corporateballot : Change rcv", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Rcv : False", + "0 | Pips : Reschedule execution", + "1 | Id : 987", + "2 | Until : 555588884", "3 | Chain : Polymesh", - "4 | Nonce : 0", + "4 | Nonce : 1", "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1096, - "name": "Corporateballot_Remove_ballot", - "blob": "1f055449434b45522d31323341416fec2100d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1087, + "name": "Pips_Reschedule_execution", + "blob": "210b0000000001149d1d21d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateballot : Remove ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 0.000987" + "0 | Pips : Reschedule execution", + "1 | Id : 0", + "2 | Until : 555588884", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Corporateballot : Remove ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Reschedule execution", + "1 | Id : 0", + "2 | Until : 555588884", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1097, - "name": "Corporateballot_Remove_ballot", - "blob": "1f055449434b45522d31323341416fec2100d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1088, + "name": "Pips_Reschedule_execution", + "blob": "210b3530000001149d1d21d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateballot : Remove ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 0.000987" + "0 | Pips : Reschedule execution", + "1 | Id : 12341", + "2 | Until : 555588884", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Corporateballot : Remove ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Reschedule execution", + "1 | Id : 12341", + "2 | Until : 555588884", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1098, - "name": "Corporateballot_Remove_ballot", - "blob": "1f055449434b45522d31323341416fec2100d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1089, + "name": "Pips_Reschedule_execution", + "blob": "210bdb03000001149d1d21d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateballot : Remove ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Pips : Reschedule execution", + "1 | Id : 987", + "2 | Until : 555588884", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Corporateballot : Remove ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Reschedule execution", + "1 | Id : 987", + "2 | Until : 555588884", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1099, - "name": "Corporateballot_Remove_ballot", - "blob": "1f055449434b45522d31323341416fec2100d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1090, + "name": "Pips_Reschedule_execution", + "blob": "210b353000000123620000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateballot : Remove ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 55.555555" + "0 | Pips : Reschedule execution", + "1 | Id : 12341", + "2 | Until : 25123" ], "output_expert": [ - "0 | Corporateballot : Remove ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", + "0 | Pips : Reschedule execution", + "1 | Id : 12341", + "2 | Until : 25123", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1100, - "name": "Corporateballot_Remove_ballot", - "blob": "1f055449434b45522d31323341416fec2100d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1091, + "name": "Pips_Clear_snapshot", + "blob": "210cd5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Corporateballot : Remove ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 1234.56789" + "0 | Pips : Clear snapshot" ], "output_expert": [ - "0 | Corporateballot : Remove ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Clear snapshot", + "1 | Chain : Polymesh", + "2 | Nonce : 1", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "5 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1101, - "name": "Pips_Set_prune_historical_pips", - "blob": "210000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1092, + "name": "Pips_Clear_snapshot", + "blob": "210cd5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Set prune historical pips", - "1 | Prune : False", - "2 | Tip : POLYX 1234.56789" + "0 | Pips : Clear snapshot", + "1 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Pips : Set prune historical pips", - "1 | Prune : False", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1102, - "name": "Pips_Set_prune_historical_pips", - "blob": "210000d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "0 | Pips : Clear snapshot", + "1 | Chain : Polymesh", + "2 | Nonce : 2339", + "3 | Tip : POLYX 55.555555", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 1093, + "name": "Pips_Clear_snapshot", + "blob": "210cd5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Set prune historical pips", - "1 | Prune : False", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Pips : Clear snapshot", + "1 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Pips : Set prune historical pips", - "1 | Prune : False", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Clear snapshot", + "1 | Chain : Polymesh", + "2 | Nonce : 2339", + "3 | Tip : POLYX 1234.56789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1103, - "name": "Pips_Set_prune_historical_pips", - "blob": "210001d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1094, + "name": "Pips_Clear_snapshot", + "blob": "210cd503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Set prune historical pips", - "1 | Prune : True", - "2 | Tip : POLYX 5552342.355555" + "0 | Pips : Clear snapshot", + "1 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Pips : Set prune historical pips", - "1 | Prune : True", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Clear snapshot", + "1 | Chain : Polymesh", + "2 | Nonce : 50283", + "3 | Tip : POLYX 1234.56789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1104, - "name": "Pips_Set_prune_historical_pips", - "blob": "210000d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1095, + "name": "Pips_Clear_snapshot", + "blob": "210cd5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Set prune historical pips", - "1 | Prune : False", - "2 | Tip : POLYX 55.555555" + "0 | Pips : Clear snapshot" ], "output_expert": [ - "0 | Pips : Set prune historical pips", - "1 | Prune : False", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Clear snapshot", + "1 | Chain : Polymesh", + "2 | Nonce : 0", + "3 | Era Phase : 61", + "4 | Era Period : 64", + "5 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "5 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1105, - "name": "Pips_Set_prune_historical_pips", - "blob": "210000d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1096, + "name": "Pips_Snapshot", + "blob": "210dd503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Set prune historical pips", - "1 | Prune : False", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Pips : Snapshot", + "1 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Pips : Set prune historical pips", - "1 | Prune : False", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Snapshot", + "1 | Chain : Polymesh", + "2 | Nonce : 100", + "3 | Tip : POLYX 1234.56789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1106, - "name": "Pips_Set_min_proposal_deposit", - "blob": "210140d8127ea9f0d1cdf6126ec9c838c9bad503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1097, + "name": "Pips_Snapshot", + "blob": "210dd503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Set min proposal deposit", - "1 | Deposit [1/2] : POLYX 24828121060746971842942860419690", - "1 | Deposit [2/2] : 4.68768" + "0 | Pips : Snapshot", + "1 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Pips : Set min proposal deposit", - "1 | Deposit [1/2] : POLYX 24828121060746971842942860419690", - "1 | Deposit [2/2] : 4.68768", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "0 | Pips : Snapshot", + "1 | Chain : Polymesh", + "2 | Nonce : 50283", + "3 | Tip : POLYX 55.555555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1107, - "name": "Pips_Set_min_proposal_deposit", - "blob": "210140d8127ea9f0d1cdf6126ec9c838c9bad503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1098, + "name": "Pips_Snapshot", + "blob": "210dd5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Set min proposal deposit", - "1 | Deposit [1/2] : POLYX 24828121060746971842942860419690", - "1 | Deposit [2/2] : 4.68768", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Pips : Snapshot", + "1 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Pips : Set min proposal deposit", - "1 | Deposit [1/2] : POLYX 24828121060746971842942860419690", - "1 | Deposit [2/2] : 4.68768", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Snapshot", + "1 | Chain : Polymesh", + "2 | Nonce : 1", + "3 | Tip : POLYX 1234.56789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1108, - "name": "Pips_Set_min_proposal_deposit", - "blob": "210140d8127ea9f0d1cdf6126ec9c838c9bad503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1099, + "name": "Pips_Snapshot", + "blob": "210dd503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Set min proposal deposit", - "1 | Deposit [1/2] : POLYX 24828121060746971842942860419690", - "1 | Deposit [2/2] : 4.68768" + "0 | Pips : Snapshot", + "1 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Pips : Set min proposal deposit", - "1 | Deposit [1/2] : POLYX 24828121060746971842942860419690", - "1 | Deposit [2/2] : 4.68768", - "2 | Chain : Polymesh", - "3 | Nonce : 1", + "0 | Pips : Snapshot", + "1 | Chain : Polymesh", + "2 | Nonce : 50283", + "3 | Tip : POLYX 55.555555", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1109, - "name": "Pips_Set_min_proposal_deposit", - "blob": "210140d8127ea9f0d1cdf6126ec9c838c9bad503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1100, + "name": "Pips_Snapshot", + "blob": "210dd5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Set min proposal deposit", - "1 | Deposit [1/2] : POLYX 24828121060746971842942860419690", - "1 | Deposit [2/2] : 4.68768", - "2 | Tip : POLYX 5552342.355555" + "0 | Pips : Snapshot", + "1 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Pips : Set min proposal deposit", - "1 | Deposit [1/2] : POLYX 24828121060746971842942860419690", - "1 | Deposit [2/2] : 4.68768", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Snapshot", + "1 | Chain : Polymesh", + "2 | Nonce : 0", + "3 | Tip : POLYX 1234.56789", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1110, - "name": "Pips_Set_min_proposal_deposit", - "blob": "210140d8127ea9f0d1cdf6126ec9c838c9bad503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1101, + "name": "Pips_Enact_snapshot_results", + "blob": "210e0893150000007510000002d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Set min proposal deposit", - "1 | Deposit [1/2] : POLYX 24828121060746971842942860419690", - "1 | Deposit [2/2] : 4.68768", - "2 | Tip : POLYX 1234.56789" + "0 | Pips : Enact snapshot results", + "1 | Results [1/4] : 5523", + "1 | Results [2/4] : Approve", + "1 | Results [3/4] : 4213", + "1 | Results [4/4] : Skip", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Pips : Set min proposal deposit", - "1 | Deposit [1/2] : POLYX 24828121060746971842942860419690", - "1 | Deposit [2/2] : 4.68768", + "0 | Pips : Enact snapshot results", + "1 | Results [1/4] : 5523", + "1 | Results [2/4] : Approve", + "1 | Results [3/4] : 4213", + "1 | Results [4/4] : Skip", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 2339", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1111, - "name": "Pips_Set_default_enactment_period", - "blob": "21027b000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1102, + "name": "Pips_Enact_snapshot_results", + "blob": "210e0893150000007510000002d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Set default enactment period", - "1 | Duration : 123", + "0 | Pips : Enact snapshot results", + "1 | Results [1/4] : 5523", + "1 | Results [2/4] : Approve", + "1 | Results [3/4] : 4213", + "1 | Results [4/4] : Skip", "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Pips : Set default enactment period", - "1 | Duration : 123", + "0 | Pips : Enact snapshot results", + "1 | Results [1/4] : 5523", + "1 | Results [2/4] : Approve", + "1 | Results [3/4] : 4213", + "1 | Results [4/4] : Skip", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 2339", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1112, - "name": "Pips_Set_default_enactment_period", - "blob": "2102ff030000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1103, + "name": "Pips_Enact_snapshot_results", + "blob": "210e0893150000007510000002d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Set default enactment period", - "1 | Duration : 1023", - "2 | Tip : POLYX 1234.56789" + "0 | Pips : Enact snapshot results", + "1 | Results [1/4] : 5523", + "1 | Results [2/4] : Approve", + "1 | Results [3/4] : 4213", + "1 | Results [4/4] : Skip", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Pips : Set default enactment period", - "1 | Duration : 1023", + "0 | Pips : Enact snapshot results", + "1 | Results [1/4] : 5523", + "1 | Results [2/4] : Approve", + "1 | Results [3/4] : 4213", + "1 | Results [4/4] : Skip", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 1", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1113, - "name": "Pips_Set_default_enactment_period", - "blob": "210200000000d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1104, + "name": "Pips_Enact_snapshot_results", + "blob": "210e0893150000007510000002d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Set default enactment period", - "1 | Duration : 0", - "2 | Tip : POLYX 0.000987" + "0 | Pips : Enact snapshot results", + "1 | Results [1/4] : 5523", + "1 | Results [2/4] : Approve", + "1 | Results [3/4] : 4213", + "1 | Results [4/4] : Skip", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Pips : Set default enactment period", - "1 | Duration : 0", + "0 | Pips : Enact snapshot results", + "1 | Results [1/4] : 5523", + "1 | Results [2/4] : Approve", + "1 | Results [3/4] : 4213", + "1 | Results [4/4] : Skip", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", + "3 | Nonce : 2339", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1114, - "name": "Pips_Set_default_enactment_period", - "blob": "210201000000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1105, + "name": "Pips_Enact_snapshot_results", + "blob": "210e0893150000007510000002d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Set default enactment period", - "1 | Duration : 1" + "0 | Pips : Enact snapshot results", + "1 | Results [1/4] : 5523", + "1 | Results [2/4] : Approve", + "1 | Results [3/4] : 4213", + "1 | Results [4/4] : Skip", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Pips : Set default enactment period", - "1 | Duration : 1", + "0 | Pips : Enact snapshot results", + "1 | Results [1/4] : 5523", + "1 | Results [2/4] : Approve", + "1 | Results [3/4] : 4213", + "1 | Results [4/4] : Skip", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1115, - "name": "Pips_Set_default_enactment_period", - "blob": "21027b000000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1106, + "name": "Pips_Execute_scheduled_pip", + "blob": "210f00000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Set default enactment period", - "1 | Duration : 123" + "0 | Pips : Execute scheduled pip", + "1 | Id : 0", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Pips : Set default enactment period", - "1 | Duration : 123", + "0 | Pips : Execute scheduled pip", + "1 | Id : 0", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 100", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1116, - "name": "Pips_Set_pending_pip_expiry", - "blob": "210300a1860100d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1107, + "name": "Pips_Execute_scheduled_pip", + "blob": "210f775b0000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Set pending pip expiry", - "1 | Expiry : 100001", - "2 | Tip : POLYX 5552342.355555" + "0 | Pips : Execute scheduled pip", + "1 | Id : 23415", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Pips : Set pending pip expiry", - "1 | Expiry : 100001", + "0 | Pips : Execute scheduled pip", + "1 | Id : 23415", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 2339", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1117, - "name": "Pips_Set_pending_pip_expiry", - "blob": "210300a1860100d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1108, + "name": "Pips_Execute_scheduled_pip", + "blob": "210f00000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Set pending pip expiry", - "1 | Expiry : 100001", - "2 | Tip : POLYX 1234.56789" + "0 | Pips : Execute scheduled pip", + "1 | Id : 0", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Pips : Set pending pip expiry", - "1 | Expiry : 100001", + "0 | Pips : Execute scheduled pip", + "1 | Id : 0", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1118, - "name": "Pips_Set_pending_pip_expiry", - "blob": "210301d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1109, + "name": "Pips_Execute_scheduled_pip", + "blob": "210f35300000d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Set pending pip expiry", - "1 | Expiry : None", - "2 | Tip : POLYX 5552342.355555" + "0 | Pips : Execute scheduled pip", + "1 | Id : 12341", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Pips : Set pending pip expiry", - "1 | Expiry : None", + "0 | Pips : Execute scheduled pip", + "1 | Id : 12341", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1119, - "name": "Pips_Set_pending_pip_expiry", - "blob": "210301d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1110, + "name": "Pips_Execute_scheduled_pip", + "blob": "210f35300000d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Set pending pip expiry", - "1 | Expiry : None", - "2 | Tip : POLYX 5552342.355555" + "0 | Pips : Execute scheduled pip", + "1 | Id : 12341", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Pips : Set pending pip expiry", - "1 | Expiry : None", + "0 | Pips : Execute scheduled pip", + "1 | Id : 12341", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 1", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1120, - "name": "Pips_Set_pending_pip_expiry", - "blob": "210300a1860100d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1111, + "name": "Pips_Expire_scheduled_pip", + "blob": "2110c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c490770835300000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Set pending pip expiry", - "1 | Expiry : 100001", - "2 | Tip : POLYX 5552342.355555" + "0 | Pips : Expire scheduled pip", + "1 | Did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Did [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Id : 12341" ], "output_expert": [ - "0 | Pips : Set pending pip expiry", - "1 | Expiry : 100001", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", + "0 | Pips : Expire scheduled pip", + "1 | Did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Did [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Id : 12341", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1121, - "name": "Pips_Set_max_pip_skip_count", - "blob": "2104ffd5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1112, + "name": "Pips_Expire_scheduled_pip", + "blob": "2110c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c490770835300000d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Set max pip skip count", - "1 | Max : 255", - "2 | Tip : POLYX 0.000987" + "0 | Pips : Expire scheduled pip", + "1 | Did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Did [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Id : 12341", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Pips : Set max pip skip count", - "1 | Max : 255", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Pips : Expire scheduled pip", + "1 | Did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Did [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Id : 12341", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1122, - "name": "Pips_Set_max_pip_skip_count", - "blob": "21040dd5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1113, + "name": "Pips_Expire_scheduled_pip", + "blob": "2110c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c490770800000000d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Set max pip skip count", - "1 | Max : 13", - "2 | Tip : POLYX 5552342.355555" + "0 | Pips : Expire scheduled pip", + "1 | Did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Did [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Id : 0" ], "output_expert": [ - "0 | Pips : Set max pip skip count", - "1 | Max : 13", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", + "0 | Pips : Expire scheduled pip", + "1 | Did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Did [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Id : 0", + "3 | Chain : Polymesh", + "4 | Nonce : 0", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1123, - "name": "Pips_Set_max_pip_skip_count", - "blob": "210400d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1114, + "name": "Pips_Expire_scheduled_pip", + "blob": "2110c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708775b0000d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Set max pip skip count", - "1 | Max : 0", - "2 | Tip : POLYX 5552342.355555" + "0 | Pips : Expire scheduled pip", + "1 | Did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Did [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Id : 23415" ], "output_expert": [ - "0 | Pips : Set max pip skip count", - "1 | Max : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", + "0 | Pips : Expire scheduled pip", + "1 | Did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Did [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Id : 23415", + "3 | Chain : Polymesh", + "4 | Nonce : 0", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1124, - "name": "Pips_Set_max_pip_skip_count", - "blob": "21040dd503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1115, + "name": "Pips_Expire_scheduled_pip", + "blob": "2110c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708db030000d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Set max pip skip count", - "1 | Max : 13", + "0 | Pips : Expire scheduled pip", + "1 | Did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Did [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Id : 987", + "3 | Tip : POLYX 5552342.355555" + ], + "output_expert": [ + "0 | Pips : Expire scheduled pip", + "1 | Did [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Did [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Id : 987", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 1116, + "name": "Portfolio_Create_portfolio", + "blob": "220034506f7274666f6c696f4e616d65d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Portfolio : Create portfolio", + "1 | Name : PortfolioName", "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Pips : Set max pip skip count", - "1 | Max : 13", + "0 | Portfolio : Create portfolio", + "1 | Name : PortfolioName", "2 | Chain : Polymesh", "3 | Nonce : 50283", "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1125, - "name": "Pips_Set_max_pip_skip_count", - "blob": "210434d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1117, + "name": "Portfolio_Create_portfolio", + "blob": "220034506f7274666f6c696f4e616d65d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Set max pip skip count", - "1 | Max : 52", - "2 | Tip : POLYX 55.555555" + "0 | Portfolio : Create portfolio", + "1 | Name : PortfolioName" ], "output_expert": [ - "0 | Pips : Set max pip skip count", - "1 | Max : 52", + "0 | Portfolio : Create portfolio", + "1 | Name : PortfolioName", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1126, - "name": "Pips_Set_active_pip_limit", - "blob": "2105d3040000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1118, + "name": "Portfolio_Create_portfolio", + "blob": "220034506f7274666f6c696f4e616d65d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Set active pip limit", - "1 | Limit : 1235", - "2 | Tip : POLYX 1234.56789" + "0 | Portfolio : Create portfolio", + "1 | Name : PortfolioName" ], "output_expert": [ - "0 | Pips : Set active pip limit", - "1 | Limit : 1235", + "0 | Portfolio : Create portfolio", + "1 | Name : PortfolioName", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1127, - "name": "Pips_Set_active_pip_limit", - "blob": "210534300000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1119, + "name": "Portfolio_Create_portfolio", + "blob": "220034506f7274666f6c696f4e616d65d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Set active pip limit", - "1 | Limit : 12340" + "0 | Portfolio : Create portfolio", + "1 | Name : PortfolioName", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Pips : Set active pip limit", - "1 | Limit : 12340", + "0 | Portfolio : Create portfolio", + "1 | Name : PortfolioName", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 0", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1128, - "name": "Pips_Set_active_pip_limit", - "blob": "21059d1c0000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1120, + "name": "Portfolio_Create_portfolio", + "blob": "220034506f7274666f6c696f4e616d65d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Set active pip limit", - "1 | Limit : 7325", - "2 | Tip : POLYX 1234.56789" + "0 | Portfolio : Create portfolio", + "1 | Name : PortfolioName", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Pips : Set active pip limit", - "1 | Limit : 7325", + "0 | Portfolio : Create portfolio", + "1 | Name : PortfolioName", "2 | Chain : Polymesh", "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1129, - "name": "Pips_Set_active_pip_limit", - "blob": "21059d1c0000d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1121, + "name": "Portfolio_Delete_portfolio", + "blob": "22012501000000000000d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Set active pip limit", - "1 | Limit : 7325" + "0 | Portfolio : Delete portfolio", + "1 | Num : 293" ], "output_expert": [ - "0 | Pips : Set active pip limit", - "1 | Limit : 7325", + "0 | Portfolio : Delete portfolio", + "1 | Num : 293", "2 | Chain : Polymesh", "3 | Nonce : 100", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1130, - "name": "Pips_Set_active_pip_limit", - "blob": "2105d3040000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1122, + "name": "Portfolio_Delete_portfolio", + "blob": "2201ff03000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Set active pip limit", - "1 | Limit : 1235", - "2 | Tip : POLYX 1234.56789" + "0 | Portfolio : Delete portfolio", + "1 | Num : 1023", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Pips : Set active pip limit", - "1 | Limit : 1235", + "0 | Portfolio : Delete portfolio", + "1 | Num : 1023", "2 | Chain : Polymesh", "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1131, - "name": "Pips_Propose", - "blob": "2106000008343440d8127ea9f0d1cdf6126ec9c838c9ba014468747470733a2f2f6d7975726c2e75726c0154546869732069732061206465736372697074696f6ed5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1123, + "name": "Portfolio_Delete_portfolio", + "blob": "2201ff03000000000000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Propose", - "1 | Proposal [1/2] : Remark", - "1 | Proposal [2/2] : 3434", - "2 | Deposit [1/2] : POLYX 24828121060746971842942860419690", - "2 | Deposit [2/2] : 4.68768", - "3 | Url : https://myurl.url", - "4 | Description : This is a description", - "5 | Tip : POLYX 0.000987" + "0 | Portfolio : Delete portfolio", + "1 | Num : 1023" ], "output_expert": [ - "0 | Pips : Propose", - "1 | Proposal [1/2] : Remark", - "1 | Proposal [2/2] : 3434", - "2 | Deposit [1/2] : POLYX 24828121060746971842942860419690", - "2 | Deposit [2/2] : 4.68768", - "3 | Url : https://myurl.url", - "4 | Description : This is a description", - "5 | Chain : Polymesh", - "6 | Nonce : 2339", - "7 | Tip : POLYX 0.000987", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Portfolio : Delete portfolio", + "1 | Num : 1023", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1132, - "name": "Pips_Propose", - "blob": "2106000008343440d8127ea9f0d1cdf6126ec9c838c9ba014468747470733a2f2f6d7975726c2e75726c0154546869732069732061206465736372697074696f6ed50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1124, + "name": "Portfolio_Delete_portfolio", + "blob": "22017b00000000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Propose", - "1 | Proposal [1/2] : Remark", - "1 | Proposal [2/2] : 3434", - "2 | Deposit [1/2] : POLYX 24828121060746971842942860419690", - "2 | Deposit [2/2] : 4.68768", - "3 | Url : https://myurl.url", - "4 | Description : This is a description", - "5 | Tip : POLYX 0.000987" + "0 | Portfolio : Delete portfolio", + "1 | Num : 123", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Pips : Propose", - "1 | Proposal [1/2] : Remark", - "1 | Proposal [2/2] : 3434", - "2 | Deposit [1/2] : POLYX 24828121060746971842942860419690", - "2 | Deposit [2/2] : 4.68768", - "3 | Url : https://myurl.url", - "4 | Description : This is a description", - "5 | Chain : Polymesh", - "6 | Nonce : 100", - "7 | Tip : POLYX 0.000987", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Portfolio : Delete portfolio", + "1 | Num : 123", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1133, - "name": "Pips_Propose", - "blob": "2106000008343440d8127ea9f0d1cdf6126ec9c838c9ba014468747470733a2f2f6d7975726c2e75726c0154546869732069732061206465736372697074696f6ed503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1125, + "name": "Portfolio_Delete_portfolio", + "blob": "22010000000000000000d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Propose", - "1 | Proposal [1/2] : Remark", - "1 | Proposal [2/2] : 3434", - "2 | Deposit [1/2] : POLYX 24828121060746971842942860419690", - "2 | Deposit [2/2] : 4.68768", - "3 | Url : https://myurl.url", - "4 | Description : This is a description", - "5 | Tip : POLYX 55.555555" + "0 | Portfolio : Delete portfolio", + "1 | Num : 0", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Pips : Propose", - "1 | Proposal [1/2] : Remark", - "1 | Proposal [2/2] : 3434", - "2 | Deposit [1/2] : POLYX 24828121060746971842942860419690", - "2 | Deposit [2/2] : 4.68768", - "3 | Url : https://myurl.url", - "4 | Description : This is a description", - "5 | Chain : Polymesh", - "6 | Nonce : 50283", - "7 | Tip : POLYX 55.555555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Portfolio : Delete portfolio", + "1 | Num : 0", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1134, - "name": "Pips_Propose", - "blob": "2106000008343440d8127ea9f0d1cdf6126ec9c838c9ba014468747470733a2f2f6d7975726c2e75726c0154546869732069732061206465736372697074696f6ed503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1126, + "name": "Portfolio_Rename_portfolio", + "blob": "2202b3e301000000000034506f7274666f6c696f4e616d65d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Propose", - "1 | Proposal [1/2] : Remark", - "1 | Proposal [2/2] : 3434", - "2 | Deposit [1/2] : POLYX 24828121060746971842942860419690", - "2 | Deposit [2/2] : 4.68768", - "3 | Url : https://myurl.url", - "4 | Description : This is a description" + "0 | Portfolio : Rename portfolio", + "1 | Num : 123827", + "2 | To name : PortfolioName", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Pips : Propose", - "1 | Proposal [1/2] : Remark", - "1 | Proposal [2/2] : 3434", - "2 | Deposit [1/2] : POLYX 24828121060746971842942860419690", - "2 | Deposit [2/2] : 4.68768", - "3 | Url : https://myurl.url", - "4 | Description : This is a description", - "5 | Chain : Polymesh", - "6 | Nonce : 0", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Portfolio : Rename portfolio", + "1 | Num : 123827", + "2 | To name : PortfolioName", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1135, - "name": "Pips_Propose", - "blob": "2106000008343440d8127ea9f0d1cdf6126ec9c838c9ba014468747470733a2f2f6d7975726c2e75726c0154546869732069732061206465736372697074696f6ed503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1127, + "name": "Portfolio_Rename_portfolio", + "blob": "2202ac3500000000000034506f7274666f6c696f4e616d65d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Propose", - "1 | Proposal [1/2] : Remark", - "1 | Proposal [2/2] : 3434", - "2 | Deposit [1/2] : POLYX 24828121060746971842942860419690", - "2 | Deposit [2/2] : 4.68768", - "3 | Url : https://myurl.url", - "4 | Description : This is a description", - "5 | Tip : POLYX 5552342.355555" + "0 | Portfolio : Rename portfolio", + "1 | Num : 13740", + "2 | To name : PortfolioName", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Pips : Propose", - "1 | Proposal [1/2] : Remark", - "1 | Proposal [2/2] : 3434", - "2 | Deposit [1/2] : POLYX 24828121060746971842942860419690", - "2 | Deposit [2/2] : 4.68768", - "3 | Url : https://myurl.url", - "4 | Description : This is a description", - "5 | Chain : Polymesh", - "6 | Nonce : 0", - "7 | Tip : POLYX 5552342.355555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Portfolio : Rename portfolio", + "1 | Num : 13740", + "2 | To name : PortfolioName", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1136, - "name": "Pips_Vote", - "blob": "2107775b00000140d8127ea9f0d1cdf6126ec9c838c9bad5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1128, + "name": "Portfolio_Rename_portfolio", + "blob": "2202250100000000000034506f7274666f6c696f4e616d65d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Vote", - "1 | Id : 23415", - "2 | Aye or nay : True", - "3 | Deposit [1/2] : POLYX 24828121060746971842942860419690", - "3 | Deposit [2/2] : 4.68768", - "4 | Tip : POLYX 0.000987" + "0 | Portfolio : Rename portfolio", + "1 | Num : 293", + "2 | To name : PortfolioName", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Pips : Vote", - "1 | Id : 23415", - "2 | Aye or nay : True", - "3 | Deposit [1/2] : POLYX 24828121060746971842942860419690", - "3 | Deposit [2/2] : 4.68768", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Portfolio : Rename portfolio", + "1 | Num : 293", + "2 | To name : PortfolioName", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1137, - "name": "Pips_Vote", - "blob": "2107db0300000140d8127ea9f0d1cdf6126ec9c838c9bad503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1129, + "name": "Portfolio_Rename_portfolio", + "blob": "2202000000000000000034506f7274666f6c696f4e616d65d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Vote", - "1 | Id : 987", - "2 | Aye or nay : True", - "3 | Deposit [1/2] : POLYX 24828121060746971842942860419690", - "3 | Deposit [2/2] : 4.68768", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "0 | Portfolio : Rename portfolio", + "1 | Num : 0", + "2 | To name : PortfolioName" ], "output_expert": [ - "0 | Pips : Vote", - "1 | Id : 987", - "2 | Aye or nay : True", - "3 | Deposit [1/2] : POLYX 24828121060746971842942860419690", - "3 | Deposit [2/2] : 4.68768", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1138, - "name": "Pips_Vote", - "blob": "2107000000000040d8127ea9f0d1cdf6126ec9c838c9bad503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Vote", - "1 | Id : 0", - "2 | Aye or nay : False", - "3 | Deposit [1/2] : POLYX 24828121060746971842942860419690", - "3 | Deposit [2/2] : 4.68768", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Pips : Vote", - "1 | Id : 0", - "2 | Aye or nay : False", - "3 | Deposit [1/2] : POLYX 24828121060746971842942860419690", - "3 | Deposit [2/2] : 4.68768", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1139, - "name": "Pips_Vote", - "blob": "2107353000000140d8127ea9f0d1cdf6126ec9c838c9bad503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Vote", - "1 | Id : 12341", - "2 | Aye or nay : True", - "3 | Deposit [1/2] : POLYX 24828121060746971842942860419690", - "3 | Deposit [2/2] : 4.68768" - ], - "output_expert": [ - "0 | Pips : Vote", - "1 | Id : 12341", - "2 | Aye or nay : True", - "3 | Deposit [1/2] : POLYX 24828121060746971842942860419690", - "3 | Deposit [2/2] : 4.68768", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1140, - "name": "Pips_Vote", - "blob": "2107000000000040d8127ea9f0d1cdf6126ec9c838c9bad503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Vote", - "1 | Id : 0", - "2 | Aye or nay : False", - "3 | Deposit [1/2] : POLYX 24828121060746971842942860419690", - "3 | Deposit [2/2] : 4.68768", - "4 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Pips : Vote", - "1 | Id : 0", - "2 | Aye or nay : False", - "3 | Deposit [1/2] : POLYX 24828121060746971842942860419690", - "3 | Deposit [2/2] : 4.68768", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1141, - "name": "Pips_Approve_committee_proposal", - "blob": "210835300000d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Approve committee proposal", - "1 | Id : 12341", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Pips : Approve committee proposal", - "1 | Id : 12341", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", + "0 | Portfolio : Rename portfolio", + "1 | Num : 0", + "2 | To name : PortfolioName", + "3 | Chain : Polymesh", + "4 | Nonce : 1", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1142, - "name": "Pips_Approve_committee_proposal", - "blob": "210835300000d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1130, + "name": "Portfolio_Rename_portfolio", + "blob": "2202ff0300000000000034506f7274666f6c696f4e616d65d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Approve committee proposal", - "1 | Id : 12341", - "2 | Tip : POLYX 55.555555" + "0 | Portfolio : Rename portfolio", + "1 | Num : 1023", + "2 | To name : PortfolioName", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Pips : Approve committee proposal", - "1 | Id : 12341", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Portfolio : Rename portfolio", + "1 | Num : 1023", + "2 | To name : PortfolioName", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1143, - "name": "Pips_Approve_committee_proposal", - "blob": "210835300000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1131, + "name": "Portfolio_Quit_portfolio_custody", + "blob": "220332e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Approve committee proposal", - "1 | Id : 12341", + "0 | Portfolio : Quit portfolio custody", + "1 | Pid [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | Pid [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | Pid [3/3] : 123456", "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Pips : Approve committee proposal", - "1 | Id : 12341", + "0 | Portfolio : Quit portfolio custody", + "1 | Pid [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | Pid [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | Pid [3/3] : 123456", "2 | Chain : Polymesh", "3 | Nonce : 100", "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1144, - "name": "Pips_Approve_committee_proposal", - "blob": "2108775b0000d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1132, + "name": "Portfolio_Quit_portfolio_custody", + "blob": "220332e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Approve committee proposal", - "1 | Id : 23415", + "0 | Portfolio : Quit portfolio custody", + "1 | Pid [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | Pid [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | Pid [3/3] : 123456", "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Pips : Approve committee proposal", - "1 | Id : 23415", + "0 | Portfolio : Quit portfolio custody", + "1 | Pid [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | Pid [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | Pid [3/3] : 123456", "2 | Chain : Polymesh", - "3 | Nonce : 1", + "3 | Nonce : 100", "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1145, - "name": "Pips_Approve_committee_proposal", - "blob": "2108db030000d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1133, + "name": "Portfolio_Quit_portfolio_custody", + "blob": "220332e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Approve committee proposal", - "1 | Id : 987", + "0 | Portfolio : Quit portfolio custody", + "1 | Pid [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | Pid [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | Pid [3/3] : 123456", "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Pips : Approve committee proposal", - "1 | Id : 987", + "0 | Portfolio : Quit portfolio custody", + "1 | Pid [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | Pid [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | Pid [3/3] : 123456", "2 | Chain : Polymesh", "3 | Nonce : 2339", "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1146, - "name": "Pips_Reject_proposal", - "blob": "2109775b0000d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1134, + "name": "Portfolio_Quit_portfolio_custody", + "blob": "220332e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Reject proposal", - "1 | Id : 23415", - "2 | Tip : POLYX 0.000987" + "0 | Portfolio : Quit portfolio custody", + "1 | Pid [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | Pid [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | Pid [3/3] : 123456", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Pips : Reject proposal", - "1 | Id : 23415", + "0 | Portfolio : Quit portfolio custody", + "1 | Pid [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | Pid [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | Pid [3/3] : 123456", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1147, - "name": "Pips_Reject_proposal", - "blob": "2109db030000d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1135, + "name": "Portfolio_Quit_portfolio_custody", + "blob": "220332e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Reject proposal", - "1 | Id : 987", - "2 | Tip : POLYX 55.555555" + "0 | Portfolio : Quit portfolio custody", + "1 | Pid [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | Pid [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | Pid [3/3] : 123456", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Pips : Reject proposal", - "1 | Id : 987", + "0 | Portfolio : Quit portfolio custody", + "1 | Pid [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | Pid [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | Pid [3/3] : 123456", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 1", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1148, - "name": "Pips_Reject_proposal", - "blob": "210935300000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1136, + "name": "Portfolio_Accept_portfolio_custody", + "blob": "22040000000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Reject proposal", - "1 | Id : 12341", + "0 | Portfolio : Accept portfolio custody", + "1 | Auth id : 0", "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Pips : Reject proposal", - "1 | Id : 12341", + "0 | Portfolio : Accept portfolio custody", + "1 | Auth id : 0", "2 | Chain : Polymesh", - "3 | Nonce : 50283", + "3 | Nonce : 100", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1149, - "name": "Pips_Reject_proposal", - "blob": "210900000000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1137, + "name": "Portfolio_Accept_portfolio_custody", + "blob": "22046bc4000000000000d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Reject proposal", - "1 | Id : 0", + "0 | Portfolio : Accept portfolio custody", + "1 | Auth id : 50283", "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Pips : Reject proposal", - "1 | Id : 0", + "0 | Portfolio : Accept portfolio custody", + "1 | Auth id : 50283", "2 | Chain : Polymesh", - "3 | Nonce : 100", + "3 | Nonce : 1", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1150, - "name": "Pips_Reject_proposal", - "blob": "2109775b0000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1138, + "name": "Portfolio_Accept_portfolio_custody", + "blob": "22042309000000000000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Reject proposal", - "1 | Id : 23415", - "2 | Tip : POLYX 1234.56789" + "0 | Portfolio : Accept portfolio custody", + "1 | Auth id : 2339", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Pips : Reject proposal", - "1 | Id : 23415", + "0 | Portfolio : Accept portfolio custody", + "1 | Auth id : 2339", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 0", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1151, - "name": "Pips_Prune_proposal", - "blob": "210a00000000d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1139, + "name": "Portfolio_Accept_portfolio_custody", + "blob": "22046bc4000000000000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Prune proposal", - "1 | Id : 0", - "2 | Tip : POLYX 0.000987" + "0 | Portfolio : Accept portfolio custody", + "1 | Auth id : 50283" ], "output_expert": [ - "0 | Pips : Prune proposal", - "1 | Id : 0", + "0 | Portfolio : Accept portfolio custody", + "1 | Auth id : 50283", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1152, - "name": "Pips_Prune_proposal", - "blob": "210a00000000d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1140, + "name": "Portfolio_Accept_portfolio_custody", + "blob": "22046400000000000000d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Prune proposal", - "1 | Id : 0", + "0 | Portfolio : Accept portfolio custody", + "1 | Auth id : 100", "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Pips : Prune proposal", - "1 | Id : 0", + "0 | Portfolio : Accept portfolio custody", + "1 | Auth id : 100", "2 | Chain : Polymesh", - "3 | Nonce : 2339", + "3 | Nonce : 50283", "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1153, - "name": "Pips_Prune_proposal", - "blob": "210a775b0000d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1141, + "name": "Portfolio_Move_portfolio_funds", + "blob": "220532e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e201000000000032e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e20100000000000800417373657449442d3132333435363738dd7baac533fbdeaab8b17b4b01ac1b8001720b9af8fcc0d8aff8311238288416e68cb05fa73e712d344469b0307833345601417373657449442d3132333435363738042bff19d77facc96101b75ca41617854a16c13cc3c6ca7d1a40973f6f0e1bf0b11613442a558323051cd50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Prune proposal", - "1 | Id : 23415", - "2 | Tip : POLYX 0.000987" + "0 | Portfolio : Move portfolio funds", + "1 | From [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | From [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | From [3/3] : 123456", + "2 | To [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | To [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | To [3/3] : 123456", + "3 | Funds [1/9] : AssetID-12345678", + "3 | Funds [2/9] : 170284864152690575557029295301201.6567", + "3 | Funds [3/9] : 97", + "3 | Funds [4/9] : 0x720b9af8fcc0d8aff8311238288416e68cb0", + "3 | Funds [5/9] : 5fa73e712d344469b03078333456", + "3 | Funds [6/9] : AssetID-12345678", + "3 | Funds [7/9] : 7046352757067480875", + "3 | Funds [8/9] : 0xb75ca41617854a16c13cc3c6ca7d1a40973f", + "3 | Funds [9/9] : 6f0e1bf0b11613442a558323051c", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Pips : Prune proposal", - "1 | Id : 23415", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Portfolio : Move portfolio funds", + "1 | From [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | From [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | From [3/3] : 123456", + "2 | To [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | To [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | To [3/3] : 123456", + "3 | Funds [1/9] : AssetID-12345678", + "3 | Funds [2/9] : 170284864152690575557029295301201.6567", + "3 | Funds [3/9] : 97", + "3 | Funds [4/9] : 0x720b9af8fcc0d8aff8311238288416e68cb0", + "3 | Funds [5/9] : 5fa73e712d344469b03078333456", + "3 | Funds [6/9] : AssetID-12345678", + "3 | Funds [7/9] : 7046352757067480875", + "3 | Funds [8/9] : 0xb75ca41617854a16c13cc3c6ca7d1a40973f", + "3 | Funds [9/9] : 6f0e1bf0b11613442a558323051c", + "4 | Chain : Polymesh", + "5 | Nonce : 100", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1154, - "name": "Pips_Prune_proposal", - "blob": "210a775b0000d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1142, + "name": "Portfolio_Move_portfolio_funds", + "blob": "220532e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e201000000000032e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e20100000000000800417373657449442d3132333435363738dd7baac533fbdeaab8b17b4b01ac1b8001720b9af8fcc0d8aff8311238288416e68cb05fa73e712d344469b0307833345601417373657449442d3132333435363738042bff19d77facc96101b75ca41617854a16c13cc3c6ca7d1a40973f6f0e1bf0b11613442a558323051cd50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Prune proposal", - "1 | Id : 23415", - "2 | Tip : POLYX 0.000987" + "0 | Portfolio : Move portfolio funds", + "1 | From [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | From [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | From [3/3] : 123456", + "2 | To [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | To [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | To [3/3] : 123456", + "3 | Funds [1/9] : AssetID-12345678", + "3 | Funds [2/9] : 170284864152690575557029295301201.6567", + "3 | Funds [3/9] : 97", + "3 | Funds [4/9] : 0x720b9af8fcc0d8aff8311238288416e68cb0", + "3 | Funds [5/9] : 5fa73e712d344469b03078333456", + "3 | Funds [6/9] : AssetID-12345678", + "3 | Funds [7/9] : 7046352757067480875", + "3 | Funds [8/9] : 0xb75ca41617854a16c13cc3c6ca7d1a40973f", + "3 | Funds [9/9] : 6f0e1bf0b11613442a558323051c", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Pips : Prune proposal", - "1 | Id : 23415", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Portfolio : Move portfolio funds", + "1 | From [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | From [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | From [3/3] : 123456", + "2 | To [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | To [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | To [3/3] : 123456", + "3 | Funds [1/9] : AssetID-12345678", + "3 | Funds [2/9] : 170284864152690575557029295301201.6567", + "3 | Funds [3/9] : 97", + "3 | Funds [4/9] : 0x720b9af8fcc0d8aff8311238288416e68cb0", + "3 | Funds [5/9] : 5fa73e712d344469b03078333456", + "3 | Funds [6/9] : AssetID-12345678", + "3 | Funds [7/9] : 7046352757067480875", + "3 | Funds [8/9] : 0xb75ca41617854a16c13cc3c6ca7d1a40973f", + "3 | Funds [9/9] : 6f0e1bf0b11613442a558323051c", + "4 | Chain : Polymesh", + "5 | Nonce : 100", + "6 | Tip : POLYX 0.000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1155, - "name": "Pips_Prune_proposal", - "blob": "210a00000000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1143, + "name": "Portfolio_Move_portfolio_funds", + "blob": "220532e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e201000000000032e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e201000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Prune proposal", - "1 | Id : 0", - "2 | Tip : POLYX 55.555555" + "0 | Portfolio : Move portfolio funds", + "1 | From [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | From [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | From [3/3] : 123456", + "2 | To [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | To [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | To [3/3] : 123456", + "3 | Funds : ", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Pips : Prune proposal", - "1 | Id : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Portfolio : Move portfolio funds", + "1 | From [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | From [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | From [3/3] : 123456", + "2 | To [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | To [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | To [3/3] : 123456", + "3 | Funds : ", + "4 | Chain : Polymesh", + "5 | Nonce : 1", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1156, - "name": "Pips_Reschedule_execution", - "blob": "210bdb03000001149d1d21d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1144, + "name": "Portfolio_Move_portfolio_funds", + "blob": "220532e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e201000000000032e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e20100000000000800417373657449442d3132333435363738dd7baac533fbdeaab8b17b4b01ac1b8001720b9af8fcc0d8aff8311238288416e68cb05fa73e712d344469b0307833345601417373657449442d3132333435363738042bff19d77facc96101b75ca41617854a16c13cc3c6ca7d1a40973f6f0e1bf0b11613442a558323051cd503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Reschedule execution", - "1 | Id : 987", - "2 | Until : 555588884" + "0 | Portfolio : Move portfolio funds", + "1 | From [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | From [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | From [3/3] : 123456", + "2 | To [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | To [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | To [3/3] : 123456", + "3 | Funds [1/9] : AssetID-12345678", + "3 | Funds [2/9] : 170284864152690575557029295301201.6567", + "3 | Funds [3/9] : 97", + "3 | Funds [4/9] : 0x720b9af8fcc0d8aff8311238288416e68cb0", + "3 | Funds [5/9] : 5fa73e712d344469b03078333456", + "3 | Funds [6/9] : AssetID-12345678", + "3 | Funds [7/9] : 7046352757067480875", + "3 | Funds [8/9] : 0xb75ca41617854a16c13cc3c6ca7d1a40973f", + "3 | Funds [9/9] : 6f0e1bf0b11613442a558323051c", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Pips : Reschedule execution", - "1 | Id : 987", - "2 | Until : 555588884", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Portfolio : Move portfolio funds", + "1 | From [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | From [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | From [3/3] : 123456", + "2 | To [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | To [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | To [3/3] : 123456", + "3 | Funds [1/9] : AssetID-12345678", + "3 | Funds [2/9] : 170284864152690575557029295301201.6567", + "3 | Funds [3/9] : 97", + "3 | Funds [4/9] : 0x720b9af8fcc0d8aff8311238288416e68cb0", + "3 | Funds [5/9] : 5fa73e712d344469b03078333456", + "3 | Funds [6/9] : AssetID-12345678", + "3 | Funds [7/9] : 7046352757067480875", + "3 | Funds [8/9] : 0xb75ca41617854a16c13cc3c6ca7d1a40973f", + "3 | Funds [9/9] : 6f0e1bf0b11613442a558323051c", + "4 | Chain : Polymesh", + "5 | Nonce : 50283", + "6 | Tip : POLYX 5552342.355555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1157, - "name": "Pips_Reschedule_execution", - "blob": "210b775b00000123620000d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1145, + "name": "Portfolio_Move_portfolio_funds", + "blob": "220532e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e201000000000032e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e20100000000000800417373657449442d3132333435363738dd7baac533fbdeaab8b17b4b01ac1b8001720b9af8fcc0d8aff8311238288416e68cb05fa73e712d344469b0307833345601417373657449442d3132333435363738042bff19d77facc96101b75ca41617854a16c13cc3c6ca7d1a40973f6f0e1bf0b11613442a558323051cd503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Reschedule execution", - "1 | Id : 23415", - "2 | Until : 25123", - "3 | Tip : POLYX 0.000987" + "0 | Portfolio : Move portfolio funds", + "1 | From [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | From [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | From [3/3] : 123456", + "2 | To [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | To [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | To [3/3] : 123456", + "3 | Funds [1/9] : AssetID-12345678", + "3 | Funds [2/9] : 170284864152690575557029295301201.6567", + "3 | Funds [3/9] : 97", + "3 | Funds [4/9] : 0x720b9af8fcc0d8aff8311238288416e68cb0", + "3 | Funds [5/9] : 5fa73e712d344469b03078333456", + "3 | Funds [6/9] : AssetID-12345678", + "3 | Funds [7/9] : 7046352757067480875", + "3 | Funds [8/9] : 0xb75ca41617854a16c13cc3c6ca7d1a40973f", + "3 | Funds [9/9] : 6f0e1bf0b11613442a558323051c", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Pips : Reschedule execution", - "1 | Id : 23415", - "2 | Until : 25123", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Portfolio : Move portfolio funds", + "1 | From [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | From [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | From [3/3] : 123456", + "2 | To [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | To [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | To [3/3] : 123456", + "3 | Funds [1/9] : AssetID-12345678", + "3 | Funds [2/9] : 170284864152690575557029295301201.6567", + "3 | Funds [3/9] : 97", + "3 | Funds [4/9] : 0x720b9af8fcc0d8aff8311238288416e68cb0", + "3 | Funds [5/9] : 5fa73e712d344469b03078333456", + "3 | Funds [6/9] : AssetID-12345678", + "3 | Funds [7/9] : 7046352757067480875", + "3 | Funds [8/9] : 0xb75ca41617854a16c13cc3c6ca7d1a40973f", + "3 | Funds [9/9] : 6f0e1bf0b11613442a558323051c", + "4 | Chain : Polymesh", + "5 | Nonce : 50283", + "6 | Tip : POLYX 1234.56789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1158, - "name": "Pips_Reschedule_execution", - "blob": "210b775b00000123620000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1146, + "name": "Portfolio_Pre_approve_portfolio", + "blob": "2206417373657449442d313233343536373832e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Reschedule execution", - "1 | Id : 23415", - "2 | Until : 25123", - "3 | Tip : POLYX 1234.56789" + "0 | Portfolio : Pre approve portfolio", + "1 | Asset id : AssetID-12345678", + "2 | Portfolio id [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio id [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio id [3/3] : 123456", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Pips : Reschedule execution", - "1 | Id : 23415", - "2 | Until : 25123", + "0 | Portfolio : Pre approve portfolio", + "1 | Asset id : AssetID-12345678", + "2 | Portfolio id [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio id [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio id [3/3] : 123456", "3 | Chain : Polymesh", "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1159, - "name": "Pips_Reschedule_execution", - "blob": "210bdb0300000123620000d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1147, + "name": "Portfolio_Pre_approve_portfolio", + "blob": "2206417373657449442d313233343536373832e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Reschedule execution", - "1 | Id : 987", - "2 | Until : 25123", - "3 | Tip : POLYX 55.555555" + "0 | Portfolio : Pre approve portfolio", + "1 | Asset id : AssetID-12345678", + "2 | Portfolio id [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio id [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio id [3/3] : 123456", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Pips : Reschedule execution", - "1 | Id : 987", - "2 | Until : 25123", + "0 | Portfolio : Pre approve portfolio", + "1 | Asset id : AssetID-12345678", + "2 | Portfolio id [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio id [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio id [3/3] : 123456", "3 | Chain : Polymesh", "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1160, - "name": "Pips_Reschedule_execution", - "blob": "210b0000000001149d1d21d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1148, + "name": "Portfolio_Pre_approve_portfolio", + "blob": "2206417373657449442d313233343536373832e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Reschedule execution", - "1 | Id : 0", - "2 | Until : 555588884" + "0 | Portfolio : Pre approve portfolio", + "1 | Asset id : AssetID-12345678", + "2 | Portfolio id [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio id [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio id [3/3] : 123456" ], "output_expert": [ - "0 | Pips : Reschedule execution", - "1 | Id : 0", - "2 | Until : 555588884", + "0 | Portfolio : Pre approve portfolio", + "1 | Asset id : AssetID-12345678", + "2 | Portfolio id [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio id [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio id [3/3] : 123456", "3 | Chain : Polymesh", - "4 | Nonce : 2339", + "4 | Nonce : 1", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1161, - "name": "Pips_Clear_snapshot", - "blob": "210cd503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1149, + "name": "Portfolio_Pre_approve_portfolio", + "blob": "2206417373657449442d313233343536373832e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Clear snapshot", - "1 | Tip : POLYX 5552342.355555" + "0 | Portfolio : Pre approve portfolio", + "1 | Asset id : AssetID-12345678", + "2 | Portfolio id [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio id [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio id [3/3] : 123456", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Pips : Clear snapshot", - "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip : POLYX 5552342.355555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Portfolio : Pre approve portfolio", + "1 | Asset id : AssetID-12345678", + "2 | Portfolio id [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio id [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio id [3/3] : 123456", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1162, - "name": "Pips_Clear_snapshot", - "blob": "210cd503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1150, + "name": "Portfolio_Pre_approve_portfolio", + "blob": "2206417373657449442d313233343536373832e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Clear snapshot" + "0 | Portfolio : Pre approve portfolio", + "1 | Asset id : AssetID-12345678", + "2 | Portfolio id [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio id [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio id [3/3] : 123456", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Pips : Clear snapshot", - "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "5 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Portfolio : Pre approve portfolio", + "1 | Asset id : AssetID-12345678", + "2 | Portfolio id [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio id [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio id [3/3] : 123456", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1163, - "name": "Pips_Clear_snapshot", - "blob": "210cd503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1151, + "name": "Portfolio_Remove_portfolio_pre_approval", + "blob": "2207417373657449442d313233343536373832e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Clear snapshot" + "0 | Portfolio : Remove portfolio pre approval", + "1 | Asset id : AssetID-12345678", + "2 | Portfolio id [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio id [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio id [3/3] : 123456", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Pips : Clear snapshot", - "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "5 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Portfolio : Remove portfolio pre approval", + "1 | Asset id : AssetID-12345678", + "2 | Portfolio id [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio id [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio id [3/3] : 123456", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1164, - "name": "Pips_Clear_snapshot", - "blob": "210cd50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1152, + "name": "Portfolio_Remove_portfolio_pre_approval", + "blob": "2207417373657449442d313233343536373832e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Clear snapshot" + "0 | Portfolio : Remove portfolio pre approval", + "1 | Asset id : AssetID-12345678", + "2 | Portfolio id [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio id [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio id [3/3] : 123456", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Pips : Clear snapshot", - "1 | Chain : Polymesh", - "2 | Nonce : 100", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "5 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Portfolio : Remove portfolio pre approval", + "1 | Asset id : AssetID-12345678", + "2 | Portfolio id [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio id [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio id [3/3] : 123456", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1165, - "name": "Pips_Clear_snapshot", - "blob": "210cd503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1153, + "name": "Portfolio_Remove_portfolio_pre_approval", + "blob": "2207417373657449442d313233343536373832e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Clear snapshot", - "1 | Tip : POLYX 55.555555" + "0 | Portfolio : Remove portfolio pre approval", + "1 | Asset id : AssetID-12345678", + "2 | Portfolio id [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio id [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio id [3/3] : 123456", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Pips : Clear snapshot", - "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip : POLYX 55.555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Portfolio : Remove portfolio pre approval", + "1 | Asset id : AssetID-12345678", + "2 | Portfolio id [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio id [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio id [3/3] : 123456", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1166, - "name": "Pips_Snapshot", - "blob": "210dd503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1154, + "name": "Portfolio_Remove_portfolio_pre_approval", + "blob": "2207417373657449442d313233343536373832e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Snapshot", - "1 | Tip : POLYX 5552342.355555" + "0 | Portfolio : Remove portfolio pre approval", + "1 | Asset id : AssetID-12345678", + "2 | Portfolio id [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio id [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio id [3/3] : 123456" ], "output_expert": [ - "0 | Pips : Snapshot", - "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Tip : POLYX 5552342.355555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Portfolio : Remove portfolio pre approval", + "1 | Asset id : AssetID-12345678", + "2 | Portfolio id [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio id [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio id [3/3] : 123456", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1167, - "name": "Pips_Snapshot", - "blob": "210dd50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1155, + "name": "Portfolio_Remove_portfolio_pre_approval", + "blob": "2207417373657449442d313233343536373832e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Snapshot", - "1 | Tip : POLYX 0.000987" + "0 | Portfolio : Remove portfolio pre approval", + "1 | Asset id : AssetID-12345678", + "2 | Portfolio id [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio id [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio id [3/3] : 123456" ], "output_expert": [ - "0 | Pips : Snapshot", - "1 | Chain : Polymesh", - "2 | Nonce : 100", - "3 | Tip : POLYX 0.000987", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Portfolio : Remove portfolio pre approval", + "1 | Asset id : AssetID-12345678", + "2 | Portfolio id [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio id [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio id [3/3] : 123456", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1168, - "name": "Pips_Snapshot", - "blob": "210dd503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1156, + "name": "Portfolio_Allow_identity_to_create_portfolios", + "blob": "2208c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Snapshot", - "1 | Tip : POLYX 5552342.355555" + "0 | Portfolio : Allow identity to create portfolios", + "1 | Trusted identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Trusted identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Pips : Snapshot", - "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip : POLYX 5552342.355555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Portfolio : Allow identity to create portfolios", + "1 | Trusted identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Trusted identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1169, - "name": "Pips_Snapshot", - "blob": "210dd5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1157, + "name": "Portfolio_Allow_identity_to_create_portfolios", + "blob": "2208c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Snapshot", - "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "1 | Tip [2/2] : 3.456789" + "0 | Portfolio : Allow identity to create portfolios", + "1 | Trusted identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Trusted identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Pips : Snapshot", - "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Portfolio : Allow identity to create portfolios", + "1 | Trusted identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Trusted identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1170, - "name": "Pips_Snapshot", - "blob": "210dd503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1158, + "name": "Portfolio_Allow_identity_to_create_portfolios", + "blob": "2208c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Snapshot", - "1 | Tip : POLYX 55.555555" + "0 | Portfolio : Allow identity to create portfolios", + "1 | Trusted identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Trusted identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Pips : Snapshot", - "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip : POLYX 55.555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Portfolio : Allow identity to create portfolios", + "1 | Trusted identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Trusted identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1171, - "name": "Pips_Enact_snapshot_results", - "blob": "210e0893150000007510000002d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1159, + "name": "Portfolio_Allow_identity_to_create_portfolios", + "blob": "2208c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Enact snapshot results", - "1 | Results [1/4] : 5523", - "1 | Results [2/4] : Approve", - "1 | Results [3/4] : 4213", - "1 | Results [4/4] : Skip", - "2 | Tip : POLYX 5552342.355555" + "0 | Portfolio : Allow identity to create portfolios", + "1 | Trusted identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Trusted identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Pips : Enact snapshot results", - "1 | Results [1/4] : 5523", - "1 | Results [2/4] : Approve", - "1 | Results [3/4] : 4213", - "1 | Results [4/4] : Skip", + "0 | Portfolio : Allow identity to create portfolios", + "1 | Trusted identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Trusted identity [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1172, - "name": "Pips_Enact_snapshot_results", - "blob": "210e0893150000007510000002d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1160, + "name": "Portfolio_Allow_identity_to_create_portfolios", + "blob": "2208c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Enact snapshot results", - "1 | Results [1/4] : 5523", - "1 | Results [2/4] : Approve", - "1 | Results [3/4] : 4213", - "1 | Results [4/4] : Skip", - "2 | Tip : POLYX 5552342.355555" + "0 | Portfolio : Allow identity to create portfolios", + "1 | Trusted identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Trusted identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Pips : Enact snapshot results", - "1 | Results [1/4] : 5523", - "1 | Results [2/4] : Approve", - "1 | Results [3/4] : 4213", - "1 | Results [4/4] : Skip", + "0 | Portfolio : Allow identity to create portfolios", + "1 | Trusted identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Trusted identity [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1173, - "name": "Pips_Enact_snapshot_results", - "blob": "210e0893150000007510000002d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1161, + "name": "Portfolio_Revoke_create_portfolios_permission", + "blob": "2209c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Enact snapshot results", - "1 | Results [1/4] : 5523", - "1 | Results [2/4] : Approve", - "1 | Results [3/4] : 4213", - "1 | Results [4/4] : Skip", - "2 | Tip : POLYX 1234.56789" + "0 | Portfolio : Revoke create portfolios permission", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Pips : Enact snapshot results", - "1 | Results [1/4] : 5523", - "1 | Results [2/4] : Approve", - "1 | Results [3/4] : 4213", - "1 | Results [4/4] : Skip", + "0 | Portfolio : Revoke create portfolios permission", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 1", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1174, - "name": "Pips_Enact_snapshot_results", - "blob": "210e0893150000007510000002d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1162, + "name": "Portfolio_Revoke_create_portfolios_permission", + "blob": "2209c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Enact snapshot results", - "1 | Results [1/4] : 5523", - "1 | Results [2/4] : Approve", - "1 | Results [3/4] : 4213", - "1 | Results [4/4] : Skip", + "0 | Portfolio : Revoke create portfolios permission", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Pips : Enact snapshot results", - "1 | Results [1/4] : 5523", - "1 | Results [2/4] : Approve", - "1 | Results [3/4] : 4213", - "1 | Results [4/4] : Skip", + "0 | Portfolio : Revoke create portfolios permission", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", - "3 | Nonce : 1", + "3 | Nonce : 50283", "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1175, - "name": "Pips_Enact_snapshot_results", - "blob": "210e0893150000007510000002d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1163, + "name": "Portfolio_Revoke_create_portfolios_permission", + "blob": "2209c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Enact snapshot results", - "1 | Results [1/4] : 5523", - "1 | Results [2/4] : Approve", - "1 | Results [3/4] : 4213", - "1 | Results [4/4] : Skip", + "0 | Portfolio : Revoke create portfolios permission", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Pips : Enact snapshot results", - "1 | Results [1/4] : 5523", - "1 | Results [2/4] : Approve", - "1 | Results [3/4] : 4213", - "1 | Results [4/4] : Skip", + "0 | Portfolio : Revoke create portfolios permission", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", "3 | Nonce : 1", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1176, - "name": "Pips_Execute_scheduled_pip", - "blob": "210f00000000d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1164, + "name": "Portfolio_Revoke_create_portfolios_permission", + "blob": "2209c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Execute scheduled pip", - "1 | Id : 0", - "2 | Tip : POLYX 0.000987" + "0 | Portfolio : Revoke create portfolios permission", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Pips : Execute scheduled pip", - "1 | Id : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1177, - "name": "Pips_Execute_scheduled_pip", - "blob": "210f775b0000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Execute scheduled pip", - "1 | Id : 23415", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Pips : Execute scheduled pip", - "1 | Id : 23415", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1178, - "name": "Pips_Execute_scheduled_pip", - "blob": "210f00000000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Execute scheduled pip", - "1 | Id : 0" - ], - "output_expert": [ - "0 | Pips : Execute scheduled pip", - "1 | Id : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1179, - "name": "Pips_Execute_scheduled_pip", - "blob": "210f775b0000d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Execute scheduled pip", - "1 | Id : 23415", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Pips : Execute scheduled pip", - "1 | Id : 23415", + "0 | Portfolio : Revoke create portfolios permission", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1180, - "name": "Pips_Execute_scheduled_pip", - "blob": "210f00000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1165, + "name": "Portfolio_Revoke_create_portfolios_permission", + "blob": "2209c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Execute scheduled pip", - "1 | Id : 0", - "2 | Tip : POLYX 5552342.355555" + "0 | Portfolio : Revoke create portfolios permission", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Pips : Execute scheduled pip", - "1 | Id : 0", + "0 | Portfolio : Revoke create portfolios permission", + "1 | Identity [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Identity [2/2] : bd7a6512a7cb922c53c4907708", "2 | Chain : Polymesh", "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1181, - "name": "Pips_Expire_scheduled_pip", - "blob": "211044ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af00000000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1166, + "name": "Portfolio_Create_custody_portfolio", + "blob": "220ac209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c490770834506f7274666f6c696f4e616d65d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Expire scheduled pip", - "1 | Did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Did [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Id : 0" + "0 | Portfolio : Create custody portfolio", + "1 | Portfolio owner id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Portfolio owner id [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Portfolio name : PortfolioName", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Pips : Expire scheduled pip", - "1 | Did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Did [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Id : 0", + "0 | Portfolio : Create custody portfolio", + "1 | Portfolio owner id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Portfolio owner id [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Portfolio name : PortfolioName", "3 | Chain : Polymesh", "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1182, - "name": "Pips_Expire_scheduled_pip", - "blob": "211044ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af35300000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1167, + "name": "Portfolio_Create_custody_portfolio", + "blob": "220ac209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c490770834506f7274666f6c696f4e616d65d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Expire scheduled pip", - "1 | Did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Did [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Id : 12341", - "3 | Tip : POLYX 1234.56789" + "0 | Portfolio : Create custody portfolio", + "1 | Portfolio owner id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Portfolio owner id [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Portfolio name : PortfolioName", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Pips : Expire scheduled pip", - "1 | Did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Did [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Id : 12341", + "0 | Portfolio : Create custody portfolio", + "1 | Portfolio owner id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Portfolio owner id [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Portfolio name : PortfolioName", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 100", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1183, - "name": "Pips_Expire_scheduled_pip", - "blob": "211044ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af00000000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1168, + "name": "Portfolio_Create_custody_portfolio", + "blob": "220ac209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c490770834506f7274666f6c696f4e616d65d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Expire scheduled pip", - "1 | Did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Did [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Id : 0", - "3 | Tip : POLYX 1234.56789" + "0 | Portfolio : Create custody portfolio", + "1 | Portfolio owner id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Portfolio owner id [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Portfolio name : PortfolioName", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Pips : Expire scheduled pip", - "1 | Did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Did [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Id : 0", + "0 | Portfolio : Create custody portfolio", + "1 | Portfolio owner id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Portfolio owner id [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Portfolio name : PortfolioName", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 0", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1184, - "name": "Pips_Expire_scheduled_pip", - "blob": "211044ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afdb030000d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1169, + "name": "Portfolio_Create_custody_portfolio", + "blob": "220ac209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c490770834506f7274666f6c696f4e616d65d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Expire scheduled pip", - "1 | Did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Did [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Id : 987", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Portfolio : Create custody portfolio", + "1 | Portfolio owner id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Portfolio owner id [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Portfolio name : PortfolioName", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Pips : Expire scheduled pip", - "1 | Did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Did [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Id : 987", + "0 | Portfolio : Create custody portfolio", + "1 | Portfolio owner id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Portfolio owner id [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Portfolio name : PortfolioName", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 50283", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1185, - "name": "Pips_Expire_scheduled_pip", - "blob": "211044ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af00000000d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1170, + "name": "Portfolio_Create_custody_portfolio", + "blob": "220ac209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c490770834506f7274666f6c696f4e616d65d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Pips : Expire scheduled pip", - "1 | Did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Did [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Id : 0", + "0 | Portfolio : Create custody portfolio", + "1 | Portfolio owner id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Portfolio owner id [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Portfolio name : PortfolioName", "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Pips : Expire scheduled pip", - "1 | Did [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Did [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Id : 0", + "0 | Portfolio : Create custody portfolio", + "1 | Portfolio owner id [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "1 | Portfolio owner id [2/2] : bd7a6512a7cb922c53c4907708", + "2 | Portfolio name : PortfolioName", "3 | Chain : Polymesh", "4 | Nonce : 0", "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1186, - "name": "Portfolio_Create_portfolio", - "blob": "220034506f7274666f6c696f4e616d65d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1171, + "name": "Protocolfee_Change_coefficient", + "blob": "2300f4010000f4010000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Create portfolio", - "1 | Name : PortfolioName", + "0 | Protocolfee : Change coefficient", + "1 | Coefficient [1/2] : 500", + "1 | Coefficient [2/2] : 500", + "2 | Tip : POLYX 55.555555" + ], + "output_expert": [ + "0 | Protocolfee : Change coefficient", + "1 | Coefficient [1/2] : 500", + "1 | Coefficient [2/2] : 500", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 1172, + "name": "Protocolfee_Change_coefficient", + "blob": "2300e8030000e8030000d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Protocolfee : Change coefficient", + "1 | Coefficient [1/2] : 1000", + "1 | Coefficient [2/2] : 1000", "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Portfolio : Create portfolio", - "1 | Name : PortfolioName", + "0 | Protocolfee : Change coefficient", + "1 | Coefficient [1/2] : 1000", + "1 | Coefficient [2/2] : 1000", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 100", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1187, - "name": "Portfolio_Create_portfolio", - "blob": "220034506f7274666f6c696f4e616d65d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1173, + "name": "Protocolfee_Change_coefficient", + "blob": "2300e8030000e8030000d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Create portfolio", - "1 | Name : PortfolioName", + "0 | Protocolfee : Change coefficient", + "1 | Coefficient [1/2] : 1000", + "1 | Coefficient [2/2] : 1000", "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Portfolio : Create portfolio", - "1 | Name : PortfolioName", + "0 | Protocolfee : Change coefficient", + "1 | Coefficient [1/2] : 1000", + "1 | Coefficient [2/2] : 1000", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 1", "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1188, - "name": "Portfolio_Create_portfolio", - "blob": "220034506f7274666f6c696f4e616d65d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1174, + "name": "Protocolfee_Change_coefficient", + "blob": "2300f4010000f4010000d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Create portfolio", - "1 | Name : PortfolioName", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Protocolfee : Change coefficient", + "1 | Coefficient [1/2] : 500", + "1 | Coefficient [2/2] : 500", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Portfolio : Create portfolio", - "1 | Name : PortfolioName", + "0 | Protocolfee : Change coefficient", + "1 | Coefficient [1/2] : 500", + "1 | Coefficient [2/2] : 500", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 100", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1189, - "name": "Portfolio_Create_portfolio", - "blob": "220034506f7274666f6c696f4e616d65d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1175, + "name": "Protocolfee_Change_coefficient", + "blob": "2300e8030000e8030000d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Create portfolio", - "1 | Name : PortfolioName", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Protocolfee : Change coefficient", + "1 | Coefficient [1/2] : 1000", + "1 | Coefficient [2/2] : 1000", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Portfolio : Create portfolio", - "1 | Name : PortfolioName", + "0 | Protocolfee : Change coefficient", + "1 | Coefficient [1/2] : 1000", + "1 | Coefficient [2/2] : 1000", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1190, - "name": "Portfolio_Create_portfolio", - "blob": "220034506f7274666f6c696f4e616d65d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1176, + "name": "Settlement_Create_venue", + "blob": "25003856656e756544657461696c735f41180ef151c74547b7a7500a496af42d2fab49d1fcc6820a4e18310fa25ff1f208331c3a884cb495d43667130b4ac2de24742d1e20256845ff7455234cf9da6cba05d042abb5805b65960ea6515003d5b23c6c3fe964d7b867ff08cbe54d495c6958f24a5e29c643a8d4c84c11a8b718ca29f06d45046440011cfcbc4c9e36ab4a06806746fe2cd50eab68635ab87799ab8a0b47f14076a11d843875edd1826653534ee12d695c74d86d1476e7a82cc36fa43b1eefc47ff3d2818677bb163955330701d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Create portfolio", - "1 | Name : PortfolioName" + "0 | Settlement : Create venue", + "1 | Details : VenueDetails_A", + "2 | Signers [1/12] : 5CQJDPUqmKoQm8WwHZ7BDPyjee5aw4ccmnV9Pw", + "2 | Signers [2/12] : LqriprPhPe", + "2 | Signers [3/12] : 5ChiavXNPqvPDVbKRmaFeJSkq3EXZd2rdUuf6n", + "2 | Signers [4/12] : UXQkWvn9CU", + "2 | Signers [5/12] : 5Gmmd4Rmn2PXc3M8n2V8vAgLDxwu21Yep337Qh", + "2 | Signers [6/12] : CqzSxwKhmT", + "2 | Signers [7/12] : 5HYPY77hv8zkcLYg3K244RU3YTuiZSdPCpDhqq", + "2 | Signers [8/12] : MNrFX6Ttoq", + "2 | Signers [9/12] : 5Ey4fbG9FXRxKw4JbxN8YTgu2H6UXUjVdehV6y", + "2 | Signers [10/12] : ZL6zfBpBBY", + "2 | Signers [11/12] : 5Dr8V1qXmG1xRUopT82MPCqZxfFHsFGqrpancB", + "2 | Signers [12/12] : TwjCZ6sjig", + "3 | Typ : Distribution", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Portfolio : Create portfolio", - "1 | Name : PortfolioName", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Create venue", + "1 | Details : VenueDetails_A", + "2 | Signers [1/12] : 5CQJDPUqmKoQm8WwHZ7BDPyjee5aw4ccmnV9Pw", + "2 | Signers [2/12] : LqriprPhPe", + "2 | Signers [3/12] : 5ChiavXNPqvPDVbKRmaFeJSkq3EXZd2rdUuf6n", + "2 | Signers [4/12] : UXQkWvn9CU", + "2 | Signers [5/12] : 5Gmmd4Rmn2PXc3M8n2V8vAgLDxwu21Yep337Qh", + "2 | Signers [6/12] : CqzSxwKhmT", + "2 | Signers [7/12] : 5HYPY77hv8zkcLYg3K244RU3YTuiZSdPCpDhqq", + "2 | Signers [8/12] : MNrFX6Ttoq", + "2 | Signers [9/12] : 5Ey4fbG9FXRxKw4JbxN8YTgu2H6UXUjVdehV6y", + "2 | Signers [10/12] : ZL6zfBpBBY", + "2 | Signers [11/12] : 5Dr8V1qXmG1xRUopT82MPCqZxfFHsFGqrpancB", + "2 | Signers [12/12] : TwjCZ6sjig", + "3 | Typ : Distribution", + "4 | Chain : Polymesh", + "5 | Nonce : 1", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1191, - "name": "Portfolio_Delete_portfolio", - "blob": "22010000000000000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1177, + "name": "Settlement_Create_venue", + "blob": "25003856656e756544657461696c735f411442683728ce80bbeb8bc2d60272401a5a61c8c3752be4cd7646df026e35a34b6f008ccf2185eeddd862a8a228ca41e6c2cc4848ab04bdcaad75d5944fd08e1948c89b6cc70106cd9dfbfaeb50ae568e334a0b71134a3bf6539a046eccf7a3d21a04e0eb3cca1b0642d2429b165a7d4799452f61581fb18bb6c0691b13e5431a61b862f1c279831c030fcf3b8aadfb5c2dd57401fada346592e3173a98b0f2044a01d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Delete portfolio", - "1 | Num : 0", - "2 | Tip : POLYX 5552342.355555" + "0 | Settlement : Create venue", + "1 | Details : VenueDetails_A", + "2 | Signers [1/10] : 5DZmyZZ6ztre9SepCA9faBJCQXDd8n85q4bp3w", + "2 | Signers [2/10] : K4KDyicxGs", + "2 | Signers [3/10] : 5C5Rgkds3Gnw5EHVmgWf1DQ9nc5Np4Eb32PzVX", + "2 | Signers [4/10] : v4WzXj31zV", + "2 | Signers [5/10] : 5Gbjc3HWVE6xmAVdyRSEZ3tcUXcd4fdsmZcdRx", + "2 | Signers [6/10] : 7Qzsnv7JJY", + "2 | Signers [7/10] : 5CB6s3J3kB9WwHaq3REJxi6qyn9kQtxHeVLWUv", + "2 | Signers [8/10] : p7kQgmJFrY", + "2 | Signers [9/10] : 5GEU4TzWkfNvnQiGkf6Ww4nhSrfB479zeWzwfe", + "2 | Signers [10/10] : Hxcwz7irDp", + "3 | Typ : Distribution", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Portfolio : Delete portfolio", - "1 | Num : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Create venue", + "1 | Details : VenueDetails_A", + "2 | Signers [1/10] : 5DZmyZZ6ztre9SepCA9faBJCQXDd8n85q4bp3w", + "2 | Signers [2/10] : K4KDyicxGs", + "2 | Signers [3/10] : 5C5Rgkds3Gnw5EHVmgWf1DQ9nc5Np4Eb32PzVX", + "2 | Signers [4/10] : v4WzXj31zV", + "2 | Signers [5/10] : 5Gbjc3HWVE6xmAVdyRSEZ3tcUXcd4fdsmZcdRx", + "2 | Signers [6/10] : 7Qzsnv7JJY", + "2 | Signers [7/10] : 5CB6s3J3kB9WwHaq3REJxi6qyn9kQtxHeVLWUv", + "2 | Signers [8/10] : p7kQgmJFrY", + "2 | Signers [9/10] : 5GEU4TzWkfNvnQiGkf6Ww4nhSrfB479zeWzwfe", + "2 | Signers [10/10] : Hxcwz7irDp", + "3 | Typ : Distribution", + "4 | Chain : Polymesh", + "5 | Nonce : 50283", + "6 | Tip : POLYX 0.000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1192, - "name": "Portfolio_Delete_portfolio", - "blob": "2201ff03000000000000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1178, + "name": "Settlement_Create_venue", + "blob": "25003856656e756544657461696c735f41180ef151c74547b7a7500a496af42d2fab49d1fcc6820a4e18310fa25ff1f208331c3a884cb495d43667130b4ac2de24742d1e20256845ff7455234cf9da6cba05d042abb5805b65960ea6515003d5b23c6c3fe964d7b867ff08cbe54d495c6958f24a5e29c643a8d4c84c11a8b718ca29f06d45046440011cfcbc4c9e36ab4a06806746fe2cd50eab68635ab87799ab8a0b47f14076a11d843875edd1826653534ee12d695c74d86d1476e7a82cc36fa43b1eefc47ff3d2818677bb163955330701d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Delete portfolio", - "1 | Num : 1023", - "2 | Tip : POLYX 1234.56789" + "0 | Settlement : Create venue", + "1 | Details : VenueDetails_A", + "2 | Signers [1/12] : 5CQJDPUqmKoQm8WwHZ7BDPyjee5aw4ccmnV9Pw", + "2 | Signers [2/12] : LqriprPhPe", + "2 | Signers [3/12] : 5ChiavXNPqvPDVbKRmaFeJSkq3EXZd2rdUuf6n", + "2 | Signers [4/12] : UXQkWvn9CU", + "2 | Signers [5/12] : 5Gmmd4Rmn2PXc3M8n2V8vAgLDxwu21Yep337Qh", + "2 | Signers [6/12] : CqzSxwKhmT", + "2 | Signers [7/12] : 5HYPY77hv8zkcLYg3K244RU3YTuiZSdPCpDhqq", + "2 | Signers [8/12] : MNrFX6Ttoq", + "2 | Signers [9/12] : 5Ey4fbG9FXRxKw4JbxN8YTgu2H6UXUjVdehV6y", + "2 | Signers [10/12] : ZL6zfBpBBY", + "2 | Signers [11/12] : 5Dr8V1qXmG1xRUopT82MPCqZxfFHsFGqrpancB", + "2 | Signers [12/12] : TwjCZ6sjig", + "3 | Typ : Distribution", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Portfolio : Delete portfolio", - "1 | Num : 1023", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Create venue", + "1 | Details : VenueDetails_A", + "2 | Signers [1/12] : 5CQJDPUqmKoQm8WwHZ7BDPyjee5aw4ccmnV9Pw", + "2 | Signers [2/12] : LqriprPhPe", + "2 | Signers [3/12] : 5ChiavXNPqvPDVbKRmaFeJSkq3EXZd2rdUuf6n", + "2 | Signers [4/12] : UXQkWvn9CU", + "2 | Signers [5/12] : 5Gmmd4Rmn2PXc3M8n2V8vAgLDxwu21Yep337Qh", + "2 | Signers [6/12] : CqzSxwKhmT", + "2 | Signers [7/12] : 5HYPY77hv8zkcLYg3K244RU3YTuiZSdPCpDhqq", + "2 | Signers [8/12] : MNrFX6Ttoq", + "2 | Signers [9/12] : 5Ey4fbG9FXRxKw4JbxN8YTgu2H6UXUjVdehV6y", + "2 | Signers [10/12] : ZL6zfBpBBY", + "2 | Signers [11/12] : 5Dr8V1qXmG1xRUopT82MPCqZxfFHsFGqrpancB", + "2 | Signers [12/12] : TwjCZ6sjig", + "3 | Typ : Distribution", + "4 | Chain : Polymesh", + "5 | Nonce : 100", + "6 | Tip : POLYX 0.000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1193, - "name": "Portfolio_Delete_portfolio", - "blob": "22017b00000000000000d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1179, + "name": "Settlement_Create_venue", + "blob": "25003856656e756544657461696c735f411442683728ce80bbeb8bc2d60272401a5a61c8c3752be4cd7646df026e35a34b6f008ccf2185eeddd862a8a228ca41e6c2cc4848ab04bdcaad75d5944fd08e1948c89b6cc70106cd9dfbfaeb50ae568e334a0b71134a3bf6539a046eccf7a3d21a04e0eb3cca1b0642d2429b165a7d4799452f61581fb18bb6c0691b13e5431a61b862f1c279831c030fcf3b8aadfb5c2dd57401fada346592e3173a98b0f2044a00d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Delete portfolio", - "1 | Num : 123", - "2 | Tip : POLYX 5552342.355555" + "0 | Settlement : Create venue", + "1 | Details : VenueDetails_A", + "2 | Signers [1/10] : 5DZmyZZ6ztre9SepCA9faBJCQXDd8n85q4bp3w", + "2 | Signers [2/10] : K4KDyicxGs", + "2 | Signers [3/10] : 5C5Rgkds3Gnw5EHVmgWf1DQ9nc5Np4Eb32PzVX", + "2 | Signers [4/10] : v4WzXj31zV", + "2 | Signers [5/10] : 5Gbjc3HWVE6xmAVdyRSEZ3tcUXcd4fdsmZcdRx", + "2 | Signers [6/10] : 7Qzsnv7JJY", + "2 | Signers [7/10] : 5CB6s3J3kB9WwHaq3REJxi6qyn9kQtxHeVLWUv", + "2 | Signers [8/10] : p7kQgmJFrY", + "2 | Signers [9/10] : 5GEU4TzWkfNvnQiGkf6Ww4nhSrfB479zeWzwfe", + "2 | Signers [10/10] : Hxcwz7irDp", + "3 | Typ : Other" ], "output_expert": [ - "0 | Portfolio : Delete portfolio", - "1 | Num : 123", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Create venue", + "1 | Details : VenueDetails_A", + "2 | Signers [1/10] : 5DZmyZZ6ztre9SepCA9faBJCQXDd8n85q4bp3w", + "2 | Signers [2/10] : K4KDyicxGs", + "2 | Signers [3/10] : 5C5Rgkds3Gnw5EHVmgWf1DQ9nc5Np4Eb32PzVX", + "2 | Signers [4/10] : v4WzXj31zV", + "2 | Signers [5/10] : 5Gbjc3HWVE6xmAVdyRSEZ3tcUXcd4fdsmZcdRx", + "2 | Signers [6/10] : 7Qzsnv7JJY", + "2 | Signers [7/10] : 5CB6s3J3kB9WwHaq3REJxi6qyn9kQtxHeVLWUv", + "2 | Signers [8/10] : p7kQgmJFrY", + "2 | Signers [9/10] : 5GEU4TzWkfNvnQiGkf6Ww4nhSrfB479zeWzwfe", + "2 | Signers [10/10] : Hxcwz7irDp", + "3 | Typ : Other", + "4 | Chain : Polymesh", + "5 | Nonce : 0", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1194, - "name": "Portfolio_Delete_portfolio", - "blob": "2201ff03000000000000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1180, + "name": "Settlement_Create_venue", + "blob": "25003856656e756544657461696c735f411442683728ce80bbeb8bc2d60272401a5a61c8c3752be4cd7646df026e35a34b6f008ccf2185eeddd862a8a228ca41e6c2cc4848ab04bdcaad75d5944fd08e1948c89b6cc70106cd9dfbfaeb50ae568e334a0b71134a3bf6539a046eccf7a3d21a04e0eb3cca1b0642d2429b165a7d4799452f61581fb18bb6c0691b13e5431a61b862f1c279831c030fcf3b8aadfb5c2dd57401fada346592e3173a98b0f2044a01d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Delete portfolio", - "1 | Num : 1023", - "2 | Tip : POLYX 55.555555" + "0 | Settlement : Create venue", + "1 | Details : VenueDetails_A", + "2 | Signers [1/10] : 5DZmyZZ6ztre9SepCA9faBJCQXDd8n85q4bp3w", + "2 | Signers [2/10] : K4KDyicxGs", + "2 | Signers [3/10] : 5C5Rgkds3Gnw5EHVmgWf1DQ9nc5Np4Eb32PzVX", + "2 | Signers [4/10] : v4WzXj31zV", + "2 | Signers [5/10] : 5Gbjc3HWVE6xmAVdyRSEZ3tcUXcd4fdsmZcdRx", + "2 | Signers [6/10] : 7Qzsnv7JJY", + "2 | Signers [7/10] : 5CB6s3J3kB9WwHaq3REJxi6qyn9kQtxHeVLWUv", + "2 | Signers [8/10] : p7kQgmJFrY", + "2 | Signers [9/10] : 5GEU4TzWkfNvnQiGkf6Ww4nhSrfB479zeWzwfe", + "2 | Signers [10/10] : Hxcwz7irDp", + "3 | Typ : Distribution", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Portfolio : Delete portfolio", - "1 | Num : 1023", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Create venue", + "1 | Details : VenueDetails_A", + "2 | Signers [1/10] : 5DZmyZZ6ztre9SepCA9faBJCQXDd8n85q4bp3w", + "2 | Signers [2/10] : K4KDyicxGs", + "2 | Signers [3/10] : 5C5Rgkds3Gnw5EHVmgWf1DQ9nc5Np4Eb32PzVX", + "2 | Signers [4/10] : v4WzXj31zV", + "2 | Signers [5/10] : 5Gbjc3HWVE6xmAVdyRSEZ3tcUXcd4fdsmZcdRx", + "2 | Signers [6/10] : 7Qzsnv7JJY", + "2 | Signers [7/10] : 5CB6s3J3kB9WwHaq3REJxi6qyn9kQtxHeVLWUv", + "2 | Signers [8/10] : p7kQgmJFrY", + "2 | Signers [9/10] : 5GEU4TzWkfNvnQiGkf6Ww4nhSrfB479zeWzwfe", + "2 | Signers [10/10] : Hxcwz7irDp", + "3 | Typ : Distribution", + "4 | Chain : Polymesh", + "5 | Nonce : 100", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1195, - "name": "Portfolio_Delete_portfolio", - "blob": "2201ff03000000000000d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1181, + "name": "Settlement_Update_venue_details", + "blob": "250164000000000000003856656e756544657461696c735f41d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Delete portfolio", - "1 | Num : 1023", - "2 | Tip : POLYX 0.000987" + "0 | Settlement : Update venue details", + "1 | Id : 100", + "2 | Details : VenueDetails_A", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Portfolio : Delete portfolio", - "1 | Num : 1023", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Update venue details", + "1 | Id : 100", + "2 | Details : VenueDetails_A", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1196, - "name": "Portfolio_Rename_portfolio", - "blob": "2202ff0300000000000034506f7274666f6c696f4e616d65d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1182, + "name": "Settlement_Update_venue_details", + "blob": "250164000000000000003856656e756544657461696c735f41d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Rename portfolio", - "1 | Num : 1023", - "2 | To name : PortfolioName", - "3 | Tip : POLYX 0.000987" + "0 | Settlement : Update venue details", + "1 | Id : 100", + "2 | Details : VenueDetails_A", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Portfolio : Rename portfolio", - "1 | Num : 1023", - "2 | To name : PortfolioName", + "0 | Settlement : Update venue details", + "1 | Id : 100", + "2 | Details : VenueDetails_A", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 100", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1197, - "name": "Portfolio_Rename_portfolio", - "blob": "2202ac3500000000000034506f7274666f6c696f4e616d65d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1183, + "name": "Settlement_Update_venue_details", + "blob": "250123090000000000003856656e756544657461696c735f41d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Rename portfolio", - "1 | Num : 13740", - "2 | To name : PortfolioName", + "0 | Settlement : Update venue details", + "1 | Id : 2339", + "2 | Details : VenueDetails_A", "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Portfolio : Rename portfolio", - "1 | Num : 13740", - "2 | To name : PortfolioName", + "0 | Settlement : Update venue details", + "1 | Id : 2339", + "2 | Details : VenueDetails_A", "3 | Chain : Polymesh", - "4 | Nonce : 50283", + "4 | Nonce : 1", "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1198, - "name": "Portfolio_Rename_portfolio", - "blob": "2202ac3500000000000034506f7274666f6c696f4e616d65d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1184, + "name": "Settlement_Update_venue_details", + "blob": "250100000000000000003856656e756544657461696c735f41d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Rename portfolio", - "1 | Num : 13740", - "2 | To name : PortfolioName", - "3 | Tip : POLYX 5552342.355555" + "0 | Settlement : Update venue details", + "1 | Id : 0", + "2 | Details : VenueDetails_A", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Portfolio : Rename portfolio", - "1 | Num : 13740", - "2 | To name : PortfolioName", + "0 | Settlement : Update venue details", + "1 | Id : 0", + "2 | Details : VenueDetails_A", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 1", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1199, - "name": "Portfolio_Rename_portfolio", - "blob": "2202b3e301000000000034506f7274666f6c696f4e616d65d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1185, + "name": "Settlement_Update_venue_details", + "blob": "25016bc40000000000003856656e756544657461696c735f41d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Rename portfolio", - "1 | Num : 123827", - "2 | To name : PortfolioName", - "3 | Tip : POLYX 0.000987" + "0 | Settlement : Update venue details", + "1 | Id : 50283", + "2 | Details : VenueDetails_A", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Portfolio : Rename portfolio", - "1 | Num : 123827", - "2 | To name : PortfolioName", + "0 | Settlement : Update venue details", + "1 | Id : 50283", + "2 | Details : VenueDetails_A", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 2339", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1200, - "name": "Portfolio_Rename_portfolio", - "blob": "2202000000000000000034506f7274666f6c696f4e616d65d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1186, + "name": "Settlement_Update_venue_type", + "blob": "25026bc400000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Rename portfolio", - "1 | Num : 0", - "2 | To name : PortfolioName", - "3 | Tip : POLYX 55.555555" + "0 | Settlement : Update venue type", + "1 | Id : 50283", + "2 | Typ : Other", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Portfolio : Rename portfolio", - "1 | Num : 0", - "2 | To name : PortfolioName", + "0 | Settlement : Update venue type", + "1 | Id : 50283", + "2 | Typ : Other", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 0", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1201, - "name": "Portfolio_Quit_portfolio_custody", - "blob": "220364af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e2010000000000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1187, + "name": "Settlement_Update_venue_type", + "blob": "2502640000000000000002d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Quit portfolio custody", - "1 | Pid [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | Pid [2/3] : a57f7ac2d27e10de05675c1086", - "1 | Pid [3/3] : 123456", - "2 | Tip : POLYX 5552342.355555" + "0 | Settlement : Update venue type", + "1 | Id : 100", + "2 | Typ : Sto", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Portfolio : Quit portfolio custody", - "1 | Pid [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | Pid [2/3] : a57f7ac2d27e10de05675c1086", - "1 | Pid [3/3] : 123456", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Update venue type", + "1 | Id : 100", + "2 | Typ : Sto", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1202, - "name": "Portfolio_Quit_portfolio_custody", - "blob": "220364af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e2010000000000d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1188, + "name": "Settlement_Update_venue_type", + "blob": "2502000000000000000001d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Quit portfolio custody", - "1 | Pid [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | Pid [2/3] : a57f7ac2d27e10de05675c1086", - "1 | Pid [3/3] : 123456", - "2 | Tip : POLYX 55.555555" + "0 | Settlement : Update venue type", + "1 | Id : 0", + "2 | Typ : Distribution", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Portfolio : Quit portfolio custody", - "1 | Pid [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | Pid [2/3] : a57f7ac2d27e10de05675c1086", - "1 | Pid [3/3] : 123456", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Update venue type", + "1 | Id : 0", + "2 | Typ : Distribution", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1203, - "name": "Portfolio_Quit_portfolio_custody", - "blob": "220364af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e2010000000000d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1189, + "name": "Settlement_Update_venue_type", + "blob": "2502010000000000000002d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Quit portfolio custody", - "1 | Pid [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | Pid [2/3] : a57f7ac2d27e10de05675c1086", - "1 | Pid [3/3] : 123456", - "2 | Tip : POLYX 0.000987" + "0 | Settlement : Update venue type", + "1 | Id : 1", + "2 | Typ : Sto" ], "output_expert": [ - "0 | Portfolio : Quit portfolio custody", - "1 | Pid [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | Pid [2/3] : a57f7ac2d27e10de05675c1086", - "1 | Pid [3/3] : 123456", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", + "0 | Settlement : Update venue type", + "1 | Id : 1", + "2 | Typ : Sto", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1204, - "name": "Portfolio_Quit_portfolio_custody", - "blob": "220364af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e2010000000000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1190, + "name": "Settlement_Update_venue_type", + "blob": "2502640000000000000000d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Quit portfolio custody", - "1 | Pid [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | Pid [2/3] : a57f7ac2d27e10de05675c1086", - "1 | Pid [3/3] : 123456", - "2 | Tip : POLYX 5552342.355555" + "0 | Settlement : Update venue type", + "1 | Id : 100", + "2 | Typ : Other", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Portfolio : Quit portfolio custody", - "1 | Pid [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | Pid [2/3] : a57f7ac2d27e10de05675c1086", - "1 | Pid [3/3] : 123456", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Update venue type", + "1 | Id : 100", + "2 | Typ : Other", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1205, - "name": "Portfolio_Quit_portfolio_custody", - "blob": "220364af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e2010000000000d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1191, + "name": "Settlement_Affirm_with_receipts", + "blob": "250323090000000000000873588de8f532bb7dc3ebb6d5cb3752e40cda212204a02f27fd353dc153517932eb0305788efde6e71a00774a53251ff5fd48818f6e049a2d01b5e7d49af65508ff587d825b8c781b9a597971f02bf7158b313fb702a787a7b3d0d357e8cd3cd48a30b3f69136241cec51031ab3dc62c8264af06ce03e025d7e015b02556c817830b2e174955984742e5a379f44d15fb0cf8454a841e98a98aeb350a670871dbe0c33416a6a7103b9faa92357354fc5275fffc1500202c7d44a6a85783bd66fbae34435340c93c92b27f45f470c00eb537a0e00f953857c9977cd3ed056938488f99e23459402fe49d00c61ef8ef32491122d3bdead73c5a52c849446ecbea34b9f0668cb05f8af3d9c766127279d0a9df07514014558174ddf8fd67e0b2d3b5a238957102b0e3e62d6dee717df38d3be5075c7f700d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Quit portfolio custody", - "1 | Pid [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | Pid [2/3] : a57f7ac2d27e10de05675c1086", - "1 | Pid [3/3] : 123456", - "2 | Tip : POLYX 0.000987" + "0 | Settlement : Affirm with receipts", + "1 | Id : 2339", + "2 | Receipt details [1/22] : 9059891107135838323", + "2 | Receipt details [2/22] : 16452273737341266883", + "2 | Receipt details [3/22] : 2823651430997547532", + "2 | Receipt details [4/22] : 5HnhnetBnmYnPwWMU9FEEgPzWb6bGNgwB1quw3", + "2 | Receipt details [5/22] : TKdGT6KKvE", + "2 | Receipt details [6/22] : b5e7d49af65508ff587d825b8c781b9a597971", + "2 | Receipt details [7/22] : f02bf7158b313fb702a787a7b3d0d357e8cd3c", + "2 | Receipt details [8/22] : d48a30b3f69136241cec51031ab3dc62c8264a", + "2 | Receipt details [9/22] : f06ce03e025d7e", + "2 | Receipt details [10/22] : 5b02556c817830b2e174955984742e5a379f44", + "2 | Receipt details [11/22] : d15fb0cf8454a841e98a98aeb3", + "2 | Receipt details [12/22] : 3678524029690488400", + "2 | Receipt details [13/22] : 12248305561026325057", + "2 | Receipt details [14/22] : 18401470330850072355", + "2 | Receipt details [15/22] : 5GSAsCAnt6PM9EUURuXZrBh1LKv21rBhVSqHNr", + "2 | Receipt details [16/22] : LQv7U97C7b", + "2 | Receipt details [17/22] : f953857c9977cd3ed056938488f99e23459402", + "2 | Receipt details [18/22] : fe49d00c61ef8ef32491122d3bdead73c5a52c", + "2 | Receipt details [19/22] : 849446ecbea34b9f0668cb05f8af3d9c766127", + "2 | Receipt details [20/22] : 279d0a9df07514", + "2 | Receipt details [21/22] : 4558174ddf8fd67e0b2d3b5a238957102b0e3e", + "2 | Receipt details [22/22] : 62d6dee717df38d3be5075c7f7", + "3 | Portfolios : ", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Portfolio : Quit portfolio custody", - "1 | Pid [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | Pid [2/3] : a57f7ac2d27e10de05675c1086", - "1 | Pid [3/3] : 123456", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Affirm with receipts", + "1 | Id : 2339", + "2 | Receipt details [1/22] : 9059891107135838323", + "2 | Receipt details [2/22] : 16452273737341266883", + "2 | Receipt details [3/22] : 2823651430997547532", + "2 | Receipt details [4/22] : 5HnhnetBnmYnPwWMU9FEEgPzWb6bGNgwB1quw3", + "2 | Receipt details [5/22] : TKdGT6KKvE", + "2 | Receipt details [6/22] : b5e7d49af65508ff587d825b8c781b9a597971", + "2 | Receipt details [7/22] : f02bf7158b313fb702a787a7b3d0d357e8cd3c", + "2 | Receipt details [8/22] : d48a30b3f69136241cec51031ab3dc62c8264a", + "2 | Receipt details [9/22] : f06ce03e025d7e", + "2 | Receipt details [10/22] : 5b02556c817830b2e174955984742e5a379f44", + "2 | Receipt details [11/22] : d15fb0cf8454a841e98a98aeb3", + "2 | Receipt details [12/22] : 3678524029690488400", + "2 | Receipt details [13/22] : 12248305561026325057", + "2 | Receipt details [14/22] : 18401470330850072355", + "2 | Receipt details [15/22] : 5GSAsCAnt6PM9EUURuXZrBh1LKv21rBhVSqHNr", + "2 | Receipt details [16/22] : LQv7U97C7b", + "2 | Receipt details [17/22] : f953857c9977cd3ed056938488f99e23459402", + "2 | Receipt details [18/22] : fe49d00c61ef8ef32491122d3bdead73c5a52c", + "2 | Receipt details [19/22] : 849446ecbea34b9f0668cb05f8af3d9c766127", + "2 | Receipt details [20/22] : 279d0a9df07514", + "2 | Receipt details [21/22] : 4558174ddf8fd67e0b2d3b5a238957102b0e3e", + "2 | Receipt details [22/22] : 62d6dee717df38d3be5075c7f7", + "3 | Portfolios : ", + "4 | Chain : Polymesh", + "5 | Nonce : 2339", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1206, - "name": "Portfolio_Accept_portfolio_custody", - "blob": "22046400000000000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1192, + "name": "Settlement_Affirm_with_receipts", + "blob": "25036bc40000000000000873588de8f532bb7dc3ebb6d5cb3752e40cda212204a02f27fd353dc153517932eb0305788efde6e71a00774a53251ff5fd48818f6e049a2d01b5e7d49af65508ff587d825b8c781b9a597971f02bf7158b313fb702a787a7b3d0d357e8cd3cd48a30b3f69136241cec51031ab3dc62c8264af06ce03e025d7e015b02556c817830b2e174955984742e5a379f44d15fb0cf8454a841e98a98aeb350a670871dbe0c33416a6a7103b9faa92357354fc5275fffc1500202c7d44a6a85783bd66fbae34435340c93c92b27f45f470c00eb537a0e00f953857c9977cd3ed056938488f99e23459402fe49d00c61ef8ef32491122d3bdead73c5a52c849446ecbea34b9f0668cb05f8af3d9c766127279d0a9df07514014558174ddf8fd67e0b2d3b5a238957102b0e3e62d6dee717df38d3be5075c7f700d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Accept portfolio custody", - "1 | Auth id : 100", - "2 | Tip : POLYX 5552342.355555" + "0 | Settlement : Affirm with receipts", + "1 | Id : 50283", + "2 | Receipt details [1/22] : 9059891107135838323", + "2 | Receipt details [2/22] : 16452273737341266883", + "2 | Receipt details [3/22] : 2823651430997547532", + "2 | Receipt details [4/22] : 5HnhnetBnmYnPwWMU9FEEgPzWb6bGNgwB1quw3", + "2 | Receipt details [5/22] : TKdGT6KKvE", + "2 | Receipt details [6/22] : b5e7d49af65508ff587d825b8c781b9a597971", + "2 | Receipt details [7/22] : f02bf7158b313fb702a787a7b3d0d357e8cd3c", + "2 | Receipt details [8/22] : d48a30b3f69136241cec51031ab3dc62c8264a", + "2 | Receipt details [9/22] : f06ce03e025d7e", + "2 | Receipt details [10/22] : 5b02556c817830b2e174955984742e5a379f44", + "2 | Receipt details [11/22] : d15fb0cf8454a841e98a98aeb3", + "2 | Receipt details [12/22] : 3678524029690488400", + "2 | Receipt details [13/22] : 12248305561026325057", + "2 | Receipt details [14/22] : 18401470330850072355", + "2 | Receipt details [15/22] : 5GSAsCAnt6PM9EUURuXZrBh1LKv21rBhVSqHNr", + "2 | Receipt details [16/22] : LQv7U97C7b", + "2 | Receipt details [17/22] : f953857c9977cd3ed056938488f99e23459402", + "2 | Receipt details [18/22] : fe49d00c61ef8ef32491122d3bdead73c5a52c", + "2 | Receipt details [19/22] : 849446ecbea34b9f0668cb05f8af3d9c766127", + "2 | Receipt details [20/22] : 279d0a9df07514", + "2 | Receipt details [21/22] : 4558174ddf8fd67e0b2d3b5a238957102b0e3e", + "2 | Receipt details [22/22] : 62d6dee717df38d3be5075c7f7", + "3 | Portfolios : ", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Portfolio : Accept portfolio custody", - "1 | Auth id : 100", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Affirm with receipts", + "1 | Id : 50283", + "2 | Receipt details [1/22] : 9059891107135838323", + "2 | Receipt details [2/22] : 16452273737341266883", + "2 | Receipt details [3/22] : 2823651430997547532", + "2 | Receipt details [4/22] : 5HnhnetBnmYnPwWMU9FEEgPzWb6bGNgwB1quw3", + "2 | Receipt details [5/22] : TKdGT6KKvE", + "2 | Receipt details [6/22] : b5e7d49af65508ff587d825b8c781b9a597971", + "2 | Receipt details [7/22] : f02bf7158b313fb702a787a7b3d0d357e8cd3c", + "2 | Receipt details [8/22] : d48a30b3f69136241cec51031ab3dc62c8264a", + "2 | Receipt details [9/22] : f06ce03e025d7e", + "2 | Receipt details [10/22] : 5b02556c817830b2e174955984742e5a379f44", + "2 | Receipt details [11/22] : d15fb0cf8454a841e98a98aeb3", + "2 | Receipt details [12/22] : 3678524029690488400", + "2 | Receipt details [13/22] : 12248305561026325057", + "2 | Receipt details [14/22] : 18401470330850072355", + "2 | Receipt details [15/22] : 5GSAsCAnt6PM9EUURuXZrBh1LKv21rBhVSqHNr", + "2 | Receipt details [16/22] : LQv7U97C7b", + "2 | Receipt details [17/22] : f953857c9977cd3ed056938488f99e23459402", + "2 | Receipt details [18/22] : fe49d00c61ef8ef32491122d3bdead73c5a52c", + "2 | Receipt details [19/22] : 849446ecbea34b9f0668cb05f8af3d9c766127", + "2 | Receipt details [20/22] : 279d0a9df07514", + "2 | Receipt details [21/22] : 4558174ddf8fd67e0b2d3b5a238957102b0e3e", + "2 | Receipt details [22/22] : 62d6dee717df38d3be5075c7f7", + "3 | Portfolios : ", + "4 | Chain : Polymesh", + "5 | Nonce : 2339", + "6 | Tip : POLYX 0.000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1207, - "name": "Portfolio_Accept_portfolio_custody", - "blob": "22046400000000000000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1193, + "name": "Settlement_Affirm_with_receipts", + "blob": "25036bc40000000000000873588de8f532bb7dc3ebb6d5cb3752e40cda212204a02f27fd353dc153517932eb0305788efde6e71a00774a53251ff5fd48818f6e049a2d01b5e7d49af65508ff587d825b8c781b9a597971f02bf7158b313fb702a787a7b3d0d357e8cd3cd48a30b3f69136241cec51031ab3dc62c8264af06ce03e025d7e015b02556c817830b2e174955984742e5a379f44d15fb0cf8454a841e98a98aeb350a670871dbe0c33416a6a7103b9faa92357354fc5275fffc1500202c7d44a6a85783bd66fbae34435340c93c92b27f45f470c00eb537a0e00f953857c9977cd3ed056938488f99e23459402fe49d00c61ef8ef32491122d3bdead73c5a52c849446ecbea34b9f0668cb05f8af3d9c766127279d0a9df07514014558174ddf8fd67e0b2d3b5a238957102b0e3e62d6dee717df38d3be5075c7f7081ecdf645fda520fdad9442b82f11a317ec8a92cece3eb79e0e84695ba9ab00bd0140e201000000000010ffe4f73720b572bfee5823f0bdca2f1e7463c82bdfa9e2d044e4d779148cad0140e2010000000000d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Accept portfolio custody", - "1 | Auth id : 100", - "2 | Tip : POLYX 0.000987" + "0 | Settlement : Affirm with receipts", + "1 | Id : 50283", + "2 | Receipt details [1/22] : 9059891107135838323", + "2 | Receipt details [2/22] : 16452273737341266883", + "2 | Receipt details [3/22] : 2823651430997547532", + "2 | Receipt details [4/22] : 5HnhnetBnmYnPwWMU9FEEgPzWb6bGNgwB1quw3", + "2 | Receipt details [5/22] : TKdGT6KKvE", + "2 | Receipt details [6/22] : b5e7d49af65508ff587d825b8c781b9a597971", + "2 | Receipt details [7/22] : f02bf7158b313fb702a787a7b3d0d357e8cd3c", + "2 | Receipt details [8/22] : d48a30b3f69136241cec51031ab3dc62c8264a", + "2 | Receipt details [9/22] : f06ce03e025d7e", + "2 | Receipt details [10/22] : 5b02556c817830b2e174955984742e5a379f44", + "2 | Receipt details [11/22] : d15fb0cf8454a841e98a98aeb3", + "2 | Receipt details [12/22] : 3678524029690488400", + "2 | Receipt details [13/22] : 12248305561026325057", + "2 | Receipt details [14/22] : 18401470330850072355", + "2 | Receipt details [15/22] : 5GSAsCAnt6PM9EUURuXZrBh1LKv21rBhVSqHNr", + "2 | Receipt details [16/22] : LQv7U97C7b", + "2 | Receipt details [17/22] : f953857c9977cd3ed056938488f99e23459402", + "2 | Receipt details [18/22] : fe49d00c61ef8ef32491122d3bdead73c5a52c", + "2 | Receipt details [19/22] : 849446ecbea34b9f0668cb05f8af3d9c766127", + "2 | Receipt details [20/22] : 279d0a9df07514", + "2 | Receipt details [21/22] : 4558174ddf8fd67e0b2d3b5a238957102b0e3e", + "2 | Receipt details [22/22] : 62d6dee717df38d3be5075c7f7", + "3 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "3 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "3 | Portfolios [3/6] : 123456", + "3 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "3 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "3 | Portfolios [6/6] : 123456", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Portfolio : Accept portfolio custody", - "1 | Auth id : 100", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Affirm with receipts", + "1 | Id : 50283", + "2 | Receipt details [1/22] : 9059891107135838323", + "2 | Receipt details [2/22] : 16452273737341266883", + "2 | Receipt details [3/22] : 2823651430997547532", + "2 | Receipt details [4/22] : 5HnhnetBnmYnPwWMU9FEEgPzWb6bGNgwB1quw3", + "2 | Receipt details [5/22] : TKdGT6KKvE", + "2 | Receipt details [6/22] : b5e7d49af65508ff587d825b8c781b9a597971", + "2 | Receipt details [7/22] : f02bf7158b313fb702a787a7b3d0d357e8cd3c", + "2 | Receipt details [8/22] : d48a30b3f69136241cec51031ab3dc62c8264a", + "2 | Receipt details [9/22] : f06ce03e025d7e", + "2 | Receipt details [10/22] : 5b02556c817830b2e174955984742e5a379f44", + "2 | Receipt details [11/22] : d15fb0cf8454a841e98a98aeb3", + "2 | Receipt details [12/22] : 3678524029690488400", + "2 | Receipt details [13/22] : 12248305561026325057", + "2 | Receipt details [14/22] : 18401470330850072355", + "2 | Receipt details [15/22] : 5GSAsCAnt6PM9EUURuXZrBh1LKv21rBhVSqHNr", + "2 | Receipt details [16/22] : LQv7U97C7b", + "2 | Receipt details [17/22] : f953857c9977cd3ed056938488f99e23459402", + "2 | Receipt details [18/22] : fe49d00c61ef8ef32491122d3bdead73c5a52c", + "2 | Receipt details [19/22] : 849446ecbea34b9f0668cb05f8af3d9c766127", + "2 | Receipt details [20/22] : 279d0a9df07514", + "2 | Receipt details [21/22] : 4558174ddf8fd67e0b2d3b5a238957102b0e3e", + "2 | Receipt details [22/22] : 62d6dee717df38d3be5075c7f7", + "3 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "3 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "3 | Portfolios [3/6] : 123456", + "3 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "3 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "3 | Portfolios [6/6] : 123456", + "4 | Chain : Polymesh", + "5 | Nonce : 2339", + "6 | Tip : POLYX 1234.56789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1208, - "name": "Portfolio_Accept_portfolio_custody", - "blob": "22040000000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1194, + "name": "Settlement_Affirm_with_receipts", + "blob": "250364000000000000000873588de8f532bb7dc3ebb6d5cb3752e40cda212204a02f27fd353dc153517932eb0305788efde6e71a00774a53251ff5fd48818f6e049a2d01b5e7d49af65508ff587d825b8c781b9a597971f02bf7158b313fb702a787a7b3d0d357e8cd3cd48a30b3f69136241cec51031ab3dc62c8264af06ce03e025d7e015b02556c817830b2e174955984742e5a379f44d15fb0cf8454a841e98a98aeb350a670871dbe0c33416a6a7103b9faa92357354fc5275fffc1500202c7d44a6a85783bd66fbae34435340c93c92b27f45f470c00eb537a0e00f953857c9977cd3ed056938488f99e23459402fe49d00c61ef8ef32491122d3bdead73c5a52c849446ecbea34b9f0668cb05f8af3d9c766127279d0a9df07514014558174ddf8fd67e0b2d3b5a238957102b0e3e62d6dee717df38d3be5075c7f7081ecdf645fda520fdad9442b82f11a317ec8a92cece3eb79e0e84695ba9ab00bd0140e201000000000010ffe4f73720b572bfee5823f0bdca2f1e7463c82bdfa9e2d044e4d779148cad0140e2010000000000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Accept portfolio custody", - "1 | Auth id : 0", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Settlement : Affirm with receipts", + "1 | Id : 100", + "2 | Receipt details [1/22] : 9059891107135838323", + "2 | Receipt details [2/22] : 16452273737341266883", + "2 | Receipt details [3/22] : 2823651430997547532", + "2 | Receipt details [4/22] : 5HnhnetBnmYnPwWMU9FEEgPzWb6bGNgwB1quw3", + "2 | Receipt details [5/22] : TKdGT6KKvE", + "2 | Receipt details [6/22] : b5e7d49af65508ff587d825b8c781b9a597971", + "2 | Receipt details [7/22] : f02bf7158b313fb702a787a7b3d0d357e8cd3c", + "2 | Receipt details [8/22] : d48a30b3f69136241cec51031ab3dc62c8264a", + "2 | Receipt details [9/22] : f06ce03e025d7e", + "2 | Receipt details [10/22] : 5b02556c817830b2e174955984742e5a379f44", + "2 | Receipt details [11/22] : d15fb0cf8454a841e98a98aeb3", + "2 | Receipt details [12/22] : 3678524029690488400", + "2 | Receipt details [13/22] : 12248305561026325057", + "2 | Receipt details [14/22] : 18401470330850072355", + "2 | Receipt details [15/22] : 5GSAsCAnt6PM9EUURuXZrBh1LKv21rBhVSqHNr", + "2 | Receipt details [16/22] : LQv7U97C7b", + "2 | Receipt details [17/22] : f953857c9977cd3ed056938488f99e23459402", + "2 | Receipt details [18/22] : fe49d00c61ef8ef32491122d3bdead73c5a52c", + "2 | Receipt details [19/22] : 849446ecbea34b9f0668cb05f8af3d9c766127", + "2 | Receipt details [20/22] : 279d0a9df07514", + "2 | Receipt details [21/22] : 4558174ddf8fd67e0b2d3b5a238957102b0e3e", + "2 | Receipt details [22/22] : 62d6dee717df38d3be5075c7f7", + "3 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "3 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "3 | Portfolios [3/6] : 123456", + "3 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "3 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "3 | Portfolios [6/6] : 123456" ], "output_expert": [ - "0 | Portfolio : Accept portfolio custody", - "1 | Auth id : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Affirm with receipts", + "1 | Id : 100", + "2 | Receipt details [1/22] : 9059891107135838323", + "2 | Receipt details [2/22] : 16452273737341266883", + "2 | Receipt details [3/22] : 2823651430997547532", + "2 | Receipt details [4/22] : 5HnhnetBnmYnPwWMU9FEEgPzWb6bGNgwB1quw3", + "2 | Receipt details [5/22] : TKdGT6KKvE", + "2 | Receipt details [6/22] : b5e7d49af65508ff587d825b8c781b9a597971", + "2 | Receipt details [7/22] : f02bf7158b313fb702a787a7b3d0d357e8cd3c", + "2 | Receipt details [8/22] : d48a30b3f69136241cec51031ab3dc62c8264a", + "2 | Receipt details [9/22] : f06ce03e025d7e", + "2 | Receipt details [10/22] : 5b02556c817830b2e174955984742e5a379f44", + "2 | Receipt details [11/22] : d15fb0cf8454a841e98a98aeb3", + "2 | Receipt details [12/22] : 3678524029690488400", + "2 | Receipt details [13/22] : 12248305561026325057", + "2 | Receipt details [14/22] : 18401470330850072355", + "2 | Receipt details [15/22] : 5GSAsCAnt6PM9EUURuXZrBh1LKv21rBhVSqHNr", + "2 | Receipt details [16/22] : LQv7U97C7b", + "2 | Receipt details [17/22] : f953857c9977cd3ed056938488f99e23459402", + "2 | Receipt details [18/22] : fe49d00c61ef8ef32491122d3bdead73c5a52c", + "2 | Receipt details [19/22] : 849446ecbea34b9f0668cb05f8af3d9c766127", + "2 | Receipt details [20/22] : 279d0a9df07514", + "2 | Receipt details [21/22] : 4558174ddf8fd67e0b2d3b5a238957102b0e3e", + "2 | Receipt details [22/22] : 62d6dee717df38d3be5075c7f7", + "3 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "3 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "3 | Portfolios [3/6] : 123456", + "3 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "3 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "3 | Portfolios [6/6] : 123456", + "4 | Chain : Polymesh", + "5 | Nonce : 2339", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1209, - "name": "Portfolio_Accept_portfolio_custody", - "blob": "22042309000000000000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1195, + "name": "Settlement_Affirm_with_receipts", + "blob": "25036bc40000000000000873588de8f532bb7dc3ebb6d5cb3752e40cda212204a02f27fd353dc153517932eb0305788efde6e71a00774a53251ff5fd48818f6e049a2d01b5e7d49af65508ff587d825b8c781b9a597971f02bf7158b313fb702a787a7b3d0d357e8cd3cd48a30b3f69136241cec51031ab3dc62c8264af06ce03e025d7e015b02556c817830b2e174955984742e5a379f44d15fb0cf8454a841e98a98aeb350a670871dbe0c33416a6a7103b9faa92357354fc5275fffc1500202c7d44a6a85783bd66fbae34435340c93c92b27f45f470c00eb537a0e00f953857c9977cd3ed056938488f99e23459402fe49d00c61ef8ef32491122d3bdead73c5a52c849446ecbea34b9f0668cb05f8af3d9c766127279d0a9df07514014558174ddf8fd67e0b2d3b5a238957102b0e3e62d6dee717df38d3be5075c7f7081ecdf645fda520fdad9442b82f11a317ec8a92cece3eb79e0e84695ba9ab00bd0140e201000000000010ffe4f73720b572bfee5823f0bdca2f1e7463c82bdfa9e2d044e4d779148cad0140e2010000000000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Accept portfolio custody", - "1 | Auth id : 2339", - "2 | Tip : POLYX 1234.56789" + "0 | Settlement : Affirm with receipts", + "1 | Id : 50283", + "2 | Receipt details [1/22] : 9059891107135838323", + "2 | Receipt details [2/22] : 16452273737341266883", + "2 | Receipt details [3/22] : 2823651430997547532", + "2 | Receipt details [4/22] : 5HnhnetBnmYnPwWMU9FEEgPzWb6bGNgwB1quw3", + "2 | Receipt details [5/22] : TKdGT6KKvE", + "2 | Receipt details [6/22] : b5e7d49af65508ff587d825b8c781b9a597971", + "2 | Receipt details [7/22] : f02bf7158b313fb702a787a7b3d0d357e8cd3c", + "2 | Receipt details [8/22] : d48a30b3f69136241cec51031ab3dc62c8264a", + "2 | Receipt details [9/22] : f06ce03e025d7e", + "2 | Receipt details [10/22] : 5b02556c817830b2e174955984742e5a379f44", + "2 | Receipt details [11/22] : d15fb0cf8454a841e98a98aeb3", + "2 | Receipt details [12/22] : 3678524029690488400", + "2 | Receipt details [13/22] : 12248305561026325057", + "2 | Receipt details [14/22] : 18401470330850072355", + "2 | Receipt details [15/22] : 5GSAsCAnt6PM9EUURuXZrBh1LKv21rBhVSqHNr", + "2 | Receipt details [16/22] : LQv7U97C7b", + "2 | Receipt details [17/22] : f953857c9977cd3ed056938488f99e23459402", + "2 | Receipt details [18/22] : fe49d00c61ef8ef32491122d3bdead73c5a52c", + "2 | Receipt details [19/22] : 849446ecbea34b9f0668cb05f8af3d9c766127", + "2 | Receipt details [20/22] : 279d0a9df07514", + "2 | Receipt details [21/22] : 4558174ddf8fd67e0b2d3b5a238957102b0e3e", + "2 | Receipt details [22/22] : 62d6dee717df38d3be5075c7f7", + "3 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "3 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "3 | Portfolios [3/6] : 123456", + "3 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "3 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "3 | Portfolios [6/6] : 123456", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Portfolio : Accept portfolio custody", - "1 | Auth id : 2339", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Affirm with receipts", + "1 | Id : 50283", + "2 | Receipt details [1/22] : 9059891107135838323", + "2 | Receipt details [2/22] : 16452273737341266883", + "2 | Receipt details [3/22] : 2823651430997547532", + "2 | Receipt details [4/22] : 5HnhnetBnmYnPwWMU9FEEgPzWb6bGNgwB1quw3", + "2 | Receipt details [5/22] : TKdGT6KKvE", + "2 | Receipt details [6/22] : b5e7d49af65508ff587d825b8c781b9a597971", + "2 | Receipt details [7/22] : f02bf7158b313fb702a787a7b3d0d357e8cd3c", + "2 | Receipt details [8/22] : d48a30b3f69136241cec51031ab3dc62c8264a", + "2 | Receipt details [9/22] : f06ce03e025d7e", + "2 | Receipt details [10/22] : 5b02556c817830b2e174955984742e5a379f44", + "2 | Receipt details [11/22] : d15fb0cf8454a841e98a98aeb3", + "2 | Receipt details [12/22] : 3678524029690488400", + "2 | Receipt details [13/22] : 12248305561026325057", + "2 | Receipt details [14/22] : 18401470330850072355", + "2 | Receipt details [15/22] : 5GSAsCAnt6PM9EUURuXZrBh1LKv21rBhVSqHNr", + "2 | Receipt details [16/22] : LQv7U97C7b", + "2 | Receipt details [17/22] : f953857c9977cd3ed056938488f99e23459402", + "2 | Receipt details [18/22] : fe49d00c61ef8ef32491122d3bdead73c5a52c", + "2 | Receipt details [19/22] : 849446ecbea34b9f0668cb05f8af3d9c766127", + "2 | Receipt details [20/22] : 279d0a9df07514", + "2 | Receipt details [21/22] : 4558174ddf8fd67e0b2d3b5a238957102b0e3e", + "2 | Receipt details [22/22] : 62d6dee717df38d3be5075c7f7", + "3 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "3 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "3 | Portfolios [3/6] : 123456", + "3 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "3 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "3 | Portfolios [6/6] : 123456", + "4 | Chain : Polymesh", + "5 | Nonce : 0", + "6 | Tip : POLYX 0.000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1210, - "name": "Portfolio_Accept_portfolio_custody", - "blob": "22042309000000000000d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1196, + "name": "Settlement_Set_venue_filtering", + "blob": "2504417373657449442d313233343536373801d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Accept portfolio custody", - "1 | Auth id : 2339", - "2 | Tip : POLYX 55.555555" + "0 | Settlement : Set venue filtering", + "1 | Asset id : AssetID-12345678", + "2 | Enabled : True" ], "output_expert": [ - "0 | Portfolio : Accept portfolio custody", - "1 | Auth id : 2339", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", + "0 | Settlement : Set venue filtering", + "1 | Asset id : AssetID-12345678", + "2 | Enabled : True", + "3 | Chain : Polymesh", + "4 | Nonce : 1", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1211, - "name": "Portfolio_Move_portfolio_funds", - "blob": "220564af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e201000000000064af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e201000000000000d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1197, + "name": "Settlement_Set_venue_filtering", + "blob": "2504417373657449442d313233343536373801d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Move portfolio funds", - "1 | From [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | From [2/3] : a57f7ac2d27e10de05675c1086", - "1 | From [3/3] : 123456", - "2 | To [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | To [2/3] : a57f7ac2d27e10de05675c1086", - "2 | To [3/3] : 123456", - "3 | Funds : ", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Portfolio : Move portfolio funds", - "1 | From [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | From [2/3] : a57f7ac2d27e10de05675c1086", - "1 | From [3/3] : 123456", - "2 | To [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | To [2/3] : a57f7ac2d27e10de05675c1086", - "2 | To [3/3] : 123456", - "3 | Funds : ", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1212, - "name": "Portfolio_Move_portfolio_funds", - "blob": "220564af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e201000000000064af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e201000000000000d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Move portfolio funds", - "1 | From [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | From [2/3] : a57f7ac2d27e10de05675c1086", - "1 | From [3/3] : 123456", - "2 | To [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | To [2/3] : a57f7ac2d27e10de05675c1086", - "2 | To [3/3] : 123456", - "3 | Funds : ", - "4 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Portfolio : Move portfolio funds", - "1 | From [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | From [2/3] : a57f7ac2d27e10de05675c1086", - "1 | From [3/3] : 123456", - "2 | To [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | To [2/3] : a57f7ac2d27e10de05675c1086", - "2 | To [3/3] : 123456", - "3 | Funds : ", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1213, - "name": "Portfolio_Move_portfolio_funds", - "blob": "220564af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e201000000000064af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e201000000000008005449434b45522d3334353637a58acf5ae09910c7f90991222152bba6010000000000000000000000000000000000000000000000000000000000000000015449434b45522d31323334350c0e6b18434afcd7c0018e221a54420adab040d7c0e0ed8dc101781ac8b360187d5986e609c02e5574293bebf3a56f0b28881679911d5a928228d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Move portfolio funds", - "1 | From [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | From [2/3] : a57f7ac2d27e10de05675c1086", - "1 | From [3/3] : 123456", - "2 | To [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | To [2/3] : a57f7ac2d27e10de05675c1086", - "2 | To [3/3] : 123456", - "3 | Funds [1/11] : TICKER-34567", - "3 | Funds [2/11] : 221624472595656741762916686831167.7037", - "3 | Funds [3/11] : 17", - "3 | Funds [4/11] : 0x000000000000000000000000000000000000", - "3 | Funds [5/11] : 0000000000000000000000000000", - "3 | Funds [6/11] : TICKER-12345", - "3 | Funds [7/11] : 13895852571158407950", - "3 | Funds [8/11] : 15711443179018554881", - "3 | Funds [9/11] : 13947065170600083632", - "3 | Funds [10/11] : 0x781ac8b360187d5986e609c02e5574293beb", - "3 | Funds [11/11] : f3a56f0b28881679911d5a928228", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Portfolio : Move portfolio funds", - "1 | From [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | From [2/3] : a57f7ac2d27e10de05675c1086", - "1 | From [3/3] : 123456", - "2 | To [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | To [2/3] : a57f7ac2d27e10de05675c1086", - "2 | To [3/3] : 123456", - "3 | Funds [1/11] : TICKER-34567", - "3 | Funds [2/11] : 221624472595656741762916686831167.7037", - "3 | Funds [3/11] : 17", - "3 | Funds [4/11] : 0x000000000000000000000000000000000000", - "3 | Funds [5/11] : 0000000000000000000000000000", - "3 | Funds [6/11] : TICKER-12345", - "3 | Funds [7/11] : 13895852571158407950", - "3 | Funds [8/11] : 15711443179018554881", - "3 | Funds [9/11] : 13947065170600083632", - "3 | Funds [10/11] : 0x781ac8b360187d5986e609c02e5574293beb", - "3 | Funds [11/11] : f3a56f0b28881679911d5a928228", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1214, - "name": "Portfolio_Move_portfolio_funds", - "blob": "220564af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e201000000000064af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e201000000000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Move portfolio funds", - "1 | From [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | From [2/3] : a57f7ac2d27e10de05675c1086", - "1 | From [3/3] : 123456", - "2 | To [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | To [2/3] : a57f7ac2d27e10de05675c1086", - "2 | To [3/3] : 123456", - "3 | Funds : ", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Portfolio : Move portfolio funds", - "1 | From [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | From [2/3] : a57f7ac2d27e10de05675c1086", - "1 | From [3/3] : 123456", - "2 | To [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | To [2/3] : a57f7ac2d27e10de05675c1086", - "2 | To [3/3] : 123456", - "3 | Funds : ", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1215, - "name": "Portfolio_Move_portfolio_funds", - "blob": "220564af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e201000000000064af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e201000000000000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Move portfolio funds", - "1 | From [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | From [2/3] : a57f7ac2d27e10de05675c1086", - "1 | From [3/3] : 123456", - "2 | To [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | To [2/3] : a57f7ac2d27e10de05675c1086", - "2 | To [3/3] : 123456", - "3 | Funds : " + "0 | Settlement : Set venue filtering", + "1 | Asset id : AssetID-12345678", + "2 | Enabled : True", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Portfolio : Move portfolio funds", - "1 | From [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | From [2/3] : a57f7ac2d27e10de05675c1086", - "1 | From [3/3] : 123456", - "2 | To [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | To [2/3] : a57f7ac2d27e10de05675c1086", - "2 | To [3/3] : 123456", - "3 | Funds : ", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", + "0 | Settlement : Set venue filtering", + "1 | Asset id : AssetID-12345678", + "2 | Enabled : True", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1216, - "name": "Portfolio_Pre_approve_portfolio", - "blob": "22065449434b45522d313233343564af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e2010000000000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1198, + "name": "Settlement_Set_venue_filtering", + "blob": "2504417373657449442d313233343536373800d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Pre approve portfolio", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio id [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio id [3/3] : 123456" + "0 | Settlement : Set venue filtering", + "1 | Asset id : AssetID-12345678", + "2 | Enabled : False", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Portfolio : Pre approve portfolio", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio id [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio id [3/3] : 123456", + "0 | Settlement : Set venue filtering", + "1 | Asset id : AssetID-12345678", + "2 | Enabled : False", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 100", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1217, - "name": "Portfolio_Pre_approve_portfolio", - "blob": "22065449434b45522d313233343564af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e2010000000000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1199, + "name": "Settlement_Set_venue_filtering", + "blob": "2504417373657449442d313233343536373800d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Pre approve portfolio", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio id [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio id [3/3] : 123456", - "3 | Tip : POLYX 55.555555" + "0 | Settlement : Set venue filtering", + "1 | Asset id : AssetID-12345678", + "2 | Enabled : False" ], "output_expert": [ - "0 | Portfolio : Pre approve portfolio", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio id [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio id [3/3] : 123456", + "0 | Settlement : Set venue filtering", + "1 | Asset id : AssetID-12345678", + "2 | Enabled : False", "3 | Chain : Polymesh", "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1218, - "name": "Portfolio_Pre_approve_portfolio", - "blob": "22065449434b45522d313233343564af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e2010000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1200, + "name": "Settlement_Set_venue_filtering", + "blob": "2504417373657449442d313233343536373801d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Pre approve portfolio", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio id [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio id [3/3] : 123456", + "0 | Settlement : Set venue filtering", + "1 | Asset id : AssetID-12345678", + "2 | Enabled : True", "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Portfolio : Pre approve portfolio", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio id [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio id [3/3] : 123456", + "0 | Settlement : Set venue filtering", + "1 | Asset id : AssetID-12345678", + "2 | Enabled : True", "3 | Chain : Polymesh", "4 | Nonce : 50283", "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1219, - "name": "Portfolio_Pre_approve_portfolio", - "blob": "22065449434b45522d313233343564af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e2010000000000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1201, + "name": "Settlement_Allow_venues", + "blob": "2505417373657449442d31323334353637380c000000000000000008442000000000001e6d080000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Pre approve portfolio", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio id [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio id [3/3] : 123456", - "3 | Tip : POLYX 1234.56789" + "0 | Settlement : Allow venues", + "1 | Asset id : AssetID-12345678", + "2 | Venues [1/3] : 0", + "2 | Venues [2/3] : 2114568", + "2 | Venues [3/3] : 552222", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Portfolio : Pre approve portfolio", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio id [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio id [3/3] : 123456", + "0 | Settlement : Allow venues", + "1 | Asset id : AssetID-12345678", + "2 | Venues [1/3] : 0", + "2 | Venues [2/3] : 2114568", + "2 | Venues [3/3] : 552222", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 2339", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1220, - "name": "Portfolio_Pre_approve_portfolio", - "blob": "22065449434b45522d313233343564af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e2010000000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1202, + "name": "Settlement_Allow_venues", + "blob": "2505417373657449442d31323334353637380c000000000000000008442000000000001e6d080000000000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Pre approve portfolio", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio id [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio id [3/3] : 123456", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Settlement : Allow venues", + "1 | Asset id : AssetID-12345678", + "2 | Venues [1/3] : 0", + "2 | Venues [2/3] : 2114568", + "2 | Venues [3/3] : 552222", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Portfolio : Pre approve portfolio", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio id [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio id [3/3] : 123456", + "0 | Settlement : Allow venues", + "1 | Asset id : AssetID-12345678", + "2 | Venues [1/3] : 0", + "2 | Venues [2/3] : 2114568", + "2 | Venues [3/3] : 552222", "3 | Chain : Polymesh", "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1221, - "name": "Portfolio_Remove_portfolio_pre_approval", - "blob": "22075449434b45522d313233343564af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e2010000000000d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1203, + "name": "Settlement_Allow_venues", + "blob": "2505417373657449442d313233343536373810d007000000000000000000000000000008442000000000001e6d080000000000d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Remove portfolio pre approval", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio id [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio id [3/3] : 123456" + "0 | Settlement : Allow venues", + "1 | Asset id : AssetID-12345678", + "2 | Venues [1/4] : 2000", + "2 | Venues [2/4] : 0", + "2 | Venues [3/4] : 2114568", + "2 | Venues [4/4] : 552222" ], "output_expert": [ - "0 | Portfolio : Remove portfolio pre approval", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio id [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio id [3/3] : 123456", + "0 | Settlement : Allow venues", + "1 | Asset id : AssetID-12345678", + "2 | Venues [1/4] : 2000", + "2 | Venues [2/4] : 0", + "2 | Venues [3/4] : 2114568", + "2 | Venues [4/4] : 552222", "3 | Chain : Polymesh", - "4 | Nonce : 1", + "4 | Nonce : 100", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1222, - "name": "Portfolio_Remove_portfolio_pre_approval", - "blob": "22075449434b45522d313233343564af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e2010000000000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1204, + "name": "Settlement_Allow_venues", + "blob": "2505417373657449442d313233343536373810d007000000000000000000000000000008442000000000001e6d080000000000d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Remove portfolio pre approval", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio id [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio id [3/3] : 123456", + "0 | Settlement : Allow venues", + "1 | Asset id : AssetID-12345678", + "2 | Venues [1/4] : 2000", + "2 | Venues [2/4] : 0", + "2 | Venues [3/4] : 2114568", + "2 | Venues [4/4] : 552222", "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Portfolio : Remove portfolio pre approval", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio id [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio id [3/3] : 123456", + "0 | Settlement : Allow venues", + "1 | Asset id : AssetID-12345678", + "2 | Venues [1/4] : 2000", + "2 | Venues [2/4] : 0", + "2 | Venues [3/4] : 2114568", + "2 | Venues [4/4] : 552222", "3 | Chain : Polymesh", - "4 | Nonce : 1", + "4 | Nonce : 50283", "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1223, - "name": "Portfolio_Remove_portfolio_pre_approval", - "blob": "22075449434b45522d313233343564af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e2010000000000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1205, + "name": "Settlement_Allow_venues", + "blob": "2505417373657449442d31323334353637380c000000000000000008442000000000001e6d080000000000d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Remove portfolio pre approval", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio id [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio id [3/3] : 123456", - "3 | Tip : POLYX 0.000987" + "0 | Settlement : Allow venues", + "1 | Asset id : AssetID-12345678", + "2 | Venues [1/3] : 0", + "2 | Venues [2/3] : 2114568", + "2 | Venues [3/3] : 552222", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Portfolio : Remove portfolio pre approval", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio id [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio id [3/3] : 123456", + "0 | Settlement : Allow venues", + "1 | Asset id : AssetID-12345678", + "2 | Venues [1/3] : 0", + "2 | Venues [2/3] : 2114568", + "2 | Venues [3/3] : 552222", "3 | Chain : Polymesh", "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1224, - "name": "Portfolio_Remove_portfolio_pre_approval", - "blob": "22075449434b45522d313233343564af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e2010000000000d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1206, + "name": "Settlement_Disallow_venues", + "blob": "2506417373657449442d3132333435363738040844200000000000d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Remove portfolio pre approval", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio id [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio id [3/3] : 123456", - "3 | Tip : POLYX 0.000987" + "0 | Settlement : Disallow venues", + "1 | Asset id : AssetID-12345678", + "2 | Venues : 2114568" ], "output_expert": [ - "0 | Portfolio : Remove portfolio pre approval", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio id [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio id [3/3] : 123456", + "0 | Settlement : Disallow venues", + "1 | Asset id : AssetID-12345678", + "2 | Venues : 2114568", "3 | Chain : Polymesh", "4 | Nonce : 0", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 1207, + "name": "Settlement_Disallow_venues", + "blob": "2506417373657449442d313233343536373810d007000000000000000000000000000008442000000000001e6d080000000000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Settlement : Disallow venues", + "1 | Asset id : AssetID-12345678", + "2 | Venues [1/4] : 2000", + "2 | Venues [2/4] : 0", + "2 | Venues [3/4] : 2114568", + "2 | Venues [4/4] : 552222" + ], + "output_expert": [ + "0 | Settlement : Disallow venues", + "1 | Asset id : AssetID-12345678", + "2 | Venues [1/4] : 2000", + "2 | Venues [2/4] : 0", + "2 | Venues [3/4] : 2114568", + "2 | Venues [4/4] : 552222", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 1208, + "name": "Settlement_Disallow_venues", + "blob": "2506417373657449442d313233343536373810d007000000000000000000000000000008442000000000001e6d080000000000d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Settlement : Disallow venues", + "1 | Asset id : AssetID-12345678", + "2 | Venues [1/4] : 2000", + "2 | Venues [2/4] : 0", + "2 | Venues [3/4] : 2114568", + "2 | Venues [4/4] : 552222", + "3 | Tip : POLYX 0.000987" + ], + "output_expert": [ + "0 | Settlement : Disallow venues", + "1 | Asset id : AssetID-12345678", + "2 | Venues [1/4] : 2000", + "2 | Venues [2/4] : 0", + "2 | Venues [3/4] : 2114568", + "2 | Venues [4/4] : 552222", + "3 | Chain : Polymesh", + "4 | Nonce : 100", "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1225, - "name": "Portfolio_Remove_portfolio_pre_approval", - "blob": "22075449434b45522d313233343564af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e2010000000000d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1209, + "name": "Settlement_Disallow_venues", + "blob": "2506417373657449442d31323334353637380c000000000000000008442000000000001e6d080000000000d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Remove portfolio pre approval", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio id [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio id [3/3] : 123456", + "0 | Settlement : Disallow venues", + "1 | Asset id : AssetID-12345678", + "2 | Venues [1/3] : 0", + "2 | Venues [2/3] : 2114568", + "2 | Venues [3/3] : 552222", "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Portfolio : Remove portfolio pre approval", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio id [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio id [3/3] : 123456", + "0 | Settlement : Disallow venues", + "1 | Asset id : AssetID-12345678", + "2 | Venues [1/3] : 0", + "2 | Venues [2/3] : 2114568", + "2 | Venues [3/3] : 552222", "3 | Chain : Polymesh", - "4 | Nonce : 0", + "4 | Nonce : 2339", "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1226, - "name": "Portfolio_Allow_identity_to_create_portfolios", - "blob": "220844ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1210, + "name": "Settlement_Disallow_venues", + "blob": "2506417373657449442d31323334353637380c000000000000000008442000000000001e6d080000000000d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Allow identity to create portfolios", - "1 | Trusted identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Trusted identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 55.555555" + "0 | Settlement : Disallow venues", + "1 | Asset id : AssetID-12345678", + "2 | Venues [1/3] : 0", + "2 | Venues [2/3] : 2114568", + "2 | Venues [3/3] : 552222", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Portfolio : Allow identity to create portfolios", - "1 | Trusted identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Trusted identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Disallow venues", + "1 | Asset id : AssetID-12345678", + "2 | Venues [1/3] : 0", + "2 | Venues [2/3] : 2114568", + "2 | Venues [3/3] : 552222", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1227, - "name": "Portfolio_Allow_identity_to_create_portfolios", - "blob": "220844ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1211, + "name": "Settlement_Update_venue_signers", + "blob": "250700000000000000001442683728ce80bbeb8bc2d60272401a5a61c8c3752be4cd7646df026e35a34b6f008ccf2185eeddd862a8a228ca41e6c2cc4848ab04bdcaad75d5944fd08e1948c89b6cc70106cd9dfbfaeb50ae568e334a0b71134a3bf6539a046eccf7a3d21a04e0eb3cca1b0642d2429b165a7d4799452f61581fb18bb6c0691b13e5431a61b862f1c279831c030fcf3b8aadfb5c2dd57401fada346592e3173a98b0f2044a01d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Allow identity to create portfolios", - "1 | Trusted identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Trusted identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 55.555555" + "0 | Settlement : Update venue signers", + "1 | Id : 0", + "2 | Signers [1/10] : 5DZmyZZ6ztre9SepCA9faBJCQXDd8n85q4bp3w", + "2 | Signers [2/10] : K4KDyicxGs", + "2 | Signers [3/10] : 5C5Rgkds3Gnw5EHVmgWf1DQ9nc5Np4Eb32PzVX", + "2 | Signers [4/10] : v4WzXj31zV", + "2 | Signers [5/10] : 5Gbjc3HWVE6xmAVdyRSEZ3tcUXcd4fdsmZcdRx", + "2 | Signers [6/10] : 7Qzsnv7JJY", + "2 | Signers [7/10] : 5CB6s3J3kB9WwHaq3REJxi6qyn9kQtxHeVLWUv", + "2 | Signers [8/10] : p7kQgmJFrY", + "2 | Signers [9/10] : 5GEU4TzWkfNvnQiGkf6Ww4nhSrfB479zeWzwfe", + "2 | Signers [10/10] : Hxcwz7irDp", + "3 | Add signers : True", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Portfolio : Allow identity to create portfolios", - "1 | Trusted identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Trusted identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Update venue signers", + "1 | Id : 0", + "2 | Signers [1/10] : 5DZmyZZ6ztre9SepCA9faBJCQXDd8n85q4bp3w", + "2 | Signers [2/10] : K4KDyicxGs", + "2 | Signers [3/10] : 5C5Rgkds3Gnw5EHVmgWf1DQ9nc5Np4Eb32PzVX", + "2 | Signers [4/10] : v4WzXj31zV", + "2 | Signers [5/10] : 5Gbjc3HWVE6xmAVdyRSEZ3tcUXcd4fdsmZcdRx", + "2 | Signers [6/10] : 7Qzsnv7JJY", + "2 | Signers [7/10] : 5CB6s3J3kB9WwHaq3REJxi6qyn9kQtxHeVLWUv", + "2 | Signers [8/10] : p7kQgmJFrY", + "2 | Signers [9/10] : 5GEU4TzWkfNvnQiGkf6Ww4nhSrfB479zeWzwfe", + "2 | Signers [10/10] : Hxcwz7irDp", + "3 | Add signers : True", + "4 | Chain : Polymesh", + "5 | Nonce : 0", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1228, - "name": "Portfolio_Allow_identity_to_create_portfolios", - "blob": "220844ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1212, + "name": "Settlement_Update_venue_signers", + "blob": "25076bc4000000000000180ef151c74547b7a7500a496af42d2fab49d1fcc6820a4e18310fa25ff1f208331c3a884cb495d43667130b4ac2de24742d1e20256845ff7455234cf9da6cba05d042abb5805b65960ea6515003d5b23c6c3fe964d7b867ff08cbe54d495c6958f24a5e29c643a8d4c84c11a8b718ca29f06d45046440011cfcbc4c9e36ab4a06806746fe2cd50eab68635ab87799ab8a0b47f14076a11d843875edd1826653534ee12d695c74d86d1476e7a82cc36fa43b1eefc47ff3d2818677bb163955330701d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Allow identity to create portfolios", - "1 | Trusted identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Trusted identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 1234.56789" + "0 | Settlement : Update venue signers", + "1 | Id : 50283", + "2 | Signers [1/12] : 5CQJDPUqmKoQm8WwHZ7BDPyjee5aw4ccmnV9Pw", + "2 | Signers [2/12] : LqriprPhPe", + "2 | Signers [3/12] : 5ChiavXNPqvPDVbKRmaFeJSkq3EXZd2rdUuf6n", + "2 | Signers [4/12] : UXQkWvn9CU", + "2 | Signers [5/12] : 5Gmmd4Rmn2PXc3M8n2V8vAgLDxwu21Yep337Qh", + "2 | Signers [6/12] : CqzSxwKhmT", + "2 | Signers [7/12] : 5HYPY77hv8zkcLYg3K244RU3YTuiZSdPCpDhqq", + "2 | Signers [8/12] : MNrFX6Ttoq", + "2 | Signers [9/12] : 5Ey4fbG9FXRxKw4JbxN8YTgu2H6UXUjVdehV6y", + "2 | Signers [10/12] : ZL6zfBpBBY", + "2 | Signers [11/12] : 5Dr8V1qXmG1xRUopT82MPCqZxfFHsFGqrpancB", + "2 | Signers [12/12] : TwjCZ6sjig", + "3 | Add signers : True", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Portfolio : Allow identity to create portfolios", - "1 | Trusted identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Trusted identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Update venue signers", + "1 | Id : 50283", + "2 | Signers [1/12] : 5CQJDPUqmKoQm8WwHZ7BDPyjee5aw4ccmnV9Pw", + "2 | Signers [2/12] : LqriprPhPe", + "2 | Signers [3/12] : 5ChiavXNPqvPDVbKRmaFeJSkq3EXZd2rdUuf6n", + "2 | Signers [4/12] : UXQkWvn9CU", + "2 | Signers [5/12] : 5Gmmd4Rmn2PXc3M8n2V8vAgLDxwu21Yep337Qh", + "2 | Signers [6/12] : CqzSxwKhmT", + "2 | Signers [7/12] : 5HYPY77hv8zkcLYg3K244RU3YTuiZSdPCpDhqq", + "2 | Signers [8/12] : MNrFX6Ttoq", + "2 | Signers [9/12] : 5Ey4fbG9FXRxKw4JbxN8YTgu2H6UXUjVdehV6y", + "2 | Signers [10/12] : ZL6zfBpBBY", + "2 | Signers [11/12] : 5Dr8V1qXmG1xRUopT82MPCqZxfFHsFGqrpancB", + "2 | Signers [12/12] : TwjCZ6sjig", + "3 | Add signers : True", + "4 | Chain : Polymesh", + "5 | Nonce : 100", + "6 | Tip : POLYX 5552342.355555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1229, - "name": "Portfolio_Allow_identity_to_create_portfolios", - "blob": "220844ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1213, + "name": "Settlement_Update_venue_signers", + "blob": "250723090000000000001442683728ce80bbeb8bc2d60272401a5a61c8c3752be4cd7646df026e35a34b6f008ccf2185eeddd862a8a228ca41e6c2cc4848ab04bdcaad75d5944fd08e1948c89b6cc70106cd9dfbfaeb50ae568e334a0b71134a3bf6539a046eccf7a3d21a04e0eb3cca1b0642d2429b165a7d4799452f61581fb18bb6c0691b13e5431a61b862f1c279831c030fcf3b8aadfb5c2dd57401fada346592e3173a98b0f2044a01d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Allow identity to create portfolios", - "1 | Trusted identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Trusted identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 1234.56789" + "0 | Settlement : Update venue signers", + "1 | Id : 2339", + "2 | Signers [1/10] : 5DZmyZZ6ztre9SepCA9faBJCQXDd8n85q4bp3w", + "2 | Signers [2/10] : K4KDyicxGs", + "2 | Signers [3/10] : 5C5Rgkds3Gnw5EHVmgWf1DQ9nc5Np4Eb32PzVX", + "2 | Signers [4/10] : v4WzXj31zV", + "2 | Signers [5/10] : 5Gbjc3HWVE6xmAVdyRSEZ3tcUXcd4fdsmZcdRx", + "2 | Signers [6/10] : 7Qzsnv7JJY", + "2 | Signers [7/10] : 5CB6s3J3kB9WwHaq3REJxi6qyn9kQtxHeVLWUv", + "2 | Signers [8/10] : p7kQgmJFrY", + "2 | Signers [9/10] : 5GEU4TzWkfNvnQiGkf6Ww4nhSrfB479zeWzwfe", + "2 | Signers [10/10] : Hxcwz7irDp", + "3 | Add signers : True" ], "output_expert": [ - "0 | Portfolio : Allow identity to create portfolios", - "1 | Trusted identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Trusted identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Update venue signers", + "1 | Id : 2339", + "2 | Signers [1/10] : 5DZmyZZ6ztre9SepCA9faBJCQXDd8n85q4bp3w", + "2 | Signers [2/10] : K4KDyicxGs", + "2 | Signers [3/10] : 5C5Rgkds3Gnw5EHVmgWf1DQ9nc5Np4Eb32PzVX", + "2 | Signers [4/10] : v4WzXj31zV", + "2 | Signers [5/10] : 5Gbjc3HWVE6xmAVdyRSEZ3tcUXcd4fdsmZcdRx", + "2 | Signers [6/10] : 7Qzsnv7JJY", + "2 | Signers [7/10] : 5CB6s3J3kB9WwHaq3REJxi6qyn9kQtxHeVLWUv", + "2 | Signers [8/10] : p7kQgmJFrY", + "2 | Signers [9/10] : 5GEU4TzWkfNvnQiGkf6Ww4nhSrfB479zeWzwfe", + "2 | Signers [10/10] : Hxcwz7irDp", + "3 | Add signers : True", + "4 | Chain : Polymesh", + "5 | Nonce : 2339", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1230, - "name": "Portfolio_Allow_identity_to_create_portfolios", - "blob": "220844ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1214, + "name": "Settlement_Update_venue_signers", + "blob": "25076400000000000000180ef151c74547b7a7500a496af42d2fab49d1fcc6820a4e18310fa25ff1f208331c3a884cb495d43667130b4ac2de24742d1e20256845ff7455234cf9da6cba05d042abb5805b65960ea6515003d5b23c6c3fe964d7b867ff08cbe54d495c6958f24a5e29c643a8d4c84c11a8b718ca29f06d45046440011cfcbc4c9e36ab4a06806746fe2cd50eab68635ab87799ab8a0b47f14076a11d843875edd1826653534ee12d695c74d86d1476e7a82cc36fa43b1eefc47ff3d2818677bb163955330700d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Allow identity to create portfolios", - "1 | Trusted identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Trusted identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 1234.56789" + "0 | Settlement : Update venue signers", + "1 | Id : 100", + "2 | Signers [1/12] : 5CQJDPUqmKoQm8WwHZ7BDPyjee5aw4ccmnV9Pw", + "2 | Signers [2/12] : LqriprPhPe", + "2 | Signers [3/12] : 5ChiavXNPqvPDVbKRmaFeJSkq3EXZd2rdUuf6n", + "2 | Signers [4/12] : UXQkWvn9CU", + "2 | Signers [5/12] : 5Gmmd4Rmn2PXc3M8n2V8vAgLDxwu21Yep337Qh", + "2 | Signers [6/12] : CqzSxwKhmT", + "2 | Signers [7/12] : 5HYPY77hv8zkcLYg3K244RU3YTuiZSdPCpDhqq", + "2 | Signers [8/12] : MNrFX6Ttoq", + "2 | Signers [9/12] : 5Ey4fbG9FXRxKw4JbxN8YTgu2H6UXUjVdehV6y", + "2 | Signers [10/12] : ZL6zfBpBBY", + "2 | Signers [11/12] : 5Dr8V1qXmG1xRUopT82MPCqZxfFHsFGqrpancB", + "2 | Signers [12/12] : TwjCZ6sjig", + "3 | Add signers : False", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Portfolio : Allow identity to create portfolios", - "1 | Trusted identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Trusted identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Update venue signers", + "1 | Id : 100", + "2 | Signers [1/12] : 5CQJDPUqmKoQm8WwHZ7BDPyjee5aw4ccmnV9Pw", + "2 | Signers [2/12] : LqriprPhPe", + "2 | Signers [3/12] : 5ChiavXNPqvPDVbKRmaFeJSkq3EXZd2rdUuf6n", + "2 | Signers [4/12] : UXQkWvn9CU", + "2 | Signers [5/12] : 5Gmmd4Rmn2PXc3M8n2V8vAgLDxwu21Yep337Qh", + "2 | Signers [6/12] : CqzSxwKhmT", + "2 | Signers [7/12] : 5HYPY77hv8zkcLYg3K244RU3YTuiZSdPCpDhqq", + "2 | Signers [8/12] : MNrFX6Ttoq", + "2 | Signers [9/12] : 5Ey4fbG9FXRxKw4JbxN8YTgu2H6UXUjVdehV6y", + "2 | Signers [10/12] : ZL6zfBpBBY", + "2 | Signers [11/12] : 5Dr8V1qXmG1xRUopT82MPCqZxfFHsFGqrpancB", + "2 | Signers [12/12] : TwjCZ6sjig", + "3 | Add signers : False", + "4 | Chain : Polymesh", + "5 | Nonce : 50283", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1231, - "name": "Portfolio_Revoke_create_portfolios_permission", - "blob": "220944ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1215, + "name": "Settlement_Update_venue_signers", + "blob": "25070100000000000000203c805abe04101b6fa4fc9e89c684ee50e9432d08db1ae39ec8998a801c26e328a0b64be421840cb0f57ae9a222ecb507c0e4815ad82c4c78feadfbc198468f7c08d0207b9604ddf69d9ef102862f1c814a5368907c6a451968bd43e70bcae53f1042100af1c38ad01e887cadd6c3691ee07c407e01a3e857a706a078b4522d697652f2b2f7065e209883ac75e5b3b953b4edb66391afddd00fed9bbd26edd22d801297f7ca7db4c5133f40e396b575dd3bbd9d15cbc7ff0c3a9de40a7577c01f88f08186b7b6b95ffcde374124d39e158f799da938b2634e65fd56e7e7d401159213b5d5cb1a6be9044efa7be7b00f9c12f755811a09840e7bc86098aa8cf30e01d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Revoke create portfolios permission", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 5552342.355555" + "0 | Settlement : Update venue signers", + "1 | Id : 1", + "2 | Signers [1/16] : 5DS2roYwteJYMxMztdRK6DJMwjgN6DWAkWzjEs", + "2 | Signers [2/16] : NZD5CoiXWo", + "2 | Signers [3/16] : 5FhRfw6bvEZnzaLAR6HnLUrdzuPVYQDY7EFtbV", + "2 | Signers [4/16] : 6CSU9zCoNV", + "2 | Signers [5/16] : 5CGG4q6R2B2xjDwFXyk7CA9HdWbsSMy5TYPfQN", + "2 | Signers [6/16] : 9he3kNizS2", + "2 | Signers [7/16] : 5CS2FLcgjJWzUZGu2WQ5eBaJfzd8EMQ1VmQMcn", + "2 | Signers [8/16] : QtJCTQiEcn", + "2 | Signers [9/16] : 5Ejr9Z3AQ2mZ91tURigFZtDT8Lg6wcjA3TmTAU", + "2 | Signers [10/16] : sGVo1NrpuH", + "2 | Signers [11/16] : 5ExdWXS1wsgZXSkK3ZdnVoTzjhLM2bc9hYyXr7", + "2 | Signers [12/16] : SV5DXXbHZk", + "2 | Signers [13/16] : 5FAFpCpNJiUxoqKkuYjCDTmakuxcc7NTAStJyL", + "2 | Signers [14/16] : KTFMModfEt", + "2 | Signers [15/16] : 5FNEhkrQ8pMGQroh5MNS7zSzHLtRAqpvw9nkFB", + "2 | Signers [16/16] : hC9ZyYVvgh", + "3 | Add signers : True", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Portfolio : Revoke create portfolios permission", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Update venue signers", + "1 | Id : 1", + "2 | Signers [1/16] : 5DS2roYwteJYMxMztdRK6DJMwjgN6DWAkWzjEs", + "2 | Signers [2/16] : NZD5CoiXWo", + "2 | Signers [3/16] : 5FhRfw6bvEZnzaLAR6HnLUrdzuPVYQDY7EFtbV", + "2 | Signers [4/16] : 6CSU9zCoNV", + "2 | Signers [5/16] : 5CGG4q6R2B2xjDwFXyk7CA9HdWbsSMy5TYPfQN", + "2 | Signers [6/16] : 9he3kNizS2", + "2 | Signers [7/16] : 5CS2FLcgjJWzUZGu2WQ5eBaJfzd8EMQ1VmQMcn", + "2 | Signers [8/16] : QtJCTQiEcn", + "2 | Signers [9/16] : 5Ejr9Z3AQ2mZ91tURigFZtDT8Lg6wcjA3TmTAU", + "2 | Signers [10/16] : sGVo1NrpuH", + "2 | Signers [11/16] : 5ExdWXS1wsgZXSkK3ZdnVoTzjhLM2bc9hYyXr7", + "2 | Signers [12/16] : SV5DXXbHZk", + "2 | Signers [13/16] : 5FAFpCpNJiUxoqKkuYjCDTmakuxcc7NTAStJyL", + "2 | Signers [14/16] : KTFMModfEt", + "2 | Signers [15/16] : 5FNEhkrQ8pMGQroh5MNS7zSzHLtRAqpvw9nkFB", + "2 | Signers [16/16] : hC9ZyYVvgh", + "3 | Add signers : True", + "4 | Chain : Polymesh", + "5 | Nonce : 50283", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1232, - "name": "Portfolio_Revoke_create_portfolios_permission", - "blob": "220944ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1216, + "name": "Settlement_Execute_manual_instruction", + "blob": "2508640000000000000001d1d59e4d955209df34f1dec937e640ecb16b4f7ff31cc128331f45917a9c14d8009d1c0000d3040000f70100000132f462770fd17d7236d22c37d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Revoke create portfolios permission", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 1234.56789" + "0 | Settlement : Execute manual instruction", + "1 | Id : 100", + "2 | Portfolio [1/3] : d1d59e4d955209df34f1dec937e640ecb16b4f", + "2 | Portfolio [2/3] : 7ff31cc128331f45917a9c14d8", + "2 | Portfolio [3/3] : Default", + "3 | Fungible transfers : 7325", + "4 | Nfts transfers : 1235", + "5 | Offchain transfers : 503", + "6 | Weight limit [1/2] : 500743436", + "6 | Weight limit [2/2] : 15530405087313361", + "7 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Portfolio : Revoke create portfolios permission", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Execute manual instruction", + "1 | Id : 100", + "2 | Portfolio [1/3] : d1d59e4d955209df34f1dec937e640ecb16b4f", + "2 | Portfolio [2/3] : 7ff31cc128331f45917a9c14d8", + "2 | Portfolio [3/3] : Default", + "3 | Fungible transfers : 7325", + "4 | Nfts transfers : 1235", + "5 | Offchain transfers : 503", + "6 | Weight limit [1/2] : 500743436", + "6 | Weight limit [2/2] : 15530405087313361", + "7 | Chain : Polymesh", + "8 | Nonce : 100", + "9 | Tip : POLYX 1234.56789", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1233, - "name": "Portfolio_Revoke_create_portfolios_permission", - "blob": "220944ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1217, + "name": "Settlement_Execute_manual_instruction", + "blob": "2508000000000000000001f1283140a9d9eb7511dc4b06a2b01a4f33a911e0c4a882297bc49b4c1d7bf7db01420e4f464bffc0def7010000d30400000000000000d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Revoke create portfolios permission", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 5552342.355555" + "0 | Settlement : Execute manual instruction", + "1 | Id : 0", + "2 | Portfolio [1/3] : f1283140a9d9eb7511dc4b06a2b01a4f33a911", + "2 | Portfolio [2/3] : e0c4a882297bc49b4c1d7bf7db", + "2 | Portfolio [3/3] : 16051109770715663938", + "3 | Fungible transfers : 503", + "4 | Nfts transfers : 1235", + "5 | Offchain transfers : 0", + "6 | Weight limit : None", + "7 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Portfolio : Revoke create portfolios permission", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Execute manual instruction", + "1 | Id : 0", + "2 | Portfolio [1/3] : f1283140a9d9eb7511dc4b06a2b01a4f33a911", + "2 | Portfolio [2/3] : e0c4a882297bc49b4c1d7bf7db", + "2 | Portfolio [3/3] : 16051109770715663938", + "3 | Fungible transfers : 503", + "4 | Nfts transfers : 1235", + "5 | Offchain transfers : 0", + "6 | Weight limit : None", + "7 | Chain : Polymesh", + "8 | Nonce : 50283", + "9 | Tip : POLYX 5552342.355555", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1234, - "name": "Portfolio_Revoke_create_portfolios_permission", - "blob": "220944ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1218, + "name": "Settlement_Execute_manual_instruction", + "blob": "2508230900000000000000d3040000343000000000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Revoke create portfolios permission", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip : POLYX 5552342.355555" + "0 | Settlement : Execute manual instruction", + "1 | Id : 2339", + "2 | Portfolio : None", + "3 | Fungible transfers : 1235", + "4 | Nfts transfers : 12340", + "5 | Offchain transfers : 0", + "6 | Weight limit : None", + "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "7 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Portfolio : Revoke create portfolios permission", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Execute manual instruction", + "1 | Id : 2339", + "2 | Portfolio : None", + "3 | Fungible transfers : 1235", + "4 | Nfts transfers : 12340", + "5 | Offchain transfers : 0", + "6 | Weight limit : None", + "7 | Chain : Polymesh", + "8 | Nonce : 2339", + "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "9 | Tip [2/2] : 3.456789", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1235, - "name": "Portfolio_Revoke_create_portfolios_permission", - "blob": "220944ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1219, + "name": "Settlement_Execute_manual_instruction", + "blob": "2508010000000000000000d30400009d1c00003430000000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Revoke create portfolios permission", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Settlement : Execute manual instruction", + "1 | Id : 1", + "2 | Portfolio : None", + "3 | Fungible transfers : 1235", + "4 | Nfts transfers : 7325", + "5 | Offchain transfers : 12340", + "6 | Weight limit : None" ], "output_expert": [ - "0 | Portfolio : Revoke create portfolios permission", - "1 | Identity [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Identity [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Execute manual instruction", + "1 | Id : 1", + "2 | Portfolio : None", + "3 | Fungible transfers : 1235", + "4 | Nfts transfers : 7325", + "5 | Offchain transfers : 12340", + "6 | Weight limit : None", + "7 | Chain : Polymesh", + "8 | Nonce : 50283", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1236, - "name": "Portfolio_Create_custody_portfolio", - "blob": "220a44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af34506f7274666f6c696f4e616d65d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1220, + "name": "Settlement_Execute_manual_instruction", + "blob": "2508000000000000000001f1283140a9d9eb7511dc4b06a2b01a4f33a911e0c4a882297bc49b4c1d7bf7db01420e4f464bffc0ded3040000d3040000f7010000010f0b4aa045ac5d95751ed50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Create custody portfolio", - "1 | Portfolio owner id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Portfolio owner id [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Portfolio name : PortfolioName" + "0 | Settlement : Execute manual instruction", + "1 | Id : 0", + "2 | Portfolio [1/3] : f1283140a9d9eb7511dc4b06a2b01a4f33a911", + "2 | Portfolio [2/3] : e0c4a882297bc49b4c1d7bf7db", + "2 | Portfolio [3/3] : 16051109770715663938", + "3 | Fungible transfers : 1235", + "4 | Nfts transfers : 1235", + "5 | Offchain transfers : 503", + "6 | Weight limit [1/2] : 42042766013778443", + "6 | Weight limit [2/2] : 1949", + "7 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Portfolio : Create custody portfolio", - "1 | Portfolio owner id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Portfolio owner id [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Portfolio name : PortfolioName", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Execute manual instruction", + "1 | Id : 0", + "2 | Portfolio [1/3] : f1283140a9d9eb7511dc4b06a2b01a4f33a911", + "2 | Portfolio [2/3] : e0c4a882297bc49b4c1d7bf7db", + "2 | Portfolio [3/3] : 16051109770715663938", + "3 | Fungible transfers : 1235", + "4 | Nfts transfers : 1235", + "5 | Offchain transfers : 503", + "6 | Weight limit [1/2] : 42042766013778443", + "6 | Weight limit [2/2] : 1949", + "7 | Chain : Polymesh", + "8 | Nonce : 100", + "9 | Tip : POLYX 5552342.355555", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1237, - "name": "Portfolio_Create_custody_portfolio", - "blob": "220a44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af34506f7274666f6c696f4e616d65d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1221, + "name": "Settlement_Add_instruction", + "blob": "250901d007000000000000019615504e0180000000000000000100080000000000000800218687dad0a07dea30469be608e4c9fc0002728af6efb7fd4185cae1058808fc014bfb62da2c562e54548407f428fff8efe21892fd8c0a58243b920bc165f5ff8c28623a2498ac039801ba156b6d3e589ec0417373657449442d3132333435363738d07d7207014a37b85018b6d6bbf418df02ff2571d66dd767ea6fee038262573f34607a105fc989287cb284cfc58e1e7fdc3526d8ec3fdeac5f73d09c1521a32146accd29714a21a9a2187caf4f795ba5105449434b45522d3334353637676fd7a7f13f2ae958b36498dd719c9801926c3bd1e90f231b283452fd8a7e41273aac84ab1bd49aad8a772aa6bb2025a8d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Create custody portfolio", - "1 | Portfolio owner id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Portfolio owner id [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Portfolio name : PortfolioName", - "3 | Tip : POLYX 5552342.355555" + "0 | Settlement : Add instruction", + "1 | Venue id : 2000", + "2 | Settlement type : 1313871254", + "3 | Trade date : 128", + "4 | Value date : 2048", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", + "6 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "6 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "7 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Portfolio : Create custody portfolio", - "1 | Portfolio owner id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Portfolio owner id [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Portfolio name : PortfolioName", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Add instruction", + "1 | Venue id : 2000", + "2 | Settlement type : 1313871254", + "3 | Trade date : 128", + "4 | Value date : 2048", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", + "6 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "6 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "7 | Chain : Polymesh", + "8 | Nonce : 100", + "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "9 | Tip [2/2] : 3.456789", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1238, - "name": "Portfolio_Create_custody_portfolio", - "blob": "220a44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af34506f7274666f6c696f4e616d65d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1222, + "name": "Settlement_Add_instruction", + "blob": "250901d007000000000000019615504e0180000000000000000180000000000000000800218687dad0a07dea30469be608e4c9fc0002728af6efb7fd4185cae1058808fc014bfb62da2c562e54548407f428fff8efe21892fd8c0a58243b920bc165f5ff8c28623a2498ac039801ba156b6d3e589ec0417373657449442d3132333435363738d07d7207014a37b85018b6d6bbf418df02ff2571d66dd767ea6fee038262573f34607a105fc989287cb284cfc58e1e7fdc3526d8ec3fdeac5f73d09c1521a32146accd29714a21a9a2187caf4f795ba5105449434b45522d3334353637676fd7a7f13f2ae958b36498dd719c9801926c3bd1e90f231b283452fd8a7e41273aac84ab1bd49aad8a772aa6bb2025a8d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Create custody portfolio", - "1 | Portfolio owner id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Portfolio owner id [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Portfolio name : PortfolioName", - "3 | Tip : POLYX 0.000987" + "0 | Settlement : Add instruction", + "1 | Venue id : 2000", + "2 | Settlement type : 1313871254", + "3 | Trade date : 128", + "4 | Value date : 128", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", + "6 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "6 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "7 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Portfolio : Create custody portfolio", - "1 | Portfolio owner id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Portfolio owner id [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Portfolio name : PortfolioName", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Add instruction", + "1 | Venue id : 2000", + "2 | Settlement type : 1313871254", + "3 | Trade date : 128", + "4 | Value date : 128", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", + "6 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "6 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "7 | Chain : Polymesh", + "8 | Nonce : 1", + "9 | Tip : POLYX 1234.56789", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1239, - "name": "Portfolio_Create_custody_portfolio", - "blob": "220a44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af34506f7274666f6c696f4e616d65d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1223, + "name": "Settlement_Add_instruction", + "blob": "250901d007000000000000000180000000000000000180000000000000000800218687dad0a07dea30469be608e4c9fc0002728af6efb7fd4185cae1058808fc014bfb62da2c562e54548407f428fff8efe21892fd8c0a58243b920bc165f5ff8c28623a2498ac039801ba156b6d3e589ec0417373657449442d3132333435363738d07d7207014a37b85018b6d6bbf418df02ff2571d66dd767ea6fee038262573f34607a105fc989287cb284cfc58e1e7fdc3526d8ec3fdeac5f73d09c1521a32146accd29714a21a9a2187caf4f795ba5105449434b45522d3334353637676fd7a7f13f2ae958b36498dd719c9801926c3bd1e90f231b283452fd8a7e41273aac84ab1bd49aad8a772aa6bb2025a8d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Create custody portfolio", - "1 | Portfolio owner id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Portfolio owner id [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Portfolio name : PortfolioName", - "3 | Tip : POLYX 55.555555" + "0 | Settlement : Add instruction", + "1 | Venue id : 2000", + "2 | Settlement type : SettleOnAffirmation", + "3 | Trade date : 128", + "4 | Value date : 128", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", + "6 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "6 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "7 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Portfolio : Create custody portfolio", - "1 | Portfolio owner id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Portfolio owner id [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Portfolio name : PortfolioName", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Add instruction", + "1 | Venue id : 2000", + "2 | Settlement type : SettleOnAffirmation", + "3 | Trade date : 128", + "4 | Value date : 128", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", + "6 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "6 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "7 | Chain : Polymesh", + "8 | Nonce : 2339", + "9 | Tip : POLYX 55.555555", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1240, - "name": "Portfolio_Create_custody_portfolio", - "blob": "220a44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af34506f7274666f6c696f4e616d65d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1224, + "name": "Settlement_Add_instruction", + "blob": "250901d00700000000000002af1fb21e0100010000000000000180000000000000000800218687dad0a07dea30469be608e4c9fc0002728af6efb7fd4185cae1058808fc014bfb62da2c562e54548407f428fff8efe21892fd8c0a58243b920bc165f5ff8c28623a2498ac039801ba156b6d3e589ec0417373657449442d3132333435363738d07d7207014a37b85018b6d6bbf418df02ff2571d66dd767ea6fee038262573f34607a105fc989287cb284cfc58e1e7fdc3526d8ec3fdeac5f73d09c1521a32146accd29714a21a9a2187caf4f795ba5105449434b45522d3334353637676fd7a7f13f2ae958b36498dd719c9801926c3bd1e90f231b283452fd8a7e41273aac84ab1bd49aad8a772aa6bb2025a8d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Portfolio : Create custody portfolio", - "1 | Portfolio owner id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Portfolio owner id [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Portfolio name : PortfolioName", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Settlement : Add instruction", + "1 | Venue id : 2000", + "2 | Settlement type : 514989999", + "3 | Trade date : 256", + "4 | Value date : 128", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", + "6 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "6 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "7 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Portfolio : Create custody portfolio", - "1 | Portfolio owner id [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "1 | Portfolio owner id [2/2] : 99f2a85988d897db3b7b56d9af", - "2 | Portfolio name : PortfolioName", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Add instruction", + "1 | Venue id : 2000", + "2 | Settlement type : 514989999", + "3 | Trade date : 256", + "4 | Value date : 128", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", + "6 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "6 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "7 | Chain : Polymesh", + "8 | Nonce : 1", + "9 | Tip : POLYX 0.000987", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1241, - "name": "Protocolfee_Change_coefficient", - "blob": "2300f4010000f4010000d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1225, + "name": "Settlement_Add_instruction", + "blob": "250901d007000000000000000100080000000000000100080000000000000800218687dad0a07dea30469be608e4c9fc0002728af6efb7fd4185cae1058808fc014bfb62da2c562e54548407f428fff8efe21892fd8c0a58243b920bc165f5ff8c28623a2498ac039801ba156b6d3e589ec0417373657449442d3132333435363738d07d7207014a37b85018b6d6bbf418df02ff2571d66dd767ea6fee038262573f34607a105fc989287cb284cfc58e1e7fdc3526d8ec3fdeac5f73d09c1521a32146accd29714a21a9a2187caf4f795ba5105449434b45522d3334353637676fd7a7f13f2ae958b36498dd719c9801926c3bd1e90f231b283452fd8a7e41273aac84ab1bd49aad8a772aa6bb2025a8d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Protocolfee : Change coefficient", - "1 | Coefficient [1/2] : 500", - "1 | Coefficient [2/2] : 500", - "2 | Tip : POLYX 5552342.355555" + "0 | Settlement : Add instruction", + "1 | Venue id : 2000", + "2 | Settlement type : SettleOnAffirmation", + "3 | Trade date : 2048", + "4 | Value date : 2048", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", + "6 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "6 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "7 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Protocolfee : Change coefficient", - "1 | Coefficient [1/2] : 500", - "1 | Coefficient [2/2] : 500", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Add instruction", + "1 | Venue id : 2000", + "2 | Settlement type : SettleOnAffirmation", + "3 | Trade date : 2048", + "4 | Value date : 2048", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", + "6 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "6 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "7 | Chain : Polymesh", + "8 | Nonce : 2339", + "9 | Tip : POLYX 5552342.355555", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1242, - "name": "Protocolfee_Change_coefficient", - "blob": "2300e8030000e8030000d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1226, + "name": "Settlement_Add_and_affirm_instruction", + "blob": "250a01d00700000000000002af1fb21e0180000000000000000100010000000000000800218687dad0a07dea30469be608e4c9fc0002728af6efb7fd4185cae1058808fc014bfb62da2c562e54548407f428fff8efe21892fd8c0a58243b920bc165f5ff8c28623a2498ac039801ba156b6d3e589ec0417373657449442d3132333435363738d07d7207014a37b85018b6d6bbf418df02ff2571d66dd767ea6fee038262573f34607a105fc989287cb284cfc58e1e7fdc3526d8ec3fdeac5f73d09c1521a32146accd29714a21a9a2187caf4f795ba5105449434b45522d3334353637676fd7a7f13f2ae958b36498dd719c980001926c3bd1e90f231b283452fd8a7e41273aac84ab1bd49aad8a772aa6bb2025a8d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Protocolfee : Change coefficient", - "1 | Coefficient [1/2] : 1000", - "1 | Coefficient [2/2] : 1000", - "2 | Tip : POLYX 0.000987" + "0 | Settlement : Add and affirm instruction", + "1 | Venue id : 2000", + "2 | Settlement type : 514989999", + "3 | Trade date : 128", + "4 | Value date : 256", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", + "6 | Portfolios : ", + "7 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "7 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "8 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Protocolfee : Change coefficient", - "1 | Coefficient [1/2] : 1000", - "1 | Coefficient [2/2] : 1000", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Add and affirm instruction", + "1 | Venue id : 2000", + "2 | Settlement type : 514989999", + "3 | Trade date : 128", + "4 | Value date : 256", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", + "6 | Portfolios : ", + "7 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "7 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "8 | Chain : Polymesh", + "9 | Nonce : 50283", + "10 | Tip : POLYX 5552342.355555", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1243, - "name": "Protocolfee_Change_coefficient", - "blob": "2300f4010000f4010000d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1227, + "name": "Settlement_Add_and_affirm_instruction", + "blob": "250a01d007000000000000000100080000000000000100080000000000000800218687dad0a07dea30469be608e4c9fc0002728af6efb7fd4185cae1058808fc014bfb62da2c562e54548407f428fff8efe21892fd8c0a58243b920bc165f5ff8c28623a2498ac039801ba156b6d3e589ec0417373657449442d3132333435363738d07d7207014a37b85018b6d6bbf418df02ff2571d66dd767ea6fee038262573f34607a105fc989287cb284cfc58e1e7fdc3526d8ec3fdeac5f73d09c1521a32146accd29714a21a9a2187caf4f795ba5105449434b45522d3334353637676fd7a7f13f2ae958b36498dd719c98081ecdf645fda520fdad9442b82f11a317ec8a92cece3eb79e0e84695ba9ab00bd0140e201000000000010ffe4f73720b572bfee5823f0bdca2f1e7463c82bdfa9e2d044e4d779148cad0140e201000000000001926c3bd1e90f231b283452fd8a7e41273aac84ab1bd49aad8a772aa6bb2025a8d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Protocolfee : Change coefficient", - "1 | Coefficient [1/2] : 500", - "1 | Coefficient [2/2] : 500", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Settlement : Add and affirm instruction", + "1 | Venue id : 2000", + "2 | Settlement type : SettleOnAffirmation", + "3 | Trade date : 2048", + "4 | Value date : 2048", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", + "6 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "6 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "6 | Portfolios [3/6] : 123456", + "6 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "6 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "6 | Portfolios [6/6] : 123456", + "7 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "7 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "8 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Protocolfee : Change coefficient", - "1 | Coefficient [1/2] : 500", - "1 | Coefficient [2/2] : 500", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Add and affirm instruction", + "1 | Venue id : 2000", + "2 | Settlement type : SettleOnAffirmation", + "3 | Trade date : 2048", + "4 | Value date : 2048", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", + "6 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "6 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "6 | Portfolios [3/6] : 123456", + "6 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "6 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "6 | Portfolios [6/6] : 123456", + "7 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "7 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "8 | Chain : Polymesh", + "9 | Nonce : 2339", + "10 | Tip : POLYX 0.000987", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1244, - "name": "Protocolfee_Change_coefficient", - "blob": "2300f4010000f4010000d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1228, + "name": "Settlement_Add_and_affirm_instruction", + "blob": "250a01d007000000000000019615504e0100010000000000000100010000000000000800218687dad0a07dea30469be608e4c9fc0002728af6efb7fd4185cae1058808fc014bfb62da2c562e54548407f428fff8efe21892fd8c0a58243b920bc165f5ff8c28623a2498ac039801ba156b6d3e589ec0417373657449442d3132333435363738d07d7207014a37b85018b6d6bbf418df02ff2571d66dd767ea6fee038262573f34607a105fc989287cb284cfc58e1e7fdc3526d8ec3fdeac5f73d09c1521a32146accd29714a21a9a2187caf4f795ba5105449434b45522d3334353637676fd7a7f13f2ae958b36498dd719c980001926c3bd1e90f231b283452fd8a7e41273aac84ab1bd49aad8a772aa6bb2025a8d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Protocolfee : Change coefficient", - "1 | Coefficient [1/2] : 500", - "1 | Coefficient [2/2] : 500", - "2 | Tip : POLYX 0.000987" + "0 | Settlement : Add and affirm instruction", + "1 | Venue id : 2000", + "2 | Settlement type : 1313871254", + "3 | Trade date : 256", + "4 | Value date : 256", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", + "6 | Portfolios : ", + "7 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "7 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "8 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Protocolfee : Change coefficient", - "1 | Coefficient [1/2] : 500", - "1 | Coefficient [2/2] : 500", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Add and affirm instruction", + "1 | Venue id : 2000", + "2 | Settlement type : 1313871254", + "3 | Trade date : 256", + "4 | Value date : 256", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", + "6 | Portfolios : ", + "7 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "7 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "8 | Chain : Polymesh", + "9 | Nonce : 0", + "10 | Tip : POLYX 55.555555", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1245, - "name": "Protocolfee_Change_coefficient", - "blob": "2300f4010000f4010000d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1229, + "name": "Settlement_Add_and_affirm_instruction", + "blob": "250a01d007000000000000000180000000000000000100080000000000000800218687dad0a07dea30469be608e4c9fc0002728af6efb7fd4185cae1058808fc014bfb62da2c562e54548407f428fff8efe21892fd8c0a58243b920bc165f5ff8c28623a2498ac039801ba156b6d3e589ec0417373657449442d3132333435363738d07d7207014a37b85018b6d6bbf418df02ff2571d66dd767ea6fee038262573f34607a105fc989287cb284cfc58e1e7fdc3526d8ec3fdeac5f73d09c1521a32146accd29714a21a9a2187caf4f795ba5105449434b45522d3334353637676fd7a7f13f2ae958b36498dd719c980001926c3bd1e90f231b283452fd8a7e41273aac84ab1bd49aad8a772aa6bb2025a8d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Protocolfee : Change coefficient", - "1 | Coefficient [1/2] : 500", - "1 | Coefficient [2/2] : 500", - "2 | Tip : POLYX 55.555555" + "0 | Settlement : Add and affirm instruction", + "1 | Venue id : 2000", + "2 | Settlement type : SettleOnAffirmation", + "3 | Trade date : 128", + "4 | Value date : 2048", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", + "6 | Portfolios : ", + "7 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "7 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8" ], "output_expert": [ - "0 | Protocolfee : Change coefficient", - "1 | Coefficient [1/2] : 500", - "1 | Coefficient [2/2] : 500", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Add and affirm instruction", + "1 | Venue id : 2000", + "2 | Settlement type : SettleOnAffirmation", + "3 | Trade date : 128", + "4 | Value date : 2048", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", + "6 | Portfolios : ", + "7 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "7 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "8 | Chain : Polymesh", + "9 | Nonce : 100", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1246, - "name": "Settlement_Create_venue", - "blob": "25003856656e756544657461696c735f41245a83c5f5eb8fe058647fd967c9e0b8912ef43a3b54f2d5797b734bd1303ea525d4eabdf738980035141be70c36dadb2fd793dc784a34d69662c8fd76b8b6b571ce62f5d9f0f0a21fd82bf6fd14a2e0e2792a32d0c1a0def593f2ba636e506932a4a3b22576feb6fdd412bfcd2c23eaada547124a5a31c25c8fa6c7cccf49af79aa51db374df134ae2a8149945ad4c40b5477c8f1e5539c114acc5d2a172b3c4eace7f73dff3b4c882c4d9c9f9c14a08a8b735765ec362e97552b3d1f54615212be449c27ee1f68348105362b2ddae1084d29a4a6ad44347569ed55c1edafb32e32b0724069e8bd803526896d122c43594b3f25ec18733ce4a6cd04fedf58040646b630a95c22e0ee1105f41d77ba2919fefe28153ee392d1491b9e312b56fe1f02d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1230, + "name": "Settlement_Add_and_affirm_instruction", + "blob": "250a01d007000000000000000100080000000000000100010000000000000800218687dad0a07dea30469be608e4c9fc0002728af6efb7fd4185cae1058808fc014bfb62da2c562e54548407f428fff8efe21892fd8c0a58243b920bc165f5ff8c28623a2498ac039801ba156b6d3e589ec0417373657449442d3132333435363738d07d7207014a37b85018b6d6bbf418df02ff2571d66dd767ea6fee038262573f34607a105fc989287cb284cfc58e1e7fdc3526d8ec3fdeac5f73d09c1521a32146accd29714a21a9a2187caf4f795ba5105449434b45522d3334353637676fd7a7f13f2ae958b36498dd719c980001926c3bd1e90f231b283452fd8a7e41273aac84ab1bd49aad8a772aa6bb2025a8d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Create venue", - "1 | Details : VenueDetails_A", - "2 | Signers [1/18] : 2EVbZGKShTaeRX7pxiavwnuLX7zZANQnniQNtN", - "2 | Signers [2/18] : CHfBVYgP6H", - "2 | Signers [3/18] : 2HG5zCzvfdep2WQoPbouCeMn8UsX39PgzpwccM", - "2 | Signers [4/18] : LufQ1PRRMz", - "2 | Signers [5/18] : 2H7XN5aB2hcYQyXJaszmP5pHN8NTziaUtB9MeQ", - "2 | Signers [6/18] : u4tytTp3cd", - "2 | Signers [7/18] : 2GAnaoLMWDBkENwBBhydq6iY12zn9yfwVbULCJ", - "2 | Signers [8/18] : NYpnCfpVpX", - "2 | Signers [9/18] : 2GJEZQBjorsidfZS6FssizrgP5SSbzGexa7mTL", - "2 | Signers [10/18] : k4fTTwgeix", - "2 | Signers [11/18] : 2GMdFHGRo9t5CUWKKf4LUyw6oSjpayMUn6HBsE", - "2 | Signers [12/18] : YEq5uBgrjF", - "2 | Signers [13/18] : 2GkPaibFMWxrj3Yu8D4pDWi87ctmKN1n1y7gZU", - "2 | Signers [14/18] : vhUpFEzid8", - "2 | Signers [15/18] : 2DbNusSYCRpCWG3ku4Nj7gUo57Vb1Kdi2gFzSD", - "2 | Signers [16/18] : b8Tfe32shh", - "2 | Signers [17/18] : 2E3daNzH8jxwdCM66BgSrmxiYjZh5kCHEd59UM", - "2 | Signers [18/18] : kK11S3YT7H", - "3 | Typ : Sto", - "4 | Tip : POLYX 55.555555" + "0 | Settlement : Add and affirm instruction", + "1 | Venue id : 2000", + "2 | Settlement type : SettleOnAffirmation", + "3 | Trade date : 2048", + "4 | Value date : 256", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", + "6 | Portfolios : ", + "7 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "7 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "8 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Settlement : Create venue", - "1 | Details : VenueDetails_A", - "2 | Signers [1/18] : 2EVbZGKShTaeRX7pxiavwnuLX7zZANQnniQNtN", - "2 | Signers [2/18] : CHfBVYgP6H", - "2 | Signers [3/18] : 2HG5zCzvfdep2WQoPbouCeMn8UsX39PgzpwccM", - "2 | Signers [4/18] : LufQ1PRRMz", - "2 | Signers [5/18] : 2H7XN5aB2hcYQyXJaszmP5pHN8NTziaUtB9MeQ", - "2 | Signers [6/18] : u4tytTp3cd", - "2 | Signers [7/18] : 2GAnaoLMWDBkENwBBhydq6iY12zn9yfwVbULCJ", - "2 | Signers [8/18] : NYpnCfpVpX", - "2 | Signers [9/18] : 2GJEZQBjorsidfZS6FssizrgP5SSbzGexa7mTL", - "2 | Signers [10/18] : k4fTTwgeix", - "2 | Signers [11/18] : 2GMdFHGRo9t5CUWKKf4LUyw6oSjpayMUn6HBsE", - "2 | Signers [12/18] : YEq5uBgrjF", - "2 | Signers [13/18] : 2GkPaibFMWxrj3Yu8D4pDWi87ctmKN1n1y7gZU", - "2 | Signers [14/18] : vhUpFEzid8", - "2 | Signers [15/18] : 2DbNusSYCRpCWG3ku4Nj7gUo57Vb1Kdi2gFzSD", - "2 | Signers [16/18] : b8Tfe32shh", - "2 | Signers [17/18] : 2E3daNzH8jxwdCM66BgSrmxiYjZh5kCHEd59UM", - "2 | Signers [18/18] : kK11S3YT7H", - "3 | Typ : Sto", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Add and affirm instruction", + "1 | Venue id : 2000", + "2 | Settlement type : SettleOnAffirmation", + "3 | Trade date : 2048", + "4 | Value date : 256", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", + "6 | Portfolios : ", + "7 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "7 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "8 | Chain : Polymesh", + "9 | Nonce : 0", + "10 | Tip : POLYX 5552342.355555", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1247, - "name": "Settlement_Create_venue", - "blob": "25003856656e756544657461696c735f4114902dd1f008c2e472c447fffee377563eed940cc79e96f3be4571dc93143ab8203a47acef8333aec26e75d7b540e14763d988cc2099c8a4d53455503d72619775c2c044954daa239a417fd6d9116c04ef3746896d315a89f8593f5bb34564d36f163a4fda6ecf5064f89b10533959fb14b1d47821a38b76e7f5cb637ebd4136730ad4c11f47ba1e4e17ae21027b2de9170e3a5e98fe01896d57398a9961f0490000d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1231, + "name": "Settlement_Affirm_instruction", + "blob": "250b640000000000000000d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Create venue", - "1 | Details : VenueDetails_A", - "2 | Signers [1/10] : 2FhxcJNoWm7dxnynVtezdpLBctNVbb5F3W9aA4", - "2 | Signers [2/10] : vjYSz3qT9t", - "2 | Signers [3/10] : 2DmLAvwAu3XMBnf9DQPGGoU9VkRkugFacJaZAv", - "2 | Signers [4/10] : 2pcKyNmzv7", - "2 | Signers [5/10] : 2GrGWQMady9kZFpcNHuXDBFp9ck6n316q2VX1A", - "2 | Signers [6/10] : BzVY4BPEe1", - "2 | Signers [7/10] : 2Cx4UhS6b39ZfRceuuHTJeWhiQM6512VrYwXQp", - "2 | Signers [8/10] : wmRknwQokt", - "2 | Signers [9/10] : 2Ch7nMMZpaZJ4fqcJLAWzm9WCSz5uPMAAhmUjx", - "2 | Signers [10/10] : Saz1LEMrjg", - "3 | Typ : Other", - "4 | Tip : POLYX 0.000987" + "0 | Settlement : Affirm instruction", + "1 | Id : 100", + "2 | Portfolios : ", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Settlement : Create venue", - "1 | Details : VenueDetails_A", - "2 | Signers [1/10] : 2FhxcJNoWm7dxnynVtezdpLBctNVbb5F3W9aA4", - "2 | Signers [2/10] : vjYSz3qT9t", - "2 | Signers [3/10] : 2DmLAvwAu3XMBnf9DQPGGoU9VkRkugFacJaZAv", - "2 | Signers [4/10] : 2pcKyNmzv7", - "2 | Signers [5/10] : 2GrGWQMady9kZFpcNHuXDBFp9ck6n316q2VX1A", - "2 | Signers [6/10] : BzVY4BPEe1", - "2 | Signers [7/10] : 2Cx4UhS6b39ZfRceuuHTJeWhiQM6512VrYwXQp", - "2 | Signers [8/10] : wmRknwQokt", - "2 | Signers [9/10] : 2Ch7nMMZpaZJ4fqcJLAWzm9WCSz5uPMAAhmUjx", - "2 | Signers [10/10] : Saz1LEMrjg", - "3 | Typ : Other", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Affirm instruction", + "1 | Id : 100", + "2 | Portfolios : ", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1248, - "name": "Settlement_Create_venue", - "blob": "25003856656e756544657461696c735f41205a6d6f58b12d2e969aac068530e2357714798433b2c83e2858bff56b8e4e9f54baeb7c644974d4ac7afd1ffe9570179d65d88d90bc18f87b8d1570591f728a7afa4d19868e3cef263b1360556633acdabc5ec95faf2992ec9b20da1450bbc24ede796b1dd3b1b86e9f5cedef5637575c7226c77d4da1b4ca02493c5d5cfc7f00e299c2e71b2bbcca2d3b501cef354896427089f072f485b2e6c2a57ce5a1845d141e54f5cf87806bfb0c42d1f959d736c6e5f3c3eb496585222138156365e1357007d34d3e58bcdbeb8a1f24de64b20bfaa0f63c1eacff0de21f354540eea50fa211c5f03d0d0925898dd5260a9285bb27f78878907767c556e466154bc2837f00d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1232, + "name": "Settlement_Affirm_instruction", + "blob": "250b6400000000000000081ecdf645fda520fdad9442b82f11a317ec8a92cece3eb79e0e84695ba9ab00bd0140e201000000000010ffe4f73720b572bfee5823f0bdca2f1e7463c82bdfa9e2d044e4d779148cad0140e2010000000000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Create venue", - "1 | Details : VenueDetails_A", - "2 | Signers [1/16] : 2EVUvPFB6D1zigKL7L1ooKTweerKDDdMurq65H", - "2 | Signers [2/16] : 5gz9D8sHJa", - "2 | Signers [3/16] : 2Gfzxp9xKQwt6rbDuCfcSsC365EjNY9YKGr4nZ", - "2 | Signers [4/16] : JgM25rEzcD", - "2 | Signers [5/16] : 2J76ydZh4tbHUo6zxDCD3KzFVCbzHcjUsFFRfM", - "2 | Signers [6/16] : gsyg18dr7P", - "2 | Signers [7/16] : 2HUcoTe9uZhzUCZnDZPTBVK3AtUYEh3Hb7fNES", - "2 | Signers [8/16] : nyoPan5XHf", - "2 | Signers [9/16] : 2Ha2bpo22CF2dVYqqJvzMrv2K2t51Ecd7FqD8L", - "2 | Signers [10/16] : 35ZrUevzDu", - "2 | Signers [11/16] : 2CuJ54LD9LDNn7Gpw7omSfjptqJ36EDDsiTW3y", - "2 | Signers [12/16] : 5fV2d8Wh9H", - "2 | Signers [13/16] : 2EyonnyPLtWuV55D3w1uCEHjrgndM9KiPcM8BY", - "2 | Signers [14/16] : QhVVGJ6EX2", - "2 | Signers [15/16] : 2G7R94BZZKNRHDV2KaPkDCNzAqgX6xXEnuv7KV", - "2 | Signers [16/16] : shd6B9irVe", - "3 | Typ : Other", - "4 | Tip : POLYX 55.555555" + "0 | Settlement : Affirm instruction", + "1 | Id : 100", + "2 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "2 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "2 | Portfolios [3/6] : 123456", + "2 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "2 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "2 | Portfolios [6/6] : 123456" ], "output_expert": [ - "0 | Settlement : Create venue", - "1 | Details : VenueDetails_A", - "2 | Signers [1/16] : 2EVUvPFB6D1zigKL7L1ooKTweerKDDdMurq65H", - "2 | Signers [2/16] : 5gz9D8sHJa", - "2 | Signers [3/16] : 2Gfzxp9xKQwt6rbDuCfcSsC365EjNY9YKGr4nZ", - "2 | Signers [4/16] : JgM25rEzcD", - "2 | Signers [5/16] : 2J76ydZh4tbHUo6zxDCD3KzFVCbzHcjUsFFRfM", - "2 | Signers [6/16] : gsyg18dr7P", - "2 | Signers [7/16] : 2HUcoTe9uZhzUCZnDZPTBVK3AtUYEh3Hb7fNES", - "2 | Signers [8/16] : nyoPan5XHf", - "2 | Signers [9/16] : 2Ha2bpo22CF2dVYqqJvzMrv2K2t51Ecd7FqD8L", - "2 | Signers [10/16] : 35ZrUevzDu", - "2 | Signers [11/16] : 2CuJ54LD9LDNn7Gpw7omSfjptqJ36EDDsiTW3y", - "2 | Signers [12/16] : 5fV2d8Wh9H", - "2 | Signers [13/16] : 2EyonnyPLtWuV55D3w1uCEHjrgndM9KiPcM8BY", - "2 | Signers [14/16] : QhVVGJ6EX2", - "2 | Signers [15/16] : 2G7R94BZZKNRHDV2KaPkDCNzAqgX6xXEnuv7KV", - "2 | Signers [16/16] : shd6B9irVe", - "3 | Typ : Other", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Affirm instruction", + "1 | Id : 100", + "2 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "2 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "2 | Portfolios [3/6] : 123456", + "2 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "2 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "2 | Portfolios [6/6] : 123456", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1249, - "name": "Settlement_Create_venue", - "blob": "25003856656e756544657461696c735f4104ba927b84a939b6931edf46698f11bb9c9ecd1c765b70c79a3328f87a2add0a2903d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1233, + "name": "Settlement_Affirm_instruction", + "blob": "250b640000000000000000d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Create venue", - "1 | Details : VenueDetails_A", - "2 | Signers [1/2] : 2GfYXKZC99GQUhEaCHbAAybZHijLN5tF2hBRRB", - "2 | Signers [2/2] : ew8LFC5gMt", - "3 | Typ : Exchange", - "4 | Tip : POLYX 55.555555" + "0 | Settlement : Affirm instruction", + "1 | Id : 100", + "2 | Portfolios : ", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Settlement : Create venue", - "1 | Details : VenueDetails_A", - "2 | Signers [1/2] : 2GfYXKZC99GQUhEaCHbAAybZHijLN5tF2hBRRB", - "2 | Signers [2/2] : ew8LFC5gMt", - "3 | Typ : Exchange", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Affirm instruction", + "1 | Id : 100", + "2 | Portfolios : ", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1250, - "name": "Settlement_Create_venue", - "blob": "25003856656e756544657461696c735f41205a6d6f58b12d2e969aac068530e2357714798433b2c83e2858bff56b8e4e9f54baeb7c644974d4ac7afd1ffe9570179d65d88d90bc18f87b8d1570591f728a7afa4d19868e3cef263b1360556633acdabc5ec95faf2992ec9b20da1450bbc24ede796b1dd3b1b86e9f5cedef5637575c7226c77d4da1b4ca02493c5d5cfc7f00e299c2e71b2bbcca2d3b501cef354896427089f072f485b2e6c2a57ce5a1845d141e54f5cf87806bfb0c42d1f959d736c6e5f3c3eb496585222138156365e1357007d34d3e58bcdbeb8a1f24de64b20bfaa0f63c1eacff0de21f354540eea50fa211c5f03d0d0925898dd5260a9285bb27f78878907767c556e466154bc2837f00d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1234, + "name": "Settlement_Affirm_instruction", + "blob": "250b6bc400000000000000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Create venue", - "1 | Details : VenueDetails_A", - "2 | Signers [1/16] : 2EVUvPFB6D1zigKL7L1ooKTweerKDDdMurq65H", - "2 | Signers [2/16] : 5gz9D8sHJa", - "2 | Signers [3/16] : 2Gfzxp9xKQwt6rbDuCfcSsC365EjNY9YKGr4nZ", - "2 | Signers [4/16] : JgM25rEzcD", - "2 | Signers [5/16] : 2J76ydZh4tbHUo6zxDCD3KzFVCbzHcjUsFFRfM", - "2 | Signers [6/16] : gsyg18dr7P", - "2 | Signers [7/16] : 2HUcoTe9uZhzUCZnDZPTBVK3AtUYEh3Hb7fNES", - "2 | Signers [8/16] : nyoPan5XHf", - "2 | Signers [9/16] : 2Ha2bpo22CF2dVYqqJvzMrv2K2t51Ecd7FqD8L", - "2 | Signers [10/16] : 35ZrUevzDu", - "2 | Signers [11/16] : 2CuJ54LD9LDNn7Gpw7omSfjptqJ36EDDsiTW3y", - "2 | Signers [12/16] : 5fV2d8Wh9H", - "2 | Signers [13/16] : 2EyonnyPLtWuV55D3w1uCEHjrgndM9KiPcM8BY", - "2 | Signers [14/16] : QhVVGJ6EX2", - "2 | Signers [15/16] : 2G7R94BZZKNRHDV2KaPkDCNzAqgX6xXEnuv7KV", - "2 | Signers [16/16] : shd6B9irVe", - "3 | Typ : Other", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "0 | Settlement : Affirm instruction", + "1 | Id : 50283", + "2 | Portfolios : ", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Settlement : Create venue", - "1 | Details : VenueDetails_A", - "2 | Signers [1/16] : 2EVUvPFB6D1zigKL7L1ooKTweerKDDdMurq65H", - "2 | Signers [2/16] : 5gz9D8sHJa", - "2 | Signers [3/16] : 2Gfzxp9xKQwt6rbDuCfcSsC365EjNY9YKGr4nZ", - "2 | Signers [4/16] : JgM25rEzcD", - "2 | Signers [5/16] : 2J76ydZh4tbHUo6zxDCD3KzFVCbzHcjUsFFRfM", - "2 | Signers [6/16] : gsyg18dr7P", - "2 | Signers [7/16] : 2HUcoTe9uZhzUCZnDZPTBVK3AtUYEh3Hb7fNES", - "2 | Signers [8/16] : nyoPan5XHf", - "2 | Signers [9/16] : 2Ha2bpo22CF2dVYqqJvzMrv2K2t51Ecd7FqD8L", - "2 | Signers [10/16] : 35ZrUevzDu", - "2 | Signers [11/16] : 2CuJ54LD9LDNn7Gpw7omSfjptqJ36EDDsiTW3y", - "2 | Signers [12/16] : 5fV2d8Wh9H", - "2 | Signers [13/16] : 2EyonnyPLtWuV55D3w1uCEHjrgndM9KiPcM8BY", - "2 | Signers [14/16] : QhVVGJ6EX2", - "2 | Signers [15/16] : 2G7R94BZZKNRHDV2KaPkDCNzAqgX6xXEnuv7KV", - "2 | Signers [16/16] : shd6B9irVe", - "3 | Typ : Other", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Affirm instruction", + "1 | Id : 50283", + "2 | Portfolios : ", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1251, - "name": "Settlement_Update_venue_details", - "blob": "250100000000000000003856656e756544657461696c735f41d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1235, + "name": "Settlement_Affirm_instruction", + "blob": "250b0100000000000000081ecdf645fda520fdad9442b82f11a317ec8a92cece3eb79e0e84695ba9ab00bd0140e201000000000010ffe4f73720b572bfee5823f0bdca2f1e7463c82bdfa9e2d044e4d779148cad0140e2010000000000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Update venue details", - "1 | Id : 0", - "2 | Details : VenueDetails_A", + "0 | Settlement : Affirm instruction", + "1 | Id : 1", + "2 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "2 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "2 | Portfolios [3/6] : 123456", + "2 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "2 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "2 | Portfolios [6/6] : 123456", "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Settlement : Update venue details", - "1 | Id : 0", - "2 | Details : VenueDetails_A", + "0 | Settlement : Affirm instruction", + "1 | Id : 1", + "2 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "2 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "2 | Portfolios [3/6] : 123456", + "2 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "2 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "2 | Portfolios [6/6] : 123456", "3 | Chain : Polymesh", - "4 | Nonce : 50283", + "4 | Nonce : 0", "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1252, - "name": "Settlement_Update_venue_details", - "blob": "25016bc40000000000003856656e756544657461696c735f41d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1236, + "name": "Settlement_Withdraw_affirmation", + "blob": "250c6bc4000000000000081ecdf645fda520fdad9442b82f11a317ec8a92cece3eb79e0e84695ba9ab00bd0140e201000000000010ffe4f73720b572bfee5823f0bdca2f1e7463c82bdfa9e2d044e4d779148cad0140e2010000000000d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Update venue details", + "0 | Settlement : Withdraw affirmation", "1 | Id : 50283", - "2 | Details : VenueDetails_A", - "3 | Tip : POLYX 55.555555" + "2 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "2 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "2 | Portfolios [3/6] : 123456", + "2 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "2 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "2 | Portfolios [6/6] : 123456", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Settlement : Update venue details", + "0 | Settlement : Withdraw affirmation", "1 | Id : 50283", - "2 | Details : VenueDetails_A", + "2 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "2 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "2 | Portfolios [3/6] : 123456", + "2 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "2 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "2 | Portfolios [6/6] : 123456", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 2339", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1253, - "name": "Settlement_Update_venue_details", - "blob": "25016bc40000000000003856656e756544657461696c735f41d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1237, + "name": "Settlement_Withdraw_affirmation", + "blob": "250c230900000000000000d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Update venue details", - "1 | Id : 50283", - "2 | Details : VenueDetails_A", - "3 | Tip : POLYX 0.000987" + "0 | Settlement : Withdraw affirmation", + "1 | Id : 2339", + "2 | Portfolios : ", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Settlement : Update venue details", - "1 | Id : 50283", - "2 | Details : VenueDetails_A", + "0 | Settlement : Withdraw affirmation", + "1 | Id : 2339", + "2 | Portfolios : ", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 100", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1254, - "name": "Settlement_Update_venue_details", - "blob": "250123090000000000003856656e756544657461696c735f41d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1238, + "name": "Settlement_Withdraw_affirmation", + "blob": "250c6bc4000000000000081ecdf645fda520fdad9442b82f11a317ec8a92cece3eb79e0e84695ba9ab00bd0140e201000000000010ffe4f73720b572bfee5823f0bdca2f1e7463c82bdfa9e2d044e4d779148cad0140e2010000000000d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Update venue details", - "1 | Id : 2339", - "2 | Details : VenueDetails_A", + "0 | Settlement : Withdraw affirmation", + "1 | Id : 50283", + "2 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "2 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "2 | Portfolios [3/6] : 123456", + "2 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "2 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "2 | Portfolios [6/6] : 123456", "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Settlement : Update venue details", - "1 | Id : 2339", - "2 | Details : VenueDetails_A", + "0 | Settlement : Withdraw affirmation", + "1 | Id : 50283", + "2 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "2 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "2 | Portfolios [3/6] : 123456", + "2 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "2 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "2 | Portfolios [6/6] : 123456", "3 | Chain : Polymesh", "4 | Nonce : 100", "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1255, - "name": "Settlement_Update_venue_details", - "blob": "250100000000000000003856656e756544657461696c735f41d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1239, + "name": "Settlement_Withdraw_affirmation", + "blob": "250c230900000000000000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Update venue details", - "1 | Id : 0", - "2 | Details : VenueDetails_A", - "3 | Tip : POLYX 0.000987" + "0 | Settlement : Withdraw affirmation", + "1 | Id : 2339", + "2 | Portfolios : " ], "output_expert": [ - "0 | Settlement : Update venue details", - "1 | Id : 0", - "2 | Details : VenueDetails_A", + "0 | Settlement : Withdraw affirmation", + "1 | Id : 2339", + "2 | Portfolios : ", "3 | Chain : Polymesh", "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 1240, + "name": "Settlement_Withdraw_affirmation", + "blob": "250c6400000000000000081ecdf645fda520fdad9442b82f11a317ec8a92cece3eb79e0e84695ba9ab00bd0140e201000000000010ffe4f73720b572bfee5823f0bdca2f1e7463c82bdfa9e2d044e4d779148cad0140e2010000000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Settlement : Withdraw affirmation", + "1 | Id : 100", + "2 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "2 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "2 | Portfolios [3/6] : 123456", + "2 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "2 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "2 | Portfolios [6/6] : 123456", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" + ], + "output_expert": [ + "0 | Settlement : Withdraw affirmation", + "1 | Id : 100", + "2 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "2 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "2 | Portfolios [3/6] : 123456", + "2 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "2 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "2 | Portfolios [6/6] : 123456", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1256, - "name": "Settlement_Update_venue_type", - "blob": "2502230900000000000003d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1241, + "name": "Settlement_Reject_instruction", + "blob": "250d640000000000000032e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Update venue type", - "1 | Id : 2339", - "2 | Typ : Exchange", + "0 | Settlement : Reject instruction", + "1 | Id : 100", + "2 | Portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio [3/3] : 123456", "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Settlement : Update venue type", - "1 | Id : 2339", - "2 | Typ : Exchange", + "0 | Settlement : Reject instruction", + "1 | Id : 100", + "2 | Portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio [3/3] : 123456", "3 | Chain : Polymesh", "4 | Nonce : 50283", "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1257, - "name": "Settlement_Update_venue_type", - "blob": "25026bc400000000000003d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1242, + "name": "Settlement_Reject_instruction", + "blob": "250d6bc400000000000032e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Update venue type", + "0 | Settlement : Reject instruction", "1 | Id : 50283", - "2 | Typ : Exchange" + "2 | Portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio [3/3] : 123456", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Settlement : Update venue type", + "0 | Settlement : Reject instruction", "1 | Id : 50283", - "2 | Typ : Exchange", + "2 | Portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio [3/3] : 123456", "3 | Chain : Polymesh", "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1258, - "name": "Settlement_Update_venue_type", - "blob": "2502000000000000000003d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1243, + "name": "Settlement_Reject_instruction", + "blob": "250d640000000000000032e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Update venue type", - "1 | Id : 0", - "2 | Typ : Exchange" + "0 | Settlement : Reject instruction", + "1 | Id : 100", + "2 | Portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio [3/3] : 123456", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Settlement : Update venue type", - "1 | Id : 0", - "2 | Typ : Exchange", + "0 | Settlement : Reject instruction", + "1 | Id : 100", + "2 | Portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio [3/3] : 123456", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 1", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1259, - "name": "Settlement_Update_venue_type", - "blob": "2502640000000000000002d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1244, + "name": "Settlement_Reject_instruction", + "blob": "250d640000000000000032e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Update venue type", + "0 | Settlement : Reject instruction", "1 | Id : 100", - "2 | Typ : Sto", + "2 | Portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio [3/3] : 123456", "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Settlement : Update venue type", + "0 | Settlement : Reject instruction", "1 | Id : 100", - "2 | Typ : Sto", + "2 | Portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio [3/3] : 123456", "3 | Chain : Polymesh", - "4 | Nonce : 1", + "4 | Nonce : 100", "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1260, - "name": "Settlement_Update_venue_type", - "blob": "2502000000000000000000d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1245, + "name": "Settlement_Reject_instruction", + "blob": "250d640000000000000032e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Update venue type", - "1 | Id : 0", - "2 | Typ : Other", - "3 | Tip : POLYX 55.555555" + "0 | Settlement : Reject instruction", + "1 | Id : 100", + "2 | Portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio [3/3] : 123456" ], "output_expert": [ - "0 | Settlement : Update venue type", - "1 | Id : 0", - "2 | Typ : Other", + "0 | Settlement : Reject instruction", + "1 | Id : 100", + "2 | Portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio [3/3] : 123456", "3 | Chain : Polymesh", "4 | Nonce : 0", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1261, - "name": "Settlement_Affirm_with_receipts", - "blob": "25032309000000000000000857fe7c4bcb4b5321ffd0d4abc20c1f1b9c727bef031bc5c22d41d98cc5ba2fe30140e2010000000000907c51ddeced476ca85354dbee9f2c6869d67fd62e913c2247e0566ce476878b0140e2010000000000d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1246, + "name": "Settlement_Execute_scheduled_instruction", + "blob": "250e0100000000000000d6b9750ca2f53943d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Affirm with receipts", - "1 | Id : 2339", - "2 | Receipt details : ", - "3 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "3 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "3 | Portfolios [3/6] : 123456", - "3 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "3 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "3 | Portfolios [6/6] : 123456", - "4 | Tip : POLYX 0.000987" + "0 | Settlement : Execute scheduled instruction", + "1 | Id : 1", + "2 | Weight limit [1/2] : 52260469", + "2 | Weight limit [2/2] : 281967976", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Settlement : Affirm with receipts", - "1 | Id : 2339", - "2 | Receipt details : ", - "3 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "3 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "3 | Portfolios [3/6] : 123456", - "3 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "3 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "3 | Portfolios [6/6] : 123456", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Execute scheduled instruction", + "1 | Id : 1", + "2 | Weight limit [1/2] : 52260469", + "2 | Weight limit [2/2] : 281967976", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1262, - "name": "Settlement_Affirm_with_receipts", - "blob": "25032309000000000000082d7daa0477465d6fccd4d08e6664251bb2433b4553ae389dad9542cf7f2a34d5f6c9b89323365dd63af4a9a2547922f78215cb1893b015f501f440363b7023d6eff3f69f18ed7a799b4056f52e25c8588f0a8e336087cc8bbff03adc1d81ff36505dcfbc345ad4b3a50ea4e6fb53de709e50accf2590dfd5d00181446d78dba83c3a3e590944154ff228d17f65a438b579e0b09d7ff42a9de2f42ebcd4efb8faa6cb9cacf2cda789d61523a769b3ec9840469d83ac1f00bee071af7e3657fd5f1632d9b600576b6a8e17084b773fd82fb05b002fca1ffde16457fbd5cd2ccdb86f364df8ae273c3a24a97d1636f71643f4e923b9335f5fbba0331e14b9df99a5da6450a90f63c6b478abe3ee5171cfc07f689801ff761a30521c0062526b574c37a1e067529d1f634310a2444f152ddc6e61e9d50857fe7c4bcb4b5321ffd0d4abc20c1f1b9c727bef031bc5c22d41d98cc5ba2fe30140e2010000000000907c51ddeced476ca85354dbee9f2c6869d67fd62e913c2247e0566ce476878b0140e2010000000000d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1247, + "name": "Settlement_Execute_scheduled_instruction", + "blob": "250e6bc4000000000000d6b9750ca2f53943d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Affirm with receipts", - "1 | Id : 2339", - "2 | Receipt details [1/22] : 8024647588037426477", - "2 | Receipt details [2/22] : 1956080004807840972", - "2 | Receipt details [3/22] : 11328996535317513138", - "2 | Receipt details [4/22] : 2GNWj63odfST5WNYuXQgbNWXUAqN7CwJJZ1e1t", - "2 | Receipt details [5/22] : MV2JCbZQJY", - "2 | Receipt details [6/22] : f440363b7023d6eff3f69f18ed7a799b4056f5", - "2 | Receipt details [7/22] : 2e25c8588f0a8e336087cc8bbff03adc1d81ff", - "2 | Receipt details [8/22] : 36505dcfbc345ad4b3a50ea4e6fb53de709e50", - "2 | Receipt details [9/22] : accf2590dfd5d0", - "2 | Receipt details [10/22] : 81446d78dba83c3a3e590944154ff228d17f65", - "2 | Receipt details [11/22] : a438b579e0b09d7ff42a9de2f4", - "2 | Receipt details [12/22] : 14674692108037962798", - "2 | Receipt details [13/22] : 1573596473620343964", - "2 | Receipt details [14/22] : 5062214123554187043", - "2 | Receipt details [15/22] : 2G1Sjc6AoLsyxH5iFZccz9jQjyZE9g4rii5k31", - "2 | Receipt details [16/22] : mrC9uMFN1d", - "2 | Receipt details [17/22] : 2fca1ffde16457fbd5cd2ccdb86f364df8ae27", - "2 | Receipt details [18/22] : 3c3a24a97d1636f71643f4e923b9335f5fbba0", - "2 | Receipt details [19/22] : 331e14b9df99a5da6450a90f63c6b478abe3ee", - "2 | Receipt details [20/22] : 5171cfc07f6898", - "2 | Receipt details [21/22] : ff761a30521c0062526b574c37a1e067529d1f", - "2 | Receipt details [22/22] : 634310a2444f152ddc6e61e9d5", - "3 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "3 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "3 | Portfolios [3/6] : 123456", - "3 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "3 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "3 | Portfolios [6/6] : 123456", - "4 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Settlement : Affirm with receipts", - "1 | Id : 2339", - "2 | Receipt details [1/22] : 8024647588037426477", - "2 | Receipt details [2/22] : 1956080004807840972", - "2 | Receipt details [3/22] : 11328996535317513138", - "2 | Receipt details [4/22] : 2GNWj63odfST5WNYuXQgbNWXUAqN7CwJJZ1e1t", - "2 | Receipt details [5/22] : MV2JCbZQJY", - "2 | Receipt details [6/22] : f440363b7023d6eff3f69f18ed7a799b4056f5", - "2 | Receipt details [7/22] : 2e25c8588f0a8e336087cc8bbff03adc1d81ff", - "2 | Receipt details [8/22] : 36505dcfbc345ad4b3a50ea4e6fb53de709e50", - "2 | Receipt details [9/22] : accf2590dfd5d0", - "2 | Receipt details [10/22] : 81446d78dba83c3a3e590944154ff228d17f65", - "2 | Receipt details [11/22] : a438b579e0b09d7ff42a9de2f4", - "2 | Receipt details [12/22] : 14674692108037962798", - "2 | Receipt details [13/22] : 1573596473620343964", - "2 | Receipt details [14/22] : 5062214123554187043", - "2 | Receipt details [15/22] : 2G1Sjc6AoLsyxH5iFZccz9jQjyZE9g4rii5k31", - "2 | Receipt details [16/22] : mrC9uMFN1d", - "2 | Receipt details [17/22] : 2fca1ffde16457fbd5cd2ccdb86f364df8ae27", - "2 | Receipt details [18/22] : 3c3a24a97d1636f71643f4e923b9335f5fbba0", - "2 | Receipt details [19/22] : 331e14b9df99a5da6450a90f63c6b478abe3ee", - "2 | Receipt details [20/22] : 5171cfc07f6898", - "2 | Receipt details [21/22] : ff761a30521c0062526b574c37a1e067529d1f", - "2 | Receipt details [22/22] : 634310a2444f152ddc6e61e9d5", - "3 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "3 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "3 | Portfolios [3/6] : 123456", - "3 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "3 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "3 | Portfolios [6/6] : 123456", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1263, - "name": "Settlement_Affirm_with_receipts", - "blob": "25036400000000000000082d7daa0477465d6fccd4d08e6664251bb2433b4553ae389dad9542cf7f2a34d5f6c9b89323365dd63af4a9a2547922f78215cb1893b015f501f440363b7023d6eff3f69f18ed7a799b4056f52e25c8588f0a8e336087cc8bbff03adc1d81ff36505dcfbc345ad4b3a50ea4e6fb53de709e50accf2590dfd5d00181446d78dba83c3a3e590944154ff228d17f65a438b579e0b09d7ff42a9de2f42ebcd4efb8faa6cb9cacf2cda789d61523a769b3ec9840469d83ac1f00bee071af7e3657fd5f1632d9b600576b6a8e17084b773fd82fb05b002fca1ffde16457fbd5cd2ccdb86f364df8ae273c3a24a97d1636f71643f4e923b9335f5fbba0331e14b9df99a5da6450a90f63c6b478abe3ee5171cfc07f689801ff761a30521c0062526b574c37a1e067529d1f634310a2444f152ddc6e61e9d50857fe7c4bcb4b5321ffd0d4abc20c1f1b9c727bef031bc5c22d41d98cc5ba2fe30140e2010000000000907c51ddeced476ca85354dbee9f2c6869d67fd62e913c2247e0566ce476878b0140e2010000000000d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Affirm with receipts", - "1 | Id : 100", - "2 | Receipt details [1/22] : 8024647588037426477", - "2 | Receipt details [2/22] : 1956080004807840972", - "2 | Receipt details [3/22] : 11328996535317513138", - "2 | Receipt details [4/22] : 2GNWj63odfST5WNYuXQgbNWXUAqN7CwJJZ1e1t", - "2 | Receipt details [5/22] : MV2JCbZQJY", - "2 | Receipt details [6/22] : f440363b7023d6eff3f69f18ed7a799b4056f5", - "2 | Receipt details [7/22] : 2e25c8588f0a8e336087cc8bbff03adc1d81ff", - "2 | Receipt details [8/22] : 36505dcfbc345ad4b3a50ea4e6fb53de709e50", - "2 | Receipt details [9/22] : accf2590dfd5d0", - "2 | Receipt details [10/22] : 81446d78dba83c3a3e590944154ff228d17f65", - "2 | Receipt details [11/22] : a438b579e0b09d7ff42a9de2f4", - "2 | Receipt details [12/22] : 14674692108037962798", - "2 | Receipt details [13/22] : 1573596473620343964", - "2 | Receipt details [14/22] : 5062214123554187043", - "2 | Receipt details [15/22] : 2G1Sjc6AoLsyxH5iFZccz9jQjyZE9g4rii5k31", - "2 | Receipt details [16/22] : mrC9uMFN1d", - "2 | Receipt details [17/22] : 2fca1ffde16457fbd5cd2ccdb86f364df8ae27", - "2 | Receipt details [18/22] : 3c3a24a97d1636f71643f4e923b9335f5fbba0", - "2 | Receipt details [19/22] : 331e14b9df99a5da6450a90f63c6b478abe3ee", - "2 | Receipt details [20/22] : 5171cfc07f6898", - "2 | Receipt details [21/22] : ff761a30521c0062526b574c37a1e067529d1f", - "2 | Receipt details [22/22] : 634310a2444f152ddc6e61e9d5", - "3 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "3 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "3 | Portfolios [3/6] : 123456", - "3 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "3 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "3 | Portfolios [6/6] : 123456", - "4 | Tip : POLYX 5552342.355555" + "0 | Settlement : Execute scheduled instruction", + "1 | Id : 50283", + "2 | Weight limit [1/2] : 52260469", + "2 | Weight limit [2/2] : 281967976", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Settlement : Affirm with receipts", - "1 | Id : 100", - "2 | Receipt details [1/22] : 8024647588037426477", - "2 | Receipt details [2/22] : 1956080004807840972", - "2 | Receipt details [3/22] : 11328996535317513138", - "2 | Receipt details [4/22] : 2GNWj63odfST5WNYuXQgbNWXUAqN7CwJJZ1e1t", - "2 | Receipt details [5/22] : MV2JCbZQJY", - "2 | Receipt details [6/22] : f440363b7023d6eff3f69f18ed7a799b4056f5", - "2 | Receipt details [7/22] : 2e25c8588f0a8e336087cc8bbff03adc1d81ff", - "2 | Receipt details [8/22] : 36505dcfbc345ad4b3a50ea4e6fb53de709e50", - "2 | Receipt details [9/22] : accf2590dfd5d0", - "2 | Receipt details [10/22] : 81446d78dba83c3a3e590944154ff228d17f65", - "2 | Receipt details [11/22] : a438b579e0b09d7ff42a9de2f4", - "2 | Receipt details [12/22] : 14674692108037962798", - "2 | Receipt details [13/22] : 1573596473620343964", - "2 | Receipt details [14/22] : 5062214123554187043", - "2 | Receipt details [15/22] : 2G1Sjc6AoLsyxH5iFZccz9jQjyZE9g4rii5k31", - "2 | Receipt details [16/22] : mrC9uMFN1d", - "2 | Receipt details [17/22] : 2fca1ffde16457fbd5cd2ccdb86f364df8ae27", - "2 | Receipt details [18/22] : 3c3a24a97d1636f71643f4e923b9335f5fbba0", - "2 | Receipt details [19/22] : 331e14b9df99a5da6450a90f63c6b478abe3ee", - "2 | Receipt details [20/22] : 5171cfc07f6898", - "2 | Receipt details [21/22] : ff761a30521c0062526b574c37a1e067529d1f", - "2 | Receipt details [22/22] : 634310a2444f152ddc6e61e9d5", - "3 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "3 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "3 | Portfolios [3/6] : 123456", - "3 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "3 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "3 | Portfolios [6/6] : 123456", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Execute scheduled instruction", + "1 | Id : 50283", + "2 | Weight limit [1/2] : 52260469", + "2 | Weight limit [2/2] : 281967976", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1264, - "name": "Settlement_Affirm_with_receipts", - "blob": "25032309000000000000082d7daa0477465d6fccd4d08e6664251bb2433b4553ae389dad9542cf7f2a34d5f6c9b89323365dd63af4a9a2547922f78215cb1893b015f501f440363b7023d6eff3f69f18ed7a799b4056f52e25c8588f0a8e336087cc8bbff03adc1d81ff36505dcfbc345ad4b3a50ea4e6fb53de709e50accf2590dfd5d00181446d78dba83c3a3e590944154ff228d17f65a438b579e0b09d7ff42a9de2f42ebcd4efb8faa6cb9cacf2cda789d61523a769b3ec9840469d83ac1f00bee071af7e3657fd5f1632d9b600576b6a8e17084b773fd82fb05b002fca1ffde16457fbd5cd2ccdb86f364df8ae273c3a24a97d1636f71643f4e923b9335f5fbba0331e14b9df99a5da6450a90f63c6b478abe3ee5171cfc07f689801ff761a30521c0062526b574c37a1e067529d1f634310a2444f152ddc6e61e9d50857fe7c4bcb4b5321ffd0d4abc20c1f1b9c727bef031bc5c22d41d98cc5ba2fe30140e2010000000000907c51ddeced476ca85354dbee9f2c6869d67fd62e913c2247e0566ce476878b0140e2010000000000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1248, + "name": "Settlement_Execute_scheduled_instruction", + "blob": "250e0000000000000000d6b9750ca2f53943d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Affirm with receipts", - "1 | Id : 2339", - "2 | Receipt details [1/22] : 8024647588037426477", - "2 | Receipt details [2/22] : 1956080004807840972", - "2 | Receipt details [3/22] : 11328996535317513138", - "2 | Receipt details [4/22] : 2GNWj63odfST5WNYuXQgbNWXUAqN7CwJJZ1e1t", - "2 | Receipt details [5/22] : MV2JCbZQJY", - "2 | Receipt details [6/22] : f440363b7023d6eff3f69f18ed7a799b4056f5", - "2 | Receipt details [7/22] : 2e25c8588f0a8e336087cc8bbff03adc1d81ff", - "2 | Receipt details [8/22] : 36505dcfbc345ad4b3a50ea4e6fb53de709e50", - "2 | Receipt details [9/22] : accf2590dfd5d0", - "2 | Receipt details [10/22] : 81446d78dba83c3a3e590944154ff228d17f65", - "2 | Receipt details [11/22] : a438b579e0b09d7ff42a9de2f4", - "2 | Receipt details [12/22] : 14674692108037962798", - "2 | Receipt details [13/22] : 1573596473620343964", - "2 | Receipt details [14/22] : 5062214123554187043", - "2 | Receipt details [15/22] : 2G1Sjc6AoLsyxH5iFZccz9jQjyZE9g4rii5k31", - "2 | Receipt details [16/22] : mrC9uMFN1d", - "2 | Receipt details [17/22] : 2fca1ffde16457fbd5cd2ccdb86f364df8ae27", - "2 | Receipt details [18/22] : 3c3a24a97d1636f71643f4e923b9335f5fbba0", - "2 | Receipt details [19/22] : 331e14b9df99a5da6450a90f63c6b478abe3ee", - "2 | Receipt details [20/22] : 5171cfc07f6898", - "2 | Receipt details [21/22] : ff761a30521c0062526b574c37a1e067529d1f", - "2 | Receipt details [22/22] : 634310a2444f152ddc6e61e9d5", - "3 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "3 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "3 | Portfolios [3/6] : 123456", - "3 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "3 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "3 | Portfolios [6/6] : 123456" + "0 | Settlement : Execute scheduled instruction", + "1 | Id : 0", + "2 | Weight limit [1/2] : 52260469", + "2 | Weight limit [2/2] : 281967976", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Settlement : Affirm with receipts", - "1 | Id : 2339", - "2 | Receipt details [1/22] : 8024647588037426477", - "2 | Receipt details [2/22] : 1956080004807840972", - "2 | Receipt details [3/22] : 11328996535317513138", - "2 | Receipt details [4/22] : 2GNWj63odfST5WNYuXQgbNWXUAqN7CwJJZ1e1t", - "2 | Receipt details [5/22] : MV2JCbZQJY", - "2 | Receipt details [6/22] : f440363b7023d6eff3f69f18ed7a799b4056f5", - "2 | Receipt details [7/22] : 2e25c8588f0a8e336087cc8bbff03adc1d81ff", - "2 | Receipt details [8/22] : 36505dcfbc345ad4b3a50ea4e6fb53de709e50", - "2 | Receipt details [9/22] : accf2590dfd5d0", - "2 | Receipt details [10/22] : 81446d78dba83c3a3e590944154ff228d17f65", - "2 | Receipt details [11/22] : a438b579e0b09d7ff42a9de2f4", - "2 | Receipt details [12/22] : 14674692108037962798", - "2 | Receipt details [13/22] : 1573596473620343964", - "2 | Receipt details [14/22] : 5062214123554187043", - "2 | Receipt details [15/22] : 2G1Sjc6AoLsyxH5iFZccz9jQjyZE9g4rii5k31", - "2 | Receipt details [16/22] : mrC9uMFN1d", - "2 | Receipt details [17/22] : 2fca1ffde16457fbd5cd2ccdb86f364df8ae27", - "2 | Receipt details [18/22] : 3c3a24a97d1636f71643f4e923b9335f5fbba0", - "2 | Receipt details [19/22] : 331e14b9df99a5da6450a90f63c6b478abe3ee", - "2 | Receipt details [20/22] : 5171cfc07f6898", - "2 | Receipt details [21/22] : ff761a30521c0062526b574c37a1e067529d1f", - "2 | Receipt details [22/22] : 634310a2444f152ddc6e61e9d5", - "3 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "3 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "3 | Portfolios [3/6] : 123456", - "3 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "3 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "3 | Portfolios [6/6] : 123456", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", + "0 | Settlement : Execute scheduled instruction", + "1 | Id : 0", + "2 | Weight limit [1/2] : 52260469", + "2 | Weight limit [2/2] : 281967976", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1265, - "name": "Settlement_Affirm_with_receipts", - "blob": "25032309000000000000000857fe7c4bcb4b5321ffd0d4abc20c1f1b9c727bef031bc5c22d41d98cc5ba2fe30140e2010000000000907c51ddeced476ca85354dbee9f2c6869d67fd62e913c2247e0566ce476878b0140e2010000000000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1249, + "name": "Settlement_Execute_scheduled_instruction", + "blob": "250e6bc40000000000003641c20b88d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Affirm with receipts", - "1 | Id : 2339", - "2 | Receipt details : ", - "3 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "3 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "3 | Portfolios [3/6] : 123456", - "3 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "3 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "3 | Portfolios [6/6] : 123456" + "0 | Settlement : Execute scheduled instruction", + "1 | Id : 50283", + "2 | Weight limit [1/2] : 49320013", + "2 | Weight limit [2/2] : 34", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Settlement : Affirm with receipts", - "1 | Id : 2339", - "2 | Receipt details : ", - "3 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "3 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "3 | Portfolios [3/6] : 123456", - "3 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "3 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "3 | Portfolios [6/6] : 123456", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", + "0 | Settlement : Execute scheduled instruction", + "1 | Id : 50283", + "2 | Weight limit [1/2] : 49320013", + "2 | Weight limit [2/2] : 34", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1266, - "name": "Settlement_Set_venue_filtering", - "blob": "25045449434b45522d313233343501d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1250, + "name": "Settlement_Execute_scheduled_instruction", + "blob": "250e64000000000000003641c20b88d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Set venue filtering", - "1 | Ticker : TICKER-12345", - "2 | Enabled : True" + "0 | Settlement : Execute scheduled instruction", + "1 | Id : 100", + "2 | Weight limit [1/2] : 49320013", + "2 | Weight limit [2/2] : 34", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Settlement : Set venue filtering", - "1 | Ticker : TICKER-12345", - "2 | Enabled : True", + "0 | Settlement : Execute scheduled instruction", + "1 | Id : 100", + "2 | Weight limit [1/2] : 49320013", + "2 | Weight limit [2/2] : 34", "3 | Chain : Polymesh", "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1267, - "name": "Settlement_Set_venue_filtering", - "blob": "25045449434b45522d313233343501d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1251, + "name": "Settlement_Affirm_with_receipts_with_count", + "blob": "250f6bc400000000000000000108471963dde7536900000000938a9262c838e70500000000d826b7f3d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Set venue filtering", - "1 | Ticker : TICKER-12345", - "2 | Enabled : True", - "3 | Tip : POLYX 55.555555" + "0 | Settlement : Affirm with receipts with count", + "1 | Id : 50283", + "2 | Receipt details : ", + "3 | Portfolios : ", + "4 | Number of assets [1/7] : 1662600968", + "4 | Number of assets [2/7] : 1767106525", + "4 | Number of assets [3/7] : 0", + "4 | Number of assets [4/7] : 1653770899", + "4 | Number of assets [5/7] : 99039432", + "4 | Number of assets [6/7] : 0", + "4 | Number of assets [7/7] : 4088866520", + "5 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Settlement : Set venue filtering", - "1 | Ticker : TICKER-12345", - "2 | Enabled : True", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Affirm with receipts with count", + "1 | Id : 50283", + "2 | Receipt details : ", + "3 | Portfolios : ", + "4 | Number of assets [1/7] : 1662600968", + "4 | Number of assets [2/7] : 1767106525", + "4 | Number of assets [3/7] : 0", + "4 | Number of assets [4/7] : 1653770899", + "4 | Number of assets [5/7] : 99039432", + "4 | Number of assets [6/7] : 0", + "4 | Number of assets [7/7] : 4088866520", + "5 | Chain : Polymesh", + "6 | Nonce : 0", + "7 | Tip : POLYX 0.000987", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1268, - "name": "Settlement_Set_venue_filtering", - "blob": "25045449434b45522d313233343500d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1252, + "name": "Settlement_Affirm_with_receipts_with_count", + "blob": "250f00000000000000000873588de8f532bb7dc3ebb6d5cb3752e40cda212204a02f27fd353dc153517932eb0305788efde6e71a00774a53251ff5fd48818f6e049a2d01b5e7d49af65508ff587d825b8c781b9a597971f02bf7158b313fb702a787a7b3d0d357e8cd3cd48a30b3f69136241cec51031ab3dc62c8264af06ce03e025d7e015b02556c817830b2e174955984742e5a379f44d15fb0cf8454a841e98a98aeb350a670871dbe0c33416a6a7103b9faa92357354fc5275fffc1500202c7d44a6a85783bd66fbae34435340c93c92b27f45f470c00eb537a0e00f953857c9977cd3ed056938488f99e23459402fe49d00c61ef8ef32491122d3bdead73c5a52c849446ecbea34b9f0668cb05f8af3d9c766127279d0a9df07514014558174ddf8fd67e0b2d3b5a238957102b0e3e62d6dee717df38d3be5075c7f7081ecdf645fda520fdad9442b82f11a317ec8a92cece3eb79e0e84695ba9ab00bd0140e201000000000010ffe4f73720b572bfee5823f0bdca2f1e7463c82bdfa9e2d044e4d779148cad0140e20100000000000108471963dde7536900000000938a9262c838e70500000000d826b7f3d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Set venue filtering", - "1 | Ticker : TICKER-12345", - "2 | Enabled : False", - "3 | Tip : POLYX 5552342.355555" + "0 | Settlement : Affirm with receipts with count", + "1 | Id : 0", + "2 | Receipt details [1/22] : 9059891107135838323", + "2 | Receipt details [2/22] : 16452273737341266883", + "2 | Receipt details [3/22] : 2823651430997547532", + "2 | Receipt details [4/22] : 5HnhnetBnmYnPwWMU9FEEgPzWb6bGNgwB1quw3", + "2 | Receipt details [5/22] : TKdGT6KKvE", + "2 | Receipt details [6/22] : b5e7d49af65508ff587d825b8c781b9a597971", + "2 | Receipt details [7/22] : f02bf7158b313fb702a787a7b3d0d357e8cd3c", + "2 | Receipt details [8/22] : d48a30b3f69136241cec51031ab3dc62c8264a", + "2 | Receipt details [9/22] : f06ce03e025d7e", + "2 | Receipt details [10/22] : 5b02556c817830b2e174955984742e5a379f44", + "2 | Receipt details [11/22] : d15fb0cf8454a841e98a98aeb3", + "2 | Receipt details [12/22] : 3678524029690488400", + "2 | Receipt details [13/22] : 12248305561026325057", + "2 | Receipt details [14/22] : 18401470330850072355", + "2 | Receipt details [15/22] : 5GSAsCAnt6PM9EUURuXZrBh1LKv21rBhVSqHNr", + "2 | Receipt details [16/22] : LQv7U97C7b", + "2 | Receipt details [17/22] : f953857c9977cd3ed056938488f99e23459402", + "2 | Receipt details [18/22] : fe49d00c61ef8ef32491122d3bdead73c5a52c", + "2 | Receipt details [19/22] : 849446ecbea34b9f0668cb05f8af3d9c766127", + "2 | Receipt details [20/22] : 279d0a9df07514", + "2 | Receipt details [21/22] : 4558174ddf8fd67e0b2d3b5a238957102b0e3e", + "2 | Receipt details [22/22] : 62d6dee717df38d3be5075c7f7", + "3 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "3 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "3 | Portfolios [3/6] : 123456", + "3 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "3 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "3 | Portfolios [6/6] : 123456", + "4 | Number of assets [1/7] : 1662600968", + "4 | Number of assets [2/7] : 1767106525", + "4 | Number of assets [3/7] : 0", + "4 | Number of assets [4/7] : 1653770899", + "4 | Number of assets [5/7] : 99039432", + "4 | Number of assets [6/7] : 0", + "4 | Number of assets [7/7] : 4088866520", + "5 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Settlement : Set venue filtering", - "1 | Ticker : TICKER-12345", - "2 | Enabled : False", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Affirm with receipts with count", + "1 | Id : 0", + "2 | Receipt details [1/22] : 9059891107135838323", + "2 | Receipt details [2/22] : 16452273737341266883", + "2 | Receipt details [3/22] : 2823651430997547532", + "2 | Receipt details [4/22] : 5HnhnetBnmYnPwWMU9FEEgPzWb6bGNgwB1quw3", + "2 | Receipt details [5/22] : TKdGT6KKvE", + "2 | Receipt details [6/22] : b5e7d49af65508ff587d825b8c781b9a597971", + "2 | Receipt details [7/22] : f02bf7158b313fb702a787a7b3d0d357e8cd3c", + "2 | Receipt details [8/22] : d48a30b3f69136241cec51031ab3dc62c8264a", + "2 | Receipt details [9/22] : f06ce03e025d7e", + "2 | Receipt details [10/22] : 5b02556c817830b2e174955984742e5a379f44", + "2 | Receipt details [11/22] : d15fb0cf8454a841e98a98aeb3", + "2 | Receipt details [12/22] : 3678524029690488400", + "2 | Receipt details [13/22] : 12248305561026325057", + "2 | Receipt details [14/22] : 18401470330850072355", + "2 | Receipt details [15/22] : 5GSAsCAnt6PM9EUURuXZrBh1LKv21rBhVSqHNr", + "2 | Receipt details [16/22] : LQv7U97C7b", + "2 | Receipt details [17/22] : f953857c9977cd3ed056938488f99e23459402", + "2 | Receipt details [18/22] : fe49d00c61ef8ef32491122d3bdead73c5a52c", + "2 | Receipt details [19/22] : 849446ecbea34b9f0668cb05f8af3d9c766127", + "2 | Receipt details [20/22] : 279d0a9df07514", + "2 | Receipt details [21/22] : 4558174ddf8fd67e0b2d3b5a238957102b0e3e", + "2 | Receipt details [22/22] : 62d6dee717df38d3be5075c7f7", + "3 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "3 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "3 | Portfolios [3/6] : 123456", + "3 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "3 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "3 | Portfolios [6/6] : 123456", + "4 | Number of assets [1/7] : 1662600968", + "4 | Number of assets [2/7] : 1767106525", + "4 | Number of assets [3/7] : 0", + "4 | Number of assets [4/7] : 1653770899", + "4 | Number of assets [5/7] : 99039432", + "4 | Number of assets [6/7] : 0", + "4 | Number of assets [7/7] : 4088866520", + "5 | Chain : Polymesh", + "6 | Nonce : 100", + "7 | Tip : POLYX 5552342.355555", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1269, - "name": "Settlement_Set_venue_filtering", - "blob": "25045449434b45522d313233343500d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1253, + "name": "Settlement_Affirm_with_receipts_with_count", + "blob": "250f64000000000000000873588de8f532bb7dc3ebb6d5cb3752e40cda212204a02f27fd353dc153517932eb0305788efde6e71a00774a53251ff5fd48818f6e049a2d01b5e7d49af65508ff587d825b8c781b9a597971f02bf7158b313fb702a787a7b3d0d357e8cd3cd48a30b3f69136241cec51031ab3dc62c8264af06ce03e025d7e015b02556c817830b2e174955984742e5a379f44d15fb0cf8454a841e98a98aeb350a670871dbe0c33416a6a7103b9faa92357354fc5275fffc1500202c7d44a6a85783bd66fbae34435340c93c92b27f45f470c00eb537a0e00f953857c9977cd3ed056938488f99e23459402fe49d00c61ef8ef32491122d3bdead73c5a52c849446ecbea34b9f0668cb05f8af3d9c766127279d0a9df07514014558174ddf8fd67e0b2d3b5a238957102b0e3e62d6dee717df38d3be5075c7f7081ecdf645fda520fdad9442b82f11a317ec8a92cece3eb79e0e84695ba9ab00bd0140e201000000000010ffe4f73720b572bfee5823f0bdca2f1e7463c82bdfa9e2d044e4d779148cad0140e20100000000000176b9a0d038151ff7000000004ee79ad8f7626e5e000000005a893f27d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Set venue filtering", - "1 | Ticker : TICKER-12345", - "2 | Enabled : False", - "3 | Tip : POLYX 5552342.355555" + "0 | Settlement : Affirm with receipts with count", + "1 | Id : 100", + "2 | Receipt details [1/22] : 9059891107135838323", + "2 | Receipt details [2/22] : 16452273737341266883", + "2 | Receipt details [3/22] : 2823651430997547532", + "2 | Receipt details [4/22] : 5HnhnetBnmYnPwWMU9FEEgPzWb6bGNgwB1quw3", + "2 | Receipt details [5/22] : TKdGT6KKvE", + "2 | Receipt details [6/22] : b5e7d49af65508ff587d825b8c781b9a597971", + "2 | Receipt details [7/22] : f02bf7158b313fb702a787a7b3d0d357e8cd3c", + "2 | Receipt details [8/22] : d48a30b3f69136241cec51031ab3dc62c8264a", + "2 | Receipt details [9/22] : f06ce03e025d7e", + "2 | Receipt details [10/22] : 5b02556c817830b2e174955984742e5a379f44", + "2 | Receipt details [11/22] : d15fb0cf8454a841e98a98aeb3", + "2 | Receipt details [12/22] : 3678524029690488400", + "2 | Receipt details [13/22] : 12248305561026325057", + "2 | Receipt details [14/22] : 18401470330850072355", + "2 | Receipt details [15/22] : 5GSAsCAnt6PM9EUURuXZrBh1LKv21rBhVSqHNr", + "2 | Receipt details [16/22] : LQv7U97C7b", + "2 | Receipt details [17/22] : f953857c9977cd3ed056938488f99e23459402", + "2 | Receipt details [18/22] : fe49d00c61ef8ef32491122d3bdead73c5a52c", + "2 | Receipt details [19/22] : 849446ecbea34b9f0668cb05f8af3d9c766127", + "2 | Receipt details [20/22] : 279d0a9df07514", + "2 | Receipt details [21/22] : 4558174ddf8fd67e0b2d3b5a238957102b0e3e", + "2 | Receipt details [22/22] : 62d6dee717df38d3be5075c7f7", + "3 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "3 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "3 | Portfolios [3/6] : 123456", + "3 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "3 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "3 | Portfolios [6/6] : 123456", + "4 | Number of assets [1/7] : 3500194166", + "4 | Number of assets [2/7] : 4146009400", + "4 | Number of assets [3/7] : 0", + "4 | Number of assets [4/7] : 3634030414", + "4 | Number of assets [5/7] : 1584292599", + "4 | Number of assets [6/7] : 0", + "4 | Number of assets [7/7] : 658475354", + "5 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Settlement : Set venue filtering", - "1 | Ticker : TICKER-12345", - "2 | Enabled : False", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Affirm with receipts with count", + "1 | Id : 100", + "2 | Receipt details [1/22] : 9059891107135838323", + "2 | Receipt details [2/22] : 16452273737341266883", + "2 | Receipt details [3/22] : 2823651430997547532", + "2 | Receipt details [4/22] : 5HnhnetBnmYnPwWMU9FEEgPzWb6bGNgwB1quw3", + "2 | Receipt details [5/22] : TKdGT6KKvE", + "2 | Receipt details [6/22] : b5e7d49af65508ff587d825b8c781b9a597971", + "2 | Receipt details [7/22] : f02bf7158b313fb702a787a7b3d0d357e8cd3c", + "2 | Receipt details [8/22] : d48a30b3f69136241cec51031ab3dc62c8264a", + "2 | Receipt details [9/22] : f06ce03e025d7e", + "2 | Receipt details [10/22] : 5b02556c817830b2e174955984742e5a379f44", + "2 | Receipt details [11/22] : d15fb0cf8454a841e98a98aeb3", + "2 | Receipt details [12/22] : 3678524029690488400", + "2 | Receipt details [13/22] : 12248305561026325057", + "2 | Receipt details [14/22] : 18401470330850072355", + "2 | Receipt details [15/22] : 5GSAsCAnt6PM9EUURuXZrBh1LKv21rBhVSqHNr", + "2 | Receipt details [16/22] : LQv7U97C7b", + "2 | Receipt details [17/22] : f953857c9977cd3ed056938488f99e23459402", + "2 | Receipt details [18/22] : fe49d00c61ef8ef32491122d3bdead73c5a52c", + "2 | Receipt details [19/22] : 849446ecbea34b9f0668cb05f8af3d9c766127", + "2 | Receipt details [20/22] : 279d0a9df07514", + "2 | Receipt details [21/22] : 4558174ddf8fd67e0b2d3b5a238957102b0e3e", + "2 | Receipt details [22/22] : 62d6dee717df38d3be5075c7f7", + "3 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "3 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "3 | Portfolios [3/6] : 123456", + "3 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "3 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "3 | Portfolios [6/6] : 123456", + "4 | Number of assets [1/7] : 3500194166", + "4 | Number of assets [2/7] : 4146009400", + "4 | Number of assets [3/7] : 0", + "4 | Number of assets [4/7] : 3634030414", + "4 | Number of assets [5/7] : 1584292599", + "4 | Number of assets [6/7] : 0", + "4 | Number of assets [7/7] : 658475354", + "5 | Chain : Polymesh", + "6 | Nonce : 0", + "7 | Tip : POLYX 1234.56789", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1270, - "name": "Settlement_Set_venue_filtering", - "blob": "25045449434b45522d313233343501d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1254, + "name": "Settlement_Affirm_with_receipts_with_count", + "blob": "250f6bc40000000000000873588de8f532bb7dc3ebb6d5cb3752e40cda212204a02f27fd353dc153517932eb0305788efde6e71a00774a53251ff5fd48818f6e049a2d01b5e7d49af65508ff587d825b8c781b9a597971f02bf7158b313fb702a787a7b3d0d357e8cd3cd48a30b3f69136241cec51031ab3dc62c8264af06ce03e025d7e015b02556c817830b2e174955984742e5a379f44d15fb0cf8454a841e98a98aeb350a670871dbe0c33416a6a7103b9faa92357354fc5275fffc1500202c7d44a6a85783bd66fbae34435340c93c92b27f45f470c00eb537a0e00f953857c9977cd3ed056938488f99e23459402fe49d00c61ef8ef32491122d3bdead73c5a52c849446ecbea34b9f0668cb05f8af3d9c766127279d0a9df07514014558174ddf8fd67e0b2d3b5a238957102b0e3e62d6dee717df38d3be5075c7f7081ecdf645fda520fdad9442b82f11a317ec8a92cece3eb79e0e84695ba9ab00bd0140e201000000000010ffe4f73720b572bfee5823f0bdca2f1e7463c82bdfa9e2d044e4d779148cad0140e2010000000000016b92f7688cf156a5000000004a35d2d32b4648070000000054d1d07ed5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Set venue filtering", - "1 | Ticker : TICKER-12345", - "2 | Enabled : True" + "0 | Settlement : Affirm with receipts with count", + "1 | Id : 50283", + "2 | Receipt details [1/22] : 9059891107135838323", + "2 | Receipt details [2/22] : 16452273737341266883", + "2 | Receipt details [3/22] : 2823651430997547532", + "2 | Receipt details [4/22] : 5HnhnetBnmYnPwWMU9FEEgPzWb6bGNgwB1quw3", + "2 | Receipt details [5/22] : TKdGT6KKvE", + "2 | Receipt details [6/22] : b5e7d49af65508ff587d825b8c781b9a597971", + "2 | Receipt details [7/22] : f02bf7158b313fb702a787a7b3d0d357e8cd3c", + "2 | Receipt details [8/22] : d48a30b3f69136241cec51031ab3dc62c8264a", + "2 | Receipt details [9/22] : f06ce03e025d7e", + "2 | Receipt details [10/22] : 5b02556c817830b2e174955984742e5a379f44", + "2 | Receipt details [11/22] : d15fb0cf8454a841e98a98aeb3", + "2 | Receipt details [12/22] : 3678524029690488400", + "2 | Receipt details [13/22] : 12248305561026325057", + "2 | Receipt details [14/22] : 18401470330850072355", + "2 | Receipt details [15/22] : 5GSAsCAnt6PM9EUURuXZrBh1LKv21rBhVSqHNr", + "2 | Receipt details [16/22] : LQv7U97C7b", + "2 | Receipt details [17/22] : f953857c9977cd3ed056938488f99e23459402", + "2 | Receipt details [18/22] : fe49d00c61ef8ef32491122d3bdead73c5a52c", + "2 | Receipt details [19/22] : 849446ecbea34b9f0668cb05f8af3d9c766127", + "2 | Receipt details [20/22] : 279d0a9df07514", + "2 | Receipt details [21/22] : 4558174ddf8fd67e0b2d3b5a238957102b0e3e", + "2 | Receipt details [22/22] : 62d6dee717df38d3be5075c7f7", + "3 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "3 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "3 | Portfolios [3/6] : 123456", + "3 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "3 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "3 | Portfolios [6/6] : 123456", + "4 | Number of assets [1/7] : 1761055339", + "4 | Number of assets [2/7] : 2773938572", + "4 | Number of assets [3/7] : 0", + "4 | Number of assets [4/7] : 3553768778", + "4 | Number of assets [5/7] : 122177067", + "4 | Number of assets [6/7] : 0", + "4 | Number of assets [7/7] : 2127614292", + "5 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Settlement : Set venue filtering", - "1 | Ticker : TICKER-12345", - "2 | Enabled : True", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Affirm with receipts with count", + "1 | Id : 50283", + "2 | Receipt details [1/22] : 9059891107135838323", + "2 | Receipt details [2/22] : 16452273737341266883", + "2 | Receipt details [3/22] : 2823651430997547532", + "2 | Receipt details [4/22] : 5HnhnetBnmYnPwWMU9FEEgPzWb6bGNgwB1quw3", + "2 | Receipt details [5/22] : TKdGT6KKvE", + "2 | Receipt details [6/22] : b5e7d49af65508ff587d825b8c781b9a597971", + "2 | Receipt details [7/22] : f02bf7158b313fb702a787a7b3d0d357e8cd3c", + "2 | Receipt details [8/22] : d48a30b3f69136241cec51031ab3dc62c8264a", + "2 | Receipt details [9/22] : f06ce03e025d7e", + "2 | Receipt details [10/22] : 5b02556c817830b2e174955984742e5a379f44", + "2 | Receipt details [11/22] : d15fb0cf8454a841e98a98aeb3", + "2 | Receipt details [12/22] : 3678524029690488400", + "2 | Receipt details [13/22] : 12248305561026325057", + "2 | Receipt details [14/22] : 18401470330850072355", + "2 | Receipt details [15/22] : 5GSAsCAnt6PM9EUURuXZrBh1LKv21rBhVSqHNr", + "2 | Receipt details [16/22] : LQv7U97C7b", + "2 | Receipt details [17/22] : f953857c9977cd3ed056938488f99e23459402", + "2 | Receipt details [18/22] : fe49d00c61ef8ef32491122d3bdead73c5a52c", + "2 | Receipt details [19/22] : 849446ecbea34b9f0668cb05f8af3d9c766127", + "2 | Receipt details [20/22] : 279d0a9df07514", + "2 | Receipt details [21/22] : 4558174ddf8fd67e0b2d3b5a238957102b0e3e", + "2 | Receipt details [22/22] : 62d6dee717df38d3be5075c7f7", + "3 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "3 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "3 | Portfolios [3/6] : 123456", + "3 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "3 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "3 | Portfolios [6/6] : 123456", + "4 | Number of assets [1/7] : 1761055339", + "4 | Number of assets [2/7] : 2773938572", + "4 | Number of assets [3/7] : 0", + "4 | Number of assets [4/7] : 3553768778", + "4 | Number of assets [5/7] : 122177067", + "4 | Number of assets [6/7] : 0", + "4 | Number of assets [7/7] : 2127614292", + "5 | Chain : Polymesh", + "6 | Nonce : 2339", + "7 | Tip : POLYX 1234.56789", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1271, - "name": "Settlement_Allow_venues", - "blob": "25055449434b45522d313233343510d007000000000000000000000000000008442000000000001e6d080000000000d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1255, + "name": "Settlement_Affirm_with_receipts_with_count", + "blob": "250f64000000000000000873588de8f532bb7dc3ebb6d5cb3752e40cda212204a02f27fd353dc153517932eb0305788efde6e71a00774a53251ff5fd48818f6e049a2d01b5e7d49af65508ff587d825b8c781b9a597971f02bf7158b313fb702a787a7b3d0d357e8cd3cd48a30b3f69136241cec51031ab3dc62c8264af06ce03e025d7e015b02556c817830b2e174955984742e5a379f44d15fb0cf8454a841e98a98aeb350a670871dbe0c33416a6a7103b9faa92357354fc5275fffc1500202c7d44a6a85783bd66fbae34435340c93c92b27f45f470c00eb537a0e00f953857c9977cd3ed056938488f99e23459402fe49d00c61ef8ef32491122d3bdead73c5a52c849446ecbea34b9f0668cb05f8af3d9c766127279d0a9df07514014558174ddf8fd67e0b2d3b5a238957102b0e3e62d6dee717df38d3be5075c7f7000108471963dde7536900000000938a9262c838e70500000000d826b7f3d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Allow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues [1/4] : 2000", - "2 | Venues [2/4] : 0", - "2 | Venues [3/4] : 2114568", - "2 | Venues [4/4] : 552222" - ], - "output_expert": [ - "0 | Settlement : Allow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues [1/4] : 2000", - "2 | Venues [2/4] : 0", - "2 | Venues [3/4] : 2114568", - "2 | Venues [4/4] : 552222", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1272, - "name": "Settlement_Allow_venues", - "blob": "25055449434b45522d31323334350c000000000000000008442000000000001e6d080000000000d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Allow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues [1/3] : 0", - "2 | Venues [2/3] : 2114568", - "2 | Venues [3/3] : 552222", - "3 | Tip : POLYX 0.000987" + "0 | Settlement : Affirm with receipts with count", + "1 | Id : 100", + "2 | Receipt details [1/22] : 9059891107135838323", + "2 | Receipt details [2/22] : 16452273737341266883", + "2 | Receipt details [3/22] : 2823651430997547532", + "2 | Receipt details [4/22] : 5HnhnetBnmYnPwWMU9FEEgPzWb6bGNgwB1quw3", + "2 | Receipt details [5/22] : TKdGT6KKvE", + "2 | Receipt details [6/22] : b5e7d49af65508ff587d825b8c781b9a597971", + "2 | Receipt details [7/22] : f02bf7158b313fb702a787a7b3d0d357e8cd3c", + "2 | Receipt details [8/22] : d48a30b3f69136241cec51031ab3dc62c8264a", + "2 | Receipt details [9/22] : f06ce03e025d7e", + "2 | Receipt details [10/22] : 5b02556c817830b2e174955984742e5a379f44", + "2 | Receipt details [11/22] : d15fb0cf8454a841e98a98aeb3", + "2 | Receipt details [12/22] : 3678524029690488400", + "2 | Receipt details [13/22] : 12248305561026325057", + "2 | Receipt details [14/22] : 18401470330850072355", + "2 | Receipt details [15/22] : 5GSAsCAnt6PM9EUURuXZrBh1LKv21rBhVSqHNr", + "2 | Receipt details [16/22] : LQv7U97C7b", + "2 | Receipt details [17/22] : f953857c9977cd3ed056938488f99e23459402", + "2 | Receipt details [18/22] : fe49d00c61ef8ef32491122d3bdead73c5a52c", + "2 | Receipt details [19/22] : 849446ecbea34b9f0668cb05f8af3d9c766127", + "2 | Receipt details [20/22] : 279d0a9df07514", + "2 | Receipt details [21/22] : 4558174ddf8fd67e0b2d3b5a238957102b0e3e", + "2 | Receipt details [22/22] : 62d6dee717df38d3be5075c7f7", + "3 | Portfolios : ", + "4 | Number of assets [1/7] : 1662600968", + "4 | Number of assets [2/7] : 1767106525", + "4 | Number of assets [3/7] : 0", + "4 | Number of assets [4/7] : 1653770899", + "4 | Number of assets [5/7] : 99039432", + "4 | Number of assets [6/7] : 0", + "4 | Number of assets [7/7] : 4088866520", + "5 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Settlement : Allow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues [1/3] : 0", - "2 | Venues [2/3] : 2114568", - "2 | Venues [3/3] : 552222", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Affirm with receipts with count", + "1 | Id : 100", + "2 | Receipt details [1/22] : 9059891107135838323", + "2 | Receipt details [2/22] : 16452273737341266883", + "2 | Receipt details [3/22] : 2823651430997547532", + "2 | Receipt details [4/22] : 5HnhnetBnmYnPwWMU9FEEgPzWb6bGNgwB1quw3", + "2 | Receipt details [5/22] : TKdGT6KKvE", + "2 | Receipt details [6/22] : b5e7d49af65508ff587d825b8c781b9a597971", + "2 | Receipt details [7/22] : f02bf7158b313fb702a787a7b3d0d357e8cd3c", + "2 | Receipt details [8/22] : d48a30b3f69136241cec51031ab3dc62c8264a", + "2 | Receipt details [9/22] : f06ce03e025d7e", + "2 | Receipt details [10/22] : 5b02556c817830b2e174955984742e5a379f44", + "2 | Receipt details [11/22] : d15fb0cf8454a841e98a98aeb3", + "2 | Receipt details [12/22] : 3678524029690488400", + "2 | Receipt details [13/22] : 12248305561026325057", + "2 | Receipt details [14/22] : 18401470330850072355", + "2 | Receipt details [15/22] : 5GSAsCAnt6PM9EUURuXZrBh1LKv21rBhVSqHNr", + "2 | Receipt details [16/22] : LQv7U97C7b", + "2 | Receipt details [17/22] : f953857c9977cd3ed056938488f99e23459402", + "2 | Receipt details [18/22] : fe49d00c61ef8ef32491122d3bdead73c5a52c", + "2 | Receipt details [19/22] : 849446ecbea34b9f0668cb05f8af3d9c766127", + "2 | Receipt details [20/22] : 279d0a9df07514", + "2 | Receipt details [21/22] : 4558174ddf8fd67e0b2d3b5a238957102b0e3e", + "2 | Receipt details [22/22] : 62d6dee717df38d3be5075c7f7", + "3 | Portfolios : ", + "4 | Number of assets [1/7] : 1662600968", + "4 | Number of assets [2/7] : 1767106525", + "4 | Number of assets [3/7] : 0", + "4 | Number of assets [4/7] : 1653770899", + "4 | Number of assets [5/7] : 99039432", + "4 | Number of assets [6/7] : 0", + "4 | Number of assets [7/7] : 4088866520", + "5 | Chain : Polymesh", + "6 | Nonce : 2339", + "7 | Tip : POLYX 5552342.355555", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1273, - "name": "Settlement_Allow_venues", - "blob": "25055449434b45522d31323334350c000000000000000008442000000000001e6d080000000000d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1256, + "name": "Settlement_Affirm_instruction_with_count", + "blob": "25102309000000000000081ecdf645fda520fdad9442b82f11a317ec8a92cece3eb79e0e84695ba9ab00bd0140e201000000000010ffe4f73720b572bfee5823f0bdca2f1e7463c82bdfa9e2d044e4d779148cad0140e2010000000000016b92f7688cf156a5000000004a35d2d32b4648070000000054d1d07ed5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Allow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues [1/3] : 0", - "2 | Venues [2/3] : 2114568", - "2 | Venues [3/3] : 552222", - "3 | Tip : POLYX 5552342.355555" + "0 | Settlement : Affirm instruction with count", + "1 | Id : 2339", + "2 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "2 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "2 | Portfolios [3/6] : 123456", + "2 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "2 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "2 | Portfolios [6/6] : 123456", + "3 | Number of assets [1/7] : 1761055339", + "3 | Number of assets [2/7] : 2773938572", + "3 | Number of assets [3/7] : 0", + "3 | Number of assets [4/7] : 3553768778", + "3 | Number of assets [5/7] : 122177067", + "3 | Number of assets [6/7] : 0", + "3 | Number of assets [7/7] : 2127614292", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Settlement : Allow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues [1/3] : 0", - "2 | Venues [2/3] : 2114568", - "2 | Venues [3/3] : 552222", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Affirm instruction with count", + "1 | Id : 2339", + "2 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "2 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "2 | Portfolios [3/6] : 123456", + "2 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "2 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "2 | Portfolios [6/6] : 123456", + "3 | Number of assets [1/7] : 1761055339", + "3 | Number of assets [2/7] : 2773938572", + "3 | Number of assets [3/7] : 0", + "3 | Number of assets [4/7] : 3553768778", + "3 | Number of assets [5/7] : 122177067", + "3 | Number of assets [6/7] : 0", + "3 | Number of assets [7/7] : 2127614292", + "4 | Chain : Polymesh", + "5 | Nonce : 0", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1274, - "name": "Settlement_Allow_venues", - "blob": "25055449434b45522d3132333435040844200000000000d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1257, + "name": "Settlement_Affirm_instruction_with_count", + "blob": "25106400000000000000081ecdf645fda520fdad9442b82f11a317ec8a92cece3eb79e0e84695ba9ab00bd0140e201000000000010ffe4f73720b572bfee5823f0bdca2f1e7463c82bdfa9e2d044e4d779148cad0140e201000000000000d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Allow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues : 2114568", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Settlement : Affirm instruction with count", + "1 | Id : 100", + "2 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "2 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "2 | Portfolios [3/6] : 123456", + "2 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "2 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "2 | Portfolios [6/6] : 123456", + "3 | Number of assets : None", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Settlement : Allow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues : 2114568", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Affirm instruction with count", + "1 | Id : 100", + "2 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "2 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "2 | Portfolios [3/6] : 123456", + "2 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "2 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "2 | Portfolios [6/6] : 123456", + "3 | Number of assets : None", + "4 | Chain : Polymesh", + "5 | Nonce : 100", + "6 | Tip : POLYX 0.000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1275, - "name": "Settlement_Allow_venues", - "blob": "25055449434b45522d3132333435040844200000000000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1258, + "name": "Settlement_Affirm_instruction_with_count", + "blob": "25106bc4000000000000081ecdf645fda520fdad9442b82f11a317ec8a92cece3eb79e0e84695ba9ab00bd0140e201000000000010ffe4f73720b572bfee5823f0bdca2f1e7463c82bdfa9e2d044e4d779148cad0140e20100000000000176b9a0d038151ff7000000004ee79ad8f7626e5e000000005a893f27d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Allow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues : 2114568", - "3 | Tip : POLYX 1234.56789" + "0 | Settlement : Affirm instruction with count", + "1 | Id : 50283", + "2 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "2 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "2 | Portfolios [3/6] : 123456", + "2 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "2 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "2 | Portfolios [6/6] : 123456", + "3 | Number of assets [1/7] : 3500194166", + "3 | Number of assets [2/7] : 4146009400", + "3 | Number of assets [3/7] : 0", + "3 | Number of assets [4/7] : 3634030414", + "3 | Number of assets [5/7] : 1584292599", + "3 | Number of assets [6/7] : 0", + "3 | Number of assets [7/7] : 658475354", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Settlement : Allow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues : 2114568", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Affirm instruction with count", + "1 | Id : 50283", + "2 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "2 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "2 | Portfolios [3/6] : 123456", + "2 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "2 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "2 | Portfolios [6/6] : 123456", + "3 | Number of assets [1/7] : 3500194166", + "3 | Number of assets [2/7] : 4146009400", + "3 | Number of assets [3/7] : 0", + "3 | Number of assets [4/7] : 3634030414", + "3 | Number of assets [5/7] : 1584292599", + "3 | Number of assets [6/7] : 0", + "3 | Number of assets [7/7] : 658475354", + "4 | Chain : Polymesh", + "5 | Nonce : 0", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1276, - "name": "Settlement_Disallow_venues", - "blob": "25065449434b45522d31323334350c000000000000000008442000000000001e6d080000000000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1259, + "name": "Settlement_Affirm_instruction_with_count", + "blob": "25102309000000000000081ecdf645fda520fdad9442b82f11a317ec8a92cece3eb79e0e84695ba9ab00bd0140e201000000000010ffe4f73720b572bfee5823f0bdca2f1e7463c82bdfa9e2d044e4d779148cad0140e201000000000000d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Disallow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues [1/3] : 0", - "2 | Venues [2/3] : 2114568", - "2 | Venues [3/3] : 552222", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Settlement : Affirm instruction with count", + "1 | Id : 2339", + "2 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "2 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "2 | Portfolios [3/6] : 123456", + "2 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "2 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "2 | Portfolios [6/6] : 123456", + "3 | Number of assets : None" ], "output_expert": [ - "0 | Settlement : Disallow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues [1/3] : 0", - "2 | Venues [2/3] : 2114568", - "2 | Venues [3/3] : 552222", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "0 | Settlement : Affirm instruction with count", + "1 | Id : 2339", + "2 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "2 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "2 | Portfolios [3/6] : 123456", + "2 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "2 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "2 | Portfolios [6/6] : 123456", + "3 | Number of assets : None", + "4 | Chain : Polymesh", + "5 | Nonce : 100", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1277, - "name": "Settlement_Disallow_venues", - "blob": "25065449434b45522d3132333435040844200000000000d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1260, + "name": "Settlement_Affirm_instruction_with_count", + "blob": "25106bc400000000000000016b92f7688cf156a5000000004a35d2d32b4648070000000054d1d07ed503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Disallow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues : 2114568", - "3 | Tip : POLYX 0.000987" + "0 | Settlement : Affirm instruction with count", + "1 | Id : 50283", + "2 | Portfolios : ", + "3 | Number of assets [1/7] : 1761055339", + "3 | Number of assets [2/7] : 2773938572", + "3 | Number of assets [3/7] : 0", + "3 | Number of assets [4/7] : 3553768778", + "3 | Number of assets [5/7] : 122177067", + "3 | Number of assets [6/7] : 0", + "3 | Number of assets [7/7] : 2127614292", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Settlement : Disallow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues : 2114568", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Affirm instruction with count", + "1 | Id : 50283", + "2 | Portfolios : ", + "3 | Number of assets [1/7] : 1761055339", + "3 | Number of assets [2/7] : 2773938572", + "3 | Number of assets [3/7] : 0", + "3 | Number of assets [4/7] : 3553768778", + "3 | Number of assets [5/7] : 122177067", + "3 | Number of assets [6/7] : 0", + "3 | Number of assets [7/7] : 2127614292", + "4 | Chain : Polymesh", + "5 | Nonce : 1", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1278, - "name": "Settlement_Disallow_venues", - "blob": "25065449434b45522d3132333435040844200000000000d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1261, + "name": "Settlement_Reject_instruction_with_count", + "blob": "2511230900000000000032e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e201000000000000d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Disallow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues : 2114568", - "3 | Tip : POLYX 5552342.355555" + "0 | Settlement : Reject instruction with count", + "1 | Id : 2339", + "2 | Portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio [3/3] : 123456", + "3 | Number of assets : None", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Settlement : Disallow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues : 2114568", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Reject instruction with count", + "1 | Id : 2339", + "2 | Portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio [3/3] : 123456", + "3 | Number of assets : None", + "4 | Chain : Polymesh", + "5 | Nonce : 100", + "6 | Tip : POLYX 1234.56789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1279, - "name": "Settlement_Disallow_venues", - "blob": "25065449434b45522d31323334350c000000000000000008442000000000001e6d080000000000d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1262, + "name": "Settlement_Reject_instruction_with_count", + "blob": "2511010000000000000032e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e201000000000001d0b8db47f577b70000000000d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Disallow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues [1/3] : 0", - "2 | Venues [2/3] : 2114568", - "2 | Venues [3/3] : 552222", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Settlement : Disallow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues [1/3] : 0", - "2 | Venues [2/3] : 2114568", - "2 | Venues [3/3] : 552222", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1280, - "name": "Settlement_Disallow_venues", - "blob": "25065449434b45522d313233343510d007000000000000000000000000000008442000000000001e6d080000000000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Disallow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues [1/4] : 2000", - "2 | Venues [2/4] : 0", - "2 | Venues [3/4] : 2114568", - "2 | Venues [4/4] : 552222", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Settlement : Disallow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues [1/4] : 2000", - "2 | Venues [2/4] : 0", - "2 | Venues [3/4] : 2114568", - "2 | Venues [4/4] : 552222", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1281, - "name": "Settlement_Update_venue_signers", - "blob": "2507010000000000000024aace0f1af55dc40774b400b446e034f0e011aa710cb86c0e1fc0a3d4361d6e0286d75a78e2896e4df2016b573eb1ee9f95bfaa0cda2f08d8c7100486e16dec41e809c3d297a6570d91ebfdb1d02c2f71f4d39f37738d95deea9b638369f652433ab777a25770714f66b3cd37ade6593950efa0b5aa89ea623ef8413436ac06424a1161e39c52248f044fb11f10e595c898da44b1c04f66325b8b55ef9fa0ac5de885795de34f09ea5844086885bc975ae21db1ed7266e7f1e2be36b5c0bcb33be204b422e7496a246a6cb8a273392e686c488744da6ddb90d362d84991d6c202cc836dae498e7e89e690fdebd6dd30e7a72444e80dd81a775872c4c25f22827d029a5dc5dd1a0c5a9f7b9820c3559b01667977db4f19d2f32bb57a8a8ac9571301d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Update venue signers", + "0 | Settlement : Reject instruction with count", "1 | Id : 1", - "2 | Signers [1/18] : 2GJsTN1px9c724zcDSvTF1AFrCYPRw3BVZ9SHx", - "2 | Signers [2/18] : YTWPqW9xrV", - "2 | Signers [3/18] : 2FViVX37TonX67AyFCnJxEJykRcXyfw4x9TbYH", - "2 | Signers [4/18] : TthQMC1vd9", - "2 | Signers [5/18] : 2HhA7VHCLU6wz96SLHt1hSYDDixK7zBf8Mg4hV", - "2 | Signers [6/18] : VBaVb8fWrK", - "2 | Signers [7/18] : 2DmuP4Lphsbxw3nX4SgFGDnv24Az6cLvvZuTmZ", - "2 | Signers [8/18] : AH9PJJpjnu", - "2 | Signers [9/18] : 2E82ovE9BadujB6rM46yfuj9xJHroUjJCnaAz9", - "2 | Signers [10/18] : VeVnFvE1ez", - "2 | Signers [11/18] : 2Hhnrwumdh2J4Nic3tMN9czqZFQNa2aPUHaV4j", - "2 | Signers [12/18] : Br4fgVSt7K", - "2 | Signers [13/18] : 2HZGKcxZha9usiAZpPU9WEkWgT7ptUsBVRP8DW", - "2 | Signers [14/18] : BKxAMMUZ9U", - "2 | Signers [15/18] : 2H54uwJb7GVawibjrjpNikak4d8NThjkqT7U59", - "2 | Signers [16/18] : hWq8o5tHZY", - "2 | Signers [17/18] : 2CWL48VapnasNqqLE7zbjoB92xASvVKViNrXwM", - "2 | Signers [18/18] : dyGSCmDazj", - "3 | Add signers : True", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "2 | Portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio [3/3] : 123456", + "3 | Number of assets [1/3] : 1205582032", + "3 | Number of assets [2/3] : 12023797", + "3 | Number of assets [3/3] : 0", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Settlement : Update venue signers", + "0 | Settlement : Reject instruction with count", "1 | Id : 1", - "2 | Signers [1/18] : 2GJsTN1px9c724zcDSvTF1AFrCYPRw3BVZ9SHx", - "2 | Signers [2/18] : YTWPqW9xrV", - "2 | Signers [3/18] : 2FViVX37TonX67AyFCnJxEJykRcXyfw4x9TbYH", - "2 | Signers [4/18] : TthQMC1vd9", - "2 | Signers [5/18] : 2HhA7VHCLU6wz96SLHt1hSYDDixK7zBf8Mg4hV", - "2 | Signers [6/18] : VBaVb8fWrK", - "2 | Signers [7/18] : 2DmuP4Lphsbxw3nX4SgFGDnv24Az6cLvvZuTmZ", - "2 | Signers [8/18] : AH9PJJpjnu", - "2 | Signers [9/18] : 2E82ovE9BadujB6rM46yfuj9xJHroUjJCnaAz9", - "2 | Signers [10/18] : VeVnFvE1ez", - "2 | Signers [11/18] : 2Hhnrwumdh2J4Nic3tMN9czqZFQNa2aPUHaV4j", - "2 | Signers [12/18] : Br4fgVSt7K", - "2 | Signers [13/18] : 2HZGKcxZha9usiAZpPU9WEkWgT7ptUsBVRP8DW", - "2 | Signers [14/18] : BKxAMMUZ9U", - "2 | Signers [15/18] : 2H54uwJb7GVawibjrjpNikak4d8NThjkqT7U59", - "2 | Signers [16/18] : hWq8o5tHZY", - "2 | Signers [17/18] : 2CWL48VapnasNqqLE7zbjoB92xASvVKViNrXwM", - "2 | Signers [18/18] : dyGSCmDazj", - "3 | Add signers : True", + "2 | Portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio [3/3] : 123456", + "3 | Number of assets [1/3] : 1205582032", + "3 | Number of assets [2/3] : 12023797", + "3 | Number of assets [3/3] : 0", "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", + "5 | Nonce : 50283", + "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1282, - "name": "Settlement_Update_venue_signers", - "blob": "25076bc400000000000004ba927b84a939b6931edf46698f11bb9c9ecd1c765b70c79a3328f87a2add0a2901d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1263, + "name": "Settlement_Reject_instruction_with_count", + "blob": "25116bc400000000000032e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e201000000000001d0b8db47f577b70000000000d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Update venue signers", + "0 | Settlement : Reject instruction with count", "1 | Id : 50283", - "2 | Signers [1/2] : 2GfYXKZC99GQUhEaCHbAAybZHijLN5tF2hBRRB", - "2 | Signers [2/2] : ew8LFC5gMt", - "3 | Add signers : True", + "2 | Portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio [3/3] : 123456", + "3 | Number of assets [1/3] : 1205582032", + "3 | Number of assets [2/3] : 12023797", + "3 | Number of assets [3/3] : 0", "4 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Settlement : Update venue signers", + "0 | Settlement : Reject instruction with count", "1 | Id : 50283", - "2 | Signers [1/2] : 2GfYXKZC99GQUhEaCHbAAybZHijLN5tF2hBRRB", - "2 | Signers [2/2] : ew8LFC5gMt", - "3 | Add signers : True", + "2 | Portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio [3/3] : 123456", + "3 | Number of assets [1/3] : 1205582032", + "3 | Number of assets [2/3] : 12023797", + "3 | Number of assets [3/3] : 0", "4 | Chain : Polymesh", "5 | Nonce : 2339", "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1283, - "name": "Settlement_Update_venue_signers", - "blob": "25070100000000000000205a6d6f58b12d2e969aac068530e2357714798433b2c83e2858bff56b8e4e9f54baeb7c644974d4ac7afd1ffe9570179d65d88d90bc18f87b8d1570591f728a7afa4d19868e3cef263b1360556633acdabc5ec95faf2992ec9b20da1450bbc24ede796b1dd3b1b86e9f5cedef5637575c7226c77d4da1b4ca02493c5d5cfc7f00e299c2e71b2bbcca2d3b501cef354896427089f072f485b2e6c2a57ce5a1845d141e54f5cf87806bfb0c42d1f959d736c6e5f3c3eb496585222138156365e1357007d34d3e58bcdbeb8a1f24de64b20bfaa0f63c1eacff0de21f354540eea50fa211c5f03d0d0925898dd5260a9285bb27f78878907767c556e466154bc2837f01d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1264, + "name": "Settlement_Reject_instruction_with_count", + "blob": "2511010000000000000032e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e201000000000000d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Update venue signers", + "0 | Settlement : Reject instruction with count", "1 | Id : 1", - "2 | Signers [1/16] : 2EVUvPFB6D1zigKL7L1ooKTweerKDDdMurq65H", - "2 | Signers [2/16] : 5gz9D8sHJa", - "2 | Signers [3/16] : 2Gfzxp9xKQwt6rbDuCfcSsC365EjNY9YKGr4nZ", - "2 | Signers [4/16] : JgM25rEzcD", - "2 | Signers [5/16] : 2J76ydZh4tbHUo6zxDCD3KzFVCbzHcjUsFFRfM", - "2 | Signers [6/16] : gsyg18dr7P", - "2 | Signers [7/16] : 2HUcoTe9uZhzUCZnDZPTBVK3AtUYEh3Hb7fNES", - "2 | Signers [8/16] : nyoPan5XHf", - "2 | Signers [9/16] : 2Ha2bpo22CF2dVYqqJvzMrv2K2t51Ecd7FqD8L", - "2 | Signers [10/16] : 35ZrUevzDu", - "2 | Signers [11/16] : 2CuJ54LD9LDNn7Gpw7omSfjptqJ36EDDsiTW3y", - "2 | Signers [12/16] : 5fV2d8Wh9H", - "2 | Signers [13/16] : 2EyonnyPLtWuV55D3w1uCEHjrgndM9KiPcM8BY", - "2 | Signers [14/16] : QhVVGJ6EX2", - "2 | Signers [15/16] : 2G7R94BZZKNRHDV2KaPkDCNzAqgX6xXEnuv7KV", - "2 | Signers [16/16] : shd6B9irVe", - "3 | Add signers : True", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "2 | Portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio [3/3] : 123456", + "3 | Number of assets : None", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Settlement : Update venue signers", + "0 | Settlement : Reject instruction with count", "1 | Id : 1", - "2 | Signers [1/16] : 2EVUvPFB6D1zigKL7L1ooKTweerKDDdMurq65H", - "2 | Signers [2/16] : 5gz9D8sHJa", - "2 | Signers [3/16] : 2Gfzxp9xKQwt6rbDuCfcSsC365EjNY9YKGr4nZ", - "2 | Signers [4/16] : JgM25rEzcD", - "2 | Signers [5/16] : 2J76ydZh4tbHUo6zxDCD3KzFVCbzHcjUsFFRfM", - "2 | Signers [6/16] : gsyg18dr7P", - "2 | Signers [7/16] : 2HUcoTe9uZhzUCZnDZPTBVK3AtUYEh3Hb7fNES", - "2 | Signers [8/16] : nyoPan5XHf", - "2 | Signers [9/16] : 2Ha2bpo22CF2dVYqqJvzMrv2K2t51Ecd7FqD8L", - "2 | Signers [10/16] : 35ZrUevzDu", - "2 | Signers [11/16] : 2CuJ54LD9LDNn7Gpw7omSfjptqJ36EDDsiTW3y", - "2 | Signers [12/16] : 5fV2d8Wh9H", - "2 | Signers [13/16] : 2EyonnyPLtWuV55D3w1uCEHjrgndM9KiPcM8BY", - "2 | Signers [14/16] : QhVVGJ6EX2", - "2 | Signers [15/16] : 2G7R94BZZKNRHDV2KaPkDCNzAqgX6xXEnuv7KV", - "2 | Signers [16/16] : shd6B9irVe", - "3 | Add signers : True", + "2 | Portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio [3/3] : 123456", + "3 | Number of assets : None", "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", + "5 | Nonce : 2339", + "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1284, - "name": "Settlement_Update_venue_signers", - "blob": "25076400000000000000205a6d6f58b12d2e969aac068530e2357714798433b2c83e2858bff56b8e4e9f54baeb7c644974d4ac7afd1ffe9570179d65d88d90bc18f87b8d1570591f728a7afa4d19868e3cef263b1360556633acdabc5ec95faf2992ec9b20da1450bbc24ede796b1dd3b1b86e9f5cedef5637575c7226c77d4da1b4ca02493c5d5cfc7f00e299c2e71b2bbcca2d3b501cef354896427089f072f485b2e6c2a57ce5a1845d141e54f5cf87806bfb0c42d1f959d736c6e5f3c3eb496585222138156365e1357007d34d3e58bcdbeb8a1f24de64b20bfaa0f63c1eacff0de21f354540eea50fa211c5f03d0d0925898dd5260a9285bb27f78878907767c556e466154bc2837f00d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1265, + "name": "Settlement_Reject_instruction_with_count", + "blob": "25116bc400000000000032e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000012984bab0ba4d46dc00000000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Update venue signers", - "1 | Id : 100", - "2 | Signers [1/16] : 2EVUvPFB6D1zigKL7L1ooKTweerKDDdMurq65H", - "2 | Signers [2/16] : 5gz9D8sHJa", - "2 | Signers [3/16] : 2Gfzxp9xKQwt6rbDuCfcSsC365EjNY9YKGr4nZ", - "2 | Signers [4/16] : JgM25rEzcD", - "2 | Signers [5/16] : 2J76ydZh4tbHUo6zxDCD3KzFVCbzHcjUsFFRfM", - "2 | Signers [6/16] : gsyg18dr7P", - "2 | Signers [7/16] : 2HUcoTe9uZhzUCZnDZPTBVK3AtUYEh3Hb7fNES", - "2 | Signers [8/16] : nyoPan5XHf", - "2 | Signers [9/16] : 2Ha2bpo22CF2dVYqqJvzMrv2K2t51Ecd7FqD8L", - "2 | Signers [10/16] : 35ZrUevzDu", - "2 | Signers [11/16] : 2CuJ54LD9LDNn7Gpw7omSfjptqJ36EDDsiTW3y", - "2 | Signers [12/16] : 5fV2d8Wh9H", - "2 | Signers [13/16] : 2EyonnyPLtWuV55D3w1uCEHjrgndM9KiPcM8BY", - "2 | Signers [14/16] : QhVVGJ6EX2", - "2 | Signers [15/16] : 2G7R94BZZKNRHDV2KaPkDCNzAqgX6xXEnuv7KV", - "2 | Signers [16/16] : shd6B9irVe", - "3 | Add signers : False", - "4 | Tip : POLYX 0.000987" + "0 | Settlement : Reject instruction with count", + "1 | Id : 50283", + "2 | Portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio [3/3] : 123456", + "3 | Number of assets [1/3] : 2965013545", + "3 | Number of assets [2/3] : 3695594938", + "3 | Number of assets [3/3] : 0", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Settlement : Update venue signers", - "1 | Id : 100", - "2 | Signers [1/16] : 2EVUvPFB6D1zigKL7L1ooKTweerKDDdMurq65H", - "2 | Signers [2/16] : 5gz9D8sHJa", - "2 | Signers [3/16] : 2Gfzxp9xKQwt6rbDuCfcSsC365EjNY9YKGr4nZ", - "2 | Signers [4/16] : JgM25rEzcD", - "2 | Signers [5/16] : 2J76ydZh4tbHUo6zxDCD3KzFVCbzHcjUsFFRfM", - "2 | Signers [6/16] : gsyg18dr7P", - "2 | Signers [7/16] : 2HUcoTe9uZhzUCZnDZPTBVK3AtUYEh3Hb7fNES", - "2 | Signers [8/16] : nyoPan5XHf", - "2 | Signers [9/16] : 2Ha2bpo22CF2dVYqqJvzMrv2K2t51Ecd7FqD8L", - "2 | Signers [10/16] : 35ZrUevzDu", - "2 | Signers [11/16] : 2CuJ54LD9LDNn7Gpw7omSfjptqJ36EDDsiTW3y", - "2 | Signers [12/16] : 5fV2d8Wh9H", - "2 | Signers [13/16] : 2EyonnyPLtWuV55D3w1uCEHjrgndM9KiPcM8BY", - "2 | Signers [14/16] : QhVVGJ6EX2", - "2 | Signers [15/16] : 2G7R94BZZKNRHDV2KaPkDCNzAqgX6xXEnuv7KV", - "2 | Signers [16/16] : shd6B9irVe", - "3 | Add signers : False", + "0 | Settlement : Reject instruction with count", + "1 | Id : 50283", + "2 | Portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Portfolio [3/3] : 123456", + "3 | Number of assets [1/3] : 2965013545", + "3 | Number of assets [2/3] : 3695594938", + "3 | Number of assets [3/3] : 0", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 0.000987", + "5 | Nonce : 100", + "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1285, - "name": "Settlement_Update_venue_signers", - "blob": "2507230900000000000014902dd1f008c2e472c447fffee377563eed940cc79e96f3be4571dc93143ab8203a47acef8333aec26e75d7b540e14763d988cc2099c8a4d53455503d72619775c2c044954daa239a417fd6d9116c04ef3746896d315a89f8593f5bb34564d36f163a4fda6ecf5064f89b10533959fb14b1d47821a38b76e7f5cb637ebd4136730ad4c11f47ba1e4e17ae21027b2de9170e3a5e98fe01896d57398a9961f0490001d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1266, + "name": "Settlement_Withdraw_affirmation_with_count", + "blob": "2512640000000000000000016b92f7688cf156a5000000004a35d2d32b4648070000000054d1d07ed503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Update venue signers", - "1 | Id : 2339", - "2 | Signers [1/10] : 2FhxcJNoWm7dxnynVtezdpLBctNVbb5F3W9aA4", - "2 | Signers [2/10] : vjYSz3qT9t", - "2 | Signers [3/10] : 2DmLAvwAu3XMBnf9DQPGGoU9VkRkugFacJaZAv", - "2 | Signers [4/10] : 2pcKyNmzv7", - "2 | Signers [5/10] : 2GrGWQMady9kZFpcNHuXDBFp9ck6n316q2VX1A", - "2 | Signers [6/10] : BzVY4BPEe1", - "2 | Signers [7/10] : 2Cx4UhS6b39ZfRceuuHTJeWhiQM6512VrYwXQp", - "2 | Signers [8/10] : wmRknwQokt", - "2 | Signers [9/10] : 2Ch7nMMZpaZJ4fqcJLAWzm9WCSz5uPMAAhmUjx", - "2 | Signers [10/10] : Saz1LEMrjg", - "3 | Add signers : True", + "0 | Settlement : Withdraw affirmation with count", + "1 | Id : 100", + "2 | Portfolios : ", + "3 | Number of assets [1/7] : 1761055339", + "3 | Number of assets [2/7] : 2773938572", + "3 | Number of assets [3/7] : 0", + "3 | Number of assets [4/7] : 3553768778", + "3 | Number of assets [5/7] : 122177067", + "3 | Number of assets [6/7] : 0", + "3 | Number of assets [7/7] : 2127614292", "4 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Settlement : Update venue signers", - "1 | Id : 2339", - "2 | Signers [1/10] : 2FhxcJNoWm7dxnynVtezdpLBctNVbb5F3W9aA4", - "2 | Signers [2/10] : vjYSz3qT9t", - "2 | Signers [3/10] : 2DmLAvwAu3XMBnf9DQPGGoU9VkRkugFacJaZAv", - "2 | Signers [4/10] : 2pcKyNmzv7", - "2 | Signers [5/10] : 2GrGWQMady9kZFpcNHuXDBFp9ck6n316q2VX1A", - "2 | Signers [6/10] : BzVY4BPEe1", - "2 | Signers [7/10] : 2Cx4UhS6b39ZfRceuuHTJeWhiQM6512VrYwXQp", - "2 | Signers [8/10] : wmRknwQokt", - "2 | Signers [9/10] : 2Ch7nMMZpaZJ4fqcJLAWzm9WCSz5uPMAAhmUjx", - "2 | Signers [10/10] : Saz1LEMrjg", - "3 | Add signers : True", + "0 | Settlement : Withdraw affirmation with count", + "1 | Id : 100", + "2 | Portfolios : ", + "3 | Number of assets [1/7] : 1761055339", + "3 | Number of assets [2/7] : 2773938572", + "3 | Number of assets [3/7] : 0", + "3 | Number of assets [4/7] : 3553768778", + "3 | Number of assets [5/7] : 122177067", + "3 | Number of assets [6/7] : 0", + "3 | Number of assets [7/7] : 2127614292", "4 | Chain : Polymesh", "5 | Nonce : 0", "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1286, - "name": "Settlement_Execute_manual_instruction", - "blob": "250864000000000000000184bf77375d2a44aacd1184e9220798bc99f93506f68eedb8738a72ed52cb9cb3009d1c0000f70100009d1c0000010eeef06610d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1267, + "name": "Settlement_Withdraw_affirmation_with_count", + "blob": "25126400000000000000081ecdf645fda520fdad9442b82f11a317ec8a92cece3eb79e0e84695ba9ab00bd0140e201000000000010ffe4f73720b572bfee5823f0bdca2f1e7463c82bdfa9e2d044e4d779148cad0140e201000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Execute manual instruction", + "0 | Settlement : Withdraw affirmation with count", "1 | Id : 100", - "2 | Portfolio [1/3] : 84bf77375d2a44aacd1184e9220798bc99f935", - "2 | Portfolio [2/3] : 06f68eedb8738a72ed52cb9cb3", - "2 | Portfolio [3/3] : Default", - "3 | Fungible transfers : 7325", - "4 | Nfts transfers : 503", - "5 | Offchain transfers : 7325", - "6 | Weight limit [1/2] : 431766403", - "6 | Weight limit [2/2] : 4", - "7 | Tip : POLYX 1234.56789" + "2 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "2 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "2 | Portfolios [3/6] : 123456", + "2 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "2 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "2 | Portfolios [6/6] : 123456", + "3 | Number of assets : None", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Settlement : Execute manual instruction", + "0 | Settlement : Withdraw affirmation with count", "1 | Id : 100", - "2 | Portfolio [1/3] : 84bf77375d2a44aacd1184e9220798bc99f935", - "2 | Portfolio [2/3] : 06f68eedb8738a72ed52cb9cb3", - "2 | Portfolio [3/3] : Default", - "3 | Fungible transfers : 7325", - "4 | Nfts transfers : 503", - "5 | Offchain transfers : 7325", - "6 | Weight limit [1/2] : 431766403", - "6 | Weight limit [2/2] : 4", - "7 | Chain : Polymesh", - "8 | Nonce : 2339", - "9 | Tip : POLYX 1234.56789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "2 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "2 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "2 | Portfolios [3/6] : 123456", + "2 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "2 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "2 | Portfolios [6/6] : 123456", + "3 | Number of assets : None", + "4 | Chain : Polymesh", + "5 | Nonce : 100", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1287, - "name": "Settlement_Execute_manual_instruction", - "blob": "25080000000000000000014bb0772cc47c2cb58b5d51d704c3788c547ca013418ba6bf869a1dabd34fb3ed01ccad90a8ce32d3023430000000000000d3040000010eeef06610d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1268, + "name": "Settlement_Withdraw_affirmation_with_count", + "blob": "251201000000000000000000d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Execute manual instruction", - "1 | Id : 0", - "2 | Portfolio [1/3] : 4bb0772cc47c2cb58b5d51d704c3788c547ca0", - "2 | Portfolio [2/3] : 13418ba6bf869a1dabd34fb3ed", - "2 | Portfolio [3/3] : 203562271334510028", - "3 | Fungible transfers : 12340", - "4 | Nfts transfers : 0", - "5 | Offchain transfers : 1235", - "6 | Weight limit [1/2] : 431766403", - "6 | Weight limit [2/2] : 4" + "0 | Settlement : Withdraw affirmation with count", + "1 | Id : 1", + "2 | Portfolios : ", + "3 | Number of assets : None", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Settlement : Execute manual instruction", - "1 | Id : 0", - "2 | Portfolio [1/3] : 4bb0772cc47c2cb58b5d51d704c3788c547ca0", - "2 | Portfolio [2/3] : 13418ba6bf869a1dabd34fb3ed", - "2 | Portfolio [3/3] : 203562271334510028", - "3 | Fungible transfers : 12340", - "4 | Nfts transfers : 0", - "5 | Offchain transfers : 1235", - "6 | Weight limit [1/2] : 431766403", - "6 | Weight limit [2/2] : 4", - "7 | Chain : Polymesh", - "8 | Nonce : 100", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Withdraw affirmation with count", + "1 | Id : 1", + "2 | Portfolios : ", + "3 | Number of assets : None", + "4 | Chain : Polymesh", + "5 | Nonce : 2339", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1288, - "name": "Settlement_Execute_manual_instruction", - "blob": "25080000000000000000014bb0772cc47c2cb58b5d51d704c3788c547ca013418ba6bf869a1dabd34fb3ed01ccad90a8ce32d3029d1c0000000000009d1c000000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1269, + "name": "Settlement_Withdraw_affirmation_with_count", + "blob": "25126400000000000000081ecdf645fda520fdad9442b82f11a317ec8a92cece3eb79e0e84695ba9ab00bd0140e201000000000010ffe4f73720b572bfee5823f0bdca2f1e7463c82bdfa9e2d044e4d779148cad0140e2010000000000016b92f7688cf156a5000000004a35d2d32b4648070000000054d1d07ed5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Execute manual instruction", - "1 | Id : 0", - "2 | Portfolio [1/3] : 4bb0772cc47c2cb58b5d51d704c3788c547ca0", - "2 | Portfolio [2/3] : 13418ba6bf869a1dabd34fb3ed", - "2 | Portfolio [3/3] : 203562271334510028", - "3 | Fungible transfers : 7325", - "4 | Nfts transfers : 0", - "5 | Offchain transfers : 7325", - "6 | Weight limit : None", - "7 | Tip : POLYX 1234.56789" + "0 | Settlement : Withdraw affirmation with count", + "1 | Id : 100", + "2 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "2 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "2 | Portfolios [3/6] : 123456", + "2 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "2 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "2 | Portfolios [6/6] : 123456", + "3 | Number of assets [1/7] : 1761055339", + "3 | Number of assets [2/7] : 2773938572", + "3 | Number of assets [3/7] : 0", + "3 | Number of assets [4/7] : 3553768778", + "3 | Number of assets [5/7] : 122177067", + "3 | Number of assets [6/7] : 0", + "3 | Number of assets [7/7] : 2127614292" ], "output_expert": [ - "0 | Settlement : Execute manual instruction", - "1 | Id : 0", - "2 | Portfolio [1/3] : 4bb0772cc47c2cb58b5d51d704c3788c547ca0", - "2 | Portfolio [2/3] : 13418ba6bf869a1dabd34fb3ed", - "2 | Portfolio [3/3] : 203562271334510028", - "3 | Fungible transfers : 7325", - "4 | Nfts transfers : 0", - "5 | Offchain transfers : 7325", - "6 | Weight limit : None", - "7 | Chain : Polymesh", - "8 | Nonce : 100", - "9 | Tip : POLYX 1234.56789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Withdraw affirmation with count", + "1 | Id : 100", + "2 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "2 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "2 | Portfolios [3/6] : 123456", + "2 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "2 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "2 | Portfolios [6/6] : 123456", + "3 | Number of assets [1/7] : 1761055339", + "3 | Number of assets [2/7] : 2773938572", + "3 | Number of assets [3/7] : 0", + "3 | Number of assets [4/7] : 3553768778", + "3 | Number of assets [5/7] : 122177067", + "3 | Number of assets [6/7] : 0", + "3 | Number of assets [7/7] : 2127614292", + "4 | Chain : Polymesh", + "5 | Nonce : 1", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1289, - "name": "Settlement_Execute_manual_instruction", - "blob": "250864000000000000000184bf77375d2a44aacd1184e9220798bc99f93506f68eedb8738a72ed52cb9cb300f7010000f7010000d3040000010f3335d48044198f5cd503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1270, + "name": "Settlement_Withdraw_affirmation_with_count", + "blob": "25126bc4000000000000000131cbf215507a6f3f000000001b0015aa2b02dc6700000000fb328debd50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Execute manual instruction", - "1 | Id : 100", - "2 | Portfolio [1/3] : 84bf77375d2a44aacd1184e9220798bc99f935", - "2 | Portfolio [2/3] : 06f68eedb8738a72ed52cb9cb3", - "2 | Portfolio [3/3] : Default", - "3 | Fungible transfers : 503", - "4 | Nfts transfers : 503", - "5 | Offchain transfers : 1235", - "6 | Weight limit [1/2] : 40278703679485235", - "6 | Weight limit [2/2] : 23", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789" + "0 | Settlement : Withdraw affirmation with count", + "1 | Id : 50283", + "2 | Portfolios : ", + "3 | Number of assets [1/7] : 368233265", + "3 | Number of assets [2/7] : 1064270416", + "3 | Number of assets [3/7] : 0", + "3 | Number of assets [4/7] : 2853503003", + "3 | Number of assets [5/7] : 1742471723", + "3 | Number of assets [6/7] : 0", + "3 | Number of assets [7/7] : 3951899387", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Settlement : Execute manual instruction", - "1 | Id : 100", - "2 | Portfolio [1/3] : 84bf77375d2a44aacd1184e9220798bc99f935", - "2 | Portfolio [2/3] : 06f68eedb8738a72ed52cb9cb3", - "2 | Portfolio [3/3] : Default", - "3 | Fungible transfers : 503", - "4 | Nfts transfers : 503", - "5 | Offchain transfers : 1235", - "6 | Weight limit [1/2] : 40278703679485235", - "6 | Weight limit [2/2] : 23", - "7 | Chain : Polymesh", - "8 | Nonce : 100", - "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "9 | Tip [2/2] : 3.456789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1290, - "name": "Settlement_Execute_manual_instruction", - "blob": "2508230900000000000000f70100009d1c00009d1c0000010f3335d48044198f5cd503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Execute manual instruction", - "1 | Id : 2339", - "2 | Portfolio : None", - "3 | Fungible transfers : 503", - "4 | Nfts transfers : 7325", - "5 | Offchain transfers : 7325", - "6 | Weight limit [1/2] : 40278703679485235", - "6 | Weight limit [2/2] : 23", - "7 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Settlement : Execute manual instruction", - "1 | Id : 2339", - "2 | Portfolio : None", - "3 | Fungible transfers : 503", - "4 | Nfts transfers : 7325", - "5 | Offchain transfers : 7325", - "6 | Weight limit [1/2] : 40278703679485235", - "6 | Weight limit [2/2] : 23", - "7 | Chain : Polymesh", - "8 | Nonce : 1", - "9 | Tip : POLYX 0.000987", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Withdraw affirmation with count", + "1 | Id : 50283", + "2 | Portfolios : ", + "3 | Number of assets [1/7] : 368233265", + "3 | Number of assets [2/7] : 1064270416", + "3 | Number of assets [3/7] : 0", + "3 | Number of assets [4/7] : 2853503003", + "3 | Number of assets [5/7] : 1742471723", + "3 | Number of assets [6/7] : 0", + "3 | Number of assets [7/7] : 3951899387", + "4 | Chain : Polymesh", + "5 | Nonce : 100", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1291, - "name": "Settlement_Add_instruction", - "blob": "25096400000000000000025a20096d0100080000000000000180000000000000000400ac5db382083b7219cfad6059c08c2369dca1cf53547ad9ddeb2111453687860600f71eecdf2143fab521a19bc9ef041d5dbebe30289c02c9ff90e3ebe372d9078001755a8159d59f08d15449434b45522d33343536375e0575c220aca31f94383ed5ba21091901664c968727fc8fb62cd51bfa0f8ee2946af0b10beb0dc7fe48041da6090d46a6d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1271, + "name": "Settlement_Add_instruction_with_mediators", + "blob": "251301d007000000000000000100080000000000000100080000000000000800218687dad0a07dea30469be608e4c9fc0002728af6efb7fd4185cae1058808fc014bfb62da2c562e54548407f428fff8efe21892fd8c0a58243b920bc165f5ff8c28623a2498ac039801ba156b6d3e589ec0417373657449442d3132333435363738d07d7207014a37b85018b6d6bbf418df02ff2571d66dd767ea6fee038262573f34607a105fc989287cb284cfc58e1e7fdc3526d8ec3fdeac5f73d09c1521a32146accd29714a21a9a2187caf4f795ba5105449434b45522d3334353637676fd7a7f13f2ae958b36498dd719c9801926c3bd1e90f231b283452fd8a7e41273aac84ab1bd49aad8a772aa6bb2025a80c42643a9941d357d81930149f74634cecdf36e37cc929e18b8a5980cc4748d53f959c413fc044ffd874004f6dbd6e21128bfde185ce496fa4ee16fd0adea5ab38e7782d7ae374a152b8e2209c67df854af3b4dd2e370ebb27ab7c7512f8ec4533d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Add instruction", - "1 | Venue id : 100", - "2 | Settlement type : 1829314650", + "0 | Settlement : Add instruction with mediators", + "1 | Venue id : 2000", + "2 | Settlement type : SettleOnAffirmation", "3 | Trade date : 2048", - "4 | Value date : 128", - "5 | Legs [1/8] : ac5db382083b7219cfad6059c08c2369dca1cf", - "5 | Legs [2/8] : 53547ad9ddeb21114536878606", - "5 | Legs [3/8] : Default", - "5 | Legs [4/8] : f71eecdf2143fab521a19bc9ef041d5dbebe30", - "5 | Legs [5/8] : 289c02c9ff90e3ebe372d90780", - "5 | Legs [6/8] : 15062464692419123829", - "5 | Legs [7/8] : TICKER-34567", - "5 | Legs [8/8] : 33278114688300386107226358981875.53315", - "6 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "6 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "7 | Tip : POLYX 0.000987" + "4 | Value date : 2048", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", + "6 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "6 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "7 | Mediators [1/6] : 42643a9941d357d81930149f74634cecdf36e3", + "7 | Mediators [2/6] : 7cc929e18b8a5980cc4748d53f", + "7 | Mediators [3/6] : 959c413fc044ffd874004f6dbd6e21128bfde1", + "7 | Mediators [4/6] : 85ce496fa4ee16fd0adea5ab38", + "7 | Mediators [5/6] : e7782d7ae374a152b8e2209c67df854af3b4dd", + "7 | Mediators [6/6] : 2e370ebb27ab7c7512f8ec4533", + "8 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Settlement : Add instruction", - "1 | Venue id : 100", - "2 | Settlement type : 1829314650", + "0 | Settlement : Add instruction with mediators", + "1 | Venue id : 2000", + "2 | Settlement type : SettleOnAffirmation", "3 | Trade date : 2048", - "4 | Value date : 128", - "5 | Legs [1/8] : ac5db382083b7219cfad6059c08c2369dca1cf", - "5 | Legs [2/8] : 53547ad9ddeb21114536878606", - "5 | Legs [3/8] : Default", - "5 | Legs [4/8] : f71eecdf2143fab521a19bc9ef041d5dbebe30", - "5 | Legs [5/8] : 289c02c9ff90e3ebe372d90780", - "5 | Legs [6/8] : 15062464692419123829", - "5 | Legs [7/8] : TICKER-34567", - "5 | Legs [8/8] : 33278114688300386107226358981875.53315", - "6 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "6 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "7 | Chain : Polymesh", - "8 | Nonce : 1", - "9 | Tip : POLYX 0.000987", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Value date : 2048", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", + "6 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "6 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "7 | Mediators [1/6] : 42643a9941d357d81930149f74634cecdf36e3", + "7 | Mediators [2/6] : 7cc929e18b8a5980cc4748d53f", + "7 | Mediators [3/6] : 959c413fc044ffd874004f6dbd6e21128bfde1", + "7 | Mediators [4/6] : 85ce496fa4ee16fd0adea5ab38", + "7 | Mediators [5/6] : e7782d7ae374a152b8e2209c67df854af3b4dd", + "7 | Mediators [6/6] : 2e370ebb27ab7c7512f8ec4533", + "8 | Chain : Polymesh", + "9 | Nonce : 100", + "10 | Tip : POLYX 55.555555", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1292, - "name": "Settlement_Add_instruction", - "blob": "25096bc4000000000000012cfa1c700100010000000000000100080000000000000400ac5db382083b7219cfad6059c08c2369dca1cf53547ad9ddeb2111453687860600f71eecdf2143fab521a19bc9ef041d5dbebe30289c02c9ff90e3ebe372d9078001755a8159d59f08d15449434b45522d33343536375e0575c220aca31f94383ed5ba21091901664c968727fc8fb62cd51bfa0f8ee2946af0b10beb0dc7fe48041da6090d46a6d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1272, + "name": "Settlement_Add_instruction_with_mediators", + "blob": "251301d00700000000000002af1fb21e0180000000000000000100080000000000000800218687dad0a07dea30469be608e4c9fc0002728af6efb7fd4185cae1058808fc014bfb62da2c562e54548407f428fff8efe21892fd8c0a58243b920bc165f5ff8c28623a2498ac039801ba156b6d3e589ec0417373657449442d3132333435363738d07d7207014a37b85018b6d6bbf418df02ff2571d66dd767ea6fee038262573f34607a105fc989287cb284cfc58e1e7fdc3526d8ec3fdeac5f73d09c1521a32146accd29714a21a9a2187caf4f795ba5105449434b45522d3334353637676fd7a7f13f2ae958b36498dd719c9801926c3bd1e90f231b283452fd8a7e41273aac84ab1bd49aad8a772aa6bb2025a804050f5bb03faade4b29b408ee8d444f39fb64b1c5d82c4f041b8763ec903d7169d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Add instruction", - "1 | Venue id : 50283", - "2 | Settlement type : 1880947244", - "3 | Trade date : 256", + "0 | Settlement : Add instruction with mediators", + "1 | Venue id : 2000", + "2 | Settlement type : 514989999", + "3 | Trade date : 128", "4 | Value date : 2048", - "5 | Legs [1/8] : ac5db382083b7219cfad6059c08c2369dca1cf", - "5 | Legs [2/8] : 53547ad9ddeb21114536878606", - "5 | Legs [3/8] : Default", - "5 | Legs [4/8] : f71eecdf2143fab521a19bc9ef041d5dbebe30", - "5 | Legs [5/8] : 289c02c9ff90e3ebe372d90780", - "5 | Legs [6/8] : 15062464692419123829", - "5 | Legs [7/8] : TICKER-34567", - "5 | Legs [8/8] : 33278114688300386107226358981875.53315", - "6 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "6 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "7 | Tip : POLYX 55.555555" + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", + "6 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "6 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "7 | Mediators [1/2] : 050f5bb03faade4b29b408ee8d444f39fb64b1", + "7 | Mediators [2/2] : c5d82c4f041b8763ec903d7169", + "8 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Settlement : Add instruction", - "1 | Venue id : 50283", - "2 | Settlement type : 1880947244", - "3 | Trade date : 256", + "0 | Settlement : Add instruction with mediators", + "1 | Venue id : 2000", + "2 | Settlement type : 514989999", + "3 | Trade date : 128", "4 | Value date : 2048", - "5 | Legs [1/8] : ac5db382083b7219cfad6059c08c2369dca1cf", - "5 | Legs [2/8] : 53547ad9ddeb21114536878606", - "5 | Legs [3/8] : Default", - "5 | Legs [4/8] : f71eecdf2143fab521a19bc9ef041d5dbebe30", - "5 | Legs [5/8] : 289c02c9ff90e3ebe372d90780", - "5 | Legs [6/8] : 15062464692419123829", - "5 | Legs [7/8] : TICKER-34567", - "5 | Legs [8/8] : 33278114688300386107226358981875.53315", - "6 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "6 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "7 | Chain : Polymesh", - "8 | Nonce : 1", - "9 | Tip : POLYX 55.555555", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", + "6 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "6 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "7 | Mediators [1/2] : 050f5bb03faade4b29b408ee8d444f39fb64b1", + "7 | Mediators [2/2] : c5d82c4f041b8763ec903d7169", + "8 | Chain : Polymesh", + "9 | Nonce : 100", + "10 | Tip : POLYX 1234.56789", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1293, - "name": "Settlement_Add_instruction", - "blob": "25096bc4000000000000025a20096d0180000000000000000100010000000000000001664c968727fc8fb62cd51bfa0f8ee2946af0b10beb0dc7fe48041da6090d46a6d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1273, + "name": "Settlement_Add_instruction_with_mediators", + "blob": "251301d00700000000000002af1fb21e0100010000000000000100080000000000000800218687dad0a07dea30469be608e4c9fc0002728af6efb7fd4185cae1058808fc014bfb62da2c562e54548407f428fff8efe21892fd8c0a58243b920bc165f5ff8c28623a2498ac039801ba156b6d3e589ec0417373657449442d3132333435363738d07d7207014a37b85018b6d6bbf418df02ff2571d66dd767ea6fee038262573f34607a105fc989287cb284cfc58e1e7fdc3526d8ec3fdeac5f73d09c1521a32146accd29714a21a9a2187caf4f795ba5105449434b45522d3334353637676fd7a7f13f2ae958b36498dd719c9801926c3bd1e90f231b283452fd8a7e41273aac84ab1bd49aad8a772aa6bb2025a81003d8d2775a3872058f54574561b9571f8c86becabbbb9286cb0ae712ebff67ad205ee873a4026e4c67aaba65242e0b45372e95e25e028db646b28ae9498730dda092c8fc5b7ae959c998749797f921d3e5d8f6552b263589ad794cf92483cadbd7e745089ec4cf0d5f68e7c94eb987cbb1c51c894c43013747e9d3b06dfaeb55d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Add instruction", - "1 | Venue id : 50283", - "2 | Settlement type : 1829314650", - "3 | Trade date : 128", - "4 | Value date : 256", - "5 | Legs : ", - "6 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "6 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "7 | Tip : POLYX 55.555555" + "0 | Settlement : Add instruction with mediators", + "1 | Venue id : 2000", + "2 | Settlement type : 514989999", + "3 | Trade date : 256", + "4 | Value date : 2048", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", + "6 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "6 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "7 | Mediators [1/8] : 03d8d2775a3872058f54574561b9571f8c86be", + "7 | Mediators [2/8] : cabbbb9286cb0ae712ebff67ad", + "7 | Mediators [3/8] : 205ee873a4026e4c67aaba65242e0b45372e95", + "7 | Mediators [4/8] : e25e028db646b28ae9498730dd", + "7 | Mediators [5/8] : a092c8fc5b7ae959c998749797f921d3e5d8f6", + "7 | Mediators [6/8] : 552b263589ad794cf92483cadb", + "7 | Mediators [7/8] : d7e745089ec4cf0d5f68e7c94eb987cbb1c51c", + "7 | Mediators [8/8] : 894c43013747e9d3b06dfaeb55", + "8 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Settlement : Add instruction", - "1 | Venue id : 50283", - "2 | Settlement type : 1829314650", - "3 | Trade date : 128", - "4 | Value date : 256", - "5 | Legs : ", - "6 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "6 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "7 | Chain : Polymesh", - "8 | Nonce : 0", - "9 | Tip : POLYX 55.555555", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Add instruction with mediators", + "1 | Venue id : 2000", + "2 | Settlement type : 514989999", + "3 | Trade date : 256", + "4 | Value date : 2048", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", + "6 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "6 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "7 | Mediators [1/8] : 03d8d2775a3872058f54574561b9571f8c86be", + "7 | Mediators [2/8] : cabbbb9286cb0ae712ebff67ad", + "7 | Mediators [3/8] : 205ee873a4026e4c67aaba65242e0b45372e95", + "7 | Mediators [4/8] : e25e028db646b28ae9498730dd", + "7 | Mediators [5/8] : a092c8fc5b7ae959c998749797f921d3e5d8f6", + "7 | Mediators [6/8] : 552b263589ad794cf92483cadb", + "7 | Mediators [7/8] : d7e745089ec4cf0d5f68e7c94eb987cbb1c51c", + "7 | Mediators [8/8] : 894c43013747e9d3b06dfaeb55", + "8 | Chain : Polymesh", + "9 | Nonce : 1", + "10 | Tip : POLYX 55.555555", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1294, - "name": "Settlement_Add_instruction", - "blob": "25096400000000000000012cfa1c700100080000000000000180000000000000000400ac5db382083b7219cfad6059c08c2369dca1cf53547ad9ddeb2111453687860600f71eecdf2143fab521a19bc9ef041d5dbebe30289c02c9ff90e3ebe372d9078001755a8159d59f08d15449434b45522d33343536375e0575c220aca31f94383ed5ba21091901664c968727fc8fb62cd51bfa0f8ee2946af0b10beb0dc7fe48041da6090d46a6d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1274, + "name": "Settlement_Add_instruction_with_mediators", + "blob": "251301d00700000000000002af1fb21e0100080000000000000100080000000000000800218687dad0a07dea30469be608e4c9fc0002728af6efb7fd4185cae1058808fc014bfb62da2c562e54548407f428fff8efe21892fd8c0a58243b920bc165f5ff8c28623a2498ac039801ba156b6d3e589ec0417373657449442d3132333435363738d07d7207014a37b85018b6d6bbf418df02ff2571d66dd767ea6fee038262573f34607a105fc989287cb284cfc58e1e7fdc3526d8ec3fdeac5f73d09c1521a32146accd29714a21a9a2187caf4f795ba5105449434b45522d3334353637676fd7a7f13f2ae958b36498dd719c9801926c3bd1e90f231b283452fd8a7e41273aac84ab1bd49aad8a772aa6bb2025a80845cefc44460c96d27b6570498d0c505661a08004fcde7b8715a72c57735ae439fa0e30564b3e032042e99180f89e8d25210b37eb5751c4f9030de50590402ea2d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Add instruction", - "1 | Venue id : 100", - "2 | Settlement type : 1880947244", + "0 | Settlement : Add instruction with mediators", + "1 | Venue id : 2000", + "2 | Settlement type : 514989999", "3 | Trade date : 2048", - "4 | Value date : 128", - "5 | Legs [1/8] : ac5db382083b7219cfad6059c08c2369dca1cf", - "5 | Legs [2/8] : 53547ad9ddeb21114536878606", - "5 | Legs [3/8] : Default", - "5 | Legs [4/8] : f71eecdf2143fab521a19bc9ef041d5dbebe30", - "5 | Legs [5/8] : 289c02c9ff90e3ebe372d90780", - "5 | Legs [6/8] : 15062464692419123829", - "5 | Legs [7/8] : TICKER-34567", - "5 | Legs [8/8] : 33278114688300386107226358981875.53315", - "6 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "6 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "7 | Tip : POLYX 0.000987" + "4 | Value date : 2048", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", + "6 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "6 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "7 | Mediators [1/4] : 45cefc44460c96d27b6570498d0c505661a080", + "7 | Mediators [2/4] : 04fcde7b8715a72c57735ae439", + "7 | Mediators [3/4] : fa0e30564b3e032042e99180f89e8d25210b37", + "7 | Mediators [4/4] : eb5751c4f9030de50590402ea2", + "8 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Settlement : Add instruction", - "1 | Venue id : 100", - "2 | Settlement type : 1880947244", + "0 | Settlement : Add instruction with mediators", + "1 | Venue id : 2000", + "2 | Settlement type : 514989999", "3 | Trade date : 2048", - "4 | Value date : 128", - "5 | Legs [1/8] : ac5db382083b7219cfad6059c08c2369dca1cf", - "5 | Legs [2/8] : 53547ad9ddeb21114536878606", - "5 | Legs [3/8] : Default", - "5 | Legs [4/8] : f71eecdf2143fab521a19bc9ef041d5dbebe30", - "5 | Legs [5/8] : 289c02c9ff90e3ebe372d90780", - "5 | Legs [6/8] : 15062464692419123829", - "5 | Legs [7/8] : TICKER-34567", - "5 | Legs [8/8] : 33278114688300386107226358981875.53315", - "6 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "6 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "7 | Chain : Polymesh", - "8 | Nonce : 100", - "9 | Tip : POLYX 0.000987", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Value date : 2048", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", + "6 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "6 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "7 | Mediators [1/4] : 45cefc44460c96d27b6570498d0c505661a080", + "7 | Mediators [2/4] : 04fcde7b8715a72c57735ae439", + "7 | Mediators [3/4] : fa0e30564b3e032042e99180f89e8d25210b37", + "7 | Mediators [4/4] : eb5751c4f9030de50590402ea2", + "8 | Chain : Polymesh", + "9 | Nonce : 0", + "10 | Tip : POLYX 55.555555", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1295, - "name": "Settlement_Add_instruction", - "blob": "25096400000000000000000100080000000000000180000000000000000001664c968727fc8fb62cd51bfa0f8ee2946af0b10beb0dc7fe48041da6090d46a6d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1275, + "name": "Settlement_Add_instruction_with_mediators", + "blob": "251301d007000000000000000100010000000000000180000000000000000800218687dad0a07dea30469be608e4c9fc0002728af6efb7fd4185cae1058808fc014bfb62da2c562e54548407f428fff8efe21892fd8c0a58243b920bc165f5ff8c28623a2498ac039801ba156b6d3e589ec0417373657449442d3132333435363738d07d7207014a37b85018b6d6bbf418df02ff2571d66dd767ea6fee038262573f34607a105fc989287cb284cfc58e1e7fdc3526d8ec3fdeac5f73d09c1521a32146accd29714a21a9a2187caf4f795ba5105449434b45522d3334353637676fd7a7f13f2ae958b36498dd719c9801926c3bd1e90f231b283452fd8a7e41273aac84ab1bd49aad8a772aa6bb2025a80845cefc44460c96d27b6570498d0c505661a08004fcde7b8715a72c57735ae439fa0e30564b3e032042e99180f89e8d25210b37eb5751c4f9030de50590402ea2d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Add instruction", - "1 | Venue id : 100", + "0 | Settlement : Add instruction with mediators", + "1 | Venue id : 2000", "2 | Settlement type : SettleOnAffirmation", - "3 | Trade date : 2048", + "3 | Trade date : 256", "4 | Value date : 128", - "5 | Legs : ", - "6 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "6 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789" + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", + "6 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "6 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "7 | Mediators [1/4] : 45cefc44460c96d27b6570498d0c505661a080", + "7 | Mediators [2/4] : 04fcde7b8715a72c57735ae439", + "7 | Mediators [3/4] : fa0e30564b3e032042e99180f89e8d25210b37", + "7 | Mediators [4/4] : eb5751c4f9030de50590402ea2", + "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "8 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Settlement : Add instruction", - "1 | Venue id : 100", + "0 | Settlement : Add instruction with mediators", + "1 | Venue id : 2000", "2 | Settlement type : SettleOnAffirmation", - "3 | Trade date : 2048", + "3 | Trade date : 256", "4 | Value date : 128", - "5 | Legs : ", - "6 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "6 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "7 | Chain : Polymesh", - "8 | Nonce : 1", - "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "9 | Tip [2/2] : 3.456789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", + "6 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "6 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "7 | Mediators [1/4] : 45cefc44460c96d27b6570498d0c505661a080", + "7 | Mediators [2/4] : 04fcde7b8715a72c57735ae439", + "7 | Mediators [3/4] : fa0e30564b3e032042e99180f89e8d25210b37", + "7 | Mediators [4/4] : eb5751c4f9030de50590402ea2", + "8 | Chain : Polymesh", + "9 | Nonce : 100", + "10 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "10 | Tip [2/2] : 3.456789", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1296, - "name": "Settlement_Add_and_affirm_instruction", - "blob": "250a2309000000000000025a20096d0100080000000000000180000000000000000400ac5db382083b7219cfad6059c08c2369dca1cf53547ad9ddeb2111453687860600f71eecdf2143fab521a19bc9ef041d5dbebe30289c02c9ff90e3ebe372d9078001755a8159d59f08d15449434b45522d33343536375e0575c220aca31f94383ed5ba2109190001664c968727fc8fb62cd51bfa0f8ee2946af0b10beb0dc7fe48041da6090d46a6d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1276, + "name": "Settlement_Add_and_affirm_with_mediators", + "blob": "251401d007000000000000019615504e0100010000000000000100080000000000000800218687dad0a07dea30469be608e4c9fc0002728af6efb7fd4185cae1058808fc014bfb62da2c562e54548407f428fff8efe21892fd8c0a58243b920bc165f5ff8c28623a2498ac039801ba156b6d3e589ec0417373657449442d3132333435363738d07d7207014a37b85018b6d6bbf418df02ff2571d66dd767ea6fee038262573f34607a105fc989287cb284cfc58e1e7fdc3526d8ec3fdeac5f73d09c1521a32146accd29714a21a9a2187caf4f795ba5105449434b45522d3334353637676fd7a7f13f2ae958b36498dd719c980001926c3bd1e90f231b283452fd8a7e41273aac84ab1bd49aad8a772aa6bb2025a80c42643a9941d357d81930149f74634cecdf36e37cc929e18b8a5980cc4748d53f959c413fc044ffd874004f6dbd6e21128bfde185ce496fa4ee16fd0adea5ab38e7782d7ae374a152b8e2209c67df854af3b4dd2e370ebb27ab7c7512f8ec4533d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Add and affirm instruction", - "1 | Venue id : 2339", - "2 | Settlement type : 1829314650", - "3 | Trade date : 2048", - "4 | Value date : 128", - "5 | Legs [1/8] : ac5db382083b7219cfad6059c08c2369dca1cf", - "5 | Legs [2/8] : 53547ad9ddeb21114536878606", - "5 | Legs [3/8] : Default", - "5 | Legs [4/8] : f71eecdf2143fab521a19bc9ef041d5dbebe30", - "5 | Legs [5/8] : 289c02c9ff90e3ebe372d90780", - "5 | Legs [6/8] : 15062464692419123829", - "5 | Legs [7/8] : TICKER-34567", - "5 | Legs [8/8] : 33278114688300386107226358981875.53315", + "0 | Settlement : Add and affirm with mediators", + "1 | Venue id : 2000", + "2 | Settlement type : 1313871254", + "3 | Trade date : 256", + "4 | Value date : 2048", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", "6 | Portfolios : ", - "7 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "7 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6" + "7 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "7 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "8 | Mediators [1/6] : 42643a9941d357d81930149f74634cecdf36e3", + "8 | Mediators [2/6] : 7cc929e18b8a5980cc4748d53f", + "8 | Mediators [3/6] : 959c413fc044ffd874004f6dbd6e21128bfde1", + "8 | Mediators [4/6] : 85ce496fa4ee16fd0adea5ab38", + "8 | Mediators [5/6] : e7782d7ae374a152b8e2209c67df854af3b4dd", + "8 | Mediators [6/6] : 2e370ebb27ab7c7512f8ec4533", + "9 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Settlement : Add and affirm instruction", - "1 | Venue id : 2339", - "2 | Settlement type : 1829314650", - "3 | Trade date : 2048", - "4 | Value date : 128", - "5 | Legs [1/8] : ac5db382083b7219cfad6059c08c2369dca1cf", - "5 | Legs [2/8] : 53547ad9ddeb21114536878606", - "5 | Legs [3/8] : Default", - "5 | Legs [4/8] : f71eecdf2143fab521a19bc9ef041d5dbebe30", - "5 | Legs [5/8] : 289c02c9ff90e3ebe372d90780", - "5 | Legs [6/8] : 15062464692419123829", - "5 | Legs [7/8] : TICKER-34567", - "5 | Legs [8/8] : 33278114688300386107226358981875.53315", + "0 | Settlement : Add and affirm with mediators", + "1 | Venue id : 2000", + "2 | Settlement type : 1313871254", + "3 | Trade date : 256", + "4 | Value date : 2048", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", "6 | Portfolios : ", - "7 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "7 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "8 | Chain : Polymesh", - "9 | Nonce : 0", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "7 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "8 | Mediators [1/6] : 42643a9941d357d81930149f74634cecdf36e3", + "8 | Mediators [2/6] : 7cc929e18b8a5980cc4748d53f", + "8 | Mediators [3/6] : 959c413fc044ffd874004f6dbd6e21128bfde1", + "8 | Mediators [4/6] : 85ce496fa4ee16fd0adea5ab38", + "8 | Mediators [5/6] : e7782d7ae374a152b8e2209c67df854af3b4dd", + "8 | Mediators [6/6] : 2e370ebb27ab7c7512f8ec4533", + "9 | Chain : Polymesh", + "10 | Nonce : 2339", + "11 | Tip : POLYX 1234.56789", + "12 | Era Phase : 61", + "13 | Era Period : 64", + "14 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "14 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1297, - "name": "Settlement_Add_and_affirm_instruction", - "blob": "250a0100000000000000025a20096d0180000000000000000100010000000000000402ab5da1448af7946ed14d82fef3add7cb8734abfd6c4d85ad1399dd57f7de94e1eb58190fa5424caf196c69b048e254111eb4e7115f3664477471fc777ba8c7fd5449434b45522d3334353637440ad87b41425869d6ff2d763d3656e90001664c968727fc8fb62cd51bfa0f8ee2946af0b10beb0dc7fe48041da6090d46a6d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1277, + "name": "Settlement_Add_and_affirm_with_mediators", + "blob": "251401d007000000000000000100010000000000000100080000000000000800218687dad0a07dea30469be608e4c9fc0002728af6efb7fd4185cae1058808fc014bfb62da2c562e54548407f428fff8efe21892fd8c0a58243b920bc165f5ff8c28623a2498ac039801ba156b6d3e589ec0417373657449442d3132333435363738d07d7207014a37b85018b6d6bbf418df02ff2571d66dd767ea6fee038262573f34607a105fc989287cb284cfc58e1e7fdc3526d8ec3fdeac5f73d09c1521a32146accd29714a21a9a2187caf4f795ba5105449434b45522d3334353637676fd7a7f13f2ae958b36498dd719c980001926c3bd1e90f231b283452fd8a7e41273aac84ab1bd49aad8a772aa6bb2025a80856b21c2f02311c04daadb5f55c97ee4a983a15aeded447584f08310bfe854e447498930b3005218187770381d020cb960a6c6160e4ac5b10227381ce8903a0aad503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Add and affirm instruction", - "1 | Venue id : 1", - "2 | Settlement type : 1829314650", - "3 | Trade date : 128", - "4 | Value date : 256", - "5 | Legs [1/7] : ab5da1448af7946ed14d82fef3add7cb8734ab", - "5 | Legs [2/7] : fd6c4d85ad1399dd57f7de94e1", - "5 | Legs [3/7] : eb58190fa5424caf196c69b048e254111eb4e7", - "5 | Legs [4/7] : 115f3664477471fc777ba8c7fd", - "5 | Legs [5/7] : TICKER-34567", - "5 | Legs [6/7] : 310157760667330745102416784064094.1450", - "5 | Legs [7/7] : 92", + "0 | Settlement : Add and affirm with mediators", + "1 | Venue id : 2000", + "2 | Settlement type : SettleOnAffirmation", + "3 | Trade date : 256", + "4 | Value date : 2048", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", "6 | Portfolios : ", - "7 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "7 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "8 | Tip : POLYX 0.000987" + "7 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "7 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "8 | Mediators [1/4] : 56b21c2f02311c04daadb5f55c97ee4a983a15", + "8 | Mediators [2/4] : aeded447584f08310bfe854e44", + "8 | Mediators [3/4] : 7498930b3005218187770381d020cb960a6c61", + "8 | Mediators [4/4] : 60e4ac5b10227381ce8903a0aa", + "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "9 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Settlement : Add and affirm instruction", - "1 | Venue id : 1", - "2 | Settlement type : 1829314650", - "3 | Trade date : 128", - "4 | Value date : 256", - "5 | Legs [1/7] : ab5da1448af7946ed14d82fef3add7cb8734ab", - "5 | Legs [2/7] : fd6c4d85ad1399dd57f7de94e1", - "5 | Legs [3/7] : eb58190fa5424caf196c69b048e254111eb4e7", - "5 | Legs [4/7] : 115f3664477471fc777ba8c7fd", - "5 | Legs [5/7] : TICKER-34567", - "5 | Legs [6/7] : 310157760667330745102416784064094.1450", - "5 | Legs [7/7] : 92", + "0 | Settlement : Add and affirm with mediators", + "1 | Venue id : 2000", + "2 | Settlement type : SettleOnAffirmation", + "3 | Trade date : 256", + "4 | Value date : 2048", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", "6 | Portfolios : ", - "7 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "7 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "8 | Chain : Polymesh", - "9 | Nonce : 2339", - "10 | Tip : POLYX 0.000987", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "7 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "8 | Mediators [1/4] : 56b21c2f02311c04daadb5f55c97ee4a983a15", + "8 | Mediators [2/4] : aeded447584f08310bfe854e44", + "8 | Mediators [3/4] : 7498930b3005218187770381d020cb960a6c61", + "8 | Mediators [4/4] : 60e4ac5b10227381ce8903a0aa", + "9 | Chain : Polymesh", + "10 | Nonce : 100", + "11 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "11 | Tip [2/2] : 3.456789", + "12 | Era Phase : 61", + "13 | Era Period : 64", + "14 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "14 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1298, - "name": "Settlement_Add_and_affirm_instruction", - "blob": "250a0100000000000000025a20096d0100080000000000000100010000000000000402ab5da1448af7946ed14d82fef3add7cb8734abfd6c4d85ad1399dd57f7de94e1eb58190fa5424caf196c69b048e254111eb4e7115f3664477471fc777ba8c7fd5449434b45522d3334353637440ad87b41425869d6ff2d763d3656e90001664c968727fc8fb62cd51bfa0f8ee2946af0b10beb0dc7fe48041da6090d46a6d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1278, + "name": "Settlement_Add_and_affirm_with_mediators", + "blob": "251401d00700000000000002af1fb21e0100080000000000000180000000000000000800218687dad0a07dea30469be608e4c9fc0002728af6efb7fd4185cae1058808fc014bfb62da2c562e54548407f428fff8efe21892fd8c0a58243b920bc165f5ff8c28623a2498ac039801ba156b6d3e589ec0417373657449442d3132333435363738d07d7207014a37b85018b6d6bbf418df02ff2571d66dd767ea6fee038262573f34607a105fc989287cb284cfc58e1e7fdc3526d8ec3fdeac5f73d09c1521a32146accd29714a21a9a2187caf4f795ba5105449434b45522d3334353637676fd7a7f13f2ae958b36498dd719c980001926c3bd1e90f231b283452fd8a7e41273aac84ab1bd49aad8a772aa6bb2025a80856b21c2f02311c04daadb5f55c97ee4a983a15aeded447584f08310bfe854e447498930b3005218187770381d020cb960a6c6160e4ac5b10227381ce8903a0aad503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Add and affirm instruction", - "1 | Venue id : 1", - "2 | Settlement type : 1829314650", + "0 | Settlement : Add and affirm with mediators", + "1 | Venue id : 2000", + "2 | Settlement type : 514989999", "3 | Trade date : 2048", - "4 | Value date : 256", - "5 | Legs [1/7] : ab5da1448af7946ed14d82fef3add7cb8734ab", - "5 | Legs [2/7] : fd6c4d85ad1399dd57f7de94e1", - "5 | Legs [3/7] : eb58190fa5424caf196c69b048e254111eb4e7", - "5 | Legs [4/7] : 115f3664477471fc777ba8c7fd", - "5 | Legs [5/7] : TICKER-34567", - "5 | Legs [6/7] : 310157760667330745102416784064094.1450", - "5 | Legs [7/7] : 92", + "4 | Value date : 128", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", "6 | Portfolios : ", - "7 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "7 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6" + "7 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "7 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "8 | Mediators [1/4] : 56b21c2f02311c04daadb5f55c97ee4a983a15", + "8 | Mediators [2/4] : aeded447584f08310bfe854e44", + "8 | Mediators [3/4] : 7498930b3005218187770381d020cb960a6c61", + "8 | Mediators [4/4] : 60e4ac5b10227381ce8903a0aa", + "9 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Settlement : Add and affirm instruction", - "1 | Venue id : 1", - "2 | Settlement type : 1829314650", + "0 | Settlement : Add and affirm with mediators", + "1 | Venue id : 2000", + "2 | Settlement type : 514989999", "3 | Trade date : 2048", - "4 | Value date : 256", - "5 | Legs [1/7] : ab5da1448af7946ed14d82fef3add7cb8734ab", - "5 | Legs [2/7] : fd6c4d85ad1399dd57f7de94e1", - "5 | Legs [3/7] : eb58190fa5424caf196c69b048e254111eb4e7", - "5 | Legs [4/7] : 115f3664477471fc777ba8c7fd", - "5 | Legs [5/7] : TICKER-34567", - "5 | Legs [6/7] : 310157760667330745102416784064094.1450", - "5 | Legs [7/7] : 92", + "4 | Value date : 128", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", "6 | Portfolios : ", - "7 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "7 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "8 | Chain : Polymesh", - "9 | Nonce : 2339", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "7 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "8 | Mediators [1/4] : 56b21c2f02311c04daadb5f55c97ee4a983a15", + "8 | Mediators [2/4] : aeded447584f08310bfe854e44", + "8 | Mediators [3/4] : 7498930b3005218187770381d020cb960a6c61", + "8 | Mediators [4/4] : 60e4ac5b10227381ce8903a0aa", + "9 | Chain : Polymesh", + "10 | Nonce : 50283", + "11 | Tip : POLYX 0.000987", + "12 | Era Phase : 61", + "13 | Era Period : 64", + "14 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "14 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1299, - "name": "Settlement_Add_and_affirm_instruction", - "blob": "250a0100000000000000025a20096d010008000000000000018000000000000000000857fe7c4bcb4b5321ffd0d4abc20c1f1b9c727bef031bc5c22d41d98cc5ba2fe30140e2010000000000907c51ddeced476ca85354dbee9f2c6869d67fd62e913c2247e0566ce476878b0140e201000000000001664c968727fc8fb62cd51bfa0f8ee2946af0b10beb0dc7fe48041da6090d46a6d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1279, + "name": "Settlement_Add_and_affirm_with_mediators", + "blob": "251401d007000000000000000100080000000000000100080000000000000800218687dad0a07dea30469be608e4c9fc0002728af6efb7fd4185cae1058808fc014bfb62da2c562e54548407f428fff8efe21892fd8c0a58243b920bc165f5ff8c28623a2498ac039801ba156b6d3e589ec0417373657449442d3132333435363738d07d7207014a37b85018b6d6bbf418df02ff2571d66dd767ea6fee038262573f34607a105fc989287cb284cfc58e1e7fdc3526d8ec3fdeac5f73d09c1521a32146accd29714a21a9a2187caf4f795ba5105449434b45522d3334353637676fd7a7f13f2ae958b36498dd719c98081ecdf645fda520fdad9442b82f11a317ec8a92cece3eb79e0e84695ba9ab00bd0140e201000000000010ffe4f73720b572bfee5823f0bdca2f1e7463c82bdfa9e2d044e4d779148cad0140e201000000000001926c3bd1e90f231b283452fd8a7e41273aac84ab1bd49aad8a772aa6bb2025a804050f5bb03faade4b29b408ee8d444f39fb64b1c5d82c4f041b8763ec903d7169d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Add and affirm instruction", - "1 | Venue id : 1", - "2 | Settlement type : 1829314650", - "3 | Trade date : 2048", - "4 | Value date : 128", - "5 | Legs : ", - "6 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "6 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", + "0 | Settlement : Add and affirm with mediators", + "1 | Venue id : 2000", + "2 | Settlement type : SettleOnAffirmation", + "3 | Trade date : 2048", + "4 | Value date : 2048", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", + "6 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "6 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", "6 | Portfolios [3/6] : 123456", - "6 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "6 | Portfolios [5/6] : d62e913c2247e0566ce476878b", + "6 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "6 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", "6 | Portfolios [6/6] : 123456", - "7 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "7 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "8 | Tip : POLYX 55.555555" + "7 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "7 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "8 | Mediators [1/2] : 050f5bb03faade4b29b408ee8d444f39fb64b1", + "8 | Mediators [2/2] : c5d82c4f041b8763ec903d7169", + "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "9 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Settlement : Add and affirm instruction", - "1 | Venue id : 1", - "2 | Settlement type : 1829314650", + "0 | Settlement : Add and affirm with mediators", + "1 | Venue id : 2000", + "2 | Settlement type : SettleOnAffirmation", "3 | Trade date : 2048", - "4 | Value date : 128", - "5 | Legs : ", - "6 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "6 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", + "4 | Value date : 2048", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", + "6 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "6 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", "6 | Portfolios [3/6] : 123456", - "6 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "6 | Portfolios [5/6] : d62e913c2247e0566ce476878b", + "6 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "6 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", "6 | Portfolios [6/6] : 123456", - "7 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "7 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "8 | Chain : Polymesh", - "9 | Nonce : 0", - "10 | Tip : POLYX 55.555555", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "7 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "8 | Mediators [1/2] : 050f5bb03faade4b29b408ee8d444f39fb64b1", + "8 | Mediators [2/2] : c5d82c4f041b8763ec903d7169", + "9 | Chain : Polymesh", + "10 | Nonce : 2339", + "11 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "11 | Tip [2/2] : 3.456789", + "12 | Era Phase : 61", + "13 | Era Period : 64", + "14 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "14 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1300, - "name": "Settlement_Add_and_affirm_instruction", - "blob": "250a0100000000000000012cfa1c70010001000000000000010001000000000000000001664c968727fc8fb62cd51bfa0f8ee2946af0b10beb0dc7fe48041da6090d46a6d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1280, + "name": "Settlement_Add_and_affirm_with_mediators", + "blob": "251401d007000000000000000180000000000000000180000000000000000800218687dad0a07dea30469be608e4c9fc0002728af6efb7fd4185cae1058808fc014bfb62da2c562e54548407f428fff8efe21892fd8c0a58243b920bc165f5ff8c28623a2498ac039801ba156b6d3e589ec0417373657449442d3132333435363738d07d7207014a37b85018b6d6bbf418df02ff2571d66dd767ea6fee038262573f34607a105fc989287cb284cfc58e1e7fdc3526d8ec3fdeac5f73d09c1521a32146accd29714a21a9a2187caf4f795ba5105449434b45522d3334353637676fd7a7f13f2ae958b36498dd719c98081ecdf645fda520fdad9442b82f11a317ec8a92cece3eb79e0e84695ba9ab00bd0140e201000000000010ffe4f73720b572bfee5823f0bdca2f1e7463c82bdfa9e2d044e4d779148cad0140e201000000000001926c3bd1e90f231b283452fd8a7e41273aac84ab1bd49aad8a772aa6bb2025a804050f5bb03faade4b29b408ee8d444f39fb64b1c5d82c4f041b8763ec903d7169d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Add and affirm instruction", - "1 | Venue id : 1", - "2 | Settlement type : 1880947244", - "3 | Trade date : 256", - "4 | Value date : 256", - "5 | Legs : ", - "6 | Portfolios : ", - "7 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "7 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "8 | Tip : POLYX 55.555555" + "0 | Settlement : Add and affirm with mediators", + "1 | Venue id : 2000", + "2 | Settlement type : SettleOnAffirmation", + "3 | Trade date : 128", + "4 | Value date : 128", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", + "6 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "6 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "6 | Portfolios [3/6] : 123456", + "6 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "6 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "6 | Portfolios [6/6] : 123456", + "7 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "7 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "8 | Mediators [1/2] : 050f5bb03faade4b29b408ee8d444f39fb64b1", + "8 | Mediators [2/2] : c5d82c4f041b8763ec903d7169" ], "output_expert": [ - "0 | Settlement : Add and affirm instruction", - "1 | Venue id : 1", - "2 | Settlement type : 1880947244", - "3 | Trade date : 256", - "4 | Value date : 256", - "5 | Legs : ", - "6 | Portfolios : ", - "7 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "7 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "8 | Chain : Polymesh", - "9 | Nonce : 100", - "10 | Tip : POLYX 55.555555", + "0 | Settlement : Add and affirm with mediators", + "1 | Venue id : 2000", + "2 | Settlement type : SettleOnAffirmation", + "3 | Trade date : 128", + "4 | Value date : 128", + "5 | Legs [1/16] : 218687dad0a07dea30469be608e4c9fc000272", + "5 | Legs [2/16] : 8af6efb7fd4185cae1058808fc", + "5 | Legs [3/16] : 6065880498757106507", + "5 | Legs [4/16] : 548407f428fff8efe21892fd8c0a58243b920b", + "5 | Legs [5/16] : c165f5ff8c28623a2498ac0398", + "5 | Legs [6/16] : 13879628126749398458", + "5 | Legs [7/16] : AssetID-12345678", + "5 | Legs [8/16] : 296547421974700688122395261256577.7443", + "5 | Legs [9/16] : 36", + "5 | Legs [10/16] : ff2571d66dd767ea6fee038262573f34607a10", + "5 | Legs [11/16] : 5fc989287cb284cfc58e1e7fdc", + "5 | Legs [12/16] : 3526d8ec3fdeac5f73d09c1521a32146accd29", + "5 | Legs [13/16] : 714a21a9a2187caf4f795ba510", + "5 | Legs [14/16] : TICKER-34567", + "5 | Legs [15/16] : 202854963138111235101127081986144.8251", + "5 | Legs [16/16] : 91", + "6 | Portfolios [1/6] : 1ecdf645fda520fdad9442b82f11a317ec8a92", + "6 | Portfolios [2/6] : cece3eb79e0e84695ba9ab00bd", + "6 | Portfolios [3/6] : 123456", + "6 | Portfolios [4/6] : 10ffe4f73720b572bfee5823f0bdca2f1e7463", + "6 | Portfolios [5/6] : c82bdfa9e2d044e4d779148cad", + "6 | Portfolios [6/6] : 123456", + "7 | Instruction memo [1/2] : 0x926c3bd1e90f231b283452fd8a7e41273aac", + "7 | Instruction memo [2/2] : 84ab1bd49aad8a772aa6bb2025a8", + "8 | Mediators [1/2] : 050f5bb03faade4b29b408ee8d444f39fb64b1", + "8 | Mediators [2/2] : c5d82c4f041b8763ec903d7169", + "9 | Chain : Polymesh", + "10 | Nonce : 0", "11 | Era Phase : 61", "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1301, - "name": "Settlement_Affirm_instruction", - "blob": "250b64000000000000000857fe7c4bcb4b5321ffd0d4abc20c1f1b9c727bef031bc5c22d41d98cc5ba2fe30140e2010000000000907c51ddeced476ca85354dbee9f2c6869d67fd62e913c2247e0566ce476878b0140e2010000000000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1281, + "name": "Settlement_Affirm_instruction_as_mediator", + "blob": "25156400000000000000018000000000000000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Affirm instruction", - "1 | Id : 100", - "2 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "2 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "2 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "2 | Portfolios [6/6] : 123456", - "3 | Tip : POLYX 55.555555" + "0 | Settlement : Affirm instruction as mediator", + "1 | Instruction id : 100", + "2 | Expiry : 128" ], "output_expert": [ - "0 | Settlement : Affirm instruction", - "1 | Id : 100", - "2 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "2 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "2 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "2 | Portfolios [6/6] : 123456", + "0 | Settlement : Affirm instruction as mediator", + "1 | Instruction id : 100", + "2 | Expiry : 128", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 50283", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1302, - "name": "Settlement_Affirm_instruction", - "blob": "250b64000000000000000857fe7c4bcb4b5321ffd0d4abc20c1f1b9c727bef031bc5c22d41d98cc5ba2fe30140e2010000000000907c51ddeced476ca85354dbee9f2c6869d67fd62e913c2247e0566ce476878b0140e2010000000000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1282, + "name": "Settlement_Affirm_instruction_as_mediator", + "blob": "25150100000000000000018000000000000000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Affirm instruction", - "1 | Id : 100", - "2 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "2 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "2 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "2 | Portfolios [6/6] : 123456" + "0 | Settlement : Affirm instruction as mediator", + "1 | Instruction id : 1", + "2 | Expiry : 128" ], "output_expert": [ - "0 | Settlement : Affirm instruction", - "1 | Id : 100", - "2 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "2 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "2 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "2 | Portfolios [6/6] : 123456", + "0 | Settlement : Affirm instruction as mediator", + "1 | Instruction id : 1", + "2 | Expiry : 128", "3 | Chain : Polymesh", - "4 | Nonce : 2339", + "4 | Nonce : 1", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1303, - "name": "Settlement_Affirm_instruction", - "blob": "250b010000000000000000d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1283, + "name": "Settlement_Affirm_instruction_as_mediator", + "blob": "25150000000000000000010008000000000000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Affirm instruction", - "1 | Id : 1", - "2 | Portfolios : ", + "0 | Settlement : Affirm instruction as mediator", + "1 | Instruction id : 0", + "2 | Expiry : 2048", "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Settlement : Affirm instruction", - "1 | Id : 1", - "2 | Portfolios : ", + "0 | Settlement : Affirm instruction as mediator", + "1 | Instruction id : 0", + "2 | Expiry : 2048", "3 | Chain : Polymesh", - "4 | Nonce : 100", + "4 | Nonce : 50283", "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1304, - "name": "Settlement_Affirm_instruction", - "blob": "250b640000000000000000d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Affirm instruction", - "1 | Id : 100", - "2 | Portfolios : " - ], - "output_expert": [ - "0 | Settlement : Affirm instruction", - "1 | Id : 100", - "2 | Portfolios : ", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1305, - "name": "Settlement_Affirm_instruction", - "blob": "250b000000000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1284, + "name": "Settlement_Affirm_instruction_as_mediator", + "blob": "25150000000000000000010008000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Affirm instruction", - "1 | Id : 0", - "2 | Portfolios : ", + "0 | Settlement : Affirm instruction as mediator", + "1 | Instruction id : 0", + "2 | Expiry : 2048", "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Settlement : Affirm instruction", - "1 | Id : 0", - "2 | Portfolios : ", + "0 | Settlement : Affirm instruction as mediator", + "1 | Instruction id : 0", + "2 | Expiry : 2048", "3 | Chain : Polymesh", - "4 | Nonce : 1", + "4 | Nonce : 0", "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1306, - "name": "Settlement_Withdraw_affirmation", - "blob": "250c6bc400000000000000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1285, + "name": "Settlement_Affirm_instruction_as_mediator", + "blob": "25150100000000000000010008000000000000d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Withdraw affirmation", - "1 | Id : 50283", - "2 | Portfolios : ", - "3 | Tip : POLYX 0.000987" + "0 | Settlement : Affirm instruction as mediator", + "1 | Instruction id : 1", + "2 | Expiry : 2048", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Settlement : Withdraw affirmation", - "1 | Id : 50283", - "2 | Portfolios : ", + "0 | Settlement : Affirm instruction as mediator", + "1 | Instruction id : 1", + "2 | Expiry : 2048", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 100", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1307, - "name": "Settlement_Withdraw_affirmation", - "blob": "250c01000000000000000857fe7c4bcb4b5321ffd0d4abc20c1f1b9c727bef031bc5c22d41d98cc5ba2fe30140e2010000000000907c51ddeced476ca85354dbee9f2c6869d67fd62e913c2247e0566ce476878b0140e2010000000000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1286, + "name": "Settlement_Withdraw_affirmation_as_mediator", + "blob": "25162309000000000000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Withdraw affirmation", - "1 | Id : 1", - "2 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "2 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "2 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "2 | Portfolios [6/6] : 123456", - "3 | Tip : POLYX 5552342.355555" + "0 | Settlement : Withdraw affirmation as mediator", + "1 | Instruction id : 2339", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Settlement : Withdraw affirmation", - "1 | Id : 1", - "2 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "2 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "2 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "2 | Portfolios [6/6] : 123456", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Withdraw affirmation as mediator", + "1 | Instruction id : 2339", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1308, - "name": "Settlement_Withdraw_affirmation", - "blob": "250c010000000000000000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1287, + "name": "Settlement_Withdraw_affirmation_as_mediator", + "blob": "25160100000000000000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Withdraw affirmation", - "1 | Id : 1", - "2 | Portfolios : ", - "3 | Tip : POLYX 1234.56789" + "0 | Settlement : Withdraw affirmation as mediator", + "1 | Instruction id : 1" ], "output_expert": [ - "0 | Settlement : Withdraw affirmation", - "1 | Id : 1", - "2 | Portfolios : ", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Withdraw affirmation as mediator", + "1 | Instruction id : 1", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1309, - "name": "Settlement_Withdraw_affirmation", - "blob": "250c23090000000000000857fe7c4bcb4b5321ffd0d4abc20c1f1b9c727bef031bc5c22d41d98cc5ba2fe30140e2010000000000907c51ddeced476ca85354dbee9f2c6869d67fd62e913c2247e0566ce476878b0140e2010000000000d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1288, + "name": "Settlement_Withdraw_affirmation_as_mediator", + "blob": "25166400000000000000d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Withdraw affirmation", - "1 | Id : 2339", - "2 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "2 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "2 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "2 | Portfolios [6/6] : 123456", - "3 | Tip : POLYX 0.000987" + "0 | Settlement : Withdraw affirmation as mediator", + "1 | Instruction id : 100" ], "output_expert": [ - "0 | Settlement : Withdraw affirmation", - "1 | Id : 2339", - "2 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "2 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "2 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "2 | Portfolios [6/6] : 123456", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Withdraw affirmation as mediator", + "1 | Instruction id : 100", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1310, - "name": "Settlement_Withdraw_affirmation", - "blob": "250c00000000000000000857fe7c4bcb4b5321ffd0d4abc20c1f1b9c727bef031bc5c22d41d98cc5ba2fe30140e2010000000000907c51ddeced476ca85354dbee9f2c6869d67fd62e913c2247e0566ce476878b0140e2010000000000d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1289, + "name": "Settlement_Withdraw_affirmation_as_mediator", + "blob": "25160000000000000000d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Withdraw affirmation", - "1 | Id : 0", - "2 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "2 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "2 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "2 | Portfolios [6/6] : 123456" - ], + "0 | Settlement : Withdraw affirmation as mediator", + "1 | Instruction id : 0", + "2 | Tip : POLYX 5552342.355555" + ], "output_expert": [ - "0 | Settlement : Withdraw affirmation", - "1 | Id : 0", - "2 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "2 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "2 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "2 | Portfolios [6/6] : 123456", - "3 | Chain : Polymesh", - "4 | Nonce : 0", + "0 | Settlement : Withdraw affirmation as mediator", + "1 | Instruction id : 0", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1311, - "name": "Settlement_Reject_instruction", - "blob": "250d000000000000000064af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e2010000000000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Reject instruction", - "1 | Id : 0", - "2 | Portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio [3/3] : 123456", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Settlement : Reject instruction", - "1 | Id : 0", - "2 | Portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio [3/3] : 123456", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1312, - "name": "Settlement_Reject_instruction", - "blob": "250d010000000000000064af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e2010000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1290, + "name": "Settlement_Withdraw_affirmation_as_mediator", + "blob": "25166400000000000000d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Reject instruction", - "1 | Id : 1", - "2 | Portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio [3/3] : 123456", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Settlement : Withdraw affirmation as mediator", + "1 | Instruction id : 100", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Settlement : Reject instruction", - "1 | Id : 1", - "2 | Portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio [3/3] : 123456", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Settlement : Withdraw affirmation as mediator", + "1 | Instruction id : 100", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1313, - "name": "Settlement_Reject_instruction", - "blob": "250d010000000000000064af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e2010000000000d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1291, + "name": "Settlement_Reject_instruction_as_mediator", + "blob": "2517230900000000000001ae953550cfd9ed1100000000d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Reject instruction", - "1 | Id : 1", - "2 | Portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio [3/3] : 123456", - "3 | Tip : POLYX 5552342.355555" + "0 | Settlement : Reject instruction as mediator", + "1 | Instruction id : 2339", + "2 | Number of assets [1/3] : 1345689006", + "2 | Number of assets [2/3] : 300800463", + "2 | Number of assets [3/3] : 0" ], "output_expert": [ - "0 | Settlement : Reject instruction", - "1 | Id : 1", - "2 | Portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio [3/3] : 123456", + "0 | Settlement : Reject instruction as mediator", + "1 | Instruction id : 2339", + "2 | Number of assets [1/3] : 1345689006", + "2 | Number of assets [2/3] : 300800463", + "2 | Number of assets [3/3] : 0", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 100", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1314, - "name": "Settlement_Reject_instruction", - "blob": "250d640000000000000064af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e2010000000000d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1292, + "name": "Settlement_Reject_instruction_as_mediator", + "blob": "2517230900000000000001ae953550cfd9ed1100000000d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Reject instruction", - "1 | Id : 100", - "2 | Portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio [3/3] : 123456", - "3 | Tip : POLYX 5552342.355555" + "0 | Settlement : Reject instruction as mediator", + "1 | Instruction id : 2339", + "2 | Number of assets [1/3] : 1345689006", + "2 | Number of assets [2/3] : 300800463", + "2 | Number of assets [3/3] : 0", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Settlement : Reject instruction", - "1 | Id : 100", - "2 | Portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio [3/3] : 123456", + "0 | Settlement : Reject instruction as mediator", + "1 | Instruction id : 2339", + "2 | Number of assets [1/3] : 1345689006", + "2 | Number of assets [2/3] : 300800463", + "2 | Number of assets [3/3] : 0", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 2339", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1315, - "name": "Settlement_Reject_instruction", - "blob": "250d000000000000000064af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e2010000000000d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1293, + "name": "Settlement_Reject_instruction_as_mediator", + "blob": "25176bc400000000000001d0b8db47f577b70000000000d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Reject instruction", - "1 | Id : 0", - "2 | Portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio [3/3] : 123456", - "3 | Tip : POLYX 0.000987" + "0 | Settlement : Reject instruction as mediator", + "1 | Instruction id : 50283", + "2 | Number of assets [1/3] : 1205582032", + "2 | Number of assets [2/3] : 12023797", + "2 | Number of assets [3/3] : 0" ], "output_expert": [ - "0 | Settlement : Reject instruction", - "1 | Id : 0", - "2 | Portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio [3/3] : 123456", + "0 | Settlement : Reject instruction as mediator", + "1 | Instruction id : 50283", + "2 | Number of assets [1/3] : 1205582032", + "2 | Number of assets [2/3] : 12023797", + "2 | Number of assets [3/3] : 0", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 0", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1316, - "name": "Settlement_Execute_scheduled_instruction", - "blob": "250e0000000000000000c1c268d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1294, + "name": "Settlement_Reject_instruction_as_mediator", + "blob": "2517230900000000000001ae953550cfd9ed1100000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Execute scheduled instruction", - "1 | Id : 0", - "2 | Weight limit [1/2] : 12464", - "2 | Weight limit [2/2] : 26", + "0 | Settlement : Reject instruction as mediator", + "1 | Instruction id : 2339", + "2 | Number of assets [1/3] : 1345689006", + "2 | Number of assets [2/3] : 300800463", + "2 | Number of assets [3/3] : 0", "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Settlement : Execute scheduled instruction", - "1 | Id : 0", - "2 | Weight limit [1/2] : 12464", - "2 | Weight limit [2/2] : 26", + "0 | Settlement : Reject instruction as mediator", + "1 | Instruction id : 2339", + "2 | Number of assets [1/3] : 1345689006", + "2 | Number of assets [2/3] : 300800463", + "2 | Number of assets [3/3] : 0", "3 | Chain : Polymesh", - "4 | Nonce : 2339", + "4 | Nonce : 50283", "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1317, - "name": "Settlement_Execute_scheduled_instruction", - "blob": "250e0000000000000000139f386be0e29147ce13d5cc2b675623e52ed503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1295, + "name": "Settlement_Reject_instruction_as_mediator", + "blob": "2517010000000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Execute scheduled instruction", - "1 | Id : 0", - "2 | Weight limit [1/2] : 14864009498773371039", - "2 | Weight limit [2/2] : 3379145949416508629", + "0 | Settlement : Reject instruction as mediator", + "1 | Instruction id : 1", + "2 | Number of assets : None", "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Settlement : Execute scheduled instruction", - "1 | Id : 0", - "2 | Weight limit [1/2] : 14864009498773371039", - "2 | Weight limit [2/2] : 3379145949416508629", + "0 | Settlement : Reject instruction as mediator", + "1 | Instruction id : 1", + "2 | Number of assets : None", "3 | Chain : Polymesh", - "4 | Nonce : 50283", + "4 | Nonce : 0", "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1318, - "name": "Settlement_Execute_scheduled_instruction", - "blob": "250e0100000000000000c1c268d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1296, + "name": "Sto_Create_fundraiser", + "blob": "270032e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000417373657449442d313233343536373832e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000417373657449442d31323334353637380810255d07000000000000000000000000e803000000000000000000000000000010255d07000000000000000000000000e80300000000000000000000000000006bc40000000000000180000000000000000100080000000000003ce97b7ceb2af717b80bbcaa9326ce833c46756e645261697365725f4e616d65d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Execute scheduled instruction", - "1 | Id : 1", - "2 | Weight limit [1/2] : 12464", - "2 | Weight limit [2/2] : 26" + "0 | Sto : Create fundraiser", + "1 | Offering portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | Offering portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | Offering portfolio [3/3] : 123456", + "2 | Offering asset : AssetID-12345678", + "3 | Raising portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "3 | Raising portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "3 | Raising portfolio [3/3] : 123456", + "4 | Raising asset : AssetID-12345678", + "5 | Tiers [1/4] : POLYX 123.544848", + "5 | Tiers [2/4] : POLYX 0.001", + "5 | Tiers [3/4] : POLYX 123.544848", + "5 | Tiers [4/4] : POLYX 0.001", + "6 | Venue id : 50283", + "7 | Start : 128", + "8 | End : 2048", + "9 | Minimum investment [1/2] : 175199263031626767267885072656780.4869", + "9 | Minimum investment [2/2] : 72", + "10 | Fundraiser name : FundRaiser_Name", + "11 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "11 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Settlement : Execute scheduled instruction", - "1 | Id : 1", - "2 | Weight limit [1/2] : 12464", - "2 | Weight limit [2/2] : 26", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sto : Create fundraiser", + "1 | Offering portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | Offering portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | Offering portfolio [3/3] : 123456", + "2 | Offering asset : AssetID-12345678", + "3 | Raising portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "3 | Raising portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "3 | Raising portfolio [3/3] : 123456", + "4 | Raising asset : AssetID-12345678", + "5 | Tiers [1/4] : POLYX 123.544848", + "5 | Tiers [2/4] : POLYX 0.001", + "5 | Tiers [3/4] : POLYX 123.544848", + "5 | Tiers [4/4] : POLYX 0.001", + "6 | Venue id : 50283", + "7 | Start : 128", + "8 | End : 2048", + "9 | Minimum investment [1/2] : 175199263031626767267885072656780.4869", + "9 | Minimum investment [2/2] : 72", + "10 | Fundraiser name : FundRaiser_Name", + "11 | Chain : Polymesh", + "12 | Nonce : 2339", + "13 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "13 | Tip [2/2] : 3.456789", + "14 | Era Phase : 61", + "15 | Era Period : 64", + "16 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "16 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1319, - "name": "Settlement_Execute_scheduled_instruction", - "blob": "250e0000000000000000c1690f51da19d99ba972d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1297, + "name": "Sto_Create_fundraiser", + "blob": "270032e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000417373657449442d313233343536373832e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000417373657449442d31323334353637380810255d07000000000000000000000000e803000000000000000000000000000010255d07000000000000000000000000e803000000000000000000000000000023090000000000000180000000000000000180000000000000003ce97b7ceb2af717b80bbcaa9326ce833c46756e645261697365725f4e616d65d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Execute scheduled instruction", - "1 | Id : 0", - "2 | Weight limit [1/2] : 6768", - "2 | Weight limit [2/2] : 32274634172389969", - "3 | Tip : POLYX 5552342.355555" + "0 | Sto : Create fundraiser", + "1 | Offering portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | Offering portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | Offering portfolio [3/3] : 123456", + "2 | Offering asset : AssetID-12345678", + "3 | Raising portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "3 | Raising portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "3 | Raising portfolio [3/3] : 123456", + "4 | Raising asset : AssetID-12345678", + "5 | Tiers [1/4] : POLYX 123.544848", + "5 | Tiers [2/4] : POLYX 0.001", + "5 | Tiers [3/4] : POLYX 123.544848", + "5 | Tiers [4/4] : POLYX 0.001", + "6 | Venue id : 2339", + "7 | Start : 128", + "8 | End : 128", + "9 | Minimum investment [1/2] : 175199263031626767267885072656780.4869", + "9 | Minimum investment [2/2] : 72", + "10 | Fundraiser name : FundRaiser_Name" ], "output_expert": [ - "0 | Settlement : Execute scheduled instruction", - "1 | Id : 0", - "2 | Weight limit [1/2] : 6768", - "2 | Weight limit [2/2] : 32274634172389969", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sto : Create fundraiser", + "1 | Offering portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | Offering portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | Offering portfolio [3/3] : 123456", + "2 | Offering asset : AssetID-12345678", + "3 | Raising portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "3 | Raising portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "3 | Raising portfolio [3/3] : 123456", + "4 | Raising asset : AssetID-12345678", + "5 | Tiers [1/4] : POLYX 123.544848", + "5 | Tiers [2/4] : POLYX 0.001", + "5 | Tiers [3/4] : POLYX 123.544848", + "5 | Tiers [4/4] : POLYX 0.001", + "6 | Venue id : 2339", + "7 | Start : 128", + "8 | End : 128", + "9 | Minimum investment [1/2] : 175199263031626767267885072656780.4869", + "9 | Minimum investment [2/2] : 72", + "10 | Fundraiser name : FundRaiser_Name", + "11 | Chain : Polymesh", + "12 | Nonce : 100", + "13 | Era Phase : 61", + "14 | Era Period : 64", + "15 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "15 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1320, - "name": "Settlement_Execute_scheduled_instruction", - "blob": "250e0000000000000000139f386be0e29147ce13d5cc2b675623e52ed503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1298, + "name": "Sto_Create_fundraiser", + "blob": "270032e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000417373657449442d313233343536373832e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000417373657449442d31323334353637380810255d07000000000000000000000000e803000000000000000000000000000010255d07000000000000000000000000e803000000000000000000000000000064000000000000000100010000000000000100080000000000003ce97b7ceb2af717b80bbcaa9326ce833c46756e645261697365725f4e616d65d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Execute scheduled instruction", - "1 | Id : 0", - "2 | Weight limit [1/2] : 14864009498773371039", - "2 | Weight limit [2/2] : 3379145949416508629", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Settlement : Execute scheduled instruction", - "1 | Id : 0", - "2 | Weight limit [1/2] : 14864009498773371039", - "2 | Weight limit [2/2] : 3379145949416508629", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1321, - "name": "Settlement_Affirm_with_receipts_with_count", - "blob": "250f0100000000000000082d7daa0477465d6fccd4d08e6664251bb2433b4553ae389dad9542cf7f2a34d5f6c9b89323365dd63af4a9a2547922f78215cb1893b015f501f440363b7023d6eff3f69f18ed7a799b4056f52e25c8588f0a8e336087cc8bbff03adc1d81ff36505dcfbc345ad4b3a50ea4e6fb53de709e50accf2590dfd5d00181446d78dba83c3a3e590944154ff228d17f65a438b579e0b09d7ff42a9de2f42ebcd4efb8faa6cb9cacf2cda789d61523a769b3ec9840469d83ac1f00bee071af7e3657fd5f1632d9b600576b6a8e17084b773fd82fb05b002fca1ffde16457fbd5cd2ccdb86f364df8ae273c3a24a97d1636f71643f4e923b9335f5fbba0331e14b9df99a5da6450a90f63c6b478abe3ee5171cfc07f689801ff761a30521c0062526b574c37a1e067529d1f634310a2444f152ddc6e61e9d50001e20bc3fe355b253e000000002602dc4dfc5be05200000000ce098367d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Affirm with receipts with count", - "1 | Id : 1", - "2 | Receipt details [1/22] : 8024647588037426477", - "2 | Receipt details [2/22] : 1956080004807840972", - "2 | Receipt details [3/22] : 11328996535317513138", - "2 | Receipt details [4/22] : 2GNWj63odfST5WNYuXQgbNWXUAqN7CwJJZ1e1t", - "2 | Receipt details [5/22] : MV2JCbZQJY", - "2 | Receipt details [6/22] : f440363b7023d6eff3f69f18ed7a799b4056f5", - "2 | Receipt details [7/22] : 2e25c8588f0a8e336087cc8bbff03adc1d81ff", - "2 | Receipt details [8/22] : 36505dcfbc345ad4b3a50ea4e6fb53de709e50", - "2 | Receipt details [9/22] : accf2590dfd5d0", - "2 | Receipt details [10/22] : 81446d78dba83c3a3e590944154ff228d17f65", - "2 | Receipt details [11/22] : a438b579e0b09d7ff42a9de2f4", - "2 | Receipt details [12/22] : 14674692108037962798", - "2 | Receipt details [13/22] : 1573596473620343964", - "2 | Receipt details [14/22] : 5062214123554187043", - "2 | Receipt details [15/22] : 2G1Sjc6AoLsyxH5iFZccz9jQjyZE9g4rii5k31", - "2 | Receipt details [16/22] : mrC9uMFN1d", - "2 | Receipt details [17/22] : 2fca1ffde16457fbd5cd2ccdb86f364df8ae27", - "2 | Receipt details [18/22] : 3c3a24a97d1636f71643f4e923b9335f5fbba0", - "2 | Receipt details [19/22] : 331e14b9df99a5da6450a90f63c6b478abe3ee", - "2 | Receipt details [20/22] : 5171cfc07f6898", - "2 | Receipt details [21/22] : ff761a30521c0062526b574c37a1e067529d1f", - "2 | Receipt details [22/22] : 634310a2444f152ddc6e61e9d5", - "3 | Portfolios : ", - "4 | Number of assets [1/7] : 4274195426", - "4 | Number of assets [2/7] : 1042635573", - "4 | Number of assets [3/7] : 0", - "4 | Number of assets [4/7] : 1306264102", - "4 | Number of assets [5/7] : 1390435324", - "4 | Number of assets [6/7] : 0", - "4 | Number of assets [7/7] : 1736640974", - "5 | Tip : POLYX 0.000987" + "0 | Sto : Create fundraiser", + "1 | Offering portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | Offering portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | Offering portfolio [3/3] : 123456", + "2 | Offering asset : AssetID-12345678", + "3 | Raising portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "3 | Raising portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "3 | Raising portfolio [3/3] : 123456", + "4 | Raising asset : AssetID-12345678", + "5 | Tiers [1/4] : POLYX 123.544848", + "5 | Tiers [2/4] : POLYX 0.001", + "5 | Tiers [3/4] : POLYX 123.544848", + "5 | Tiers [4/4] : POLYX 0.001", + "6 | Venue id : 100", + "7 | Start : 256", + "8 | End : 2048", + "9 | Minimum investment [1/2] : 175199263031626767267885072656780.4869", + "9 | Minimum investment [2/2] : 72", + "10 | Fundraiser name : FundRaiser_Name", + "11 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "11 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Settlement : Affirm with receipts with count", - "1 | Id : 1", - "2 | Receipt details [1/22] : 8024647588037426477", - "2 | Receipt details [2/22] : 1956080004807840972", - "2 | Receipt details [3/22] : 11328996535317513138", - "2 | Receipt details [4/22] : 2GNWj63odfST5WNYuXQgbNWXUAqN7CwJJZ1e1t", - "2 | Receipt details [5/22] : MV2JCbZQJY", - "2 | Receipt details [6/22] : f440363b7023d6eff3f69f18ed7a799b4056f5", - "2 | Receipt details [7/22] : 2e25c8588f0a8e336087cc8bbff03adc1d81ff", - "2 | Receipt details [8/22] : 36505dcfbc345ad4b3a50ea4e6fb53de709e50", - "2 | Receipt details [9/22] : accf2590dfd5d0", - "2 | Receipt details [10/22] : 81446d78dba83c3a3e590944154ff228d17f65", - "2 | Receipt details [11/22] : a438b579e0b09d7ff42a9de2f4", - "2 | Receipt details [12/22] : 14674692108037962798", - "2 | Receipt details [13/22] : 1573596473620343964", - "2 | Receipt details [14/22] : 5062214123554187043", - "2 | Receipt details [15/22] : 2G1Sjc6AoLsyxH5iFZccz9jQjyZE9g4rii5k31", - "2 | Receipt details [16/22] : mrC9uMFN1d", - "2 | Receipt details [17/22] : 2fca1ffde16457fbd5cd2ccdb86f364df8ae27", - "2 | Receipt details [18/22] : 3c3a24a97d1636f71643f4e923b9335f5fbba0", - "2 | Receipt details [19/22] : 331e14b9df99a5da6450a90f63c6b478abe3ee", - "2 | Receipt details [20/22] : 5171cfc07f6898", - "2 | Receipt details [21/22] : ff761a30521c0062526b574c37a1e067529d1f", - "2 | Receipt details [22/22] : 634310a2444f152ddc6e61e9d5", - "3 | Portfolios : ", - "4 | Number of assets [1/7] : 4274195426", - "4 | Number of assets [2/7] : 1042635573", - "4 | Number of assets [3/7] : 0", - "4 | Number of assets [4/7] : 1306264102", - "4 | Number of assets [5/7] : 1390435324", - "4 | Number of assets [6/7] : 0", - "4 | Number of assets [7/7] : 1736640974", - "5 | Chain : Polymesh", - "6 | Nonce : 100", - "7 | Tip : POLYX 0.000987", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sto : Create fundraiser", + "1 | Offering portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | Offering portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | Offering portfolio [3/3] : 123456", + "2 | Offering asset : AssetID-12345678", + "3 | Raising portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "3 | Raising portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "3 | Raising portfolio [3/3] : 123456", + "4 | Raising asset : AssetID-12345678", + "5 | Tiers [1/4] : POLYX 123.544848", + "5 | Tiers [2/4] : POLYX 0.001", + "5 | Tiers [3/4] : POLYX 123.544848", + "5 | Tiers [4/4] : POLYX 0.001", + "6 | Venue id : 100", + "7 | Start : 256", + "8 | End : 2048", + "9 | Minimum investment [1/2] : 175199263031626767267885072656780.4869", + "9 | Minimum investment [2/2] : 72", + "10 | Fundraiser name : FundRaiser_Name", + "11 | Chain : Polymesh", + "12 | Nonce : 100", + "13 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "13 | Tip [2/2] : 3.456789", + "14 | Era Phase : 61", + "15 | Era Period : 64", + "16 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "16 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1322, - "name": "Settlement_Affirm_with_receipts_with_count", - "blob": "250f0100000000000000082d7daa0477465d6fccd4d08e6664251bb2433b4553ae389dad9542cf7f2a34d5f6c9b89323365dd63af4a9a2547922f78215cb1893b015f501f440363b7023d6eff3f69f18ed7a799b4056f52e25c8588f0a8e336087cc8bbff03adc1d81ff36505dcfbc345ad4b3a50ea4e6fb53de709e50accf2590dfd5d00181446d78dba83c3a3e590944154ff228d17f65a438b579e0b09d7ff42a9de2f42ebcd4efb8faa6cb9cacf2cda789d61523a769b3ec9840469d83ac1f00bee071af7e3657fd5f1632d9b600576b6a8e17084b773fd82fb05b002fca1ffde16457fbd5cd2ccdb86f364df8ae273c3a24a97d1636f71643f4e923b9335f5fbba0331e14b9df99a5da6450a90f63c6b478abe3ee5171cfc07f689801ff761a30521c0062526b574c37a1e067529d1f634310a2444f152ddc6e61e9d50857fe7c4bcb4b5321ffd0d4abc20c1f1b9c727bef031bc5c22d41d98cc5ba2fe30140e2010000000000907c51ddeced476ca85354dbee9f2c6869d67fd62e913c2247e0566ce476878b0140e201000000000000d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1299, + "name": "Sto_Create_fundraiser", + "blob": "270032e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000417373657449442d313233343536373832e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000417373657449442d31323334353637380810255d07000000000000000000000000e803000000000000000000000000000010255d07000000000000000000000000e80300000000000000000000000000006bc40000000000000100080000000000000100010000000000003ce97b7ceb2af717b80bbcaa9326ce833c46756e645261697365725f4e616d65d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Affirm with receipts with count", - "1 | Id : 1", - "2 | Receipt details [1/22] : 8024647588037426477", - "2 | Receipt details [2/22] : 1956080004807840972", - "2 | Receipt details [3/22] : 11328996535317513138", - "2 | Receipt details [4/22] : 2GNWj63odfST5WNYuXQgbNWXUAqN7CwJJZ1e1t", - "2 | Receipt details [5/22] : MV2JCbZQJY", - "2 | Receipt details [6/22] : f440363b7023d6eff3f69f18ed7a799b4056f5", - "2 | Receipt details [7/22] : 2e25c8588f0a8e336087cc8bbff03adc1d81ff", - "2 | Receipt details [8/22] : 36505dcfbc345ad4b3a50ea4e6fb53de709e50", - "2 | Receipt details [9/22] : accf2590dfd5d0", - "2 | Receipt details [10/22] : 81446d78dba83c3a3e590944154ff228d17f65", - "2 | Receipt details [11/22] : a438b579e0b09d7ff42a9de2f4", - "2 | Receipt details [12/22] : 14674692108037962798", - "2 | Receipt details [13/22] : 1573596473620343964", - "2 | Receipt details [14/22] : 5062214123554187043", - "2 | Receipt details [15/22] : 2G1Sjc6AoLsyxH5iFZccz9jQjyZE9g4rii5k31", - "2 | Receipt details [16/22] : mrC9uMFN1d", - "2 | Receipt details [17/22] : 2fca1ffde16457fbd5cd2ccdb86f364df8ae27", - "2 | Receipt details [18/22] : 3c3a24a97d1636f71643f4e923b9335f5fbba0", - "2 | Receipt details [19/22] : 331e14b9df99a5da6450a90f63c6b478abe3ee", - "2 | Receipt details [20/22] : 5171cfc07f6898", - "2 | Receipt details [21/22] : ff761a30521c0062526b574c37a1e067529d1f", - "2 | Receipt details [22/22] : 634310a2444f152ddc6e61e9d5", - "3 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "3 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "3 | Portfolios [3/6] : 123456", - "3 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "3 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "3 | Portfolios [6/6] : 123456", - "4 | Number of assets : None", - "5 | Tip : POLYX 55.555555" + "0 | Sto : Create fundraiser", + "1 | Offering portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | Offering portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | Offering portfolio [3/3] : 123456", + "2 | Offering asset : AssetID-12345678", + "3 | Raising portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "3 | Raising portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "3 | Raising portfolio [3/3] : 123456", + "4 | Raising asset : AssetID-12345678", + "5 | Tiers [1/4] : POLYX 123.544848", + "5 | Tiers [2/4] : POLYX 0.001", + "5 | Tiers [3/4] : POLYX 123.544848", + "5 | Tiers [4/4] : POLYX 0.001", + "6 | Venue id : 50283", + "7 | Start : 2048", + "8 | End : 256", + "9 | Minimum investment [1/2] : 175199263031626767267885072656780.4869", + "9 | Minimum investment [2/2] : 72", + "10 | Fundraiser name : FundRaiser_Name", + "11 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Settlement : Affirm with receipts with count", - "1 | Id : 1", - "2 | Receipt details [1/22] : 8024647588037426477", - "2 | Receipt details [2/22] : 1956080004807840972", - "2 | Receipt details [3/22] : 11328996535317513138", - "2 | Receipt details [4/22] : 2GNWj63odfST5WNYuXQgbNWXUAqN7CwJJZ1e1t", - "2 | Receipt details [5/22] : MV2JCbZQJY", - "2 | Receipt details [6/22] : f440363b7023d6eff3f69f18ed7a799b4056f5", - "2 | Receipt details [7/22] : 2e25c8588f0a8e336087cc8bbff03adc1d81ff", - "2 | Receipt details [8/22] : 36505dcfbc345ad4b3a50ea4e6fb53de709e50", - "2 | Receipt details [9/22] : accf2590dfd5d0", - "2 | Receipt details [10/22] : 81446d78dba83c3a3e590944154ff228d17f65", - "2 | Receipt details [11/22] : a438b579e0b09d7ff42a9de2f4", - "2 | Receipt details [12/22] : 14674692108037962798", - "2 | Receipt details [13/22] : 1573596473620343964", - "2 | Receipt details [14/22] : 5062214123554187043", - "2 | Receipt details [15/22] : 2G1Sjc6AoLsyxH5iFZccz9jQjyZE9g4rii5k31", - "2 | Receipt details [16/22] : mrC9uMFN1d", - "2 | Receipt details [17/22] : 2fca1ffde16457fbd5cd2ccdb86f364df8ae27", - "2 | Receipt details [18/22] : 3c3a24a97d1636f71643f4e923b9335f5fbba0", - "2 | Receipt details [19/22] : 331e14b9df99a5da6450a90f63c6b478abe3ee", - "2 | Receipt details [20/22] : 5171cfc07f6898", - "2 | Receipt details [21/22] : ff761a30521c0062526b574c37a1e067529d1f", - "2 | Receipt details [22/22] : 634310a2444f152ddc6e61e9d5", - "3 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "3 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "3 | Portfolios [3/6] : 123456", - "3 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "3 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "3 | Portfolios [6/6] : 123456", - "4 | Number of assets : None", - "5 | Chain : Polymesh", - "6 | Nonce : 0", - "7 | Tip : POLYX 55.555555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sto : Create fundraiser", + "1 | Offering portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | Offering portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | Offering portfolio [3/3] : 123456", + "2 | Offering asset : AssetID-12345678", + "3 | Raising portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "3 | Raising portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "3 | Raising portfolio [3/3] : 123456", + "4 | Raising asset : AssetID-12345678", + "5 | Tiers [1/4] : POLYX 123.544848", + "5 | Tiers [2/4] : POLYX 0.001", + "5 | Tiers [3/4] : POLYX 123.544848", + "5 | Tiers [4/4] : POLYX 0.001", + "6 | Venue id : 50283", + "7 | Start : 2048", + "8 | End : 256", + "9 | Minimum investment [1/2] : 175199263031626767267885072656780.4869", + "9 | Minimum investment [2/2] : 72", + "10 | Fundraiser name : FundRaiser_Name", + "11 | Chain : Polymesh", + "12 | Nonce : 1", + "13 | Tip : POLYX 1234.56789", + "14 | Era Phase : 61", + "15 | Era Period : 64", + "16 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "16 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1323, - "name": "Settlement_Affirm_with_receipts_with_count", - "blob": "250f0100000000000000082d7daa0477465d6fccd4d08e6664251bb2433b4553ae389dad9542cf7f2a34d5f6c9b89323365dd63af4a9a2547922f78215cb1893b015f501f440363b7023d6eff3f69f18ed7a799b4056f52e25c8588f0a8e336087cc8bbff03adc1d81ff36505dcfbc345ad4b3a50ea4e6fb53de709e50accf2590dfd5d00181446d78dba83c3a3e590944154ff228d17f65a438b579e0b09d7ff42a9de2f42ebcd4efb8faa6cb9cacf2cda789d61523a769b3ec9840469d83ac1f00bee071af7e3657fd5f1632d9b600576b6a8e17084b773fd82fb05b002fca1ffde16457fbd5cd2ccdb86f364df8ae273c3a24a97d1636f71643f4e923b9335f5fbba0331e14b9df99a5da6450a90f63c6b478abe3ee5171cfc07f689801ff761a30521c0062526b574c37a1e067529d1f634310a2444f152ddc6e61e9d500011e59b80d071b5d7f00000000635f0221f4d5040f00000000a9a79263d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1300, + "name": "Sto_Create_fundraiser", + "blob": "270032e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000417373657449442d313233343536373832e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000417373657449442d31323334353637380810255d07000000000000000000000000e803000000000000000000000000000010255d07000000000000000000000000e803000000000000000000000000000000000000000000000100080000000000000100080000000000003ce97b7ceb2af717b80bbcaa9326ce833c46756e645261697365725f4e616d65d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Affirm with receipts with count", - "1 | Id : 1", - "2 | Receipt details [1/22] : 8024647588037426477", - "2 | Receipt details [2/22] : 1956080004807840972", - "2 | Receipt details [3/22] : 11328996535317513138", - "2 | Receipt details [4/22] : 2GNWj63odfST5WNYuXQgbNWXUAqN7CwJJZ1e1t", - "2 | Receipt details [5/22] : MV2JCbZQJY", - "2 | Receipt details [6/22] : f440363b7023d6eff3f69f18ed7a799b4056f5", - "2 | Receipt details [7/22] : 2e25c8588f0a8e336087cc8bbff03adc1d81ff", - "2 | Receipt details [8/22] : 36505dcfbc345ad4b3a50ea4e6fb53de709e50", - "2 | Receipt details [9/22] : accf2590dfd5d0", - "2 | Receipt details [10/22] : 81446d78dba83c3a3e590944154ff228d17f65", - "2 | Receipt details [11/22] : a438b579e0b09d7ff42a9de2f4", - "2 | Receipt details [12/22] : 14674692108037962798", - "2 | Receipt details [13/22] : 1573596473620343964", - "2 | Receipt details [14/22] : 5062214123554187043", - "2 | Receipt details [15/22] : 2G1Sjc6AoLsyxH5iFZccz9jQjyZE9g4rii5k31", - "2 | Receipt details [16/22] : mrC9uMFN1d", - "2 | Receipt details [17/22] : 2fca1ffde16457fbd5cd2ccdb86f364df8ae27", - "2 | Receipt details [18/22] : 3c3a24a97d1636f71643f4e923b9335f5fbba0", - "2 | Receipt details [19/22] : 331e14b9df99a5da6450a90f63c6b478abe3ee", - "2 | Receipt details [20/22] : 5171cfc07f6898", - "2 | Receipt details [21/22] : ff761a30521c0062526b574c37a1e067529d1f", - "2 | Receipt details [22/22] : 634310a2444f152ddc6e61e9d5", - "3 | Portfolios : ", - "4 | Number of assets [1/7] : 230185246", - "4 | Number of assets [2/7] : 2136808199", - "4 | Number of assets [3/7] : 0", - "4 | Number of assets [4/7] : 553803619", - "4 | Number of assets [5/7] : 251975156", - "4 | Number of assets [6/7] : 0", - "4 | Number of assets [7/7] : 1670555561", - "5 | Tip : POLYX 5552342.355555" + "0 | Sto : Create fundraiser", + "1 | Offering portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | Offering portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | Offering portfolio [3/3] : 123456", + "2 | Offering asset : AssetID-12345678", + "3 | Raising portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "3 | Raising portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "3 | Raising portfolio [3/3] : 123456", + "4 | Raising asset : AssetID-12345678", + "5 | Tiers [1/4] : POLYX 123.544848", + "5 | Tiers [2/4] : POLYX 0.001", + "5 | Tiers [3/4] : POLYX 123.544848", + "5 | Tiers [4/4] : POLYX 0.001", + "6 | Venue id : 0", + "7 | Start : 2048", + "8 | End : 2048", + "9 | Minimum investment [1/2] : 175199263031626767267885072656780.4869", + "9 | Minimum investment [2/2] : 72", + "10 | Fundraiser name : FundRaiser_Name", + "11 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Settlement : Affirm with receipts with count", - "1 | Id : 1", - "2 | Receipt details [1/22] : 8024647588037426477", - "2 | Receipt details [2/22] : 1956080004807840972", - "2 | Receipt details [3/22] : 11328996535317513138", - "2 | Receipt details [4/22] : 2GNWj63odfST5WNYuXQgbNWXUAqN7CwJJZ1e1t", - "2 | Receipt details [5/22] : MV2JCbZQJY", - "2 | Receipt details [6/22] : f440363b7023d6eff3f69f18ed7a799b4056f5", - "2 | Receipt details [7/22] : 2e25c8588f0a8e336087cc8bbff03adc1d81ff", - "2 | Receipt details [8/22] : 36505dcfbc345ad4b3a50ea4e6fb53de709e50", - "2 | Receipt details [9/22] : accf2590dfd5d0", - "2 | Receipt details [10/22] : 81446d78dba83c3a3e590944154ff228d17f65", - "2 | Receipt details [11/22] : a438b579e0b09d7ff42a9de2f4", - "2 | Receipt details [12/22] : 14674692108037962798", - "2 | Receipt details [13/22] : 1573596473620343964", - "2 | Receipt details [14/22] : 5062214123554187043", - "2 | Receipt details [15/22] : 2G1Sjc6AoLsyxH5iFZccz9jQjyZE9g4rii5k31", - "2 | Receipt details [16/22] : mrC9uMFN1d", - "2 | Receipt details [17/22] : 2fca1ffde16457fbd5cd2ccdb86f364df8ae27", - "2 | Receipt details [18/22] : 3c3a24a97d1636f71643f4e923b9335f5fbba0", - "2 | Receipt details [19/22] : 331e14b9df99a5da6450a90f63c6b478abe3ee", - "2 | Receipt details [20/22] : 5171cfc07f6898", - "2 | Receipt details [21/22] : ff761a30521c0062526b574c37a1e067529d1f", - "2 | Receipt details [22/22] : 634310a2444f152ddc6e61e9d5", - "3 | Portfolios : ", - "4 | Number of assets [1/7] : 230185246", - "4 | Number of assets [2/7] : 2136808199", - "4 | Number of assets [3/7] : 0", - "4 | Number of assets [4/7] : 553803619", - "4 | Number of assets [5/7] : 251975156", - "4 | Number of assets [6/7] : 0", - "4 | Number of assets [7/7] : 1670555561", - "5 | Chain : Polymesh", - "6 | Nonce : 1", - "7 | Tip : POLYX 5552342.355555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sto : Create fundraiser", + "1 | Offering portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | Offering portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | Offering portfolio [3/3] : 123456", + "2 | Offering asset : AssetID-12345678", + "3 | Raising portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "3 | Raising portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "3 | Raising portfolio [3/3] : 123456", + "4 | Raising asset : AssetID-12345678", + "5 | Tiers [1/4] : POLYX 123.544848", + "5 | Tiers [2/4] : POLYX 0.001", + "5 | Tiers [3/4] : POLYX 123.544848", + "5 | Tiers [4/4] : POLYX 0.001", + "6 | Venue id : 0", + "7 | Start : 2048", + "8 | End : 2048", + "9 | Minimum investment [1/2] : 175199263031626767267885072656780.4869", + "9 | Minimum investment [2/2] : 72", + "10 | Fundraiser name : FundRaiser_Name", + "11 | Chain : Polymesh", + "12 | Nonce : 2339", + "13 | Tip : POLYX 5552342.355555", + "14 | Era Phase : 61", + "15 | Era Period : 64", + "16 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "16 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1324, - "name": "Settlement_Affirm_with_receipts_with_count", - "blob": "250f0000000000000000000000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1301, + "name": "Sto_Invest", + "blob": "270132e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e201000000000032e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000417373657449442d313233343536373864000000000000003ce97b7ceb2af717b80bbcaa9326ce8301db03000000000000000000000000000001a027654aad134e332dcf03b6a30cc8812643dc251cec1ce232e009e19bb2017cf420cbaeb000944333d5037c7766ac8db590ed3a3172b3b00097d07d3193ab813c9e3fd5be4981ac23aeec8ba6d192ce052a5470523e9d12c35c509d887a58c8a63b83f3dd4688a07d993e7244153b508a33b0b47912cf981501a73327a8c6d8745450e9515bf7a72dd2c5771169cf00ce5b4422bee13ea2c195d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Affirm with receipts with count", - "1 | Id : 0", - "2 | Receipt details : ", - "3 | Portfolios : ", - "4 | Number of assets : None", - "5 | Tip : POLYX 1234.56789" + "0 | Sto : Invest", + "1 | Investment portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | Investment portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | Investment portfolio [3/3] : 123456", + "2 | Funding portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Funding portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Funding portfolio [3/3] : 123456", + "3 | Offering asset : AssetID-12345678", + "4 | Id : 100", + "5 | Purchase amount [1/2] : 175199263031626767267885072656780.4869", + "5 | Purchase amount [2/2] : 72", + "6 | Max price : POLYX 0.000987", + "7 | Receipt [1/11] : 3696913979116169120", + "7 | Receipt [2/11] : 9351738523507740461", + "7 | Receipt [3/11] : 16293157157558043430", + "7 | Receipt [4/11] : 5DDQodUBDwKSeMQwCFFvDNfJqZPhQFHMUp79ji", + "7 | Receipt [5/11] : yvrBdHSv3s", + "7 | Receipt [6/11] : 97d07d3193ab813c9e3fd5be4981ac23aeec8b", + "7 | Receipt [7/11] : a6d192ce052a5470523e9d12c35c509d887a58", + "7 | Receipt [8/11] : c8a63b83f3dd4688a07d993e7244153b508a33", + "7 | Receipt [9/11] : b0b47912cf9815", + "7 | Receipt [10/11] : a73327a8c6d8745450e9515bf7a72dd2c57711", + "7 | Receipt [11/11] : 69cf00ce5b4422bee13ea2c195", + "8 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Settlement : Affirm with receipts with count", - "1 | Id : 0", - "2 | Receipt details : ", - "3 | Portfolios : ", - "4 | Number of assets : None", - "5 | Chain : Polymesh", - "6 | Nonce : 0", - "7 | Tip : POLYX 1234.56789", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sto : Invest", + "1 | Investment portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | Investment portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | Investment portfolio [3/3] : 123456", + "2 | Funding portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Funding portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Funding portfolio [3/3] : 123456", + "3 | Offering asset : AssetID-12345678", + "4 | Id : 100", + "5 | Purchase amount [1/2] : 175199263031626767267885072656780.4869", + "5 | Purchase amount [2/2] : 72", + "6 | Max price : POLYX 0.000987", + "7 | Receipt [1/11] : 3696913979116169120", + "7 | Receipt [2/11] : 9351738523507740461", + "7 | Receipt [3/11] : 16293157157558043430", + "7 | Receipt [4/11] : 5DDQodUBDwKSeMQwCFFvDNfJqZPhQFHMUp79ji", + "7 | Receipt [5/11] : yvrBdHSv3s", + "7 | Receipt [6/11] : 97d07d3193ab813c9e3fd5be4981ac23aeec8b", + "7 | Receipt [7/11] : a6d192ce052a5470523e9d12c35c509d887a58", + "7 | Receipt [8/11] : c8a63b83f3dd4688a07d993e7244153b508a33", + "7 | Receipt [9/11] : b0b47912cf9815", + "7 | Receipt [10/11] : a73327a8c6d8745450e9515bf7a72dd2c57711", + "7 | Receipt [11/11] : 69cf00ce5b4422bee13ea2c195", + "8 | Chain : Polymesh", + "9 | Nonce : 50283", + "10 | Tip : POLYX 5552342.355555", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1325, - "name": "Settlement_Affirm_with_receipts_with_count", - "blob": "250f0100000000000000000857fe7c4bcb4b5321ffd0d4abc20c1f1b9c727bef031bc5c22d41d98cc5ba2fe30140e2010000000000907c51ddeced476ca85354dbee9f2c6869d67fd62e913c2247e0566ce476878b0140e201000000000001c74b2e04e3af2b78000000008ac3bb2adf792d7900000000c33bcf23d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1302, + "name": "Sto_Invest", + "blob": "270132e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e201000000000032e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000417373657449442d313233343536373823090000000000003ce97b7ceb2af717b80bbcaa9326ce83010000000000000000000000000000000001c91529c4a635bc434bbed25484e34e0dd6e6ff193be4d57f9e1f99ec09c6b28b4828510d3c23a9b22e76b0d6a3873470763ee5cee88f8ab901029ec70ddabe17c2457660c4f8b334253fbb7ab3333fb86807e7676b546d5d572d67ad16e88421e00661e462ec385ff17c81cc7b18e54ae38b9e88ced8d848b0017f504508083dea5e2579e6359df254a037c33b45932fb2873a4fe456d491792cd503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Affirm with receipts with count", - "1 | Id : 1", - "2 | Receipt details : ", - "3 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "3 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "3 | Portfolios [3/6] : 123456", - "3 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "3 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "3 | Portfolios [6/6] : 123456", - "4 | Number of assets [1/7] : 70142919", - "4 | Number of assets [2/7] : 2016128995", - "4 | Number of assets [3/7] : 0", - "4 | Number of assets [4/7] : 716948362", - "4 | Number of assets [5/7] : 2033023455", - "4 | Number of assets [6/7] : 0", - "4 | Number of assets [7/7] : 600783811" + "0 | Sto : Invest", + "1 | Investment portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | Investment portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | Investment portfolio [3/3] : 123456", + "2 | Funding portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Funding portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Funding portfolio [3/3] : 123456", + "3 | Offering asset : AssetID-12345678", + "4 | Id : 2339", + "5 | Purchase amount [1/2] : 175199263031626767267885072656780.4869", + "5 | Purchase amount [2/2] : 72", + "6 | Max price : POLYX 0.0", + "7 | Receipt [1/11] : 4880835086534645193", + "7 | Receipt [2/11] : 958953928174779979", + "7 | Receipt [3/11] : 9211519555346622166", + "7 | Receipt [4/11] : 5Fe2oxhfs6GtynYuLoSWdeXBvgqCB8cjY2naHJ", + "7 | Receipt [5/11] : ubD9TMaBeL", + "7 | Receipt [6/11] : 029ec70ddabe17c2457660c4f8b334253fbb7a", + "7 | Receipt [7/11] : b3333fb86807e7676b546d5d572d67ad16e884", + "7 | Receipt [8/11] : 21e00661e462ec385ff17c81cc7b18e54ae38b", + "7 | Receipt [9/11] : 9e88ced8d848b0", + "7 | Receipt [10/11] : 7f504508083dea5e2579e6359df254a037c33b", + "7 | Receipt [11/11] : 45932fb2873a4fe456d491792c", + "8 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Settlement : Affirm with receipts with count", - "1 | Id : 1", - "2 | Receipt details : ", - "3 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "3 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "3 | Portfolios [3/6] : 123456", - "3 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "3 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "3 | Portfolios [6/6] : 123456", - "4 | Number of assets [1/7] : 70142919", - "4 | Number of assets [2/7] : 2016128995", - "4 | Number of assets [3/7] : 0", - "4 | Number of assets [4/7] : 716948362", - "4 | Number of assets [5/7] : 2033023455", - "4 | Number of assets [6/7] : 0", - "4 | Number of assets [7/7] : 600783811", - "5 | Chain : Polymesh", - "6 | Nonce : 0", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sto : Invest", + "1 | Investment portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | Investment portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | Investment portfolio [3/3] : 123456", + "2 | Funding portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Funding portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Funding portfolio [3/3] : 123456", + "3 | Offering asset : AssetID-12345678", + "4 | Id : 2339", + "5 | Purchase amount [1/2] : 175199263031626767267885072656780.4869", + "5 | Purchase amount [2/2] : 72", + "6 | Max price : POLYX 0.0", + "7 | Receipt [1/11] : 4880835086534645193", + "7 | Receipt [2/11] : 958953928174779979", + "7 | Receipt [3/11] : 9211519555346622166", + "7 | Receipt [4/11] : 5Fe2oxhfs6GtynYuLoSWdeXBvgqCB8cjY2naHJ", + "7 | Receipt [5/11] : ubD9TMaBeL", + "7 | Receipt [6/11] : 029ec70ddabe17c2457660c4f8b334253fbb7a", + "7 | Receipt [7/11] : b3333fb86807e7676b546d5d572d67ad16e884", + "7 | Receipt [8/11] : 21e00661e462ec385ff17c81cc7b18e54ae38b", + "7 | Receipt [9/11] : 9e88ced8d848b0", + "7 | Receipt [10/11] : 7f504508083dea5e2579e6359df254a037c33b", + "7 | Receipt [11/11] : 45932fb2873a4fe456d491792c", + "8 | Chain : Polymesh", + "9 | Nonce : 50283", + "10 | Tip : POLYX 1234.56789", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1326, - "name": "Settlement_Affirm_instruction_with_count", - "blob": "251023090000000000000001e20bc3fe355b253e000000002602dc4dfc5be05200000000ce098367d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1303, + "name": "Sto_Invest", + "blob": "270132e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e201000000000032e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000417373657449442d313233343536373800000000000000003ce97b7ceb2af717b80bbcaa9326ce8301d202964900000000000000000000000000d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Affirm instruction with count", - "1 | Id : 2339", - "2 | Portfolios : ", - "3 | Number of assets [1/7] : 4274195426", - "3 | Number of assets [2/7] : 1042635573", - "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 1306264102", - "3 | Number of assets [5/7] : 1390435324", - "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 1736640974" + "0 | Sto : Invest", + "1 | Investment portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | Investment portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | Investment portfolio [3/3] : 123456", + "2 | Funding portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Funding portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Funding portfolio [3/3] : 123456", + "3 | Offering asset : AssetID-12345678", + "4 | Id : 0", + "5 | Purchase amount [1/2] : 175199263031626767267885072656780.4869", + "5 | Purchase amount [2/2] : 72", + "6 | Max price : POLYX 1234.56789", + "7 | Receipt : None", + "8 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Settlement : Affirm instruction with count", - "1 | Id : 2339", - "2 | Portfolios : ", - "3 | Number of assets [1/7] : 4274195426", - "3 | Number of assets [2/7] : 1042635573", - "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 1306264102", - "3 | Number of assets [5/7] : 1390435324", - "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 1736640974", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sto : Invest", + "1 | Investment portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | Investment portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | Investment portfolio [3/3] : 123456", + "2 | Funding portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Funding portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Funding portfolio [3/3] : 123456", + "3 | Offering asset : AssetID-12345678", + "4 | Id : 0", + "5 | Purchase amount [1/2] : 175199263031626767267885072656780.4869", + "5 | Purchase amount [2/2] : 72", + "6 | Max price : POLYX 1234.56789", + "7 | Receipt : None", + "8 | Chain : Polymesh", + "9 | Nonce : 100", + "10 | Tip : POLYX 0.000987", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1327, - "name": "Settlement_Affirm_instruction_with_count", - "blob": "251023090000000000000000d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1304, + "name": "Sto_Invest", + "blob": "270132e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e201000000000032e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000417373657449442d313233343536373801000000000000003ce97b7ceb2af717b80bbcaa9326ce8301d202964900000000000000000000000001c91529c4a635bc434bbed25484e34e0dd6e6ff193be4d57f9e1f99ec09c6b28b4828510d3c23a9b22e76b0d6a3873470763ee5cee88f8ab901029ec70ddabe17c2457660c4f8b334253fbb7ab3333fb86807e7676b546d5d572d67ad16e88421e00661e462ec385ff17c81cc7b18e54ae38b9e88ced8d848b0017f504508083dea5e2579e6359df254a037c33b45932fb2873a4fe456d491792cd503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Affirm instruction with count", - "1 | Id : 2339", - "2 | Portfolios : ", - "3 | Number of assets : None", - "4 | Tip : POLYX 0.000987" + "0 | Sto : Invest", + "1 | Investment portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | Investment portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | Investment portfolio [3/3] : 123456", + "2 | Funding portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Funding portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Funding portfolio [3/3] : 123456", + "3 | Offering asset : AssetID-12345678", + "4 | Id : 1", + "5 | Purchase amount [1/2] : 175199263031626767267885072656780.4869", + "5 | Purchase amount [2/2] : 72", + "6 | Max price : POLYX 1234.56789", + "7 | Receipt [1/11] : 4880835086534645193", + "7 | Receipt [2/11] : 958953928174779979", + "7 | Receipt [3/11] : 9211519555346622166", + "7 | Receipt [4/11] : 5Fe2oxhfs6GtynYuLoSWdeXBvgqCB8cjY2naHJ", + "7 | Receipt [5/11] : ubD9TMaBeL", + "7 | Receipt [6/11] : 029ec70ddabe17c2457660c4f8b334253fbb7a", + "7 | Receipt [7/11] : b3333fb86807e7676b546d5d572d67ad16e884", + "7 | Receipt [8/11] : 21e00661e462ec385ff17c81cc7b18e54ae38b", + "7 | Receipt [9/11] : 9e88ced8d848b0", + "7 | Receipt [10/11] : 7f504508083dea5e2579e6359df254a037c33b", + "7 | Receipt [11/11] : 45932fb2873a4fe456d491792c", + "8 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Settlement : Affirm instruction with count", - "1 | Id : 2339", - "2 | Portfolios : ", - "3 | Number of assets : None", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sto : Invest", + "1 | Investment portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | Investment portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | Investment portfolio [3/3] : 123456", + "2 | Funding portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Funding portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Funding portfolio [3/3] : 123456", + "3 | Offering asset : AssetID-12345678", + "4 | Id : 1", + "5 | Purchase amount [1/2] : 175199263031626767267885072656780.4869", + "5 | Purchase amount [2/2] : 72", + "6 | Max price : POLYX 1234.56789", + "7 | Receipt [1/11] : 4880835086534645193", + "7 | Receipt [2/11] : 958953928174779979", + "7 | Receipt [3/11] : 9211519555346622166", + "7 | Receipt [4/11] : 5Fe2oxhfs6GtynYuLoSWdeXBvgqCB8cjY2naHJ", + "7 | Receipt [5/11] : ubD9TMaBeL", + "7 | Receipt [6/11] : 029ec70ddabe17c2457660c4f8b334253fbb7a", + "7 | Receipt [7/11] : b3333fb86807e7676b546d5d572d67ad16e884", + "7 | Receipt [8/11] : 21e00661e462ec385ff17c81cc7b18e54ae38b", + "7 | Receipt [9/11] : 9e88ced8d848b0", + "7 | Receipt [10/11] : 7f504508083dea5e2579e6359df254a037c33b", + "7 | Receipt [11/11] : 45932fb2873a4fe456d491792c", + "8 | Chain : Polymesh", + "9 | Nonce : 1", + "10 | Tip : POLYX 55.555555", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1328, - "name": "Settlement_Affirm_instruction_with_count", - "blob": "251064000000000000000857fe7c4bcb4b5321ffd0d4abc20c1f1b9c727bef031bc5c22d41d98cc5ba2fe30140e2010000000000907c51ddeced476ca85354dbee9f2c6869d67fd62e913c2247e0566ce476878b0140e201000000000001e20bc3fe355b253e000000002602dc4dfc5be05200000000ce098367d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1305, + "name": "Sto_Invest", + "blob": "270132e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e201000000000032e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000417373657449442d313233343536373800000000000000003ce97b7ceb2af717b80bbcaa9326ce83010000000000000000000000000000000001a027654aad134e332dcf03b6a30cc8812643dc251cec1ce232e009e19bb2017cf420cbaeb000944333d5037c7766ac8db590ed3a3172b3b00097d07d3193ab813c9e3fd5be4981ac23aeec8ba6d192ce052a5470523e9d12c35c509d887a58c8a63b83f3dd4688a07d993e7244153b508a33b0b47912cf981501a73327a8c6d8745450e9515bf7a72dd2c5771169cf00ce5b4422bee13ea2c195d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Affirm instruction with count", - "1 | Id : 100", - "2 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "2 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "2 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "2 | Portfolios [6/6] : 123456", - "3 | Number of assets [1/7] : 4274195426", - "3 | Number of assets [2/7] : 1042635573", - "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 1306264102", - "3 | Number of assets [5/7] : 1390435324", - "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 1736640974", - "4 | Tip : POLYX 0.000987" + "0 | Sto : Invest", + "1 | Investment portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | Investment portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | Investment portfolio [3/3] : 123456", + "2 | Funding portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Funding portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Funding portfolio [3/3] : 123456", + "3 | Offering asset : AssetID-12345678", + "4 | Id : 0", + "5 | Purchase amount [1/2] : 175199263031626767267885072656780.4869", + "5 | Purchase amount [2/2] : 72", + "6 | Max price : POLYX 0.0", + "7 | Receipt [1/11] : 3696913979116169120", + "7 | Receipt [2/11] : 9351738523507740461", + "7 | Receipt [3/11] : 16293157157558043430", + "7 | Receipt [4/11] : 5DDQodUBDwKSeMQwCFFvDNfJqZPhQFHMUp79ji", + "7 | Receipt [5/11] : yvrBdHSv3s", + "7 | Receipt [6/11] : 97d07d3193ab813c9e3fd5be4981ac23aeec8b", + "7 | Receipt [7/11] : a6d192ce052a5470523e9d12c35c509d887a58", + "7 | Receipt [8/11] : c8a63b83f3dd4688a07d993e7244153b508a33", + "7 | Receipt [9/11] : b0b47912cf9815", + "7 | Receipt [10/11] : a73327a8c6d8745450e9515bf7a72dd2c57711", + "7 | Receipt [11/11] : 69cf00ce5b4422bee13ea2c195", + "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "8 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Settlement : Affirm instruction with count", - "1 | Id : 100", - "2 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "2 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "2 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "2 | Portfolios [6/6] : 123456", - "3 | Number of assets [1/7] : 4274195426", - "3 | Number of assets [2/7] : 1042635573", - "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 1306264102", - "3 | Number of assets [5/7] : 1390435324", - "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 1736640974", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sto : Invest", + "1 | Investment portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "1 | Investment portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "1 | Investment portfolio [3/3] : 123456", + "2 | Funding portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Funding portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Funding portfolio [3/3] : 123456", + "3 | Offering asset : AssetID-12345678", + "4 | Id : 0", + "5 | Purchase amount [1/2] : 175199263031626767267885072656780.4869", + "5 | Purchase amount [2/2] : 72", + "6 | Max price : POLYX 0.0", + "7 | Receipt [1/11] : 3696913979116169120", + "7 | Receipt [2/11] : 9351738523507740461", + "7 | Receipt [3/11] : 16293157157558043430", + "7 | Receipt [4/11] : 5DDQodUBDwKSeMQwCFFvDNfJqZPhQFHMUp79ji", + "7 | Receipt [5/11] : yvrBdHSv3s", + "7 | Receipt [6/11] : 97d07d3193ab813c9e3fd5be4981ac23aeec8b", + "7 | Receipt [7/11] : a6d192ce052a5470523e9d12c35c509d887a58", + "7 | Receipt [8/11] : c8a63b83f3dd4688a07d993e7244153b508a33", + "7 | Receipt [9/11] : b0b47912cf9815", + "7 | Receipt [10/11] : a73327a8c6d8745450e9515bf7a72dd2c57711", + "7 | Receipt [11/11] : 69cf00ce5b4422bee13ea2c195", + "8 | Chain : Polymesh", + "9 | Nonce : 2339", + "10 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "10 | Tip [2/2] : 3.456789", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1329, - "name": "Settlement_Affirm_instruction_with_count", - "blob": "251023090000000000000857fe7c4bcb4b5321ffd0d4abc20c1f1b9c727bef031bc5c22d41d98cc5ba2fe30140e2010000000000907c51ddeced476ca85354dbee9f2c6869d67fd62e913c2247e0566ce476878b0140e201000000000001c74b2e04e3af2b78000000008ac3bb2adf792d7900000000c33bcf23d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1306, + "name": "Sto_Freeze_fundraiser", + "blob": "2702417373657449442d31323334353637386bc4000000000000d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Affirm instruction with count", - "1 | Id : 2339", - "2 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "2 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "2 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "2 | Portfolios [6/6] : 123456", - "3 | Number of assets [1/7] : 70142919", - "3 | Number of assets [2/7] : 2016128995", - "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 716948362", - "3 | Number of assets [5/7] : 2033023455", - "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 600783811" + "0 | Sto : Freeze fundraiser", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 50283", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Settlement : Affirm instruction with count", - "1 | Id : 2339", - "2 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "2 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "2 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "2 | Portfolios [6/6] : 123456", - "3 | Number of assets [1/7] : 70142919", - "3 | Number of assets [2/7] : 2016128995", - "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 716948362", - "3 | Number of assets [5/7] : 2033023455", - "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 600783811", - "4 | Chain : Polymesh", - "5 | Nonce : 0", + "0 | Sto : Freeze fundraiser", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 50283", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1330, - "name": "Settlement_Affirm_instruction_with_count", - "blob": "251000000000000000000857fe7c4bcb4b5321ffd0d4abc20c1f1b9c727bef031bc5c22d41d98cc5ba2fe30140e2010000000000907c51ddeced476ca85354dbee9f2c6869d67fd62e913c2247e0566ce476878b0140e201000000000001c74b2e04e3af2b78000000008ac3bb2adf792d7900000000c33bcf23d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1307, + "name": "Sto_Freeze_fundraiser", + "blob": "2702417373657449442d31323334353637386400000000000000d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Affirm instruction with count", - "1 | Id : 0", - "2 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "2 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "2 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "2 | Portfolios [6/6] : 123456", - "3 | Number of assets [1/7] : 70142919", - "3 | Number of assets [2/7] : 2016128995", - "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 716948362", - "3 | Number of assets [5/7] : 2033023455", - "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 600783811", - "4 | Tip : POLYX 55.555555" + "0 | Sto : Freeze fundraiser", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 100", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Settlement : Affirm instruction with count", - "1 | Id : 0", - "2 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "2 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "2 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "2 | Portfolios [6/6] : 123456", - "3 | Number of assets [1/7] : 70142919", - "3 | Number of assets [2/7] : 2016128995", - "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 716948362", - "3 | Number of assets [5/7] : 2033023455", - "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 600783811", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sto : Freeze fundraiser", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 100", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1331, - "name": "Settlement_Reject_instruction_with_count", - "blob": "2511010000000000000064af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e201000000000001fcf0f8cf552dd8b400000000d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1308, + "name": "Sto_Freeze_fundraiser", + "blob": "2702417373657449442d31323334353637382309000000000000d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Reject instruction with count", - "1 | Id : 1", - "2 | Portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio [3/3] : 123456", - "3 | Number of assets [1/3] : 3489198332", - "3 | Number of assets [2/3] : 3034066261", - "3 | Number of assets [3/3] : 0", - "4 | Tip : POLYX 1234.56789" + "0 | Sto : Freeze fundraiser", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 2339", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Settlement : Reject instruction with count", - "1 | Id : 1", - "2 | Portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio [3/3] : 123456", - "3 | Number of assets [1/3] : 3489198332", - "3 | Number of assets [2/3] : 3034066261", - "3 | Number of assets [3/3] : 0", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sto : Freeze fundraiser", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 2339", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1332, - "name": "Settlement_Reject_instruction_with_count", - "blob": "2511000000000000000064af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e201000000000001e0219c188956bb4d00000000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1309, + "name": "Sto_Freeze_fundraiser", + "blob": "2702417373657449442d31323334353637380100000000000000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Reject instruction with count", - "1 | Id : 0", - "2 | Portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio [3/3] : 123456", - "3 | Number of assets [1/3] : 412885472", - "3 | Number of assets [2/3] : 1304123017", - "3 | Number of assets [3/3] : 0", - "4 | Tip : POLYX 5552342.355555" + "0 | Sto : Freeze fundraiser", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 1", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Settlement : Reject instruction with count", - "1 | Id : 0", - "2 | Portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio [3/3] : 123456", - "3 | Number of assets [1/3] : 412885472", - "3 | Number of assets [2/3] : 1304123017", - "3 | Number of assets [3/3] : 0", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sto : Freeze fundraiser", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 1", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1333, - "name": "Settlement_Reject_instruction_with_count", - "blob": "2511230900000000000064af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e201000000000001ea6cd530f369b30900000000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1310, + "name": "Sto_Freeze_fundraiser", + "blob": "2702417373657449442d31323334353637382309000000000000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Reject instruction with count", - "1 | Id : 2339", - "2 | Portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio [3/3] : 123456", - "3 | Number of assets [1/3] : 819293418", - "3 | Number of assets [2/3] : 162753011", - "3 | Number of assets [3/3] : 0" + "0 | Sto : Freeze fundraiser", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 2339", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Settlement : Reject instruction with count", - "1 | Id : 2339", - "2 | Portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio [3/3] : 123456", - "3 | Number of assets [1/3] : 819293418", - "3 | Number of assets [2/3] : 162753011", - "3 | Number of assets [3/3] : 0", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", + "0 | Sto : Freeze fundraiser", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 2339", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1334, - "name": "Settlement_Reject_instruction_with_count", - "blob": "2511640000000000000064af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e201000000000001fcf0f8cf552dd8b400000000d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1311, + "name": "Sto_Unfreeze_fundraiser", + "blob": "2703417373657449442d31323334353637386bc4000000000000d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Reject instruction with count", - "1 | Id : 100", - "2 | Portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio [3/3] : 123456", - "3 | Number of assets [1/3] : 3489198332", - "3 | Number of assets [2/3] : 3034066261", - "3 | Number of assets [3/3] : 0" + "0 | Sto : Unfreeze fundraiser", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 50283", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Settlement : Reject instruction with count", - "1 | Id : 100", - "2 | Portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio [3/3] : 123456", - "3 | Number of assets [1/3] : 3489198332", - "3 | Number of assets [2/3] : 3034066261", - "3 | Number of assets [3/3] : 0", - "4 | Chain : Polymesh", - "5 | Nonce : 1", + "0 | Sto : Unfreeze fundraiser", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 50283", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1335, - "name": "Settlement_Reject_instruction_with_count", - "blob": "2511640000000000000064af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e201000000000001e0219c188956bb4d00000000d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1312, + "name": "Sto_Unfreeze_fundraiser", + "blob": "2703417373657449442d31323334353637380100000000000000d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Reject instruction with count", - "1 | Id : 100", - "2 | Portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio [3/3] : 123456", - "3 | Number of assets [1/3] : 412885472", - "3 | Number of assets [2/3] : 1304123017", - "3 | Number of assets [3/3] : 0", - "4 | Tip : POLYX 0.000987" + "0 | Sto : Unfreeze fundraiser", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 1", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Settlement : Reject instruction with count", - "1 | Id : 100", - "2 | Portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Portfolio [3/3] : 123456", - "3 | Number of assets [1/3] : 412885472", - "3 | Number of assets [2/3] : 1304123017", - "3 | Number of assets [3/3] : 0", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sto : Unfreeze fundraiser", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 1", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1336, - "name": "Settlement_Withdraw_affirmation_with_count", - "blob": "251264000000000000000000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1313, + "name": "Sto_Unfreeze_fundraiser", + "blob": "2703417373657449442d31323334353637382309000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Withdraw affirmation with count", - "1 | Id : 100", - "2 | Portfolios : ", - "3 | Number of assets : None", - "4 | Tip : POLYX 5552342.355555" + "0 | Sto : Unfreeze fundraiser", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 2339", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Settlement : Withdraw affirmation with count", - "1 | Id : 100", - "2 | Portfolios : ", - "3 | Number of assets : None", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sto : Unfreeze fundraiser", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 2339", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1337, - "name": "Settlement_Withdraw_affirmation_with_count", - "blob": "2512010000000000000000011e59b80d071b5d7f00000000635f0221f4d5040f00000000a9a79263d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1314, + "name": "Sto_Unfreeze_fundraiser", + "blob": "2703417373657449442d31323334353637382309000000000000d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Withdraw affirmation with count", - "1 | Id : 1", - "2 | Portfolios : ", - "3 | Number of assets [1/7] : 230185246", - "3 | Number of assets [2/7] : 2136808199", - "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 553803619", - "3 | Number of assets [5/7] : 251975156", - "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 1670555561", - "4 | Tip : POLYX 55.555555" + "0 | Sto : Unfreeze fundraiser", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 2339", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Settlement : Withdraw affirmation with count", - "1 | Id : 1", - "2 | Portfolios : ", - "3 | Number of assets [1/7] : 230185246", - "3 | Number of assets [2/7] : 2136808199", - "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 553803619", - "3 | Number of assets [5/7] : 251975156", - "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 1670555561", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sto : Unfreeze fundraiser", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 2339", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1338, - "name": "Settlement_Withdraw_affirmation_with_count", - "blob": "251223090000000000000001c74b2e04e3af2b78000000008ac3bb2adf792d7900000000c33bcf23d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1315, + "name": "Sto_Unfreeze_fundraiser", + "blob": "2703417373657449442d31323334353637380100000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Withdraw affirmation with count", - "1 | Id : 2339", - "2 | Portfolios : ", - "3 | Number of assets [1/7] : 70142919", - "3 | Number of assets [2/7] : 2016128995", - "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 716948362", - "3 | Number of assets [5/7] : 2033023455", - "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 600783811", - "4 | Tip : POLYX 0.000987" + "0 | Sto : Unfreeze fundraiser", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 1", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Settlement : Withdraw affirmation with count", - "1 | Id : 2339", - "2 | Portfolios : ", - "3 | Number of assets [1/7] : 70142919", - "3 | Number of assets [2/7] : 2016128995", - "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 716948362", - "3 | Number of assets [5/7] : 2033023455", - "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 600783811", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sto : Unfreeze fundraiser", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 1", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1339, - "name": "Settlement_Withdraw_affirmation_with_count", - "blob": "251200000000000000000001c74b2e04e3af2b78000000008ac3bb2adf792d7900000000c33bcf23d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1316, + "name": "Sto_Modify_fundraiser_window", + "blob": "2704417373657449442d31323334353637386bc40000000000000001000000000000018000000000000000d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Withdraw affirmation with count", - "1 | Id : 0", - "2 | Portfolios : ", - "3 | Number of assets [1/7] : 70142919", - "3 | Number of assets [2/7] : 2016128995", - "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 716948362", - "3 | Number of assets [5/7] : 2033023455", - "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 600783811", - "4 | Tip : POLYX 5552342.355555" + "0 | Sto : Modify fundraiser window", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 50283", + "3 | Start : 256", + "4 | End : 128", + "5 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Settlement : Withdraw affirmation with count", - "1 | Id : 0", - "2 | Portfolios : ", - "3 | Number of assets [1/7] : 70142919", - "3 | Number of assets [2/7] : 2016128995", - "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 716948362", - "3 | Number of assets [5/7] : 2033023455", - "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 600783811", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sto : Modify fundraiser window", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 50283", + "3 | Start : 256", + "4 | End : 128", + "5 | Chain : Polymesh", + "6 | Nonce : 50283", + "7 | Tip : POLYX 5552342.355555", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1340, - "name": "Settlement_Withdraw_affirmation_with_count", - "blob": "2512230900000000000000011e59b80d071b5d7f00000000635f0221f4d5040f00000000a9a79263d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1317, + "name": "Sto_Modify_fundraiser_window", + "blob": "2704417373657449442d313233343536373800000000000000000001000000000000010001000000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Withdraw affirmation with count", - "1 | Id : 2339", - "2 | Portfolios : ", - "3 | Number of assets [1/7] : 230185246", - "3 | Number of assets [2/7] : 2136808199", - "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 553803619", - "3 | Number of assets [5/7] : 251975156", - "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 1670555561", - "4 | Tip : POLYX 0.000987" + "0 | Sto : Modify fundraiser window", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 0", + "3 | Start : 256", + "4 | End : 256", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Settlement : Withdraw affirmation with count", - "1 | Id : 2339", - "2 | Portfolios : ", - "3 | Number of assets [1/7] : 230185246", - "3 | Number of assets [2/7] : 2136808199", - "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 553803619", - "3 | Number of assets [5/7] : 251975156", - "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 1670555561", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sto : Modify fundraiser window", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 0", + "3 | Start : 256", + "4 | End : 256", + "5 | Chain : Polymesh", + "6 | Nonce : 50283", + "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "7 | Tip [2/2] : 3.456789", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1341, - "name": "Settlement_Add_instruction_with_mediators", - "blob": "25130000000000000000012cfa1c700100080000000000000100010000000000000001664c968727fc8fb62cd51bfa0f8ee2946af0b10beb0dc7fe48041da6090d46a6100168dfe955f516139c7c64b35df31e045f02b9aa8c1994a8781f2c25cf41929c2224b9ddbc5dfbf72594439d7fecfcf3469bcec5ec29bc0057b0f2ab747643a6e43a6d9977947c98b68079c488fa9df9ac86ab646dda367ed14db6830b7a84e7ee66291a1fe9762ffbbfc55ad42e9eef37c16c29a074ab3e186ddc178c1f5809d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1318, + "name": "Sto_Modify_fundraiser_window", + "blob": "2704417373657449442d313233343536373800000000000000008000000000000000010001000000000000d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Add instruction with mediators", - "1 | Venue id : 0", - "2 | Settlement type : 1880947244", - "3 | Trade date : 2048", - "4 | Value date : 256", - "5 | Legs : ", - "6 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "6 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "7 | Mediators [1/8] : 0168dfe955f516139c7c64b35df31e045f02b9", - "7 | Mediators [2/8] : aa8c1994a8781f2c25cf41929c", - "7 | Mediators [3/8] : 2224b9ddbc5dfbf72594439d7fecfcf3469bce", - "7 | Mediators [4/8] : c5ec29bc0057b0f2ab747643a6", - "7 | Mediators [5/8] : e43a6d9977947c98b68079c488fa9df9ac86ab", - "7 | Mediators [6/8] : 646dda367ed14db6830b7a84e7", - "7 | Mediators [7/8] : ee66291a1fe9762ffbbfc55ad42e9eef37c16c", - "7 | Mediators [8/8] : 29a074ab3e186ddc178c1f5809" + "0 | Sto : Modify fundraiser window", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 0", + "3 | Start : 128", + "4 | End : 256", + "5 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Settlement : Add instruction with mediators", - "1 | Venue id : 0", - "2 | Settlement type : 1880947244", - "3 | Trade date : 2048", - "4 | Value date : 256", - "5 | Legs : ", - "6 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "6 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "7 | Mediators [1/8] : 0168dfe955f516139c7c64b35df31e045f02b9", - "7 | Mediators [2/8] : aa8c1994a8781f2c25cf41929c", - "7 | Mediators [3/8] : 2224b9ddbc5dfbf72594439d7fecfcf3469bce", - "7 | Mediators [4/8] : c5ec29bc0057b0f2ab747643a6", - "7 | Mediators [5/8] : e43a6d9977947c98b68079c488fa9df9ac86ab", - "7 | Mediators [6/8] : 646dda367ed14db6830b7a84e7", - "7 | Mediators [7/8] : ee66291a1fe9762ffbbfc55ad42e9eef37c16c", - "7 | Mediators [8/8] : 29a074ab3e186ddc178c1f5809", - "8 | Chain : Polymesh", - "9 | Nonce : 2339", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sto : Modify fundraiser window", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 0", + "3 | Start : 128", + "4 | End : 256", + "5 | Chain : Polymesh", + "6 | Nonce : 2339", + "7 | Tip : POLYX 1234.56789", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1342, - "name": "Settlement_Add_instruction_with_mediators", - "blob": "25130100000000000000012cfa1c700180000000000000000180000000000000000402ab5da1448af7946ed14d82fef3add7cb8734abfd6c4d85ad1399dd57f7de94e1eb58190fa5424caf196c69b048e254111eb4e7115f3664477471fc777ba8c7fd5449434b45522d3334353637440ad87b41425869d6ff2d763d3656e901664c968727fc8fb62cd51bfa0f8ee2946af0b10beb0dc7fe48041da6090d46a6082726fd65c4b7992d4c0bbd39b396994c3a676c3c33ccdc7ef6733631bd0ea4c22b21088f6c45f8473f63376105b048397f3b39e15c29534d8ad4817fe4f94817d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1319, + "name": "Sto_Modify_fundraiser_window", + "blob": "2704417373657449442d313233343536373864000000000000000008000000000000018000000000000000d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Add instruction with mediators", - "1 | Venue id : 1", - "2 | Settlement type : 1880947244", - "3 | Trade date : 128", - "4 | Value date : 128", - "5 | Legs [1/7] : ab5da1448af7946ed14d82fef3add7cb8734ab", - "5 | Legs [2/7] : fd6c4d85ad1399dd57f7de94e1", - "5 | Legs [3/7] : eb58190fa5424caf196c69b048e254111eb4e7", - "5 | Legs [4/7] : 115f3664477471fc777ba8c7fd", - "5 | Legs [5/7] : TICKER-34567", - "5 | Legs [6/7] : 310157760667330745102416784064094.1450", - "5 | Legs [7/7] : 92", - "6 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "6 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "7 | Mediators [1/4] : 2726fd65c4b7992d4c0bbd39b396994c3a676c", - "7 | Mediators [2/4] : 3c33ccdc7ef6733631bd0ea4c2", - "7 | Mediators [3/4] : 2b21088f6c45f8473f63376105b048397f3b39", - "7 | Mediators [4/4] : e15c29534d8ad4817fe4f94817", - "8 | Tip : POLYX 1234.56789" + "0 | Sto : Modify fundraiser window", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 100", + "3 | Start : 2048", + "4 | End : 128", + "5 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Settlement : Add instruction with mediators", - "1 | Venue id : 1", - "2 | Settlement type : 1880947244", - "3 | Trade date : 128", - "4 | Value date : 128", - "5 | Legs [1/7] : ab5da1448af7946ed14d82fef3add7cb8734ab", - "5 | Legs [2/7] : fd6c4d85ad1399dd57f7de94e1", - "5 | Legs [3/7] : eb58190fa5424caf196c69b048e254111eb4e7", - "5 | Legs [4/7] : 115f3664477471fc777ba8c7fd", - "5 | Legs [5/7] : TICKER-34567", - "5 | Legs [6/7] : 310157760667330745102416784064094.1450", - "5 | Legs [7/7] : 92", - "6 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "6 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "7 | Mediators [1/4] : 2726fd65c4b7992d4c0bbd39b396994c3a676c", - "7 | Mediators [2/4] : 3c33ccdc7ef6733631bd0ea4c2", - "7 | Mediators [3/4] : 2b21088f6c45f8473f63376105b048397f3b39", - "7 | Mediators [4/4] : e15c29534d8ad4817fe4f94817", - "8 | Chain : Polymesh", - "9 | Nonce : 0", - "10 | Tip : POLYX 1234.56789", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sto : Modify fundraiser window", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 100", + "3 | Start : 2048", + "4 | End : 128", + "5 | Chain : Polymesh", + "6 | Nonce : 0", + "7 | Tip : POLYX 5552342.355555", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1343, - "name": "Settlement_Add_instruction_with_mediators", - "blob": "25130100000000000000012cfa1c700180000000000000000180000000000000000402ab5da1448af7946ed14d82fef3add7cb8734abfd6c4d85ad1399dd57f7de94e1eb58190fa5424caf196c69b048e254111eb4e7115f3664477471fc777ba8c7fd5449434b45522d3334353637440ad87b41425869d6ff2d763d3656e901664c968727fc8fb62cd51bfa0f8ee2946af0b10beb0dc7fe48041da6090d46a6088e4eb26b38a704328e0001b64fbde9369da2c776a0515336a3893b86f5522281d5d248eaf775600c6381a4c0c944c6334231ee2c11a93595587e2389bdcd994bd5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1320, + "name": "Sto_Modify_fundraiser_window", + "blob": "2704417373657449442d313233343536373864000000000000000008000000000000018000000000000000d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Add instruction with mediators", - "1 | Venue id : 1", - "2 | Settlement type : 1880947244", - "3 | Trade date : 128", - "4 | Value date : 128", - "5 | Legs [1/7] : ab5da1448af7946ed14d82fef3add7cb8734ab", - "5 | Legs [2/7] : fd6c4d85ad1399dd57f7de94e1", - "5 | Legs [3/7] : eb58190fa5424caf196c69b048e254111eb4e7", - "5 | Legs [4/7] : 115f3664477471fc777ba8c7fd", - "5 | Legs [5/7] : TICKER-34567", - "5 | Legs [6/7] : 310157760667330745102416784064094.1450", - "5 | Legs [7/7] : 92", - "6 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "6 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "7 | Mediators [1/4] : 8e4eb26b38a704328e0001b64fbde9369da2c7", - "7 | Mediators [2/4] : 76a0515336a3893b86f5522281", - "7 | Mediators [3/4] : d5d248eaf775600c6381a4c0c944c6334231ee", - "7 | Mediators [4/4] : 2c11a93595587e2389bdcd994b" + "0 | Sto : Modify fundraiser window", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 100", + "3 | Start : 2048", + "4 | End : 128", + "5 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Settlement : Add instruction with mediators", - "1 | Venue id : 1", - "2 | Settlement type : 1880947244", - "3 | Trade date : 128", - "4 | Value date : 128", - "5 | Legs [1/7] : ab5da1448af7946ed14d82fef3add7cb8734ab", - "5 | Legs [2/7] : fd6c4d85ad1399dd57f7de94e1", - "5 | Legs [3/7] : eb58190fa5424caf196c69b048e254111eb4e7", - "5 | Legs [4/7] : 115f3664477471fc777ba8c7fd", - "5 | Legs [5/7] : TICKER-34567", - "5 | Legs [6/7] : 310157760667330745102416784064094.1450", - "5 | Legs [7/7] : 92", - "6 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "6 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "7 | Mediators [1/4] : 8e4eb26b38a704328e0001b64fbde9369da2c7", - "7 | Mediators [2/4] : 76a0515336a3893b86f5522281", - "7 | Mediators [3/4] : d5d248eaf775600c6381a4c0c944c6334231ee", - "7 | Mediators [4/4] : 2c11a93595587e2389bdcd994b", - "8 | Chain : Polymesh", - "9 | Nonce : 2339", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sto : Modify fundraiser window", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 100", + "3 | Start : 2048", + "4 | End : 128", + "5 | Chain : Polymesh", + "6 | Nonce : 0", + "7 | Tip : POLYX 1234.56789", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1344, - "name": "Settlement_Add_instruction_with_mediators", - "blob": "25136bc4000000000000012cfa1c700180000000000000000180000000000000000400ac5db382083b7219cfad6059c08c2369dca1cf53547ad9ddeb2111453687860600f71eecdf2143fab521a19bc9ef041d5dbebe30289c02c9ff90e3ebe372d9078001755a8159d59f08d15449434b45522d33343536375e0575c220aca31f94383ed5ba21091901664c968727fc8fb62cd51bfa0f8ee2946af0b10beb0dc7fe48041da6090d46a6100168dfe955f516139c7c64b35df31e045f02b9aa8c1994a8781f2c25cf41929c2224b9ddbc5dfbf72594439d7fecfcf3469bcec5ec29bc0057b0f2ab747643a6e43a6d9977947c98b68079c488fa9df9ac86ab646dda367ed14db6830b7a84e7ee66291a1fe9762ffbbfc55ad42e9eef37c16c29a074ab3e186ddc178c1f5809d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1321, + "name": "Sto_Stop", + "blob": "2705417373657449442d31323334353637382309000000000000d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Add instruction with mediators", - "1 | Venue id : 50283", - "2 | Settlement type : 1880947244", - "3 | Trade date : 128", - "4 | Value date : 128", - "5 | Legs [1/8] : ac5db382083b7219cfad6059c08c2369dca1cf", - "5 | Legs [2/8] : 53547ad9ddeb21114536878606", - "5 | Legs [3/8] : Default", - "5 | Legs [4/8] : f71eecdf2143fab521a19bc9ef041d5dbebe30", - "5 | Legs [5/8] : 289c02c9ff90e3ebe372d90780", - "5 | Legs [6/8] : 15062464692419123829", - "5 | Legs [7/8] : TICKER-34567", - "5 | Legs [8/8] : 33278114688300386107226358981875.53315", - "6 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "6 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "7 | Mediators [1/8] : 0168dfe955f516139c7c64b35df31e045f02b9", - "7 | Mediators [2/8] : aa8c1994a8781f2c25cf41929c", - "7 | Mediators [3/8] : 2224b9ddbc5dfbf72594439d7fecfcf3469bce", - "7 | Mediators [4/8] : c5ec29bc0057b0f2ab747643a6", - "7 | Mediators [5/8] : e43a6d9977947c98b68079c488fa9df9ac86ab", - "7 | Mediators [6/8] : 646dda367ed14db6830b7a84e7", - "7 | Mediators [7/8] : ee66291a1fe9762ffbbfc55ad42e9eef37c16c", - "7 | Mediators [8/8] : 29a074ab3e186ddc178c1f5809" + "0 | Sto : Stop", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 2339", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Settlement : Add instruction with mediators", - "1 | Venue id : 50283", - "2 | Settlement type : 1880947244", - "3 | Trade date : 128", - "4 | Value date : 128", - "5 | Legs [1/8] : ac5db382083b7219cfad6059c08c2369dca1cf", - "5 | Legs [2/8] : 53547ad9ddeb21114536878606", - "5 | Legs [3/8] : Default", - "5 | Legs [4/8] : f71eecdf2143fab521a19bc9ef041d5dbebe30", - "5 | Legs [5/8] : 289c02c9ff90e3ebe372d90780", - "5 | Legs [6/8] : 15062464692419123829", - "5 | Legs [7/8] : TICKER-34567", - "5 | Legs [8/8] : 33278114688300386107226358981875.53315", - "6 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "6 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "7 | Mediators [1/8] : 0168dfe955f516139c7c64b35df31e045f02b9", - "7 | Mediators [2/8] : aa8c1994a8781f2c25cf41929c", - "7 | Mediators [3/8] : 2224b9ddbc5dfbf72594439d7fecfcf3469bce", - "7 | Mediators [4/8] : c5ec29bc0057b0f2ab747643a6", - "7 | Mediators [5/8] : e43a6d9977947c98b68079c488fa9df9ac86ab", - "7 | Mediators [6/8] : 646dda367ed14db6830b7a84e7", - "7 | Mediators [7/8] : ee66291a1fe9762ffbbfc55ad42e9eef37c16c", - "7 | Mediators [8/8] : 29a074ab3e186ddc178c1f5809", - "8 | Chain : Polymesh", - "9 | Nonce : 100", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sto : Stop", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 2339", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1345, - "name": "Settlement_Add_instruction_with_mediators", - "blob": "25136400000000000000012cfa1c700100010000000000000180000000000000000402ab5da1448af7946ed14d82fef3add7cb8734abfd6c4d85ad1399dd57f7de94e1eb58190fa5424caf196c69b048e254111eb4e7115f3664477471fc777ba8c7fd5449434b45522d3334353637440ad87b41425869d6ff2d763d3656e901664c968727fc8fb62cd51bfa0f8ee2946af0b10beb0dc7fe48041da6090d46a6100168dfe955f516139c7c64b35df31e045f02b9aa8c1994a8781f2c25cf41929c2224b9ddbc5dfbf72594439d7fecfcf3469bcec5ec29bc0057b0f2ab747643a6e43a6d9977947c98b68079c488fa9df9ac86ab646dda367ed14db6830b7a84e7ee66291a1fe9762ffbbfc55ad42e9eef37c16c29a074ab3e186ddc178c1f5809d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1322, + "name": "Sto_Stop", + "blob": "2705417373657449442d31323334353637386400000000000000d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Add instruction with mediators", - "1 | Venue id : 100", - "2 | Settlement type : 1880947244", - "3 | Trade date : 256", - "4 | Value date : 128", - "5 | Legs [1/7] : ab5da1448af7946ed14d82fef3add7cb8734ab", - "5 | Legs [2/7] : fd6c4d85ad1399dd57f7de94e1", - "5 | Legs [3/7] : eb58190fa5424caf196c69b048e254111eb4e7", - "5 | Legs [4/7] : 115f3664477471fc777ba8c7fd", - "5 | Legs [5/7] : TICKER-34567", - "5 | Legs [6/7] : 310157760667330745102416784064094.1450", - "5 | Legs [7/7] : 92", - "6 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "6 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "7 | Mediators [1/8] : 0168dfe955f516139c7c64b35df31e045f02b9", - "7 | Mediators [2/8] : aa8c1994a8781f2c25cf41929c", - "7 | Mediators [3/8] : 2224b9ddbc5dfbf72594439d7fecfcf3469bce", - "7 | Mediators [4/8] : c5ec29bc0057b0f2ab747643a6", - "7 | Mediators [5/8] : e43a6d9977947c98b68079c488fa9df9ac86ab", - "7 | Mediators [6/8] : 646dda367ed14db6830b7a84e7", - "7 | Mediators [7/8] : ee66291a1fe9762ffbbfc55ad42e9eef37c16c", - "7 | Mediators [8/8] : 29a074ab3e186ddc178c1f5809", - "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "8 | Tip [2/2] : 3.456789" + "0 | Sto : Stop", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 100", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Settlement : Add instruction with mediators", - "1 | Venue id : 100", - "2 | Settlement type : 1880947244", - "3 | Trade date : 256", - "4 | Value date : 128", - "5 | Legs [1/7] : ab5da1448af7946ed14d82fef3add7cb8734ab", - "5 | Legs [2/7] : fd6c4d85ad1399dd57f7de94e1", - "5 | Legs [3/7] : eb58190fa5424caf196c69b048e254111eb4e7", - "5 | Legs [4/7] : 115f3664477471fc777ba8c7fd", - "5 | Legs [5/7] : TICKER-34567", - "5 | Legs [6/7] : 310157760667330745102416784064094.1450", - "5 | Legs [7/7] : 92", - "6 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "6 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "7 | Mediators [1/8] : 0168dfe955f516139c7c64b35df31e045f02b9", - "7 | Mediators [2/8] : aa8c1994a8781f2c25cf41929c", - "7 | Mediators [3/8] : 2224b9ddbc5dfbf72594439d7fecfcf3469bce", - "7 | Mediators [4/8] : c5ec29bc0057b0f2ab747643a6", - "7 | Mediators [5/8] : e43a6d9977947c98b68079c488fa9df9ac86ab", - "7 | Mediators [6/8] : 646dda367ed14db6830b7a84e7", - "7 | Mediators [7/8] : ee66291a1fe9762ffbbfc55ad42e9eef37c16c", - "7 | Mediators [8/8] : 29a074ab3e186ddc178c1f5809", - "8 | Chain : Polymesh", - "9 | Nonce : 100", - "10 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "10 | Tip [2/2] : 3.456789", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sto : Stop", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 100", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1346, - "name": "Settlement_Add_and_affirm_with_mediators", - "blob": "25140100000000000000000100080000000000000100010000000000000402ab5da1448af7946ed14d82fef3add7cb8734abfd6c4d85ad1399dd57f7de94e1eb58190fa5424caf196c69b048e254111eb4e7115f3664477471fc777ba8c7fd5449434b45522d3334353637440ad87b41425869d6ff2d763d3656e90857fe7c4bcb4b5321ffd0d4abc20c1f1b9c727bef031bc5c22d41d98cc5ba2fe30140e2010000000000907c51ddeced476ca85354dbee9f2c6869d67fd62e913c2247e0566ce476878b0140e201000000000001664c968727fc8fb62cd51bfa0f8ee2946af0b10beb0dc7fe48041da6090d46a60495757dcb691da514fea59b81c154657ea512bd1ee205c13fed6d1de760313484d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1323, + "name": "Sto_Stop", + "blob": "2705417373657449442d31323334353637386bc4000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Add and affirm with mediators", - "1 | Venue id : 1", - "2 | Settlement type : SettleOnAffirmation", - "3 | Trade date : 2048", - "4 | Value date : 256", - "5 | Legs [1/7] : ab5da1448af7946ed14d82fef3add7cb8734ab", - "5 | Legs [2/7] : fd6c4d85ad1399dd57f7de94e1", - "5 | Legs [3/7] : eb58190fa5424caf196c69b048e254111eb4e7", - "5 | Legs [4/7] : 115f3664477471fc777ba8c7fd", - "5 | Legs [5/7] : TICKER-34567", - "5 | Legs [6/7] : 310157760667330745102416784064094.1450", - "5 | Legs [7/7] : 92", - "6 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "6 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "6 | Portfolios [3/6] : 123456", - "6 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "6 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "6 | Portfolios [6/6] : 123456", - "7 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "7 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "8 | Mediators [1/2] : 95757dcb691da514fea59b81c154657ea512bd", - "8 | Mediators [2/2] : 1ee205c13fed6d1de760313484", - "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "9 | Tip [2/2] : 3.456789" + "0 | Sto : Stop", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 50283", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Settlement : Add and affirm with mediators", - "1 | Venue id : 1", - "2 | Settlement type : SettleOnAffirmation", - "3 | Trade date : 2048", - "4 | Value date : 256", - "5 | Legs [1/7] : ab5da1448af7946ed14d82fef3add7cb8734ab", - "5 | Legs [2/7] : fd6c4d85ad1399dd57f7de94e1", - "5 | Legs [3/7] : eb58190fa5424caf196c69b048e254111eb4e7", - "5 | Legs [4/7] : 115f3664477471fc777ba8c7fd", - "5 | Legs [5/7] : TICKER-34567", - "5 | Legs [6/7] : 310157760667330745102416784064094.1450", - "5 | Legs [7/7] : 92", - "6 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "6 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "6 | Portfolios [3/6] : 123456", - "6 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "6 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "6 | Portfolios [6/6] : 123456", - "7 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "7 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "8 | Mediators [1/2] : 95757dcb691da514fea59b81c154657ea512bd", - "8 | Mediators [2/2] : 1ee205c13fed6d1de760313484", - "9 | Chain : Polymesh", - "10 | Nonce : 2339", - "11 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "11 | Tip [2/2] : 3.456789", - "12 | Era Phase : 61", - "13 | Era Period : 64", - "14 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "14 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sto : Stop", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 50283", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1347, - "name": "Settlement_Add_and_affirm_with_mediators", - "blob": "25140000000000000000025a20096d0180000000000000000100010000000000000400ac5db382083b7219cfad6059c08c2369dca1cf53547ad9ddeb2111453687860600f71eecdf2143fab521a19bc9ef041d5dbebe30289c02c9ff90e3ebe372d9078001755a8159d59f08d15449434b45522d33343536375e0575c220aca31f94383ed5ba2109190857fe7c4bcb4b5321ffd0d4abc20c1f1b9c727bef031bc5c22d41d98cc5ba2fe30140e2010000000000907c51ddeced476ca85354dbee9f2c6869d67fd62e913c2247e0566ce476878b0140e201000000000001664c968727fc8fb62cd51bfa0f8ee2946af0b10beb0dc7fe48041da6090d46a6100168dfe955f516139c7c64b35df31e045f02b9aa8c1994a8781f2c25cf41929c2224b9ddbc5dfbf72594439d7fecfcf3469bcec5ec29bc0057b0f2ab747643a6e43a6d9977947c98b68079c488fa9df9ac86ab646dda367ed14db6830b7a84e7ee66291a1fe9762ffbbfc55ad42e9eef37c16c29a074ab3e186ddc178c1f5809d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1324, + "name": "Sto_Stop", + "blob": "2705417373657449442d31323334353637380000000000000000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Add and affirm with mediators", - "1 | Venue id : 0", - "2 | Settlement type : 1829314650", - "3 | Trade date : 128", - "4 | Value date : 256", - "5 | Legs [1/8] : ac5db382083b7219cfad6059c08c2369dca1cf", - "5 | Legs [2/8] : 53547ad9ddeb21114536878606", - "5 | Legs [3/8] : Default", - "5 | Legs [4/8] : f71eecdf2143fab521a19bc9ef041d5dbebe30", - "5 | Legs [5/8] : 289c02c9ff90e3ebe372d90780", - "5 | Legs [6/8] : 15062464692419123829", - "5 | Legs [7/8] : TICKER-34567", - "5 | Legs [8/8] : 33278114688300386107226358981875.53315", - "6 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "6 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "6 | Portfolios [3/6] : 123456", - "6 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "6 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "6 | Portfolios [6/6] : 123456", - "7 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "7 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "8 | Mediators [1/8] : 0168dfe955f516139c7c64b35df31e045f02b9", - "8 | Mediators [2/8] : aa8c1994a8781f2c25cf41929c", - "8 | Mediators [3/8] : 2224b9ddbc5dfbf72594439d7fecfcf3469bce", - "8 | Mediators [4/8] : c5ec29bc0057b0f2ab747643a6", - "8 | Mediators [5/8] : e43a6d9977947c98b68079c488fa9df9ac86ab", - "8 | Mediators [6/8] : 646dda367ed14db6830b7a84e7", - "8 | Mediators [7/8] : ee66291a1fe9762ffbbfc55ad42e9eef37c16c", - "8 | Mediators [8/8] : 29a074ab3e186ddc178c1f5809", - "9 | Tip : POLYX 0.000987" + "0 | Sto : Stop", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 0", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Settlement : Add and affirm with mediators", - "1 | Venue id : 0", - "2 | Settlement type : 1829314650", - "3 | Trade date : 128", - "4 | Value date : 256", - "5 | Legs [1/8] : ac5db382083b7219cfad6059c08c2369dca1cf", - "5 | Legs [2/8] : 53547ad9ddeb21114536878606", - "5 | Legs [3/8] : Default", - "5 | Legs [4/8] : f71eecdf2143fab521a19bc9ef041d5dbebe30", - "5 | Legs [5/8] : 289c02c9ff90e3ebe372d90780", - "5 | Legs [6/8] : 15062464692419123829", - "5 | Legs [7/8] : TICKER-34567", - "5 | Legs [8/8] : 33278114688300386107226358981875.53315", - "6 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "6 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "6 | Portfolios [3/6] : 123456", - "6 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "6 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "6 | Portfolios [6/6] : 123456", - "7 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "7 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "8 | Mediators [1/8] : 0168dfe955f516139c7c64b35df31e045f02b9", - "8 | Mediators [2/8] : aa8c1994a8781f2c25cf41929c", - "8 | Mediators [3/8] : 2224b9ddbc5dfbf72594439d7fecfcf3469bce", - "8 | Mediators [4/8] : c5ec29bc0057b0f2ab747643a6", - "8 | Mediators [5/8] : e43a6d9977947c98b68079c488fa9df9ac86ab", - "8 | Mediators [6/8] : 646dda367ed14db6830b7a84e7", - "8 | Mediators [7/8] : ee66291a1fe9762ffbbfc55ad42e9eef37c16c", - "8 | Mediators [8/8] : 29a074ab3e186ddc178c1f5809", - "9 | Chain : Polymesh", - "10 | Nonce : 0", - "11 | Tip : POLYX 0.000987", - "12 | Era Phase : 61", - "13 | Era Period : 64", - "14 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "14 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sto : Stop", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 0", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1348, - "name": "Settlement_Add_and_affirm_with_mediators", - "blob": "25146bc400000000000000010001000000000000010008000000000000000001664c968727fc8fb62cd51bfa0f8ee2946af0b10beb0dc7fe48041da6090d46a6100168dfe955f516139c7c64b35df31e045f02b9aa8c1994a8781f2c25cf41929c2224b9ddbc5dfbf72594439d7fecfcf3469bcec5ec29bc0057b0f2ab747643a6e43a6d9977947c98b68079c488fa9df9ac86ab646dda367ed14db6830b7a84e7ee66291a1fe9762ffbbfc55ad42e9eef37c16c29a074ab3e186ddc178c1f5809d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1325, + "name": "Sto_Stop", + "blob": "2705417373657449442d31323334353637386bc4000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Add and affirm with mediators", - "1 | Venue id : 50283", - "2 | Settlement type : SettleOnAffirmation", - "3 | Trade date : 256", - "4 | Value date : 2048", - "5 | Legs : ", - "6 | Portfolios : ", - "7 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "7 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "8 | Mediators [1/8] : 0168dfe955f516139c7c64b35df31e045f02b9", - "8 | Mediators [2/8] : aa8c1994a8781f2c25cf41929c", - "8 | Mediators [3/8] : 2224b9ddbc5dfbf72594439d7fecfcf3469bce", - "8 | Mediators [4/8] : c5ec29bc0057b0f2ab747643a6", - "8 | Mediators [5/8] : e43a6d9977947c98b68079c488fa9df9ac86ab", - "8 | Mediators [6/8] : 646dda367ed14db6830b7a84e7", - "8 | Mediators [7/8] : ee66291a1fe9762ffbbfc55ad42e9eef37c16c", - "8 | Mediators [8/8] : 29a074ab3e186ddc178c1f5809", - "9 | Tip : POLYX 5552342.355555" + "0 | Sto : Stop", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 50283", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Settlement : Add and affirm with mediators", - "1 | Venue id : 50283", - "2 | Settlement type : SettleOnAffirmation", - "3 | Trade date : 256", - "4 | Value date : 2048", - "5 | Legs : ", - "6 | Portfolios : ", - "7 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "7 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "8 | Mediators [1/8] : 0168dfe955f516139c7c64b35df31e045f02b9", - "8 | Mediators [2/8] : aa8c1994a8781f2c25cf41929c", - "8 | Mediators [3/8] : 2224b9ddbc5dfbf72594439d7fecfcf3469bce", - "8 | Mediators [4/8] : c5ec29bc0057b0f2ab747643a6", - "8 | Mediators [5/8] : e43a6d9977947c98b68079c488fa9df9ac86ab", - "8 | Mediators [6/8] : 646dda367ed14db6830b7a84e7", - "8 | Mediators [7/8] : ee66291a1fe9762ffbbfc55ad42e9eef37c16c", - "8 | Mediators [8/8] : 29a074ab3e186ddc178c1f5809", - "9 | Chain : Polymesh", - "10 | Nonce : 100", - "11 | Tip : POLYX 5552342.355555", - "12 | Era Phase : 61", - "13 | Era Period : 64", - "14 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "14 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Sto : Stop", + "1 | Offering asset : AssetID-12345678", + "2 | Id : 50283", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1349, - "name": "Settlement_Add_and_affirm_with_mediators", - "blob": "25140000000000000000025a20096d0100080000000000000100080000000000000402ab5da1448af7946ed14d82fef3add7cb8734abfd6c4d85ad1399dd57f7de94e1eb58190fa5424caf196c69b048e254111eb4e7115f3664477471fc777ba8c7fd5449434b45522d3334353637440ad87b41425869d6ff2d763d3656e90001664c968727fc8fb62cd51bfa0f8ee2946af0b10beb0dc7fe48041da6090d46a6082726fd65c4b7992d4c0bbd39b396994c3a676c3c33ccdc7ef6733631bd0ea4c22b21088f6c45f8473f63376105b048397f3b39e15c29534d8ad4817fe4f94817d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1326, + "name": "Treasury_Disbursement", + "blob": "280000d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Add and affirm with mediators", - "1 | Venue id : 0", - "2 | Settlement type : 1829314650", - "3 | Trade date : 2048", - "4 | Value date : 2048", - "5 | Legs [1/7] : ab5da1448af7946ed14d82fef3add7cb8734ab", - "5 | Legs [2/7] : fd6c4d85ad1399dd57f7de94e1", - "5 | Legs [3/7] : eb58190fa5424caf196c69b048e254111eb4e7", - "5 | Legs [4/7] : 115f3664477471fc777ba8c7fd", - "5 | Legs [5/7] : TICKER-34567", - "5 | Legs [6/7] : 310157760667330745102416784064094.1450", - "5 | Legs [7/7] : 92", - "6 | Portfolios : ", - "7 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "7 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "8 | Mediators [1/4] : 2726fd65c4b7992d4c0bbd39b396994c3a676c", - "8 | Mediators [2/4] : 3c33ccdc7ef6733631bd0ea4c2", - "8 | Mediators [3/4] : 2b21088f6c45f8473f63376105b048397f3b39", - "8 | Mediators [4/4] : e15c29534d8ad4817fe4f94817", - "9 | Tip : POLYX 55.555555" + "0 | Treasury : Disbursement", + "1 | Beneficiaries : ", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Settlement : Add and affirm with mediators", - "1 | Venue id : 0", - "2 | Settlement type : 1829314650", - "3 | Trade date : 2048", - "4 | Value date : 2048", - "5 | Legs [1/7] : ab5da1448af7946ed14d82fef3add7cb8734ab", - "5 | Legs [2/7] : fd6c4d85ad1399dd57f7de94e1", - "5 | Legs [3/7] : eb58190fa5424caf196c69b048e254111eb4e7", - "5 | Legs [4/7] : 115f3664477471fc777ba8c7fd", - "5 | Legs [5/7] : TICKER-34567", - "5 | Legs [6/7] : 310157760667330745102416784064094.1450", - "5 | Legs [7/7] : 92", - "6 | Portfolios : ", - "7 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "7 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "8 | Mediators [1/4] : 2726fd65c4b7992d4c0bbd39b396994c3a676c", - "8 | Mediators [2/4] : 3c33ccdc7ef6733631bd0ea4c2", - "8 | Mediators [3/4] : 2b21088f6c45f8473f63376105b048397f3b39", - "8 | Mediators [4/4] : e15c29534d8ad4817fe4f94817", - "9 | Chain : Polymesh", - "10 | Nonce : 50283", - "11 | Tip : POLYX 55.555555", - "12 | Era Phase : 61", - "13 | Era Period : 64", - "14 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "14 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Treasury : Disbursement", + "1 | Beneficiaries : ", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1350, - "name": "Settlement_Add_and_affirm_with_mediators", - "blob": "25146bc400000000000000010001000000000000010008000000000000000857fe7c4bcb4b5321ffd0d4abc20c1f1b9c727bef031bc5c22d41d98cc5ba2fe30140e2010000000000907c51ddeced476ca85354dbee9f2c6869d67fd62e913c2247e0566ce476878b0140e201000000000001664c968727fc8fb62cd51bfa0f8ee2946af0b10beb0dc7fe48041da6090d46a6088e4eb26b38a704328e0001b64fbde9369da2c776a0515336a3893b86f5522281d5d248eaf775600c6381a4c0c944c6334231ee2c11a93595587e2389bdcd994bd5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1327, + "name": "Treasury_Disbursement", + "blob": "280000d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Add and affirm with mediators", - "1 | Venue id : 50283", - "2 | Settlement type : SettleOnAffirmation", - "3 | Trade date : 256", - "4 | Value date : 2048", - "5 | Legs : ", - "6 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "6 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "6 | Portfolios [3/6] : 123456", - "6 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "6 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "6 | Portfolios [6/6] : 123456", - "7 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "7 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "8 | Mediators [1/4] : 8e4eb26b38a704328e0001b64fbde9369da2c7", - "8 | Mediators [2/4] : 76a0515336a3893b86f5522281", - "8 | Mediators [3/4] : d5d248eaf775600c6381a4c0c944c6334231ee", - "8 | Mediators [4/4] : 2c11a93595587e2389bdcd994b", - "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "9 | Tip [2/2] : 3.456789" + "0 | Treasury : Disbursement", + "1 | Beneficiaries : ", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Settlement : Add and affirm with mediators", - "1 | Venue id : 50283", - "2 | Settlement type : SettleOnAffirmation", - "3 | Trade date : 256", - "4 | Value date : 2048", - "5 | Legs : ", - "6 | Portfolios [1/6] : 57fe7c4bcb4b5321ffd0d4abc20c1f1b9c727b", - "6 | Portfolios [2/6] : ef031bc5c22d41d98cc5ba2fe3", - "6 | Portfolios [3/6] : 123456", - "6 | Portfolios [4/6] : 907c51ddeced476ca85354dbee9f2c6869d67f", - "6 | Portfolios [5/6] : d62e913c2247e0566ce476878b", - "6 | Portfolios [6/6] : 123456", - "7 | Instruction memo [1/2] : 0x664c968727fc8fb62cd51bfa0f8ee2946af0", - "7 | Instruction memo [2/2] : b10beb0dc7fe48041da6090d46a6", - "8 | Mediators [1/4] : 8e4eb26b38a704328e0001b64fbde9369da2c7", - "8 | Mediators [2/4] : 76a0515336a3893b86f5522281", - "8 | Mediators [3/4] : d5d248eaf775600c6381a4c0c944c6334231ee", - "8 | Mediators [4/4] : 2c11a93595587e2389bdcd994b", - "9 | Chain : Polymesh", - "10 | Nonce : 2339", - "11 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "11 | Tip [2/2] : 3.456789", - "12 | Era Phase : 61", - "13 | Era Period : 64", - "14 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "14 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Treasury : Disbursement", + "1 | Beneficiaries : ", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1351, - "name": "Settlement_Affirm_instruction_as_mediator", - "blob": "25152309000000000000018000000000000000d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1328, + "name": "Treasury_Disbursement", + "blob": "280004ba86c9204f51593386946e39fb089daafbcde234be364ed21bdc6dce79953a82fcd91200000000000000000000000000d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Affirm instruction as mediator", - "1 | Instruction id : 2339", - "2 | Expiry : 128", - "3 | Tip : POLYX 5552342.355555" + "0 | Treasury : Disbursement", + "1 | Beneficiaries [1/3] : ba86c9204f51593386946e39fb089daafbcde2", + "1 | Beneficiaries [2/3] : 34be364ed21bdc6dce79953a82", + "1 | Beneficiaries [3/3] : POLYX 1.235452", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Settlement : Affirm instruction as mediator", - "1 | Instruction id : 2339", - "2 | Expiry : 128", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Treasury : Disbursement", + "1 | Beneficiaries [1/3] : ba86c9204f51593386946e39fb089daafbcde2", + "1 | Beneficiaries [2/3] : 34be364ed21bdc6dce79953a82", + "1 | Beneficiaries [3/3] : POLYX 1.235452", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1352, - "name": "Settlement_Affirm_instruction_as_mediator", - "blob": "25156bc4000000000000010008000000000000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1329, + "name": "Treasury_Disbursement", + "blob": "280000d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Affirm instruction as mediator", - "1 | Instruction id : 50283", - "2 | Expiry : 2048", - "3 | Tip : POLYX 0.000987" + "0 | Treasury : Disbursement", + "1 | Beneficiaries : ", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Settlement : Affirm instruction as mediator", - "1 | Instruction id : 50283", - "2 | Expiry : 2048", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Treasury : Disbursement", + "1 | Beneficiaries : ", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1353, - "name": "Settlement_Affirm_instruction_as_mediator", - "blob": "25150100000000000000018000000000000000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1330, + "name": "Treasury_Disbursement", + "blob": "280000d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Affirm instruction as mediator", - "1 | Instruction id : 1", - "2 | Expiry : 128", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Settlement : Affirm instruction as mediator", - "1 | Instruction id : 1", - "2 | Expiry : 128", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1354, - "name": "Settlement_Affirm_instruction_as_mediator", - "blob": "25156bc4000000000000010001000000000000d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Affirm instruction as mediator", - "1 | Instruction id : 50283", - "2 | Expiry : 256" + "0 | Treasury : Disbursement", + "1 | Beneficiaries : ", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Settlement : Affirm instruction as mediator", - "1 | Instruction id : 50283", - "2 | Expiry : 256", - "3 | Chain : Polymesh", - "4 | Nonce : 100", + "0 | Treasury : Disbursement", + "1 | Beneficiaries : ", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1355, - "name": "Settlement_Affirm_instruction_as_mediator", - "blob": "25152309000000000000010001000000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1331, + "name": "Treasury_Reimbursement", + "blob": "2801fd56e5cad3287b54b2352f703dbeafc0d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Affirm instruction as mediator", - "1 | Instruction id : 2339", - "2 | Expiry : 256", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Treasury : Reimbursement", + "1 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "1 | Amount [2/2] : 6.766461", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Settlement : Affirm instruction as mediator", - "1 | Instruction id : 2339", - "2 | Expiry : 256", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Treasury : Reimbursement", + "1 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "1 | Amount [2/2] : 6.766461", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1356, - "name": "Settlement_Withdraw_affirmation_as_mediator", - "blob": "25160100000000000000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1332, + "name": "Treasury_Reimbursement", + "blob": "2801fd56e5cad3287b54b2352f703dbeafc0d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Withdraw affirmation as mediator", - "1 | Instruction id : 1", - "2 | Tip : POLYX 5552342.355555" + "0 | Treasury : Reimbursement", + "1 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "1 | Amount [2/2] : 6.766461", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Settlement : Withdraw affirmation as mediator", - "1 | Instruction id : 1", + "0 | Treasury : Reimbursement", + "1 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "1 | Amount [2/2] : 6.766461", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1357, - "name": "Settlement_Withdraw_affirmation_as_mediator", - "blob": "25160100000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1333, + "name": "Treasury_Reimbursement", + "blob": "2801fd56e5cad3287b54b2352f703dbeafc0d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Withdraw affirmation as mediator", - "1 | Instruction id : 1", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Treasury : Reimbursement", + "1 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "1 | Amount [2/2] : 6.766461", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Settlement : Withdraw affirmation as mediator", - "1 | Instruction id : 1", + "0 | Treasury : Reimbursement", + "1 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "1 | Amount [2/2] : 6.766461", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 50283", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1358, - "name": "Settlement_Withdraw_affirmation_as_mediator", - "blob": "25166bc4000000000000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1334, + "name": "Treasury_Reimbursement", + "blob": "2801fd56e5cad3287b54b2352f703dbeafc0d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Withdraw affirmation as mediator", - "1 | Instruction id : 50283", - "2 | Tip : POLYX 1234.56789" + "0 | Treasury : Reimbursement", + "1 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "1 | Amount [2/2] : 6.766461", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Settlement : Withdraw affirmation as mediator", - "1 | Instruction id : 50283", + "0 | Treasury : Reimbursement", + "1 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "1 | Amount [2/2] : 6.766461", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", + "3 | Nonce : 0", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1359, - "name": "Settlement_Withdraw_affirmation_as_mediator", - "blob": "25160000000000000000d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1335, + "name": "Treasury_Reimbursement", + "blob": "2801fd56e5cad3287b54b2352f703dbeafc0d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Withdraw affirmation as mediator", - "1 | Instruction id : 0" + "0 | Treasury : Reimbursement", + "1 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "1 | Amount [2/2] : 6.766461" ], "output_expert": [ - "0 | Settlement : Withdraw affirmation as mediator", - "1 | Instruction id : 0", + "0 | Treasury : Reimbursement", + "1 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "1 | Amount [2/2] : 6.766461", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 100", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1360, - "name": "Settlement_Withdraw_affirmation_as_mediator", - "blob": "25166bc4000000000000d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1336, + "name": "Utility_Batch", + "blob": "29000800000834340000083838d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Withdraw affirmation as mediator", - "1 | Instruction id : 50283", - "2 | Tip : POLYX 0.000987" + "0 | Utility : Batch", + "1 | Calls [1/4] : Remark", + "1 | Calls [2/4] : 3434", + "1 | Calls [3/4] : Remark", + "1 | Calls [4/4] : 3838", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Settlement : Withdraw affirmation as mediator", - "1 | Instruction id : 50283", + "0 | Utility : Batch", + "1 | Calls [1/4] : Remark", + "1 | Calls [2/4] : 3434", + "1 | Calls [3/4] : Remark", + "1 | Calls [4/4] : 3838", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1361, - "name": "Settlement_Reject_instruction_as_mediator", - "blob": "2517010000000000000001fea9a3ab6754d8be00000000d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1337, + "name": "Utility_Batch", + "blob": "29000800000834340000083838d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Reject instruction as mediator", - "1 | Instruction id : 1", - "2 | Number of assets [1/3] : 2879629822", - "2 | Number of assets [2/3] : 3201848423", - "2 | Number of assets [3/3] : 0", - "3 | Tip : POLYX 1234.56789" + "0 | Utility : Batch", + "1 | Calls [1/4] : Remark", + "1 | Calls [2/4] : 3434", + "1 | Calls [3/4] : Remark", + "1 | Calls [4/4] : 3838", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Settlement : Reject instruction as mediator", - "1 | Instruction id : 1", - "2 | Number of assets [1/3] : 2879629822", - "2 | Number of assets [2/3] : 3201848423", - "2 | Number of assets [3/3] : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Utility : Batch", + "1 | Calls [1/4] : Remark", + "1 | Calls [2/4] : 3434", + "1 | Calls [3/4] : Remark", + "1 | Calls [4/4] : 3838", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1362, - "name": "Settlement_Reject_instruction_as_mediator", - "blob": "2517000000000000000001e0219c188956bb4d00000000d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1338, + "name": "Utility_Batch", + "blob": "29000800000834340000083838d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Reject instruction as mediator", - "1 | Instruction id : 0", - "2 | Number of assets [1/3] : 412885472", - "2 | Number of assets [2/3] : 1304123017", - "2 | Number of assets [3/3] : 0" + "0 | Utility : Batch", + "1 | Calls [1/4] : Remark", + "1 | Calls [2/4] : 3434", + "1 | Calls [3/4] : Remark", + "1 | Calls [4/4] : 3838", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Settlement : Reject instruction as mediator", - "1 | Instruction id : 0", - "2 | Number of assets [1/3] : 412885472", - "2 | Number of assets [2/3] : 1304123017", - "2 | Number of assets [3/3] : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 100", + "0 | Utility : Batch", + "1 | Calls [1/4] : Remark", + "1 | Calls [2/4] : 3434", + "1 | Calls [3/4] : Remark", + "1 | Calls [4/4] : 3838", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1363, - "name": "Settlement_Reject_instruction_as_mediator", - "blob": "2517000000000000000001e0219c188956bb4d00000000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1339, + "name": "Utility_Batch", + "blob": "29000800000834340000083838d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Reject instruction as mediator", - "1 | Instruction id : 0", - "2 | Number of assets [1/3] : 412885472", - "2 | Number of assets [2/3] : 1304123017", - "2 | Number of assets [3/3] : 0", - "3 | Tip : POLYX 5552342.355555" + "0 | Utility : Batch", + "1 | Calls [1/4] : Remark", + "1 | Calls [2/4] : 3434", + "1 | Calls [3/4] : Remark", + "1 | Calls [4/4] : 3838" ], "output_expert": [ - "0 | Settlement : Reject instruction as mediator", - "1 | Instruction id : 0", - "2 | Number of assets [1/3] : 412885472", - "2 | Number of assets [2/3] : 1304123017", - "2 | Number of assets [3/3] : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Utility : Batch", + "1 | Calls [1/4] : Remark", + "1 | Calls [2/4] : 3434", + "1 | Calls [3/4] : Remark", + "1 | Calls [4/4] : 3838", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1364, - "name": "Settlement_Reject_instruction_as_mediator", - "blob": "2517230900000000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1340, + "name": "Utility_Batch", + "blob": "29000800000834340000083838d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Reject instruction as mediator", - "1 | Instruction id : 2339", - "2 | Number of assets : None", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Utility : Batch", + "1 | Calls [1/4] : Remark", + "1 | Calls [2/4] : 3434", + "1 | Calls [3/4] : Remark", + "1 | Calls [4/4] : 3838", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Settlement : Reject instruction as mediator", - "1 | Instruction id : 2339", - "2 | Number of assets : None", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Utility : Batch", + "1 | Calls [1/4] : Remark", + "1 | Calls [2/4] : 3434", + "1 | Calls [3/4] : Remark", + "1 | Calls [4/4] : 3838", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1365, - "name": "Settlement_Reject_instruction_as_mediator", - "blob": "2517000000000000000001fcf0f8cf552dd8b400000000d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1341, + "name": "Utility_Relay_tx", + "blob": "29012e5388ccb167c9fe3baeba3fed959f63c4e8bceb6c7387a77940029c14239820005be24f4b85d2b52b92476dc64a161a8f39f7ca5cbb43196c0bb747f73738a4aa74a10582cbca6a394bbc8c615d66ca6e8be8317f052c68479066b474c8c912c4b2150000000000000000083434d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Settlement : Reject instruction as mediator", - "1 | Instruction id : 0", - "2 | Number of assets [1/3] : 3489198332", - "2 | Number of assets [2/3] : 3034066261", - "2 | Number of assets [3/3] : 0", - "3 | Tip : POLYX 55.555555" + "0 | Utility : Relay tx", + "1 | Target [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "1 | Target [2/2] : qta7VKQZKw", + "2 | Signature [1/4] : 5be24f4b85d2b52b92476dc64a161a8f39f7ca", + "2 | Signature [2/4] : 5cbb43196c0bb747f73738a4aa74a10582cbca", + "2 | Signature [3/4] : 6a394bbc8c615d66ca6e8be8317f052c684790", + "2 | Signature [4/4] : 66b474c8c912c4", + "3 | Call [1/3] : 5554", + "3 | Call [2/3] : Remark", + "3 | Call [3/3] : 3434", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Settlement : Reject instruction as mediator", - "1 | Instruction id : 0", - "2 | Number of assets [1/3] : 3489198332", - "2 | Number of assets [2/3] : 3034066261", - "2 | Number of assets [3/3] : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Utility : Relay tx", + "1 | Target [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "1 | Target [2/2] : qta7VKQZKw", + "2 | Signature [1/4] : 5be24f4b85d2b52b92476dc64a161a8f39f7ca", + "2 | Signature [2/4] : 5cbb43196c0bb747f73738a4aa74a10582cbca", + "2 | Signature [3/4] : 6a394bbc8c615d66ca6e8be8317f052c684790", + "2 | Signature [4/4] : 66b474c8c912c4", + "3 | Call [1/3] : 5554", + "3 | Call [2/3] : Remark", + "3 | Call [3/3] : 3434", + "4 | Chain : Polymesh", + "5 | Nonce : 2339", + "6 | Tip : POLYX 0.000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1366, - "name": "Sto_Create_fundraiser", - "blob": "270064af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e20100000000005449434b45522d313233343564af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e20100000000005449434b45522d31323334350810255d07000000000000000000000000e803000000000000000000000000000010255d07000000000000000000000000e80300000000000000000000000000006bc4000000000000018000000000000000010008000000000000a6758c3aa9f7ac8766c5a254e283c9743c46756e645261697365725f4e616d65d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1342, + "name": "Utility_Relay_tx", + "blob": "2901eeee0fc19c12fccb5428f3defc551fa77b3eda70bcf9c86045ade577d0fd1508005be24f4b85d2b52b92476dc64a161a8f39f7ca5cbb43196c0bb747f73738a4aa74a10582cbca6a394bbc8c615d66ca6e8be8317f052c68479066b474c8c912c4b2150000000000000000083434d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Sto : Create fundraiser", - "1 | Offering portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | Offering portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "1 | Offering portfolio [3/3] : 123456", - "2 | Offering asset : TICKER-12345", - "3 | Raising portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "3 | Raising portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "3 | Raising portfolio [3/3] : 123456", - "4 | Raising asset : TICKER-12345", - "5 | Tiers [1/4] : POLYX 123.544848", - "5 | Tiers [2/4] : POLYX 0.001", - "5 | Tiers [3/4] : POLYX 123.544848", - "5 | Tiers [4/4] : POLYX 0.001", - "6 | Venue id : 50283", - "7 | Start : 128", - "8 | End : 2048", - "9 | Minimum investment [1/2] : 155236774107032067208054119720528.1478", - "9 | Minimum investment [2/2] : 78", - "10 | Fundraiser name : FundRaiser_Name", - "11 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "11 | Tip [2/2] : 3.456789" + "0 | Utility : Relay tx", + "1 | Target [1/2] : 5HTyyNf3SP6wwvJb6dmojvVT27bFkbLV2QN1Q2", + "1 | Target [2/2] : YfRrxBgvey", + "2 | Signature [1/4] : 5be24f4b85d2b52b92476dc64a161a8f39f7ca", + "2 | Signature [2/4] : 5cbb43196c0bb747f73738a4aa74a10582cbca", + "2 | Signature [3/4] : 6a394bbc8c615d66ca6e8be8317f052c684790", + "2 | Signature [4/4] : 66b474c8c912c4", + "3 | Call [1/3] : 5554", + "3 | Call [2/3] : Remark", + "3 | Call [3/3] : 3434" ], "output_expert": [ - "0 | Sto : Create fundraiser", - "1 | Offering portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | Offering portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "1 | Offering portfolio [3/3] : 123456", - "2 | Offering asset : TICKER-12345", - "3 | Raising portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "3 | Raising portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "3 | Raising portfolio [3/3] : 123456", - "4 | Raising asset : TICKER-12345", - "5 | Tiers [1/4] : POLYX 123.544848", - "5 | Tiers [2/4] : POLYX 0.001", - "5 | Tiers [3/4] : POLYX 123.544848", - "5 | Tiers [4/4] : POLYX 0.001", - "6 | Venue id : 50283", - "7 | Start : 128", - "8 | End : 2048", - "9 | Minimum investment [1/2] : 155236774107032067208054119720528.1478", - "9 | Minimum investment [2/2] : 78", - "10 | Fundraiser name : FundRaiser_Name", - "11 | Chain : Polymesh", - "12 | Nonce : 1", - "13 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "13 | Tip [2/2] : 3.456789", - "14 | Era Phase : 61", - "15 | Era Period : 64", - "16 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "16 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Utility : Relay tx", + "1 | Target [1/2] : 5HTyyNf3SP6wwvJb6dmojvVT27bFkbLV2QN1Q2", + "1 | Target [2/2] : YfRrxBgvey", + "2 | Signature [1/4] : 5be24f4b85d2b52b92476dc64a161a8f39f7ca", + "2 | Signature [2/4] : 5cbb43196c0bb747f73738a4aa74a10582cbca", + "2 | Signature [3/4] : 6a394bbc8c615d66ca6e8be8317f052c684790", + "2 | Signature [4/4] : 66b474c8c912c4", + "3 | Call [1/3] : 5554", + "3 | Call [2/3] : Remark", + "3 | Call [3/3] : 3434", + "4 | Chain : Polymesh", + "5 | Nonce : 100", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1367, - "name": "Sto_Create_fundraiser", - "blob": "270064af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e20100000000005449434b45522d313233343564af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e20100000000005449434b45522d31323334350810255d07000000000000000000000000e803000000000000000000000000000010255d07000000000000000000000000e80300000000000000000000000000006bc4000000000000010008000000000000018000000000000000a6758c3aa9f7ac8766c5a254e283c9743c46756e645261697365725f4e616d65d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1343, + "name": "Utility_Relay_tx", + "blob": "2901746a25ffb64614dd2c7d8f53d247e39763261a2a4c187c424c51edb971f3d4350218d207aa47d518524a716c51da57027198f2459e36e81870fd5da63a759608297e3563fc2e45275fca256e150f20941865838372f69e0f4512b05d073f53d5f1e3b2150000000000000000083434d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Sto : Create fundraiser", - "1 | Offering portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | Offering portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "1 | Offering portfolio [3/3] : 123456", - "2 | Offering asset : TICKER-12345", - "3 | Raising portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "3 | Raising portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "3 | Raising portfolio [3/3] : 123456", - "4 | Raising asset : TICKER-12345", - "5 | Tiers [1/4] : POLYX 123.544848", - "5 | Tiers [2/4] : POLYX 0.001", - "5 | Tiers [3/4] : POLYX 123.544848", - "5 | Tiers [4/4] : POLYX 0.001", - "6 | Venue id : 50283", - "7 | Start : 2048", - "8 | End : 128", - "9 | Minimum investment [1/2] : 155236774107032067208054119720528.1478", - "9 | Minimum investment [2/2] : 78", - "10 | Fundraiser name : FundRaiser_Name" + "0 | Utility : Relay tx", + "1 | Target [1/2] : 5EhLwjQbRibvSWhbsvw5hvYdKHYF5besUgGbjx", + "1 | Target [2/2] : guT8977hVy", + "2 | Signature [1/4] : 18d207aa47d518524a716c51da57027198f245", + "2 | Signature [2/4] : 9e36e81870fd5da63a759608297e3563fc2e45", + "2 | Signature [3/4] : 275fca256e150f20941865838372f69e0f4512", + "2 | Signature [4/4] : b05d073f53d5f1e3", + "3 | Call [1/3] : 5554", + "3 | Call [2/3] : Remark", + "3 | Call [3/3] : 3434", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Sto : Create fundraiser", - "1 | Offering portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | Offering portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "1 | Offering portfolio [3/3] : 123456", - "2 | Offering asset : TICKER-12345", - "3 | Raising portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "3 | Raising portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "3 | Raising portfolio [3/3] : 123456", - "4 | Raising asset : TICKER-12345", - "5 | Tiers [1/4] : POLYX 123.544848", - "5 | Tiers [2/4] : POLYX 0.001", - "5 | Tiers [3/4] : POLYX 123.544848", - "5 | Tiers [4/4] : POLYX 0.001", - "6 | Venue id : 50283", - "7 | Start : 2048", - "8 | End : 128", - "9 | Minimum investment [1/2] : 155236774107032067208054119720528.1478", - "9 | Minimum investment [2/2] : 78", - "10 | Fundraiser name : FundRaiser_Name", - "11 | Chain : Polymesh", - "12 | Nonce : 50283", - "13 | Era Phase : 61", - "14 | Era Period : 64", - "15 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "15 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Utility : Relay tx", + "1 | Target [1/2] : 5EhLwjQbRibvSWhbsvw5hvYdKHYF5besUgGbjx", + "1 | Target [2/2] : guT8977hVy", + "2 | Signature [1/4] : 18d207aa47d518524a716c51da57027198f245", + "2 | Signature [2/4] : 9e36e81870fd5da63a759608297e3563fc2e45", + "2 | Signature [3/4] : 275fca256e150f20941865838372f69e0f4512", + "2 | Signature [4/4] : b05d073f53d5f1e3", + "3 | Call [1/3] : 5554", + "3 | Call [2/3] : Remark", + "3 | Call [3/3] : 3434", + "4 | Chain : Polymesh", + "5 | Nonce : 100", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1368, - "name": "Sto_Create_fundraiser", - "blob": "270064af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e20100000000005449434b45522d313233343564af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e20100000000005449434b45522d31323334350810255d07000000000000000000000000e803000000000000000000000000000010255d07000000000000000000000000e80300000000000000000000000000000000000000000000010001000000000000010008000000000000a6758c3aa9f7ac8766c5a254e283c9743c46756e645261697365725f4e616d65d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1344, + "name": "Utility_Relay_tx", + "blob": "2901746a25ffb64614dd2c7d8f53d247e39763261a2a4c187c424c51edb971f3d435005be24f4b85d2b52b92476dc64a161a8f39f7ca5cbb43196c0bb747f73738a4aa74a10582cbca6a394bbc8c615d66ca6e8be8317f052c68479066b474c8c912c4b2150000000000000000083434d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Sto : Create fundraiser", - "1 | Offering portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | Offering portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "1 | Offering portfolio [3/3] : 123456", - "2 | Offering asset : TICKER-12345", - "3 | Raising portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "3 | Raising portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "3 | Raising portfolio [3/3] : 123456", - "4 | Raising asset : TICKER-12345", - "5 | Tiers [1/4] : POLYX 123.544848", - "5 | Tiers [2/4] : POLYX 0.001", - "5 | Tiers [3/4] : POLYX 123.544848", - "5 | Tiers [4/4] : POLYX 0.001", - "6 | Venue id : 0", - "7 | Start : 256", - "8 | End : 2048", - "9 | Minimum investment [1/2] : 155236774107032067208054119720528.1478", - "9 | Minimum investment [2/2] : 78", - "10 | Fundraiser name : FundRaiser_Name", - "11 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "11 | Tip [2/2] : 3.456789" + "0 | Utility : Relay tx", + "1 | Target [1/2] : 5EhLwjQbRibvSWhbsvw5hvYdKHYF5besUgGbjx", + "1 | Target [2/2] : guT8977hVy", + "2 | Signature [1/4] : 5be24f4b85d2b52b92476dc64a161a8f39f7ca", + "2 | Signature [2/4] : 5cbb43196c0bb747f73738a4aa74a10582cbca", + "2 | Signature [3/4] : 6a394bbc8c615d66ca6e8be8317f052c684790", + "2 | Signature [4/4] : 66b474c8c912c4", + "3 | Call [1/3] : 5554", + "3 | Call [2/3] : Remark", + "3 | Call [3/3] : 3434", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Sto : Create fundraiser", - "1 | Offering portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | Offering portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "1 | Offering portfolio [3/3] : 123456", - "2 | Offering asset : TICKER-12345", - "3 | Raising portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "3 | Raising portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "3 | Raising portfolio [3/3] : 123456", - "4 | Raising asset : TICKER-12345", - "5 | Tiers [1/4] : POLYX 123.544848", - "5 | Tiers [2/4] : POLYX 0.001", - "5 | Tiers [3/4] : POLYX 123.544848", - "5 | Tiers [4/4] : POLYX 0.001", - "6 | Venue id : 0", - "7 | Start : 256", - "8 | End : 2048", - "9 | Minimum investment [1/2] : 155236774107032067208054119720528.1478", - "9 | Minimum investment [2/2] : 78", - "10 | Fundraiser name : FundRaiser_Name", - "11 | Chain : Polymesh", - "12 | Nonce : 0", - "13 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "13 | Tip [2/2] : 3.456789", - "14 | Era Phase : 61", - "15 | Era Period : 64", - "16 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "16 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Utility : Relay tx", + "1 | Target [1/2] : 5EhLwjQbRibvSWhbsvw5hvYdKHYF5besUgGbjx", + "1 | Target [2/2] : guT8977hVy", + "2 | Signature [1/4] : 5be24f4b85d2b52b92476dc64a161a8f39f7ca", + "2 | Signature [2/4] : 5cbb43196c0bb747f73738a4aa74a10582cbca", + "2 | Signature [3/4] : 6a394bbc8c615d66ca6e8be8317f052c684790", + "2 | Signature [4/4] : 66b474c8c912c4", + "3 | Call [1/3] : 5554", + "3 | Call [2/3] : Remark", + "3 | Call [3/3] : 3434", + "4 | Chain : Polymesh", + "5 | Nonce : 2339", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1369, - "name": "Sto_Create_fundraiser", - "blob": "270064af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e20100000000005449434b45522d313233343564af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e20100000000005449434b45522d31323334350810255d07000000000000000000000000e803000000000000000000000000000010255d07000000000000000000000000e80300000000000000000000000000000100000000000000010001000000000000010001000000000000a6758c3aa9f7ac8766c5a254e283c9743c46756e645261697365725f4e616d65d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1345, + "name": "Utility_Relay_tx", + "blob": "2901dec0f4dc5fd3e8d150cf002bc6385185d188545a2d3c35459acb0fac525c27610139168992465dc3ce68da7a4809534ad4d2a00f0b2463fcd6a928a6f09ef9ceaa01ffe0c02124588d364735253e02523984c6e04aeeb8a755f42e42ebcc586e9eb2150000000000000000083434d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Sto : Create fundraiser", - "1 | Offering portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | Offering portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "1 | Offering portfolio [3/3] : 123456", - "2 | Offering asset : TICKER-12345", - "3 | Raising portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "3 | Raising portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "3 | Raising portfolio [3/3] : 123456", - "4 | Raising asset : TICKER-12345", - "5 | Tiers [1/4] : POLYX 123.544848", - "5 | Tiers [2/4] : POLYX 0.001", - "5 | Tiers [3/4] : POLYX 123.544848", - "5 | Tiers [4/4] : POLYX 0.001", - "6 | Venue id : 1", - "7 | Start : 256", - "8 | End : 256", - "9 | Minimum investment [1/2] : 155236774107032067208054119720528.1478", - "9 | Minimum investment [2/2] : 78", - "10 | Fundraiser name : FundRaiser_Name" + "0 | Utility : Relay tx", + "1 | Target [1/2] : 5H6moo4wU5PEeHwthqGaP9oVjjAcG3PXyn196u", + "1 | Target [2/2] : hgTRKhjCkB", + "2 | Signature [1/4] : 39168992465dc3ce68da7a4809534ad4d2a00f", + "2 | Signature [2/4] : 0b2463fcd6a928a6f09ef9ceaa01ffe0c02124", + "2 | Signature [3/4] : 588d364735253e02523984c6e04aeeb8a755f4", + "2 | Signature [4/4] : 2e42ebcc586e9e", + "3 | Call [1/3] : 5554", + "3 | Call [2/3] : Remark", + "3 | Call [3/3] : 3434", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Sto : Create fundraiser", - "1 | Offering portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | Offering portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "1 | Offering portfolio [3/3] : 123456", - "2 | Offering asset : TICKER-12345", - "3 | Raising portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "3 | Raising portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "3 | Raising portfolio [3/3] : 123456", - "4 | Raising asset : TICKER-12345", - "5 | Tiers [1/4] : POLYX 123.544848", - "5 | Tiers [2/4] : POLYX 0.001", - "5 | Tiers [3/4] : POLYX 123.544848", - "5 | Tiers [4/4] : POLYX 0.001", - "6 | Venue id : 1", - "7 | Start : 256", - "8 | End : 256", - "9 | Minimum investment [1/2] : 155236774107032067208054119720528.1478", - "9 | Minimum investment [2/2] : 78", - "10 | Fundraiser name : FundRaiser_Name", - "11 | Chain : Polymesh", - "12 | Nonce : 50283", - "13 | Era Phase : 61", - "14 | Era Period : 64", - "15 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "15 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Utility : Relay tx", + "1 | Target [1/2] : 5H6moo4wU5PEeHwthqGaP9oVjjAcG3PXyn196u", + "1 | Target [2/2] : hgTRKhjCkB", + "2 | Signature [1/4] : 39168992465dc3ce68da7a4809534ad4d2a00f", + "2 | Signature [2/4] : 0b2463fcd6a928a6f09ef9ceaa01ffe0c02124", + "2 | Signature [3/4] : 588d364735253e02523984c6e04aeeb8a755f4", + "2 | Signature [4/4] : 2e42ebcc586e9e", + "3 | Call [1/3] : 5554", + "3 | Call [2/3] : Remark", + "3 | Call [3/3] : 3434", + "4 | Chain : Polymesh", + "5 | Nonce : 50283", + "6 | Tip : POLYX 1234.56789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1370, - "name": "Sto_Create_fundraiser", - "blob": "270064af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e20100000000005449434b45522d313233343564af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e20100000000005449434b45522d31323334350810255d07000000000000000000000000e803000000000000000000000000000010255d07000000000000000000000000e80300000000000000000000000000002309000000000000010001000000000000010001000000000000a6758c3aa9f7ac8766c5a254e283c9743c46756e645261697365725f4e616d65d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1346, + "name": "Utility_Batch_all", + "blob": "2902100000083434000008383800000c31333200000c313736d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Sto : Create fundraiser", - "1 | Offering portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | Offering portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "1 | Offering portfolio [3/3] : 123456", - "2 | Offering asset : TICKER-12345", - "3 | Raising portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "3 | Raising portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "3 | Raising portfolio [3/3] : 123456", - "4 | Raising asset : TICKER-12345", - "5 | Tiers [1/4] : POLYX 123.544848", - "5 | Tiers [2/4] : POLYX 0.001", - "5 | Tiers [3/4] : POLYX 123.544848", - "5 | Tiers [4/4] : POLYX 0.001", - "6 | Venue id : 2339", - "7 | Start : 256", - "8 | End : 256", - "9 | Minimum investment [1/2] : 155236774107032067208054119720528.1478", - "9 | Minimum investment [2/2] : 78", - "10 | Fundraiser name : FundRaiser_Name", - "11 | Tip : POLYX 0.000987" + "0 | Utility : Batch all", + "1 | Calls [1/8] : Remark", + "1 | Calls [2/8] : 3434", + "1 | Calls [3/8] : Remark", + "1 | Calls [4/8] : 3838", + "1 | Calls [5/8] : Remark", + "1 | Calls [6/8] : 313332", + "1 | Calls [7/8] : Remark", + "1 | Calls [8/8] : 313736", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Sto : Create fundraiser", - "1 | Offering portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | Offering portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "1 | Offering portfolio [3/3] : 123456", - "2 | Offering asset : TICKER-12345", - "3 | Raising portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "3 | Raising portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "3 | Raising portfolio [3/3] : 123456", - "4 | Raising asset : TICKER-12345", - "5 | Tiers [1/4] : POLYX 123.544848", - "5 | Tiers [2/4] : POLYX 0.001", - "5 | Tiers [3/4] : POLYX 123.544848", - "5 | Tiers [4/4] : POLYX 0.001", - "6 | Venue id : 2339", - "7 | Start : 256", - "8 | End : 256", - "9 | Minimum investment [1/2] : 155236774107032067208054119720528.1478", - "9 | Minimum investment [2/2] : 78", - "10 | Fundraiser name : FundRaiser_Name", - "11 | Chain : Polymesh", - "12 | Nonce : 50283", - "13 | Tip : POLYX 0.000987", - "14 | Era Phase : 61", - "15 | Era Period : 64", - "16 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "16 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Utility : Batch all", + "1 | Calls [1/8] : Remark", + "1 | Calls [2/8] : 3434", + "1 | Calls [3/8] : Remark", + "1 | Calls [4/8] : 3838", + "1 | Calls [5/8] : Remark", + "1 | Calls [6/8] : 313332", + "1 | Calls [7/8] : Remark", + "1 | Calls [8/8] : 313736", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1371, - "name": "Sto_Invest", - "blob": "270164af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e201000000000064af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e20100000000005449434b45522d31323334350000000000000000a6758c3aa9f7ac8766c5a254e283c9740163ce64c10c050000000000000000000000d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1347, + "name": "Utility_Batch_all", + "blob": "2902040000083434d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Sto : Invest", - "1 | Investment portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | Investment portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "1 | Investment portfolio [3/3] : 123456", - "2 | Funding portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Funding portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Funding portfolio [3/3] : 123456", - "3 | Offering asset : TICKER-12345", - "4 | Id : 0", - "5 | Purchase amount [1/2] : 155236774107032067208054119720528.1478", - "5 | Purchase amount [2/2] : 78", - "6 | Max price : POLYX 5552342.355555", - "7 | Receipt : None", - "8 | Tip : POLYX 0.000987" + "0 | Utility : Batch all", + "1 | Calls [1/2] : Remark", + "1 | Calls [2/2] : 3434", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Sto : Invest", - "1 | Investment portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | Investment portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "1 | Investment portfolio [3/3] : 123456", - "2 | Funding portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Funding portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Funding portfolio [3/3] : 123456", - "3 | Offering asset : TICKER-12345", - "4 | Id : 0", - "5 | Purchase amount [1/2] : 155236774107032067208054119720528.1478", - "5 | Purchase amount [2/2] : 78", - "6 | Max price : POLYX 5552342.355555", - "7 | Receipt : None", - "8 | Chain : Polymesh", - "9 | Nonce : 0", - "10 | Tip : POLYX 0.000987", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Utility : Batch all", + "1 | Calls [1/2] : Remark", + "1 | Calls [2/2] : 3434", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1372, - "name": "Sto_Invest", - "blob": "270164af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e201000000000064af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e20100000000005449434b45522d31323334352309000000000000a6758c3aa9f7ac8766c5a254e283c9740163ce64c10c0500000000000000000000010106d75541357704c9e580476c89e64fc29f6557cdb1acd59d5567684c58fe47c19540662743bcb400983af5998a975e5e731b4b650baaf601139b1a35e4e32ef211f13278942f5b209ae790b2d3d176455c5bbebb115c2f83bb707d1ca8d54b3d37e31c45629390013b8ca08fffbe83b2d3bdbc083a940d5601a3b61d35cc0da6158e6d516a7b14d28fef83edcc1b1aea7c4c728771fcee6ef5d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1348, + "name": "Utility_Batch_all", + "blob": "2902040000083434d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Sto : Invest", - "1 | Investment portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | Investment portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "1 | Investment portfolio [3/3] : 123456", - "2 | Funding portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Funding portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Funding portfolio [3/3] : 123456", - "3 | Offering asset : TICKER-12345", - "4 | Id : 2339", - "5 | Purchase amount [1/2] : 155236774107032067208054119720528.1478", - "5 | Purchase amount [2/2] : 78", - "6 | Max price : POLYX 5552342.355555", - "7 | Receipt [1/11] : 321784453109581313", - "7 | Receipt [2/11] : 5757440271788860873", - "7 | Receipt [3/11] : 15396876721565573058", - "7 | Receipt [4/11] : 2G1CzRHp5dCZ3JJHjnMk5ALqNosBSj7kLHSTUU", - "7 | Receipt [5/11] : 1nzoCEc8s6", - "7 | Receipt [6/11] : 139b1a35e4e32ef211f13278942f5b209ae790", - "7 | Receipt [7/11] : b2d3d176455c5bbebb115c2f83bb707d1ca8d5", - "7 | Receipt [8/11] : 4b3d37e31c45629390013b8ca08fffbe83b2d3", - "7 | Receipt [9/11] : bdbc083a940d56", - "7 | Receipt [10/11] : a3b61d35cc0da6158e6d516a7b14d28fef83ed", - "7 | Receipt [11/11] : cc1b1aea7c4c728771fcee6ef5" + "0 | Utility : Batch all", + "1 | Calls [1/2] : Remark", + "1 | Calls [2/2] : 3434", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Sto : Invest", - "1 | Investment portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | Investment portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "1 | Investment portfolio [3/3] : 123456", - "2 | Funding portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Funding portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Funding portfolio [3/3] : 123456", - "3 | Offering asset : TICKER-12345", - "4 | Id : 2339", - "5 | Purchase amount [1/2] : 155236774107032067208054119720528.1478", - "5 | Purchase amount [2/2] : 78", - "6 | Max price : POLYX 5552342.355555", - "7 | Receipt [1/11] : 321784453109581313", - "7 | Receipt [2/11] : 5757440271788860873", - "7 | Receipt [3/11] : 15396876721565573058", - "7 | Receipt [4/11] : 2G1CzRHp5dCZ3JJHjnMk5ALqNosBSj7kLHSTUU", - "7 | Receipt [5/11] : 1nzoCEc8s6", - "7 | Receipt [6/11] : 139b1a35e4e32ef211f13278942f5b209ae790", - "7 | Receipt [7/11] : b2d3d176455c5bbebb115c2f83bb707d1ca8d5", - "7 | Receipt [8/11] : 4b3d37e31c45629390013b8ca08fffbe83b2d3", - "7 | Receipt [9/11] : bdbc083a940d56", - "7 | Receipt [10/11] : a3b61d35cc0da6158e6d516a7b14d28fef83ed", - "7 | Receipt [11/11] : cc1b1aea7c4c728771fcee6ef5", - "8 | Chain : Polymesh", - "9 | Nonce : 0", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Utility : Batch all", + "1 | Calls [1/2] : Remark", + "1 | Calls [2/2] : 3434", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1373, - "name": "Sto_Invest", - "blob": "270164af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e201000000000064af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e20100000000005449434b45522d31323334350000000000000000a6758c3aa9f7ac8766c5a254e283c97401db030000000000000000000000000000010106d75541357704c9e580476c89e64fc29f6557cdb1acd59d5567684c58fe47c19540662743bcb400983af5998a975e5e731b4b650baaf601139b1a35e4e32ef211f13278942f5b209ae790b2d3d176455c5bbebb115c2f83bb707d1ca8d54b3d37e31c45629390013b8ca08fffbe83b2d3bdbc083a940d5601a3b61d35cc0da6158e6d516a7b14d28fef83edcc1b1aea7c4c728771fcee6ef5d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1349, + "name": "Utility_Batch_all", + "blob": "2902100000083434000008383800000c31333200000c313736d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Sto : Invest", - "1 | Investment portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | Investment portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "1 | Investment portfolio [3/3] : 123456", - "2 | Funding portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Funding portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Funding portfolio [3/3] : 123456", - "3 | Offering asset : TICKER-12345", - "4 | Id : 0", - "5 | Purchase amount [1/2] : 155236774107032067208054119720528.1478", - "5 | Purchase amount [2/2] : 78", - "6 | Max price : POLYX 0.000987", - "7 | Receipt [1/11] : 321784453109581313", - "7 | Receipt [2/11] : 5757440271788860873", - "7 | Receipt [3/11] : 15396876721565573058", - "7 | Receipt [4/11] : 2G1CzRHp5dCZ3JJHjnMk5ALqNosBSj7kLHSTUU", - "7 | Receipt [5/11] : 1nzoCEc8s6", - "7 | Receipt [6/11] : 139b1a35e4e32ef211f13278942f5b209ae790", - "7 | Receipt [7/11] : b2d3d176455c5bbebb115c2f83bb707d1ca8d5", - "7 | Receipt [8/11] : 4b3d37e31c45629390013b8ca08fffbe83b2d3", - "7 | Receipt [9/11] : bdbc083a940d56", - "7 | Receipt [10/11] : a3b61d35cc0da6158e6d516a7b14d28fef83ed", - "7 | Receipt [11/11] : cc1b1aea7c4c728771fcee6ef5" + "0 | Utility : Batch all", + "1 | Calls [1/8] : Remark", + "1 | Calls [2/8] : 3434", + "1 | Calls [3/8] : Remark", + "1 | Calls [4/8] : 3838", + "1 | Calls [5/8] : Remark", + "1 | Calls [6/8] : 313332", + "1 | Calls [7/8] : Remark", + "1 | Calls [8/8] : 313736", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Sto : Invest", - "1 | Investment portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | Investment portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "1 | Investment portfolio [3/3] : 123456", - "2 | Funding portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Funding portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Funding portfolio [3/3] : 123456", - "3 | Offering asset : TICKER-12345", - "4 | Id : 0", - "5 | Purchase amount [1/2] : 155236774107032067208054119720528.1478", - "5 | Purchase amount [2/2] : 78", - "6 | Max price : POLYX 0.000987", - "7 | Receipt [1/11] : 321784453109581313", - "7 | Receipt [2/11] : 5757440271788860873", - "7 | Receipt [3/11] : 15396876721565573058", - "7 | Receipt [4/11] : 2G1CzRHp5dCZ3JJHjnMk5ALqNosBSj7kLHSTUU", - "7 | Receipt [5/11] : 1nzoCEc8s6", - "7 | Receipt [6/11] : 139b1a35e4e32ef211f13278942f5b209ae790", - "7 | Receipt [7/11] : b2d3d176455c5bbebb115c2f83bb707d1ca8d5", - "7 | Receipt [8/11] : 4b3d37e31c45629390013b8ca08fffbe83b2d3", - "7 | Receipt [9/11] : bdbc083a940d56", - "7 | Receipt [10/11] : a3b61d35cc0da6158e6d516a7b14d28fef83ed", - "7 | Receipt [11/11] : cc1b1aea7c4c728771fcee6ef5", - "8 | Chain : Polymesh", - "9 | Nonce : 2339", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Utility : Batch all", + "1 | Calls [1/8] : Remark", + "1 | Calls [2/8] : 3434", + "1 | Calls [3/8] : Remark", + "1 | Calls [4/8] : 3838", + "1 | Calls [5/8] : Remark", + "1 | Calls [6/8] : 313332", + "1 | Calls [7/8] : Remark", + "1 | Calls [8/8] : 313736", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1374, - "name": "Sto_Invest", - "blob": "270164af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e201000000000064af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e20100000000005449434b45522d31323334356400000000000000a6758c3aa9f7ac8766c5a254e283c97401d202964900000000000000000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1350, + "name": "Utility_Batch_all", + "blob": "2902100000083434000008383800000c31333200000c313736d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Sto : Invest", - "1 | Investment portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | Investment portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "1 | Investment portfolio [3/3] : 123456", - "2 | Funding portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Funding portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Funding portfolio [3/3] : 123456", - "3 | Offering asset : TICKER-12345", - "4 | Id : 100", - "5 | Purchase amount [1/2] : 155236774107032067208054119720528.1478", - "5 | Purchase amount [2/2] : 78", - "6 | Max price : POLYX 1234.56789", - "7 | Receipt : None", - "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "8 | Tip [2/2] : 3.456789" + "0 | Utility : Batch all", + "1 | Calls [1/8] : Remark", + "1 | Calls [2/8] : 3434", + "1 | Calls [3/8] : Remark", + "1 | Calls [4/8] : 3838", + "1 | Calls [5/8] : Remark", + "1 | Calls [6/8] : 313332", + "1 | Calls [7/8] : Remark", + "1 | Calls [8/8] : 313736", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Sto : Invest", - "1 | Investment portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | Investment portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "1 | Investment portfolio [3/3] : 123456", - "2 | Funding portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Funding portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Funding portfolio [3/3] : 123456", - "3 | Offering asset : TICKER-12345", - "4 | Id : 100", - "5 | Purchase amount [1/2] : 155236774107032067208054119720528.1478", - "5 | Purchase amount [2/2] : 78", - "6 | Max price : POLYX 1234.56789", - "7 | Receipt : None", - "8 | Chain : Polymesh", - "9 | Nonce : 100", - "10 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "10 | Tip [2/2] : 3.456789", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Utility : Batch all", + "1 | Calls [1/8] : Remark", + "1 | Calls [2/8] : 3434", + "1 | Calls [3/8] : Remark", + "1 | Calls [4/8] : 3838", + "1 | Calls [5/8] : Remark", + "1 | Calls [6/8] : 313332", + "1 | Calls [7/8] : Remark", + "1 | Calls [8/8] : 313736", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1375, - "name": "Sto_Invest", - "blob": "270164af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e201000000000064af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e20100000000005449434b45522d31323334350000000000000000a6758c3aa9f7ac8766c5a254e283c97401db030000000000000000000000000000010106d75541357704c9e580476c89e64fc29f6557cdb1acd59d5567684c58fe47c19540662743bcb400983af5998a975e5e731b4b650baaf601139b1a35e4e32ef211f13278942f5b209ae790b2d3d176455c5bbebb115c2f83bb707d1ca8d54b3d37e31c45629390013b8ca08fffbe83b2d3bdbc083a940d5601a3b61d35cc0da6158e6d516a7b14d28fef83edcc1b1aea7c4c728771fcee6ef5d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1351, + "name": "Utility_Dispatch_as", + "blob": "2903000179436267962055bb0ad88113532f4f4b2c171ef609a8a755af1fa3194730ec200000083434d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Sto : Invest", - "1 | Investment portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | Investment portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "1 | Investment portfolio [3/3] : 123456", - "2 | Funding portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Funding portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Funding portfolio [3/3] : 123456", - "3 | Offering asset : TICKER-12345", - "4 | Id : 0", - "5 | Purchase amount [1/2] : 155236774107032067208054119720528.1478", - "5 | Purchase amount [2/2] : 78", - "6 | Max price : POLYX 0.000987", - "7 | Receipt [1/11] : 321784453109581313", - "7 | Receipt [2/11] : 5757440271788860873", - "7 | Receipt [3/11] : 15396876721565573058", - "7 | Receipt [4/11] : 2G1CzRHp5dCZ3JJHjnMk5ALqNosBSj7kLHSTUU", - "7 | Receipt [5/11] : 1nzoCEc8s6", - "7 | Receipt [6/11] : 139b1a35e4e32ef211f13278942f5b209ae790", - "7 | Receipt [7/11] : b2d3d176455c5bbebb115c2f83bb707d1ca8d5", - "7 | Receipt [8/11] : 4b3d37e31c45629390013b8ca08fffbe83b2d3", - "7 | Receipt [9/11] : bdbc083a940d56", - "7 | Receipt [10/11] : a3b61d35cc0da6158e6d516a7b14d28fef83ed", - "7 | Receipt [11/11] : cc1b1aea7c4c728771fcee6ef5", - "8 | Tip : POLYX 5552342.355555" + "0 | Utility : Dispatch as", + "1 | As origin [1/2] : 5EohfjGsVBEsr1zuqPtuMuFupxYWd1FaMrDNKt", + "1 | As origin [2/2] : FzjFaYFgu1", + "2 | Call [1/2] : Remark", + "2 | Call [2/2] : 3434" ], "output_expert": [ - "0 | Sto : Invest", - "1 | Investment portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "1 | Investment portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "1 | Investment portfolio [3/3] : 123456", - "2 | Funding portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "2 | Funding portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "2 | Funding portfolio [3/3] : 123456", - "3 | Offering asset : TICKER-12345", - "4 | Id : 0", - "5 | Purchase amount [1/2] : 155236774107032067208054119720528.1478", - "5 | Purchase amount [2/2] : 78", - "6 | Max price : POLYX 0.000987", - "7 | Receipt [1/11] : 321784453109581313", - "7 | Receipt [2/11] : 5757440271788860873", - "7 | Receipt [3/11] : 15396876721565573058", - "7 | Receipt [4/11] : 2G1CzRHp5dCZ3JJHjnMk5ALqNosBSj7kLHSTUU", - "7 | Receipt [5/11] : 1nzoCEc8s6", - "7 | Receipt [6/11] : 139b1a35e4e32ef211f13278942f5b209ae790", - "7 | Receipt [7/11] : b2d3d176455c5bbebb115c2f83bb707d1ca8d5", - "7 | Receipt [8/11] : 4b3d37e31c45629390013b8ca08fffbe83b2d3", - "7 | Receipt [9/11] : bdbc083a940d56", - "7 | Receipt [10/11] : a3b61d35cc0da6158e6d516a7b14d28fef83ed", - "7 | Receipt [11/11] : cc1b1aea7c4c728771fcee6ef5", - "8 | Chain : Polymesh", - "9 | Nonce : 100", - "10 | Tip : POLYX 5552342.355555", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Utility : Dispatch as", + "1 | As origin [1/2] : 5EohfjGsVBEsr1zuqPtuMuFupxYWd1FaMrDNKt", + "1 | As origin [2/2] : FzjFaYFgu1", + "2 | Call [1/2] : Remark", + "2 | Call [2/2] : 3434", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1376, - "name": "Sto_Freeze_fundraiser", - "blob": "27025449434b45522d31323334356400000000000000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1352, + "name": "Utility_Dispatch_as", + "blob": "290300020000083434d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Sto : Freeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 100", - "3 | Tip : POLYX 0.000987" + "0 | Utility : Dispatch as", + "1 | As origin : None", + "2 | Call [1/2] : Remark", + "2 | Call [2/2] : 3434", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Sto : Freeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 100", + "0 | Utility : Dispatch as", + "1 | As origin : None", + "2 | Call [1/2] : Remark", + "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 100", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1377, - "name": "Sto_Freeze_fundraiser", - "blob": "27025449434b45522d31323334350000000000000000d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1353, + "name": "Utility_Dispatch_as", + "blob": "290309000000083434d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Sto : Freeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 0", - "3 | Tip : POLYX 5552342.355555" + "0 | Utility : Dispatch as", + "1 | As origin [1/2] : PolymeshCommittee", + "1 | As origin [2/2] : Endorsed", + "2 | Call [1/2] : Remark", + "2 | Call [2/2] : 3434", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Sto : Freeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 0", + "0 | Utility : Dispatch as", + "1 | As origin [1/2] : PolymeshCommittee", + "1 | As origin [2/2] : Endorsed", + "2 | Call [1/2] : Remark", + "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 1", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1378, - "name": "Sto_Freeze_fundraiser", - "blob": "27025449434b45522d31323334350000000000000000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1354, + "name": "Utility_Dispatch_as", + "blob": "290300000000083434d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Sto : Freeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 0", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Sto : Freeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 0", + "0 | Utility : Dispatch as", + "1 | As origin : Root", + "2 | Call [1/2] : Remark", + "2 | Call [2/2] : 3434", + "3 | Tip : POLYX 55.555555" + ], + "output_expert": [ + "0 | Utility : Dispatch as", + "1 | As origin : Root", + "2 | Call [1/2] : Remark", + "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", + "4 | Nonce : 0", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1379, - "name": "Sto_Freeze_fundraiser", - "blob": "27025449434b45522d31323334350100000000000000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1355, + "name": "Utility_Dispatch_as", + "blob": "290300020000083434d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Sto : Freeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 1" + "0 | Utility : Dispatch as", + "1 | As origin : None", + "2 | Call [1/2] : Remark", + "2 | Call [2/2] : 3434", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Sto : Freeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 1", + "0 | Utility : Dispatch as", + "1 | As origin : None", + "2 | Call [1/2] : Remark", + "2 | Call [2/2] : 3434", "3 | Chain : Polymesh", - "4 | Nonce : 2339", + "4 | Nonce : 1", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 1356, + "name": "Utility_Force_batch", + "blob": "29040800000834340000083838d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Utility : Force batch", + "1 | Calls [1/4] : Remark", + "1 | Calls [2/4] : 3434", + "1 | Calls [3/4] : Remark", + "1 | Calls [4/4] : 3838", + "2 | Tip : POLYX 1234.56789" + ], + "output_expert": [ + "0 | Utility : Force batch", + "1 | Calls [1/4] : Remark", + "1 | Calls [2/4] : 3434", + "1 | Calls [3/4] : Remark", + "1 | Calls [4/4] : 3838", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1380, - "name": "Sto_Freeze_fundraiser", - "blob": "27025449434b45522d31323334350100000000000000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1357, + "name": "Utility_Force_batch", + "blob": "2904040000083434d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Sto : Freeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 1" + "0 | Utility : Force batch", + "1 | Calls [1/2] : Remark", + "1 | Calls [2/2] : 3434", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Sto : Freeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 1", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", + "0 | Utility : Force batch", + "1 | Calls [1/2] : Remark", + "1 | Calls [2/2] : 3434", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1381, - "name": "Sto_Unfreeze_fundraiser", - "blob": "27035449434b45522d31323334350000000000000000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1358, + "name": "Utility_Force_batch", + "blob": "29040800000834340000083838d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Sto : Unfreeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 0" + "0 | Utility : Force batch", + "1 | Calls [1/4] : Remark", + "1 | Calls [2/4] : 3434", + "1 | Calls [3/4] : Remark", + "1 | Calls [4/4] : 3838", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Sto : Unfreeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", + "0 | Utility : Force batch", + "1 | Calls [1/4] : Remark", + "1 | Calls [2/4] : 3434", + "1 | Calls [3/4] : Remark", + "1 | Calls [4/4] : 3838", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1382, - "name": "Sto_Unfreeze_fundraiser", - "blob": "27035449434b45522d31323334356bc4000000000000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1359, + "name": "Utility_Force_batch", + "blob": "2904040000083434d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Sto : Unfreeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 50283" + "0 | Utility : Force batch", + "1 | Calls [1/2] : Remark", + "1 | Calls [2/2] : 3434", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Sto : Unfreeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 50283", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", + "0 | Utility : Force batch", + "1 | Calls [1/2] : Remark", + "1 | Calls [2/2] : 3434", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1383, - "name": "Sto_Unfreeze_fundraiser", - "blob": "27035449434b45522d31323334350100000000000000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1360, + "name": "Utility_Force_batch", + "blob": "2904040000083434d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Sto : Unfreeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 1", - "3 | Tip : POLYX 0.000987" + "0 | Utility : Force batch", + "1 | Calls [1/2] : Remark", + "1 | Calls [2/2] : 3434" ], "output_expert": [ - "0 | Sto : Unfreeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 1", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Utility : Force batch", + "1 | Calls [1/2] : Remark", + "1 | Calls [2/2] : 3434", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1384, - "name": "Sto_Unfreeze_fundraiser", - "blob": "27035449434b45522d31323334350000000000000000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1361, + "name": "Utility_With_weight", + "blob": "290500000834343641c20b88d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Sto : Unfreeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 0", - "3 | Tip : POLYX 1234.56789" + "0 | Utility : With weight", + "1 | Call [1/2] : Remark", + "1 | Call [2/2] : 3434", + "2 | Weight [1/2] : 49320013", + "2 | Weight [2/2] : 34" ], "output_expert": [ - "0 | Sto : Unfreeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 0", + "0 | Utility : With weight", + "1 | Call [1/2] : Remark", + "1 | Call [2/2] : 3434", + "2 | Weight [1/2] : 49320013", + "2 | Weight [2/2] : 34", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 0", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1385, - "name": "Sto_Unfreeze_fundraiser", - "blob": "27035449434b45522d31323334356400000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1362, + "name": "Utility_With_weight", + "blob": "2905000008343413ebd18da2a0682bd213e3b1c6f54a741ea9d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Sto : Unfreeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 100", + "0 | Utility : With weight", + "1 | Call [1/2] : Remark", + "1 | Call [2/2] : 3434", + "2 | Weight [1/2] : 15144313211094684139", + "2 | Weight [2/2] : 12186305507010982371", "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Sto : Unfreeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 100", + "0 | Utility : With weight", + "1 | Call [1/2] : Remark", + "1 | Call [2/2] : 3434", + "2 | Weight [1/2] : 15144313211094684139", + "2 | Weight [2/2] : 12186305507010982371", "3 | Chain : Polymesh", "4 | Nonce : 100", "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1386, - "name": "Sto_Modify_fundraiser_window", - "blob": "27045449434b45522d313233343501000000000000000001000000000000010008000000000000d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1363, + "name": "Utility_With_weight", + "blob": "290500000834343641c20b88d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Sto : Modify fundraiser window", - "1 | Offering asset : TICKER-12345", - "2 | Id : 1", - "3 | Start : 256", - "4 | End : 2048", - "5 | Tip : POLYX 0.000987" + "0 | Utility : With weight", + "1 | Call [1/2] : Remark", + "1 | Call [2/2] : 3434", + "2 | Weight [1/2] : 49320013", + "2 | Weight [2/2] : 34", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Sto : Modify fundraiser window", - "1 | Offering asset : TICKER-12345", - "2 | Id : 1", - "3 | Start : 256", - "4 | End : 2048", - "5 | Chain : Polymesh", - "6 | Nonce : 50283", - "7 | Tip : POLYX 0.000987", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Utility : With weight", + "1 | Call [1/2] : Remark", + "1 | Call [2/2] : 3434", + "2 | Weight [1/2] : 49320013", + "2 | Weight [2/2] : 34", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1387, - "name": "Sto_Modify_fundraiser_window", - "blob": "27045449434b45522d313233343500000000000000008000000000000000010008000000000000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1364, + "name": "Utility_With_weight", + "blob": "29050000083434d6b9750ca2f53943d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Sto : Modify fundraiser window", - "1 | Offering asset : TICKER-12345", - "2 | Id : 0", - "3 | Start : 128", - "4 | End : 2048", - "5 | Tip : POLYX 1234.56789" + "0 | Utility : With weight", + "1 | Call [1/2] : Remark", + "1 | Call [2/2] : 3434", + "2 | Weight [1/2] : 52260469", + "2 | Weight [2/2] : 281967976", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Sto : Modify fundraiser window", - "1 | Offering asset : TICKER-12345", - "2 | Id : 0", - "3 | Start : 128", - "4 | End : 2048", - "5 | Chain : Polymesh", - "6 | Nonce : 100", - "7 | Tip : POLYX 1234.56789", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Utility : With weight", + "1 | Call [1/2] : Remark", + "1 | Call [2/2] : 3434", + "2 | Weight [1/2] : 52260469", + "2 | Weight [2/2] : 281967976", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1388, - "name": "Sto_Modify_fundraiser_window", - "blob": "27045449434b45522d313233343523090000000000000008000000000000010001000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1365, + "name": "Utility_With_weight", + "blob": "2905000008343413ebd18da2a0682bd213e3b1c6f54a741ea9d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Sto : Modify fundraiser window", - "1 | Offering asset : TICKER-12345", - "2 | Id : 2339", - "3 | Start : 2048", - "4 | End : 256", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789" + "0 | Utility : With weight", + "1 | Call [1/2] : Remark", + "1 | Call [2/2] : 3434", + "2 | Weight [1/2] : 15144313211094684139", + "2 | Weight [2/2] : 12186305507010982371", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Sto : Modify fundraiser window", - "1 | Offering asset : TICKER-12345", - "2 | Id : 2339", - "3 | Start : 2048", - "4 | End : 256", - "5 | Chain : Polymesh", - "6 | Nonce : 0", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1389, - "name": "Sto_Modify_fundraiser_window", - "blob": "27045449434b45522d313233343500000000000000000008000000000000010001000000000000d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Sto : Modify fundraiser window", - "1 | Offering asset : TICKER-12345", - "2 | Id : 0", - "3 | Start : 2048", - "4 | End : 256", - "5 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Sto : Modify fundraiser window", - "1 | Offering asset : TICKER-12345", - "2 | Id : 0", - "3 | Start : 2048", - "4 | End : 256", - "5 | Chain : Polymesh", - "6 | Nonce : 50283", - "7 | Tip : POLYX 1234.56789", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1390, - "name": "Sto_Modify_fundraiser_window", - "blob": "27045449434b45522d313233343564000000000000008000000000000000018000000000000000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Sto : Modify fundraiser window", - "1 | Offering asset : TICKER-12345", - "2 | Id : 100", - "3 | Start : 128", - "4 | End : 128" - ], - "output_expert": [ - "0 | Sto : Modify fundraiser window", - "1 | Offering asset : TICKER-12345", - "2 | Id : 100", - "3 | Start : 128", - "4 | End : 128", - "5 | Chain : Polymesh", - "6 | Nonce : 2339", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1391, - "name": "Sto_Stop", - "blob": "27055449434b45522d31323334350100000000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Sto : Stop", - "1 | Offering asset : TICKER-12345", - "2 | Id : 1", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Sto : Stop", - "1 | Offering asset : TICKER-12345", - "2 | Id : 1", + "0 | Utility : With weight", + "1 | Call [1/2] : Remark", + "1 | Call [2/2] : 3434", + "2 | Weight [1/2] : 15144313211094684139", + "2 | Weight [2/2] : 12186305507010982371", "3 | Chain : Polymesh", "4 | Nonce : 2339", "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1392, - "name": "Sto_Stop", - "blob": "27055449434b45522d31323334356400000000000000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1366, + "name": "Utility_Batch_old", + "blob": "29060800000834340000083838d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Sto : Stop", - "1 | Offering asset : TICKER-12345", - "2 | Id : 100", - "3 | Tip : POLYX 5552342.355555" + "0 | Utility : Batch old", + "1 | Calls [1/4] : Remark", + "1 | Calls [2/4] : 3434", + "1 | Calls [3/4] : Remark", + "1 | Calls [4/4] : 3838", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Sto : Stop", - "1 | Offering asset : TICKER-12345", - "2 | Id : 100", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Utility : Batch old", + "1 | Calls [1/4] : Remark", + "1 | Calls [2/4] : 3434", + "1 | Calls [3/4] : Remark", + "1 | Calls [4/4] : 3838", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1393, - "name": "Sto_Stop", - "blob": "27055449434b45522d31323334356400000000000000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1367, + "name": "Utility_Batch_old", + "blob": "2906100000083434000008383800000c31333200000c313736d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Sto : Stop", - "1 | Offering asset : TICKER-12345", - "2 | Id : 100", - "3 | Tip : POLYX 1234.56789" + "0 | Utility : Batch old", + "1 | Calls [1/8] : Remark", + "1 | Calls [2/8] : 3434", + "1 | Calls [3/8] : Remark", + "1 | Calls [4/8] : 3838", + "1 | Calls [5/8] : Remark", + "1 | Calls [6/8] : 313332", + "1 | Calls [7/8] : Remark", + "1 | Calls [8/8] : 313736", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Sto : Stop", - "1 | Offering asset : TICKER-12345", - "2 | Id : 100", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Utility : Batch old", + "1 | Calls [1/8] : Remark", + "1 | Calls [2/8] : 3434", + "1 | Calls [3/8] : Remark", + "1 | Calls [4/8] : 3838", + "1 | Calls [5/8] : Remark", + "1 | Calls [6/8] : 313332", + "1 | Calls [7/8] : Remark", + "1 | Calls [8/8] : 313736", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1394, - "name": "Sto_Stop", - "blob": "27055449434b45522d31323334356400000000000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1368, + "name": "Utility_Batch_old", + "blob": "29060800000834340000083838d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Sto : Stop", - "1 | Offering asset : TICKER-12345", - "2 | Id : 100", - "3 | Tip : POLYX 5552342.355555" + "0 | Utility : Batch old", + "1 | Calls [1/4] : Remark", + "1 | Calls [2/4] : 3434", + "1 | Calls [3/4] : Remark", + "1 | Calls [4/4] : 3838", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Sto : Stop", - "1 | Offering asset : TICKER-12345", - "2 | Id : 100", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Utility : Batch old", + "1 | Calls [1/4] : Remark", + "1 | Calls [2/4] : 3434", + "1 | Calls [3/4] : Remark", + "1 | Calls [4/4] : 3838", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1395, - "name": "Sto_Stop", - "blob": "27055449434b45522d31323334356400000000000000d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1369, + "name": "Utility_Batch_old", + "blob": "2906040000083434d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Sto : Stop", - "1 | Offering asset : TICKER-12345", - "2 | Id : 100", - "3 | Tip : POLYX 0.000987" + "0 | Utility : Batch old", + "1 | Calls [1/2] : Remark", + "1 | Calls [2/2] : 3434", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Sto : Stop", - "1 | Offering asset : TICKER-12345", - "2 | Id : 100", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Utility : Batch old", + "1 | Calls [1/2] : Remark", + "1 | Calls [2/2] : 3434", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1396, - "name": "Treasury_Disbursement", - "blob": "280000d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1370, + "name": "Utility_Batch_old", + "blob": "2906100000083434000008383800000c31333200000c313736d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Treasury : Disbursement", - "1 | Beneficiaries : ", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Utility : Batch old", + "1 | Calls [1/8] : Remark", + "1 | Calls [2/8] : 3434", + "1 | Calls [3/8] : Remark", + "1 | Calls [4/8] : 3838", + "1 | Calls [5/8] : Remark", + "1 | Calls [6/8] : 313332", + "1 | Calls [7/8] : Remark", + "1 | Calls [8/8] : 313736" ], "output_expert": [ - "0 | Treasury : Disbursement", - "1 | Beneficiaries : ", + "0 | Utility : Batch old", + "1 | Calls [1/8] : Remark", + "1 | Calls [2/8] : 3434", + "1 | Calls [3/8] : Remark", + "1 | Calls [4/8] : 3838", + "1 | Calls [5/8] : Remark", + "1 | Calls [6/8] : 313332", + "1 | Calls [7/8] : Remark", + "1 | Calls [8/8] : 313736", "2 | Chain : Polymesh", "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1397, - "name": "Treasury_Disbursement", - "blob": "280000d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1371, + "name": "Utility_Batch_atomic", + "blob": "2907040000083434d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Treasury : Disbursement", - "1 | Beneficiaries : ", + "0 | Utility : Batch atomic", + "1 | Calls [1/2] : Remark", + "1 | Calls [2/2] : 3434", "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Treasury : Disbursement", - "1 | Beneficiaries : ", + "0 | Utility : Batch atomic", + "1 | Calls [1/2] : Remark", + "1 | Calls [2/2] : 3434", "2 | Chain : Polymesh", - "3 | Nonce : 100", + "3 | Nonce : 2339", "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1398, - "name": "Treasury_Disbursement", - "blob": "280004fad53dc0c26c82295bc30a208d29a7d6528e79ec65e300ac78f5650f146aa8e0fcd91200000000000000000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1372, + "name": "Utility_Batch_atomic", + "blob": "2907100000083434000008383800000c31333200000c313736d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Treasury : Disbursement", - "1 | Beneficiaries [1/3] : fad53dc0c26c82295bc30a208d29a7d6528e79", - "1 | Beneficiaries [2/3] : ec65e300ac78f5650f146aa8e0", - "1 | Beneficiaries [3/3] : POLYX 1.235452", + "0 | Utility : Batch atomic", + "1 | Calls [1/8] : Remark", + "1 | Calls [2/8] : 3434", + "1 | Calls [3/8] : Remark", + "1 | Calls [4/8] : 3838", + "1 | Calls [5/8] : Remark", + "1 | Calls [6/8] : 313332", + "1 | Calls [7/8] : Remark", + "1 | Calls [8/8] : 313736", "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Treasury : Disbursement", - "1 | Beneficiaries [1/3] : fad53dc0c26c82295bc30a208d29a7d6528e79", - "1 | Beneficiaries [2/3] : ec65e300ac78f5650f146aa8e0", - "1 | Beneficiaries [3/3] : POLYX 1.235452", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1399, - "name": "Treasury_Disbursement", - "blob": "280000d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Treasury : Disbursement", - "1 | Beneficiaries : " - ], - "output_expert": [ - "0 | Treasury : Disbursement", - "1 | Beneficiaries : ", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1400, - "name": "Treasury_Disbursement", - "blob": "280004fad53dc0c26c82295bc30a208d29a7d6528e79ec65e300ac78f5650f146aa8e0fcd91200000000000000000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Treasury : Disbursement", - "1 | Beneficiaries [1/3] : fad53dc0c26c82295bc30a208d29a7d6528e79", - "1 | Beneficiaries [2/3] : ec65e300ac78f5650f146aa8e0", - "1 | Beneficiaries [3/3] : POLYX 1.235452", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Treasury : Disbursement", - "1 | Beneficiaries [1/3] : fad53dc0c26c82295bc30a208d29a7d6528e79", - "1 | Beneficiaries [2/3] : ec65e300ac78f5650f146aa8e0", - "1 | Beneficiaries [3/3] : POLYX 1.235452", + "0 | Utility : Batch atomic", + "1 | Calls [1/8] : Remark", + "1 | Calls [2/8] : 3434", + "1 | Calls [3/8] : Remark", + "1 | Calls [4/8] : 3838", + "1 | Calls [5/8] : Remark", + "1 | Calls [6/8] : 313332", + "1 | Calls [7/8] : Remark", + "1 | Calls [8/8] : 313736", "2 | Chain : Polymesh", - "3 | Nonce : 100", + "3 | Nonce : 50283", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1401, - "name": "Treasury_Reimbursement", - "blob": "280140d8127ea9f0d1cdf6126ec9c838c9bad50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1373, + "name": "Utility_Batch_atomic", + "blob": "29070800000834340000083838d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Treasury : Reimbursement", - "1 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "1 | Amount [2/2] : 4.68768", + "0 | Utility : Batch atomic", + "1 | Calls [1/4] : Remark", + "1 | Calls [2/4] : 3434", + "1 | Calls [3/4] : Remark", + "1 | Calls [4/4] : 3838", "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Treasury : Reimbursement", - "1 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "1 | Amount [2/2] : 4.68768", + "0 | Utility : Batch atomic", + "1 | Calls [1/4] : Remark", + "1 | Calls [2/4] : 3434", + "1 | Calls [3/4] : Remark", + "1 | Calls [4/4] : 3838", "2 | Chain : Polymesh", - "3 | Nonce : 100", + "3 | Nonce : 2339", "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1402, - "name": "Treasury_Reimbursement", - "blob": "280140d8127ea9f0d1cdf6126ec9c838c9bad5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Treasury : Reimbursement", - "1 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "1 | Amount [2/2] : 4.68768" - ], - "output_expert": [ - "0 | Treasury : Reimbursement", - "1 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "1 | Amount [2/2] : 4.68768", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1403, - "name": "Treasury_Reimbursement", - "blob": "280140d8127ea9f0d1cdf6126ec9c838c9bad50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Treasury : Reimbursement", - "1 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "1 | Amount [2/2] : 4.68768" - ], - "output_expert": [ - "0 | Treasury : Reimbursement", - "1 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "1 | Amount [2/2] : 4.68768", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1404, - "name": "Treasury_Reimbursement", - "blob": "280140d8127ea9f0d1cdf6126ec9c838c9bad503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1374, + "name": "Utility_Batch_atomic", + "blob": "2907100000083434000008383800000c31333200000c313736d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Treasury : Reimbursement", - "1 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "1 | Amount [2/2] : 4.68768", - "2 | Tip : POLYX 0.000987" + "0 | Utility : Batch atomic", + "1 | Calls [1/8] : Remark", + "1 | Calls [2/8] : 3434", + "1 | Calls [3/8] : Remark", + "1 | Calls [4/8] : 3838", + "1 | Calls [5/8] : Remark", + "1 | Calls [6/8] : 313332", + "1 | Calls [7/8] : Remark", + "1 | Calls [8/8] : 313736", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Treasury : Reimbursement", - "1 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "1 | Amount [2/2] : 4.68768", + "0 | Utility : Batch atomic", + "1 | Calls [1/8] : Remark", + "1 | Calls [2/8] : 3434", + "1 | Calls [3/8] : Remark", + "1 | Calls [4/8] : 3838", + "1 | Calls [5/8] : Remark", + "1 | Calls [6/8] : 313332", + "1 | Calls [7/8] : Remark", + "1 | Calls [8/8] : 313736", "2 | Chain : Polymesh", "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1405, - "name": "Treasury_Reimbursement", - "blob": "280140d8127ea9f0d1cdf6126ec9c838c9bad503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Treasury : Reimbursement", - "1 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "1 | Amount [2/2] : 4.68768", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Treasury : Reimbursement", - "1 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "1 | Amount [2/2] : 4.68768", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1406, - "name": "Utility_Batch", - "blob": "2900100000083434000008383800000c31333200000c313736d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1375, + "name": "Utility_Batch_atomic", + "blob": "2907100000083434000008383800000c31333200000c313736d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Batch", + "0 | Utility : Batch atomic", "1 | Calls [1/8] : Remark", "1 | Calls [2/8] : 3434", "1 | Calls [3/8] : Remark", @@ -37597,10 +37624,10 @@ "1 | Calls [6/8] : 313332", "1 | Calls [7/8] : Remark", "1 | Calls [8/8] : 313736", - "2 | Tip : POLYX 55.555555" + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Utility : Batch", + "0 | Utility : Batch atomic", "1 | Calls [1/8] : Remark", "1 | Calls [2/8] : 3434", "1 | Calls [3/8] : Remark", @@ -37611,69 +37638,92 @@ "1 | Calls [8/8] : 313736", "2 | Chain : Polymesh", "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1407, - "name": "Utility_Batch", - "blob": "2900040000083434d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1376, + "name": "Utility_Batch_optimistic", + "blob": "2908040000083434d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Batch", + "0 | Utility : Batch optimistic", "1 | Calls [1/2] : Remark", "1 | Calls [2/2] : 3434", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Utility : Batch", + "0 | Utility : Batch optimistic", "1 | Calls [1/2] : Remark", "1 | Calls [2/2] : 3434", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 2339", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1408, - "name": "Utility_Batch", - "blob": "2900040000083434d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1377, + "name": "Utility_Batch_optimistic", + "blob": "2908040000083434d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Batch", + "0 | Utility : Batch optimistic", "1 | Calls [1/2] : Remark", "1 | Calls [2/2] : 3434", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Utility : Batch", + "0 | Utility : Batch optimistic", "1 | Calls [1/2] : Remark", "1 | Calls [2/2] : 3434", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1409, - "name": "Utility_Batch", - "blob": "2900100000083434000008383800000c31333200000c313736d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1378, + "name": "Utility_Batch_optimistic", + "blob": "29080800000834340000083838d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Batch", + "0 | Utility : Batch optimistic", + "1 | Calls [1/4] : Remark", + "1 | Calls [2/4] : 3434", + "1 | Calls [3/4] : Remark", + "1 | Calls [4/4] : 3838", + "2 | Tip : POLYX 5552342.355555" + ], + "output_expert": [ + "0 | Utility : Batch optimistic", + "1 | Calls [1/4] : Remark", + "1 | Calls [2/4] : 3434", + "1 | Calls [3/4] : Remark", + "1 | Calls [4/4] : 3838", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 1379, + "name": "Utility_Batch_optimistic", + "blob": "2908100000083434000008383800000c31333200000c313736d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Utility : Batch optimistic", "1 | Calls [1/8] : Remark", "1 | Calls [2/8] : 3434", "1 | Calls [3/8] : Remark", @@ -37682,10 +37732,11 @@ "1 | Calls [6/8] : 313332", "1 | Calls [7/8] : Remark", "1 | Calls [8/8] : 313736", - "2 | Tip : POLYX 0.000987" + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Utility : Batch", + "0 | Utility : Batch optimistic", "1 | Calls [1/8] : Remark", "1 | Calls [2/8] : 3434", "1 | Calls [3/8] : Remark", @@ -37695,5085 +37746,4612 @@ "1 | Calls [7/8] : Remark", "1 | Calls [8/8] : 313736", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1410, - "name": "Utility_Batch", - "blob": "29000800000834340000083838d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1380, + "name": "Utility_Batch_optimistic", + "blob": "2908040000083434d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Batch", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838" + "0 | Utility : Batch optimistic", + "1 | Calls [1/2] : Remark", + "1 | Calls [2/2] : 3434", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Utility : Batch", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", + "0 | Utility : Batch optimistic", + "1 | Calls [1/2] : Remark", + "1 | Calls [2/2] : 3434", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "3 | Nonce : 50283", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1411, - "name": "Utility_Relay_tx", - "blob": "2901248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0302028e07cd8bc77d740373e000535f4733fe655362ef863e0a0c1e531335a0008aa94078d2441b321c21ab33a68753cfbf33d9ab8d2cfdcba8283805ee803503c76eb2150000000000000000083434d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1381, + "name": "Externalagents_Create_group", + "blob": "2b00417373657449442d31323334353637380104043001042c446973706174636858595ad5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Relay tx", - "1 | Target [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Target [2/2] : D5gRxEbABD", - "2 | Signature [1/4] : 028e07cd8bc77d740373e000535f4733fe6553", - "2 | Signature [2/4] : 62ef863e0a0c1e531335a0008aa94078d2441b", - "2 | Signature [3/4] : 321c21ab33a68753cfbf33d9ab8d2cfdcba828", - "2 | Signature [4/4] : 3805ee803503c76e", - "3 | Call [1/3] : 5554", - "3 | Call [2/3] : Remark", - "3 | Call [3/3] : 3434", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "0 | Externalagents : Create group", + "1 | Asset id : AssetID-12345678", + "2 | Perms [1/4] : These", + "2 | Perms [2/4] : 0", + "2 | Perms [3/4] : These", + "2 | Perms [4/4] : DispatchXYZ", + "3 | Tip : POLYX 1234.56789" + ], + "output_expert": [ + "0 | Externalagents : Create group", + "1 | Asset id : AssetID-12345678", + "2 | Perms [1/4] : These", + "2 | Perms [2/4] : 0", + "2 | Perms [3/4] : These", + "2 | Perms [4/4] : DispatchXYZ", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 1382, + "name": "Externalagents_Create_group", + "blob": "2b00417373657449442d313233343536373800d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Externalagents : Create group", + "1 | Asset id : AssetID-12345678", + "2 | Perms : Whole", + "3 | Tip : POLYX 1234.56789" + ], + "output_expert": [ + "0 | Externalagents : Create group", + "1 | Asset id : AssetID-12345678", + "2 | Perms : Whole", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 1383, + "name": "Externalagents_Create_group", + "blob": "2b00417373657449442d31323334353637380204043001042c446973706174636858595ad503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Externalagents : Create group", + "1 | Asset id : AssetID-12345678", + "2 | Perms [1/4] : Except", + "2 | Perms [2/4] : 0", + "2 | Perms [3/4] : These", + "2 | Perms [4/4] : DispatchXYZ", + "3 | Tip : POLYX 0.000987" + ], + "output_expert": [ + "0 | Externalagents : Create group", + "1 | Asset id : AssetID-12345678", + "2 | Perms [1/4] : Except", + "2 | Perms [2/4] : 0", + "2 | Perms [3/4] : These", + "2 | Perms [4/4] : DispatchXYZ", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 1384, + "name": "Externalagents_Create_group", + "blob": "2b00417373657449442d31323334353637380204043001042c446973706174636858595ad503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Externalagents : Create group", + "1 | Asset id : AssetID-12345678", + "2 | Perms [1/4] : Except", + "2 | Perms [2/4] : 0", + "2 | Perms [3/4] : These", + "2 | Perms [4/4] : DispatchXYZ", + "3 | Tip : POLYX 5552342.355555" + ], + "output_expert": [ + "0 | Externalagents : Create group", + "1 | Asset id : AssetID-12345678", + "2 | Perms [1/4] : Except", + "2 | Perms [2/4] : 0", + "2 | Perms [3/4] : These", + "2 | Perms [4/4] : DispatchXYZ", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 1385, + "name": "Externalagents_Create_group", + "blob": "2b00417373657449442d31323334353637380204043001042c446973706174636858595ad50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Externalagents : Create group", + "1 | Asset id : AssetID-12345678", + "2 | Perms [1/4] : Except", + "2 | Perms [2/4] : 0", + "2 | Perms [3/4] : These", + "2 | Perms [4/4] : DispatchXYZ", + "3 | Tip : POLYX 5552342.355555" + ], + "output_expert": [ + "0 | Externalagents : Create group", + "1 | Asset id : AssetID-12345678", + "2 | Perms [1/4] : Except", + "2 | Perms [2/4] : 0", + "2 | Perms [3/4] : These", + "2 | Perms [4/4] : DispatchXYZ", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 1386, + "name": "Externalagents_Set_group_permissions", + "blob": "2b01417373657449442d313233343536373801146f0f0104043001042c446973706174636858595ad503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Externalagents : Set group permissions", + "1 | Asset id : AssetID-12345678", + "2 | Id : 258937857", + "3 | Perms [1/4] : These", + "3 | Perms [2/4] : 0", + "3 | Perms [3/4] : These", + "3 | Perms [4/4] : DispatchXYZ", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Utility : Relay tx", - "1 | Target [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Target [2/2] : D5gRxEbABD", - "2 | Signature [1/4] : 028e07cd8bc77d740373e000535f4733fe6553", - "2 | Signature [2/4] : 62ef863e0a0c1e531335a0008aa94078d2441b", - "2 | Signature [3/4] : 321c21ab33a68753cfbf33d9ab8d2cfdcba828", - "2 | Signature [4/4] : 3805ee803503c76e", - "3 | Call [1/3] : 5554", - "3 | Call [2/3] : Remark", - "3 | Call [3/3] : 3434", + "0 | Externalagents : Set group permissions", + "1 | Asset id : AssetID-12345678", + "2 | Id : 258937857", + "3 | Perms [1/4] : These", + "3 | Perms [2/4] : 0", + "3 | Perms [3/4] : These", + "3 | Perms [4/4] : DispatchXYZ", "4 | Chain : Polymesh", - "5 | Nonce : 0", + "5 | Nonce : 100", "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", "6 | Tip [2/2] : 3.456789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1412, - "name": "Utility_Relay_tx", - "blob": "2901248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0301feea794d5ce8298b00770ef5234fbd7a88c5faa7f0ad62a6df0ab21ad6eb35f9cc476169d7c8186d8ce5245512024a1a6cc53c36ead849e27e842594c09809ddb2150000000000000000083434d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1387, + "name": "Externalagents_Set_group_permissions", + "blob": "2b01417373657449442d31323334353637389b1c580c0104043001042c446973706174636858595ad503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Relay tx", - "1 | Target [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Target [2/2] : D5gRxEbABD", - "2 | Signature [1/4] : feea794d5ce8298b00770ef5234fbd7a88c5fa", - "2 | Signature [2/4] : a7f0ad62a6df0ab21ad6eb35f9cc476169d7c8", - "2 | Signature [3/4] : 186d8ce5245512024a1a6cc53c36ead849e27e", - "2 | Signature [4/4] : 842594c09809dd", - "3 | Call [1/3] : 5554", - "3 | Call [2/3] : Remark", - "3 | Call [3/3] : 3434", - "4 | Tip : POLYX 1234.56789" + "0 | Externalagents : Set group permissions", + "1 | Asset id : AssetID-12345678", + "2 | Id : 207101083", + "3 | Perms [1/4] : These", + "3 | Perms [2/4] : 0", + "3 | Perms [3/4] : These", + "3 | Perms [4/4] : DispatchXYZ", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Utility : Relay tx", - "1 | Target [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Target [2/2] : D5gRxEbABD", - "2 | Signature [1/4] : feea794d5ce8298b00770ef5234fbd7a88c5fa", - "2 | Signature [2/4] : a7f0ad62a6df0ab21ad6eb35f9cc476169d7c8", - "2 | Signature [3/4] : 186d8ce5245512024a1a6cc53c36ead849e27e", - "2 | Signature [4/4] : 842594c09809dd", - "3 | Call [1/3] : 5554", - "3 | Call [2/3] : Remark", - "3 | Call [3/3] : 3434", + "0 | Externalagents : Set group permissions", + "1 | Asset id : AssetID-12345678", + "2 | Id : 207101083", + "3 | Perms [1/4] : These", + "3 | Perms [2/4] : 0", + "3 | Perms [3/4] : These", + "3 | Perms [4/4] : DispatchXYZ", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 1234.56789", + "5 | Nonce : 0", + "6 | Tip : POLYX 0.000987", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1413, - "name": "Utility_Relay_tx", - "blob": "2901248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0302028e07cd8bc77d740373e000535f4733fe655362ef863e0a0c1e531335a0008aa94078d2441b321c21ab33a68753cfbf33d9ab8d2cfdcba8283805ee803503c76eb2150000000000000000083434d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1388, + "name": "Externalagents_Set_group_permissions", + "blob": "2b01417373657449442d313233343536373801146f0f0104043001042c446973706174636858595ad503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Relay tx", - "1 | Target [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Target [2/2] : D5gRxEbABD", - "2 | Signature [1/4] : 028e07cd8bc77d740373e000535f4733fe6553", - "2 | Signature [2/4] : 62ef863e0a0c1e531335a0008aa94078d2441b", - "2 | Signature [3/4] : 321c21ab33a68753cfbf33d9ab8d2cfdcba828", - "2 | Signature [4/4] : 3805ee803503c76e", - "3 | Call [1/3] : 5554", - "3 | Call [2/3] : Remark", - "3 | Call [3/3] : 3434", - "4 | Tip : POLYX 0.000987" + "0 | Externalagents : Set group permissions", + "1 | Asset id : AssetID-12345678", + "2 | Id : 258937857", + "3 | Perms [1/4] : These", + "3 | Perms [2/4] : 0", + "3 | Perms [3/4] : These", + "3 | Perms [4/4] : DispatchXYZ", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Utility : Relay tx", - "1 | Target [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Target [2/2] : D5gRxEbABD", - "2 | Signature [1/4] : 028e07cd8bc77d740373e000535f4733fe6553", - "2 | Signature [2/4] : 62ef863e0a0c1e531335a0008aa94078d2441b", - "2 | Signature [3/4] : 321c21ab33a68753cfbf33d9ab8d2cfdcba828", - "2 | Signature [4/4] : 3805ee803503c76e", - "3 | Call [1/3] : 5554", - "3 | Call [2/3] : Remark", - "3 | Call [3/3] : 3434", + "0 | Externalagents : Set group permissions", + "1 | Asset id : AssetID-12345678", + "2 | Id : 258937857", + "3 | Perms [1/4] : These", + "3 | Perms [2/4] : 0", + "3 | Perms [3/4] : These", + "3 | Perms [4/4] : DispatchXYZ", "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 0.000987", + "5 | Nonce : 100", + "6 | Tip : POLYX 1234.56789", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1414, - "name": "Utility_Relay_tx", - "blob": "2901248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0302028e07cd8bc77d740373e000535f4733fe655362ef863e0a0c1e531335a0008aa94078d2441b321c21ab33a68753cfbf33d9ab8d2cfdcba8283805ee803503c76eb2150000000000000000083434d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1389, + "name": "Externalagents_Set_group_permissions", + "blob": "2b01417373657449442d31323334353637389da8bdd10104043001042c446973706174636858595ad50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Relay tx", - "1 | Target [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Target [2/2] : D5gRxEbABD", - "2 | Signature [1/4] : 028e07cd8bc77d740373e000535f4733fe6553", - "2 | Signature [2/4] : 62ef863e0a0c1e531335a0008aa94078d2441b", - "2 | Signature [3/4] : 321c21ab33a68753cfbf33d9ab8d2cfdcba828", - "2 | Signature [4/4] : 3805ee803503c76e", - "3 | Call [1/3] : 5554", - "3 | Call [2/3] : Remark", - "3 | Call [3/3] : 3434", - "4 | Tip : POLYX 55.555555" + "0 | Externalagents : Set group permissions", + "1 | Asset id : AssetID-12345678", + "2 | Id : 3518867613", + "3 | Perms [1/4] : These", + "3 | Perms [2/4] : 0", + "3 | Perms [3/4] : These", + "3 | Perms [4/4] : DispatchXYZ", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Utility : Relay tx", - "1 | Target [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Target [2/2] : D5gRxEbABD", - "2 | Signature [1/4] : 028e07cd8bc77d740373e000535f4733fe6553", - "2 | Signature [2/4] : 62ef863e0a0c1e531335a0008aa94078d2441b", - "2 | Signature [3/4] : 321c21ab33a68753cfbf33d9ab8d2cfdcba828", - "2 | Signature [4/4] : 3805ee803503c76e", - "3 | Call [1/3] : 5554", - "3 | Call [2/3] : Remark", - "3 | Call [3/3] : 3434", + "0 | Externalagents : Set group permissions", + "1 | Asset id : AssetID-12345678", + "2 | Id : 3518867613", + "3 | Perms [1/4] : These", + "3 | Perms [2/4] : 0", + "3 | Perms [3/4] : These", + "3 | Perms [4/4] : DispatchXYZ", "4 | Chain : Polymesh", "5 | Nonce : 100", - "6 | Tip : POLYX 55.555555", + "6 | Tip : POLYX 5552342.355555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1415, - "name": "Utility_Relay_tx", - "blob": "2901248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0302028e07cd8bc77d740373e000535f4733fe655362ef863e0a0c1e531335a0008aa94078d2441b321c21ab33a68753cfbf33d9ab8d2cfdcba8283805ee803503c76eb2150000000000000000083434d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1390, + "name": "Externalagents_Set_group_permissions", + "blob": "2b01417373657449442d31323334353637389b1c580c0104043001042c446973706174636858595ad503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Relay tx", - "1 | Target [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Target [2/2] : D5gRxEbABD", - "2 | Signature [1/4] : 028e07cd8bc77d740373e000535f4733fe6553", - "2 | Signature [2/4] : 62ef863e0a0c1e531335a0008aa94078d2441b", - "2 | Signature [3/4] : 321c21ab33a68753cfbf33d9ab8d2cfdcba828", - "2 | Signature [4/4] : 3805ee803503c76e", - "3 | Call [1/3] : 5554", - "3 | Call [2/3] : Remark", - "3 | Call [3/3] : 3434", - "4 | Tip : POLYX 0.000987" + "0 | Externalagents : Set group permissions", + "1 | Asset id : AssetID-12345678", + "2 | Id : 207101083", + "3 | Perms [1/4] : These", + "3 | Perms [2/4] : 0", + "3 | Perms [3/4] : These", + "3 | Perms [4/4] : DispatchXYZ", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Utility : Relay tx", - "1 | Target [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | Target [2/2] : D5gRxEbABD", - "2 | Signature [1/4] : 028e07cd8bc77d740373e000535f4733fe6553", - "2 | Signature [2/4] : 62ef863e0a0c1e531335a0008aa94078d2441b", - "2 | Signature [3/4] : 321c21ab33a68753cfbf33d9ab8d2cfdcba828", - "2 | Signature [4/4] : 3805ee803503c76e", - "3 | Call [1/3] : 5554", - "3 | Call [2/3] : Remark", - "3 | Call [3/3] : 3434", + "0 | Externalagents : Set group permissions", + "1 | Asset id : AssetID-12345678", + "2 | Id : 207101083", + "3 | Perms [1/4] : These", + "3 | Perms [2/4] : 0", + "3 | Perms [3/4] : These", + "3 | Perms [4/4] : DispatchXYZ", "4 | Chain : Polymesh", "5 | Nonce : 50283", - "6 | Tip : POLYX 0.000987", + "6 | Tip : POLYX 55.555555", "7 | Era Phase : 61", "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1416, - "name": "Utility_Batch_all", - "blob": "29020800000834340000083838d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1391, + "name": "Externalagents_Remove_agent", + "blob": "2b02417373657449442d3132333435363738c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Batch all", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Tip : POLYX 55.555555" + "0 | Externalagents : Remove agent", + "1 | Asset id : AssetID-12345678", + "2 | Agent [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Agent [2/2] : bd7a6512a7cb922c53c4907708" ], "output_expert": [ - "0 | Utility : Batch all", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", + "0 | Externalagents : Remove agent", + "1 | Asset id : AssetID-12345678", + "2 | Agent [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Agent [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Chain : Polymesh", + "4 | Nonce : 1", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1417, - "name": "Utility_Batch_all", - "blob": "29020800000834340000083838d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1392, + "name": "Externalagents_Remove_agent", + "blob": "2b02417373657449442d3132333435363738c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Batch all", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838" + "0 | Externalagents : Remove agent", + "1 | Asset id : AssetID-12345678", + "2 | Agent [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Agent [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Utility : Batch all", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Externalagents : Remove agent", + "1 | Asset id : AssetID-12345678", + "2 | Agent [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Agent [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1418, - "name": "Utility_Batch_all", - "blob": "29020800000834340000083838d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1393, + "name": "Externalagents_Remove_agent", + "blob": "2b02417373657449442d3132333435363738c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Batch all", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Tip : POLYX 5552342.355555" + "0 | Externalagents : Remove agent", + "1 | Asset id : AssetID-12345678", + "2 | Agent [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Agent [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Utility : Batch all", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Externalagents : Remove agent", + "1 | Asset id : AssetID-12345678", + "2 | Agent [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Agent [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1419, - "name": "Utility_Batch_all", - "blob": "29020800000834340000083838d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1394, + "name": "Externalagents_Remove_agent", + "blob": "2b02417373657449442d3132333435363738c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Batch all", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Tip : POLYX 55.555555" + "0 | Externalagents : Remove agent", + "1 | Asset id : AssetID-12345678", + "2 | Agent [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Agent [2/2] : bd7a6512a7cb922c53c4907708" ], "output_expert": [ - "0 | Utility : Batch all", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1420, - "name": "Utility_Batch_all", - "blob": "29020800000834340000083838d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Batch all", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Utility : Batch all", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", + "0 | Externalagents : Remove agent", + "1 | Asset id : AssetID-12345678", + "2 | Agent [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Agent [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1421, - "name": "Utility_Dispatch_as", - "blob": "290300000000083434d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Dispatch as", - "1 | As origin : Root", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Utility : Dispatch as", - "1 | As origin : Root", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1422, - "name": "Utility_Dispatch_as", - "blob": "29030d000000083434d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1395, + "name": "Externalagents_Remove_agent", + "blob": "2b02417373657449442d3132333435363738c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Dispatch as", - "1 | As origin [1/2] : UpgradeCommittee", - "1 | As origin [2/2] : Endorsed", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", + "0 | Externalagents : Remove agent", + "1 | Asset id : AssetID-12345678", + "2 | Agent [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Agent [2/2] : bd7a6512a7cb922c53c4907708", "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Utility : Dispatch as", - "1 | As origin [1/2] : UpgradeCommittee", - "1 | As origin [2/2] : Endorsed", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", + "0 | Externalagents : Remove agent", + "1 | Asset id : AssetID-12345678", + "2 | Agent [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Agent [2/2] : bd7a6512a7cb922c53c4907708", "3 | Chain : Polymesh", "4 | Nonce : 0", "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1423, - "name": "Utility_Dispatch_as", - "blob": "290309000000083434d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Dispatch as", - "1 | As origin [1/2] : PolymeshCommittee", - "1 | As origin [2/2] : Endorsed", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Utility : Dispatch as", - "1 | As origin [1/2] : PolymeshCommittee", - "1 | As origin [2/2] : Endorsed", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1424, - "name": "Utility_Dispatch_as", - "blob": "29030001350bb8dafea15c4d53231313c241fbba405328e1ac503a07872e3b45bb385a250000083434d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1396, + "name": "Externalagents_Abdicate", + "blob": "2b03417373657449442d3132333435363738d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Dispatch as", - "1 | As origin [1/2] : 2DeU853H4VaJQJpJLG3z1f65Nh2rTZhrAa2Yk1", - "1 | As origin [2/2] : 7mg1UFUpnd", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Externalagents : Abdicate", + "1 | Asset id : AssetID-12345678" ], "output_expert": [ - "0 | Utility : Dispatch as", - "1 | As origin [1/2] : 2DeU853H4VaJQJpJLG3z1f65Nh2rTZhrAa2Yk1", - "1 | As origin [2/2] : 7mg1UFUpnd", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Externalagents : Abdicate", + "1 | Asset id : AssetID-12345678", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1425, - "name": "Utility_Dispatch_as", - "blob": "29030d000000083434d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1397, + "name": "Externalagents_Abdicate", + "blob": "2b03417373657449442d3132333435363738d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Dispatch as", - "1 | As origin [1/2] : UpgradeCommittee", - "1 | As origin [2/2] : Endorsed", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434" + "0 | Externalagents : Abdicate", + "1 | Asset id : AssetID-12345678", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Utility : Dispatch as", - "1 | As origin [1/2] : UpgradeCommittee", - "1 | As origin [2/2] : Endorsed", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Chain : Polymesh", - "4 | Nonce : 100", + "0 | Externalagents : Abdicate", + "1 | Asset id : AssetID-12345678", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1426, - "name": "Utility_Force_batch", - "blob": "29040800000834340000083838d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1398, + "name": "Externalagents_Abdicate", + "blob": "2b03417373657449442d3132333435363738d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Force batch", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Tip : POLYX 55.555555" + "0 | Externalagents : Abdicate", + "1 | Asset id : AssetID-12345678", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Utility : Force batch", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", + "0 | Externalagents : Abdicate", + "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1427, - "name": "Utility_Force_batch", - "blob": "29040800000834340000083838d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1399, + "name": "Externalagents_Abdicate", + "blob": "2b03417373657449442d3132333435363738d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Force batch", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Tip : POLYX 5552342.355555" + "0 | Externalagents : Abdicate", + "1 | Asset id : AssetID-12345678", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Utility : Force batch", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", + "0 | Externalagents : Abdicate", + "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 50283", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1428, - "name": "Utility_Force_batch", - "blob": "2904040000083434d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1400, + "name": "Externalagents_Abdicate", + "blob": "2b03417373657449442d3132333435363738d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Force batch", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", - "2 | Tip : POLYX 0.000987" + "0 | Externalagents : Abdicate", + "1 | Asset id : AssetID-12345678", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Utility : Force batch", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", + "0 | Externalagents : Abdicate", + "1 | Asset id : AssetID-12345678", "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1429, - "name": "Utility_Force_batch", - "blob": "2904100000083434000008383800000c31333200000c313736d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1401, + "name": "Externalagents_Change_group", + "blob": "2b04417373657449442d3132333435363738c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c490770800d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Force batch", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Tip : POLYX 55.555555" + "0 | Externalagents : Change group", + "1 | Asset id : AssetID-12345678", + "2 | Agent [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Agent [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Group : Full", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Utility : Force batch", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Externalagents : Change group", + "1 | Asset id : AssetID-12345678", + "2 | Agent [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Agent [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Group : Full", + "4 | Chain : Polymesh", + "5 | Nonce : 2339", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1430, - "name": "Utility_Force_batch", - "blob": "2904040000083434d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1402, + "name": "Externalagents_Change_group", + "blob": "2b04417373657449442d3132333435363738c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c490770802d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Force batch", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", - "2 | Tip : POLYX 5552342.355555" + "0 | Externalagents : Change group", + "1 | Asset id : AssetID-12345678", + "2 | Agent [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Agent [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Group : ExceptMeta", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Utility : Force batch", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1431, - "name": "Utility_With_weight", - "blob": "29050000083434c1690f51da19d99ba972d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : With weight", - "1 | Call [1/2] : Remark", - "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 6768", - "2 | Weight [2/2] : 32274634172389969" - ], - "output_expert": [ - "0 | Utility : With weight", - "1 | Call [1/2] : Remark", - "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 6768", - "2 | Weight [2/2] : 32274634172389969", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1432, - "name": "Utility_With_weight", - "blob": "29050000083434139f386be0e29147ce13d5cc2b675623e52ed50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : With weight", - "1 | Call [1/2] : Remark", - "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 14864009498773371039", - "2 | Weight [2/2] : 3379145949416508629", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Utility : With weight", - "1 | Call [1/2] : Remark", - "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 14864009498773371039", - "2 | Weight [2/2] : 3379145949416508629", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Externalagents : Change group", + "1 | Asset id : AssetID-12345678", + "2 | Agent [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Agent [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Group : ExceptMeta", + "4 | Chain : Polymesh", + "5 | Nonce : 50283", + "6 | Tip : POLYX 1234.56789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1433, - "name": "Utility_With_weight", - "blob": "29050000083434c1c268d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1403, + "name": "Externalagents_Change_group", + "blob": "2b04417373657449442d3132333435363738c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708011c789b6cd503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : With weight", - "1 | Call [1/2] : Remark", - "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 12464", - "2 | Weight [2/2] : 26", - "3 | Tip : POLYX 1234.56789" + "0 | Externalagents : Change group", + "1 | Asset id : AssetID-12345678", + "2 | Agent [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Agent [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Group [1/2] : Custom", + "3 | Group [2/2] : 1822128156", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Utility : With weight", - "1 | Call [1/2] : Remark", - "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 12464", - "2 | Weight [2/2] : 26", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Externalagents : Change group", + "1 | Asset id : AssetID-12345678", + "2 | Agent [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Agent [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Group [1/2] : Custom", + "3 | Group [2/2] : 1822128156", + "4 | Chain : Polymesh", + "5 | Nonce : 50283", + "6 | Tip : POLYX 5552342.355555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1434, - "name": "Utility_With_weight", - "blob": "29050000083434139f386be0e29147ce13d5cc2b675623e52ed5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1404, + "name": "Externalagents_Change_group", + "blob": "2b04417373657449442d3132333435363738c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c490770800d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : With weight", - "1 | Call [1/2] : Remark", - "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 14864009498773371039", - "2 | Weight [2/2] : 3379145949416508629", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Externalagents : Change group", + "1 | Asset id : AssetID-12345678", + "2 | Agent [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Agent [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Group : Full", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Utility : With weight", - "1 | Call [1/2] : Remark", - "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 14864009498773371039", - "2 | Weight [2/2] : 3379145949416508629", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Externalagents : Change group", + "1 | Asset id : AssetID-12345678", + "2 | Agent [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Agent [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Group : Full", + "4 | Chain : Polymesh", + "5 | Nonce : 1", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1435, - "name": "Utility_With_weight", - "blob": "29050000083434c1690f51da19d99ba972d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1405, + "name": "Externalagents_Change_group", + "blob": "2b04417373657449442d3132333435363738c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c490770800d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : With weight", - "1 | Call [1/2] : Remark", - "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 6768", - "2 | Weight [2/2] : 32274634172389969", - "3 | Tip : POLYX 1234.56789" + "0 | Externalagents : Change group", + "1 | Asset id : AssetID-12345678", + "2 | Agent [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Agent [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Group : Full", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Utility : With weight", - "1 | Call [1/2] : Remark", - "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 6768", - "2 | Weight [2/2] : 32274634172389969", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Externalagents : Change group", + "1 | Asset id : AssetID-12345678", + "2 | Agent [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "2 | Agent [2/2] : bd7a6512a7cb922c53c4907708", + "3 | Group : Full", + "4 | Chain : Polymesh", + "5 | Nonce : 50283", + "6 | Tip : POLYX 0.000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1436, - "name": "Utility_Batch_old", - "blob": "29060800000834340000083838d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1406, + "name": "Externalagents_Accept_become_agent", + "blob": "2b052309000000000000d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Batch old", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Tip : POLYX 1234.56789" + "0 | Externalagents : Accept become agent", + "1 | Auth id : 2339" ], "output_expert": [ - "0 | Utility : Batch old", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", + "0 | Externalagents : Accept become agent", + "1 | Auth id : 2339", "2 | Chain : Polymesh", "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1437, - "name": "Utility_Batch_old", - "blob": "2906040000083434d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1407, + "name": "Externalagents_Accept_become_agent", + "blob": "2b056400000000000000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Batch old", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Externalagents : Accept become agent", + "1 | Auth id : 100" ], "output_expert": [ - "0 | Utility : Batch old", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", + "0 | Externalagents : Accept become agent", + "1 | Auth id : 100", "2 | Chain : Polymesh", "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1438, - "name": "Utility_Batch_old", - "blob": "29060800000834340000083838d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1408, + "name": "Externalagents_Accept_become_agent", + "blob": "2b050000000000000000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Batch old", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Tip : POLYX 5552342.355555" + "0 | Externalagents : Accept become agent", + "1 | Auth id : 0", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Utility : Batch old", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", + "0 | Externalagents : Accept become agent", + "1 | Auth id : 0", "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 50283", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1439, - "name": "Utility_Batch_old", - "blob": "2906100000083434000008383800000c31333200000c313736d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1409, + "name": "Externalagents_Accept_become_agent", + "blob": "2b056bc4000000000000d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Batch old", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", + "0 | Externalagents : Accept become agent", + "1 | Auth id : 50283", "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Utility : Batch old", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", + "0 | Externalagents : Accept become agent", + "1 | Auth id : 50283", "2 | Chain : Polymesh", - "3 | Nonce : 1", + "3 | Nonce : 50283", "4 | Tip : POLYX 5552342.355555", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1440, - "name": "Utility_Batch_old", - "blob": "2906040000083434d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1410, + "name": "Externalagents_Accept_become_agent", + "blob": "2b056bc4000000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Batch old", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", + "0 | Externalagents : Accept become agent", + "1 | Auth id : 50283", "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Utility : Batch old", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", + "0 | Externalagents : Accept become agent", + "1 | Auth id : 50283", "2 | Chain : Polymesh", - "3 | Nonce : 100", + "3 | Nonce : 50283", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1441, - "name": "Utility_Batch_atomic", - "blob": "2907100000083434000008383800000c31333200000c313736d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1411, + "name": "Externalagents_Create_group_and_add_auth", + "blob": "2b06417373657449442d31323334353637380104043001042c446973706174636858595ac209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708018000000000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Batch atomic", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Tip : POLYX 1234.56789" + "0 | Externalagents : Create group and add auth", + "1 | Asset id : AssetID-12345678", + "2 | Perms [1/4] : These", + "2 | Perms [2/4] : 0", + "2 | Perms [3/4] : These", + "2 | Perms [4/4] : DispatchXYZ", + "3 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "3 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "4 | Expiry : 128", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Utility : Batch atomic", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Externalagents : Create group and add auth", + "1 | Asset id : AssetID-12345678", + "2 | Perms [1/4] : These", + "2 | Perms [2/4] : 0", + "2 | Perms [3/4] : These", + "2 | Perms [4/4] : DispatchXYZ", + "3 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "3 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "4 | Expiry : 128", + "5 | Chain : Polymesh", + "6 | Nonce : 50283", + "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "7 | Tip [2/2] : 3.456789", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1442, - "name": "Utility_Batch_atomic", - "blob": "2907100000083434000008383800000c31333200000c313736d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1412, + "name": "Externalagents_Create_group_and_add_auth", + "blob": "2b06417373657449442d313233343536373800c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708010001000000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Batch atomic", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Externalagents : Create group and add auth", + "1 | Asset id : AssetID-12345678", + "2 | Perms : Whole", + "3 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "3 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "4 | Expiry : 256", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Utility : Batch atomic", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Externalagents : Create group and add auth", + "1 | Asset id : AssetID-12345678", + "2 | Perms : Whole", + "3 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "3 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "4 | Expiry : 256", + "5 | Chain : Polymesh", + "6 | Nonce : 2339", + "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "7 | Tip [2/2] : 3.456789", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1443, - "name": "Utility_Batch_atomic", - "blob": "2907040000083434d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1413, + "name": "Externalagents_Create_group_and_add_auth", + "blob": "2b06417373657449442d31323334353637380204043001042c446973706174636858595ac209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708010001000000000000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Batch atomic", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Externalagents : Create group and add auth", + "1 | Asset id : AssetID-12345678", + "2 | Perms [1/4] : Except", + "2 | Perms [2/4] : 0", + "2 | Perms [3/4] : These", + "2 | Perms [4/4] : DispatchXYZ", + "3 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "3 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "4 | Expiry : 256", + "5 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Utility : Batch atomic", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Externalagents : Create group and add auth", + "1 | Asset id : AssetID-12345678", + "2 | Perms [1/4] : Except", + "2 | Perms [2/4] : 0", + "2 | Perms [3/4] : These", + "2 | Perms [4/4] : DispatchXYZ", + "3 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "3 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "4 | Expiry : 256", + "5 | Chain : Polymesh", + "6 | Nonce : 100", + "7 | Tip : POLYX 55.555555", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1444, - "name": "Utility_Batch_atomic", - "blob": "2907040000083434d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1414, + "name": "Externalagents_Create_group_and_add_auth", + "blob": "2b06417373657449442d313233343536373800c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708010001000000000000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Batch atomic", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434" + "0 | Externalagents : Create group and add auth", + "1 | Asset id : AssetID-12345678", + "2 | Perms : Whole", + "3 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "3 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "4 | Expiry : 256", + "5 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Utility : Batch atomic", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Externalagents : Create group and add auth", + "1 | Asset id : AssetID-12345678", + "2 | Perms : Whole", + "3 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "3 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "4 | Expiry : 256", + "5 | Chain : Polymesh", + "6 | Nonce : 50283", + "7 | Tip : POLYX 0.000987", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1445, - "name": "Utility_Batch_atomic", - "blob": "2907040000083434d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1415, + "name": "Externalagents_Create_group_and_add_auth", + "blob": "2b06417373657449442d31323334353637380204043001042c446973706174636858595ac209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708010008000000000000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Batch atomic", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434" + "0 | Externalagents : Create group and add auth", + "1 | Asset id : AssetID-12345678", + "2 | Perms [1/4] : Except", + "2 | Perms [2/4] : 0", + "2 | Perms [3/4] : These", + "2 | Perms [4/4] : DispatchXYZ", + "3 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "3 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "4 | Expiry : 2048" ], "output_expert": [ - "0 | Utility : Batch atomic", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Externalagents : Create group and add auth", + "1 | Asset id : AssetID-12345678", + "2 | Perms [1/4] : Except", + "2 | Perms [2/4] : 0", + "2 | Perms [3/4] : These", + "2 | Perms [4/4] : DispatchXYZ", + "3 | Target [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "3 | Target [2/2] : bd7a6512a7cb922c53c4907708", + "4 | Expiry : 2048", + "5 | Chain : Polymesh", + "6 | Nonce : 50283", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1446, - "name": "Utility_Batch_optimistic", - "blob": "29080800000834340000083838d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1416, + "name": "Externalagents_Create_and_change_custom_group", + "blob": "2b07417373657449442d313233343536373800c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Batch optimistic", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Tip : POLYX 1234.56789" + "0 | Externalagents : Create and change custom group", + "1 | Asset id : AssetID-12345678", + "2 | Perms : Whole", + "3 | Agent [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "3 | Agent [2/2] : bd7a6512a7cb922c53c4907708", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Utility : Batch optimistic", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Externalagents : Create and change custom group", + "1 | Asset id : AssetID-12345678", + "2 | Perms : Whole", + "3 | Agent [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "3 | Agent [2/2] : bd7a6512a7cb922c53c4907708", + "4 | Chain : Polymesh", + "5 | Nonce : 50283", + "6 | Tip : POLYX 5552342.355555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1447, - "name": "Utility_Batch_optimistic", - "blob": "29080800000834340000083838d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1417, + "name": "Externalagents_Create_and_change_custom_group", + "blob": "2b07417373657449442d31323334353637380104043001042c446973706174636858595ac209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Batch optimistic", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Tip : POLYX 5552342.355555" + "0 | Externalagents : Create and change custom group", + "1 | Asset id : AssetID-12345678", + "2 | Perms [1/4] : These", + "2 | Perms [2/4] : 0", + "2 | Perms [3/4] : These", + "2 | Perms [4/4] : DispatchXYZ", + "3 | Agent [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "3 | Agent [2/2] : bd7a6512a7cb922c53c4907708", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Utility : Batch optimistic", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Externalagents : Create and change custom group", + "1 | Asset id : AssetID-12345678", + "2 | Perms [1/4] : These", + "2 | Perms [2/4] : 0", + "2 | Perms [3/4] : These", + "2 | Perms [4/4] : DispatchXYZ", + "3 | Agent [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "3 | Agent [2/2] : bd7a6512a7cb922c53c4907708", + "4 | Chain : Polymesh", + "5 | Nonce : 2339", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1448, - "name": "Utility_Batch_optimistic", - "blob": "2908100000083434000008383800000c31333200000c313736d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1418, + "name": "Externalagents_Create_and_change_custom_group", + "blob": "2b07417373657449442d313233343536373800c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Batch optimistic", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Tip : POLYX 1234.56789" + "0 | Externalagents : Create and change custom group", + "1 | Asset id : AssetID-12345678", + "2 | Perms : Whole", + "3 | Agent [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "3 | Agent [2/2] : bd7a6512a7cb922c53c4907708", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Utility : Batch optimistic", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Externalagents : Create and change custom group", + "1 | Asset id : AssetID-12345678", + "2 | Perms : Whole", + "3 | Agent [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "3 | Agent [2/2] : bd7a6512a7cb922c53c4907708", + "4 | Chain : Polymesh", + "5 | Nonce : 1", + "6 | Tip : POLYX 0.000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1449, - "name": "Utility_Batch_optimistic", - "blob": "2908100000083434000008383800000c31333200000c313736d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1419, + "name": "Externalagents_Create_and_change_custom_group", + "blob": "2b07417373657449442d313233343536373800c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : Batch optimistic", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736" - ], - "output_expert": [ - "0 | Utility : Batch optimistic", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1450, - "name": "Utility_Batch_optimistic", - "blob": "2908100000083434000008383800000c31333200000c313736d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Batch optimistic", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Utility : Batch optimistic", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1451, - "name": "Utility_As_derivative", - "blob": "29095c000000083434d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : As derivative", - "1 | Index : 92", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 5552342.355555" + "0 | Externalagents : Create and change custom group", + "1 | Asset id : AssetID-12345678", + "2 | Perms : Whole", + "3 | Agent [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "3 | Agent [2/2] : bd7a6512a7cb922c53c4907708", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Utility : As derivative", - "1 | Index : 92", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Externalagents : Create and change custom group", + "1 | Asset id : AssetID-12345678", + "2 | Perms : Whole", + "3 | Agent [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "3 | Agent [2/2] : bd7a6512a7cb922c53c4907708", + "4 | Chain : Polymesh", + "5 | Nonce : 2339", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1452, - "name": "Utility_As_derivative", - "blob": "29095c000000083434d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1420, + "name": "Externalagents_Create_and_change_custom_group", + "blob": "2b07417373657449442d313233343536373800c209a88592835a00dc1f9218aa92abe806749bbd7a6512a7cb922c53c4907708d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : As derivative", - "1 | Index : 92", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 5552342.355555" + "0 | Externalagents : Create and change custom group", + "1 | Asset id : AssetID-12345678", + "2 | Perms : Whole", + "3 | Agent [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "3 | Agent [2/2] : bd7a6512a7cb922c53c4907708" ], "output_expert": [ - "0 | Utility : As derivative", - "1 | Index : 92", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", + "0 | Externalagents : Create and change custom group", + "1 | Asset id : AssetID-12345678", + "2 | Perms : Whole", + "3 | Agent [1/2] : c209a88592835a00dc1f9218aa92abe806749b", + "3 | Agent [2/2] : bd7a6512a7cb922c53c4907708", + "4 | Chain : Polymesh", + "5 | Nonce : 2339", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1453, - "name": "Utility_As_derivative", - "blob": "29094e030000083434d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1421, + "name": "Relayer_Set_paying_key", + "blob": "2c00746a25ffb64614dd2c7d8f53d247e39763261a2a4c187c424c51edb971f3d435fd56e5cad3287b54b2352f703dbeafc0d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : As derivative", - "1 | Index : 846", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 0.000987" + "0 | Relayer : Set paying key", + "1 | User key [1/2] : 5EhLwjQbRibvSWhbsvw5hvYdKHYF5besUgGbjx", + "1 | User key [2/2] : guT8977hVy", + "2 | Polyx limit [1/2] : POLYX 25612428566640944380857301230667", + "2 | Polyx limit [2/2] : 6.766461", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Utility : As derivative", - "1 | Index : 846", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", + "0 | Relayer : Set paying key", + "1 | User key [1/2] : 5EhLwjQbRibvSWhbsvw5hvYdKHYF5besUgGbjx", + "1 | User key [2/2] : guT8977hVy", + "2 | Polyx limit [1/2] : POLYX 25612428566640944380857301230667", + "2 | Polyx limit [2/2] : 6.766461", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 2339", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1454, - "name": "Utility_As_derivative", - "blob": "29094e030000083434d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1422, + "name": "Relayer_Set_paying_key", + "blob": "2c00eeee0fc19c12fccb5428f3defc551fa77b3eda70bcf9c86045ade577d0fd1508fd56e5cad3287b54b2352f703dbeafc0d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : As derivative", - "1 | Index : 846", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", + "0 | Relayer : Set paying key", + "1 | User key [1/2] : 5HTyyNf3SP6wwvJb6dmojvVT27bFkbLV2QN1Q2", + "1 | User key [2/2] : YfRrxBgvey", + "2 | Polyx limit [1/2] : POLYX 25612428566640944380857301230667", + "2 | Polyx limit [2/2] : 6.766461", "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Utility : As derivative", - "1 | Index : 846", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", + "0 | Relayer : Set paying key", + "1 | User key [1/2] : 5HTyyNf3SP6wwvJb6dmojvVT27bFkbLV2QN1Q2", + "1 | User key [2/2] : YfRrxBgvey", + "2 | Polyx limit [1/2] : POLYX 25612428566640944380857301230667", + "2 | Polyx limit [2/2] : 6.766461", "3 | Chain : Polymesh", "4 | Nonce : 0", "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1455, - "name": "Utility_As_derivative", - "blob": "29095c000000083434d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1423, + "name": "Relayer_Set_paying_key", + "blob": "2c00ca2d8f06d9c35d80eec81d49959918c1e6c09c314b6154fbf6e2665abc512a24fd56e5cad3287b54b2352f703dbeafc0d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Utility : As derivative", - "1 | Index : 92", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", + "0 | Relayer : Set paying key", + "1 | User key [1/2] : 5Gdo4eJq3jwcZ8ncshpMoSPMm3ypeeNe2441To", + "1 | User key [2/2] : B8w88odrQ1", + "2 | Polyx limit [1/2] : POLYX 25612428566640944380857301230667", + "2 | Polyx limit [2/2] : 6.766461", "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Utility : As derivative", - "1 | Index : 92", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", + "0 | Relayer : Set paying key", + "1 | User key [1/2] : 5Gdo4eJq3jwcZ8ncshpMoSPMm3ypeeNe2441To", + "1 | User key [2/2] : B8w88odrQ1", + "2 | Polyx limit [1/2] : POLYX 25612428566640944380857301230667", + "2 | Polyx limit [2/2] : 6.766461", "3 | Chain : Polymesh", - "4 | Nonce : 2339", + "4 | Nonce : 0", "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1456, - "name": "Externalagents_Create_group", - "blob": "2b005449434b45522d313233343500d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1424, + "name": "Relayer_Set_paying_key", + "blob": "2c001a649a1e7bc89d0e95d5f757cdbb718b750e1e48f9962d215e0af9222021403efd56e5cad3287b54b2352f703dbeafc0d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Create group", - "1 | Ticker : TICKER-12345", - "2 | Perms : Whole", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Relayer : Set paying key", + "1 | User key [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "1 | User key [2/2] : CXYT6ZmfEg", + "2 | Polyx limit [1/2] : POLYX 25612428566640944380857301230667", + "2 | Polyx limit [2/2] : 6.766461", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Externalagents : Create group", - "1 | Ticker : TICKER-12345", - "2 | Perms : Whole", + "0 | Relayer : Set paying key", + "1 | User key [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "1 | User key [2/2] : CXYT6ZmfEg", + "2 | Polyx limit [1/2] : POLYX 25612428566640944380857301230667", + "2 | Polyx limit [2/2] : 6.766461", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 2339", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1457, - "name": "Externalagents_Create_group", - "blob": "2b005449434b45522d313233343500d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1425, + "name": "Relayer_Set_paying_key", + "blob": "2c00b0a4982a123e870e98be45944a32d76664a4cc899c3810c0300718516f0cb60afd56e5cad3287b54b2352f703dbeafc0d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Create group", - "1 | Ticker : TICKER-12345", - "2 | Perms : Whole", - "3 | Tip : POLYX 55.555555" + "0 | Relayer : Set paying key", + "1 | User key [1/2] : 5G4KBNUrpvHsFu9ZvQ5fKsbBcR2K4SBgjxgSdM", + "1 | User key [2/2] : T1Vu2VKdbZ", + "2 | Polyx limit [1/2] : POLYX 25612428566640944380857301230667", + "2 | Polyx limit [2/2] : 6.766461", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Externalagents : Create group", - "1 | Ticker : TICKER-12345", - "2 | Perms : Whole", + "0 | Relayer : Set paying key", + "1 | User key [1/2] : 5G4KBNUrpvHsFu9ZvQ5fKsbBcR2K4SBgjxgSdM", + "1 | User key [2/2] : T1Vu2VKdbZ", + "2 | Polyx limit [1/2] : POLYX 25612428566640944380857301230667", + "2 | Polyx limit [2/2] : 6.766461", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 0", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1458, - "name": "Externalagents_Create_group", - "blob": "2b005449434b45522d313233343502042050414c4c45545f4202082c44697370617463684142432c446973706174636858595ad5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1426, + "name": "Relayer_Accept_paying_key", + "blob": "2c010000000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Create group", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/5] : Except", - "2 | Perms [2/5] : PALLET_B", - "2 | Perms [3/5] : Except", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Tip : POLYX 1234.56789" + "0 | Relayer : Accept paying key", + "1 | Auth id : 0", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Externalagents : Create group", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/5] : Except", - "2 | Perms [2/5] : PALLET_B", - "2 | Perms [3/5] : Except", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Relayer : Accept paying key", + "1 | Auth id : 0", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1459, - "name": "Externalagents_Create_group", - "blob": "2b005449434b45522d313233343502042050414c4c45545f4202082c44697370617463684142432c446973706174636858595ad5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1427, + "name": "Relayer_Accept_paying_key", + "blob": "2c016bc4000000000000d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Create group", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/5] : Except", - "2 | Perms [2/5] : PALLET_B", - "2 | Perms [3/5] : Except", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Tip : POLYX 1234.56789" + "0 | Relayer : Accept paying key", + "1 | Auth id : 50283", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Externalagents : Create group", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/5] : Except", - "2 | Perms [2/5] : PALLET_B", - "2 | Perms [3/5] : Except", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Relayer : Accept paying key", + "1 | Auth id : 50283", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1460, - "name": "Externalagents_Create_group", - "blob": "2b005449434b45522d313233343501042050414c4c45545f4202082c44697370617463684142432c446973706174636858595ad503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1428, + "name": "Relayer_Accept_paying_key", + "blob": "2c016bc4000000000000d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Create group", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/5] : These", - "2 | Perms [2/5] : PALLET_B", - "2 | Perms [3/5] : Except", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Tip : POLYX 5552342.355555" + "0 | Relayer : Accept paying key", + "1 | Auth id : 50283", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Externalagents : Create group", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/5] : These", - "2 | Perms [2/5] : PALLET_B", - "2 | Perms [3/5] : Except", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Relayer : Accept paying key", + "1 | Auth id : 50283", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1461, - "name": "Externalagents_Set_group_permissions", - "blob": "2b015449434b45522d31323334358aa2516900d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1429, + "name": "Relayer_Accept_paying_key", + "blob": "2c012309000000000000d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Set group permissions", - "1 | Ticker : TICKER-12345", - "2 | Id : 1766957706", - "3 | Perms : Whole", - "4 | Tip : POLYX 55.555555" + "0 | Relayer : Accept paying key", + "1 | Auth id : 2339", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Externalagents : Set group permissions", - "1 | Ticker : TICKER-12345", - "2 | Id : 1766957706", - "3 | Perms : Whole", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Relayer : Accept paying key", + "1 | Auth id : 2339", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1462, - "name": "Externalagents_Set_group_permissions", - "blob": "2b015449434b45522d31323334357746901401042050414c4c45545f4202082c44697370617463684142432c446973706174636858595ad503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1430, + "name": "Relayer_Accept_paying_key", + "blob": "2c010000000000000000d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Set group permissions", - "1 | Ticker : TICKER-12345", - "2 | Id : 344999543", - "3 | Perms [1/5] : These", - "3 | Perms [2/5] : PALLET_B", - "3 | Perms [3/5] : Except", - "3 | Perms [4/5] : DispatchABC", - "3 | Perms [5/5] : DispatchXYZ", - "4 | Tip : POLYX 55.555555" + "0 | Relayer : Accept paying key", + "1 | Auth id : 0", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Externalagents : Set group permissions", - "1 | Ticker : TICKER-12345", - "2 | Id : 344999543", - "3 | Perms [1/5] : These", - "3 | Perms [2/5] : PALLET_B", - "3 | Perms [3/5] : Except", - "3 | Perms [4/5] : DispatchABC", - "3 | Perms [5/5] : DispatchXYZ", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Relayer : Accept paying key", + "1 | Auth id : 0", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1463, - "name": "Externalagents_Set_group_permissions", - "blob": "2b015449434b45522d3132333435676b11e802042050414c4c45545f4202082c44697370617463684142432c446973706174636858595ad5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1431, + "name": "Relayer_Remove_paying_key", + "blob": "2c02746a25ffb64614dd2c7d8f53d247e39763261a2a4c187c424c51edb971f3d435b04675564efc66c59b629d4f6f844923f271ebf08fc297a0781f89731bead17fd5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Set group permissions", - "1 | Ticker : TICKER-12345", - "2 | Id : 3893455719", - "3 | Perms [1/5] : Except", - "3 | Perms [2/5] : PALLET_B", - "3 | Perms [3/5] : Except", - "3 | Perms [4/5] : DispatchABC", - "3 | Perms [5/5] : DispatchXYZ", - "4 | Tip : POLYX 1234.56789" + "0 | Relayer : Remove paying key", + "1 | User key [1/2] : 5EhLwjQbRibvSWhbsvw5hvYdKHYF5besUgGbjx", + "1 | User key [2/2] : guT8977hVy", + "2 | Paying key [1/2] : 5G3qDSksiTK2F5KmS1yryVsRfXMzt1aczrKXJY", + "2 | Paying key [2/2] : FkFzoSF4YP", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Externalagents : Set group permissions", - "1 | Ticker : TICKER-12345", - "2 | Id : 3893455719", - "3 | Perms [1/5] : Except", - "3 | Perms [2/5] : PALLET_B", - "3 | Perms [3/5] : Except", - "3 | Perms [4/5] : DispatchABC", - "3 | Perms [5/5] : DispatchXYZ", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Relayer : Remove paying key", + "1 | User key [1/2] : 5EhLwjQbRibvSWhbsvw5hvYdKHYF5besUgGbjx", + "1 | User key [2/2] : guT8977hVy", + "2 | Paying key [1/2] : 5G3qDSksiTK2F5KmS1yryVsRfXMzt1aczrKXJY", + "2 | Paying key [2/2] : FkFzoSF4YP", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1464, - "name": "Externalagents_Set_group_permissions", - "blob": "2b015449434b45522d3132333435676b11e802042050414c4c45545f4202082c44697370617463684142432c446973706174636858595ad5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1432, + "name": "Relayer_Remove_paying_key", + "blob": "2c021a649a1e7bc89d0e95d5f757cdbb718b750e1e48f9962d215e0af9222021403e1a649a1e7bc89d0e95d5f757cdbb718b750e1e48f9962d215e0af9222021403ed503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Set group permissions", - "1 | Ticker : TICKER-12345", - "2 | Id : 3893455719", - "3 | Perms [1/5] : Except", - "3 | Perms [2/5] : PALLET_B", - "3 | Perms [3/5] : Except", - "3 | Perms [4/5] : DispatchABC", - "3 | Perms [5/5] : DispatchXYZ" + "0 | Relayer : Remove paying key", + "1 | User key [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "1 | User key [2/2] : CXYT6ZmfEg", + "2 | Paying key [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "2 | Paying key [2/2] : CXYT6ZmfEg", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Externalagents : Set group permissions", - "1 | Ticker : TICKER-12345", - "2 | Id : 3893455719", - "3 | Perms [1/5] : Except", - "3 | Perms [2/5] : PALLET_B", - "3 | Perms [3/5] : Except", - "3 | Perms [4/5] : DispatchABC", - "3 | Perms [5/5] : DispatchXYZ", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", + "0 | Relayer : Remove paying key", + "1 | User key [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "1 | User key [2/2] : CXYT6ZmfEg", + "2 | Paying key [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "2 | Paying key [2/2] : CXYT6ZmfEg", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1465, - "name": "Externalagents_Set_group_permissions", - "blob": "2b015449434b45522d31323334357746901400d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1433, + "name": "Relayer_Remove_paying_key", + "blob": "2c022e5388ccb167c9fe3baeba3fed959f63c4e8bceb6c7387a77940029c142398201a649a1e7bc89d0e95d5f757cdbb718b750e1e48f9962d215e0af9222021403ed5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Set group permissions", - "1 | Ticker : TICKER-12345", - "2 | Id : 344999543", - "3 | Perms : Whole", - "4 | Tip : POLYX 55.555555" + "0 | Relayer : Remove paying key", + "1 | User key [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "1 | User key [2/2] : qta7VKQZKw", + "2 | Paying key [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "2 | Paying key [2/2] : CXYT6ZmfEg" ], "output_expert": [ - "0 | Externalagents : Set group permissions", - "1 | Ticker : TICKER-12345", - "2 | Id : 344999543", - "3 | Perms : Whole", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Relayer : Remove paying key", + "1 | User key [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "1 | User key [2/2] : qta7VKQZKw", + "2 | Paying key [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "2 | Paying key [2/2] : CXYT6ZmfEg", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1466, - "name": "Externalagents_Remove_agent", - "blob": "2b025449434b45522d313233343544ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1434, + "name": "Relayer_Remove_paying_key", + "blob": "2c02b0a4982a123e870e98be45944a32d76664a4cc899c3810c0300718516f0cb60a2e5388ccb167c9fe3baeba3fed959f63c4e8bceb6c7387a77940029c14239820d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Remove agent", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Agent [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Tip : POLYX 5552342.355555" + "0 | Relayer : Remove paying key", + "1 | User key [1/2] : 5G4KBNUrpvHsFu9ZvQ5fKsbBcR2K4SBgjxgSdM", + "1 | User key [2/2] : T1Vu2VKdbZ", + "2 | Paying key [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "2 | Paying key [2/2] : qta7VKQZKw" ], "output_expert": [ - "0 | Externalagents : Remove agent", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Agent [2/2] : 99f2a85988d897db3b7b56d9af", + "0 | Relayer : Remove paying key", + "1 | User key [1/2] : 5G4KBNUrpvHsFu9ZvQ5fKsbBcR2K4SBgjxgSdM", + "1 | User key [2/2] : T1Vu2VKdbZ", + "2 | Paying key [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "2 | Paying key [2/2] : qta7VKQZKw", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "4 | Nonce : 2339", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1467, - "name": "Externalagents_Remove_agent", - "blob": "2b025449434b45522d313233343544ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1435, + "name": "Relayer_Remove_paying_key", + "blob": "2c02b0a4982a123e870e98be45944a32d76664a4cc899c3810c0300718516f0cb60a1a649a1e7bc89d0e95d5f757cdbb718b750e1e48f9962d215e0af9222021403ed503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Remove agent", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Agent [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Tip : POLYX 55.555555" + "0 | Relayer : Remove paying key", + "1 | User key [1/2] : 5G4KBNUrpvHsFu9ZvQ5fKsbBcR2K4SBgjxgSdM", + "1 | User key [2/2] : T1Vu2VKdbZ", + "2 | Paying key [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "2 | Paying key [2/2] : CXYT6ZmfEg", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Externalagents : Remove agent", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Agent [2/2] : 99f2a85988d897db3b7b56d9af", + "0 | Relayer : Remove paying key", + "1 | User key [1/2] : 5G4KBNUrpvHsFu9ZvQ5fKsbBcR2K4SBgjxgSdM", + "1 | User key [2/2] : T1Vu2VKdbZ", + "2 | Paying key [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "2 | Paying key [2/2] : CXYT6ZmfEg", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 55.555555", + "4 | Nonce : 50283", + "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1468, - "name": "Externalagents_Remove_agent", - "blob": "2b025449434b45522d313233343544ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1436, + "name": "Relayer_Update_polyx_limit", + "blob": "2c032e5388ccb167c9fe3baeba3fed959f63c4e8bceb6c7387a77940029c14239820fd56e5cad3287b54b2352f703dbeafc0d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Remove agent", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Agent [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Tip : POLYX 5552342.355555" + "0 | Relayer : Update polyx limit", + "1 | User key [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "1 | User key [2/2] : qta7VKQZKw", + "2 | Polyx limit [1/2] : POLYX 25612428566640944380857301230667", + "2 | Polyx limit [2/2] : 6.766461", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Externalagents : Remove agent", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Agent [2/2] : 99f2a85988d897db3b7b56d9af", + "0 | Relayer : Update polyx limit", + "1 | User key [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "1 | User key [2/2] : qta7VKQZKw", + "2 | Polyx limit [1/2] : POLYX 25612428566640944380857301230667", + "2 | Polyx limit [2/2] : 6.766461", "3 | Chain : Polymesh", "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", + "5 | Tip : POLYX 0.000987", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1469, - "name": "Externalagents_Remove_agent", - "blob": "2b025449434b45522d313233343544ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1437, + "name": "Relayer_Update_polyx_limit", + "blob": "2c031ea4f867cc0e916cfbaa637a01eea0d3163df7d154720f78571790913a635219fd56e5cad3287b54b2352f703dbeafc0d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Remove agent", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Agent [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Tip : POLYX 0.000987" + "0 | Relayer : Update polyx limit", + "1 | User key [1/2] : 5CktJMt3EL46Fd9cgCmATqUnc4rBP6d1LDcAvK", + "1 | User key [2/2] : SX5DnQkqUa", + "2 | Polyx limit [1/2] : POLYX 25612428566640944380857301230667", + "2 | Polyx limit [2/2] : 6.766461", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Externalagents : Remove agent", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Agent [2/2] : 99f2a85988d897db3b7b56d9af", + "0 | Relayer : Update polyx limit", + "1 | User key [1/2] : 5CktJMt3EL46Fd9cgCmATqUnc4rBP6d1LDcAvK", + "1 | User key [2/2] : SX5DnQkqUa", + "2 | Polyx limit [1/2] : POLYX 25612428566640944380857301230667", + "2 | Polyx limit [2/2] : 6.766461", "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", + "4 | Nonce : 50283", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1470, - "name": "Externalagents_Remove_agent", - "blob": "2b025449434b45522d313233343544ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1438, + "name": "Relayer_Update_polyx_limit", + "blob": "2c031a649a1e7bc89d0e95d5f757cdbb718b750e1e48f9962d215e0af9222021403efd56e5cad3287b54b2352f703dbeafc0d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Remove agent", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Agent [2/2] : 99f2a85988d897db3b7b56d9af", + "0 | Relayer : Update polyx limit", + "1 | User key [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "1 | User key [2/2] : CXYT6ZmfEg", + "2 | Polyx limit [1/2] : POLYX 25612428566640944380857301230667", + "2 | Polyx limit [2/2] : 6.766461", "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Externalagents : Remove agent", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Agent [2/2] : 99f2a85988d897db3b7b56d9af", + "0 | Relayer : Update polyx limit", + "1 | User key [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "1 | User key [2/2] : CXYT6ZmfEg", + "2 | Polyx limit [1/2] : POLYX 25612428566640944380857301230667", + "2 | Polyx limit [2/2] : 6.766461", "3 | Chain : Polymesh", - "4 | Nonce : 2339", + "4 | Nonce : 50283", "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1471, - "name": "Externalagents_Abdicate", - "blob": "2b035449434b45522d3132333435d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1439, + "name": "Relayer_Update_polyx_limit", + "blob": "2c03746a25ffb64614dd2c7d8f53d247e39763261a2a4c187c424c51edb971f3d435fd56e5cad3287b54b2352f703dbeafc0d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Abdicate", - "1 | Ticker : TICKER-12345", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Relayer : Update polyx limit", + "1 | User key [1/2] : 5EhLwjQbRibvSWhbsvw5hvYdKHYF5besUgGbjx", + "1 | User key [2/2] : guT8977hVy", + "2 | Polyx limit [1/2] : POLYX 25612428566640944380857301230667", + "2 | Polyx limit [2/2] : 6.766461" ], "output_expert": [ - "0 | Externalagents : Abdicate", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "0 | Relayer : Update polyx limit", + "1 | User key [1/2] : 5EhLwjQbRibvSWhbsvw5hvYdKHYF5besUgGbjx", + "1 | User key [2/2] : guT8977hVy", + "2 | Polyx limit [1/2] : POLYX 25612428566640944380857301230667", + "2 | Polyx limit [2/2] : 6.766461", + "3 | Chain : Polymesh", + "4 | Nonce : 0", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1472, - "name": "Externalagents_Abdicate", - "blob": "2b035449434b45522d3132333435d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1440, + "name": "Relayer_Update_polyx_limit", + "blob": "2c03dec0f4dc5fd3e8d150cf002bc6385185d188545a2d3c35459acb0fac525c2761fd56e5cad3287b54b2352f703dbeafc0d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Abdicate", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 55.555555" + "0 | Relayer : Update polyx limit", + "1 | User key [1/2] : 5H6moo4wU5PEeHwthqGaP9oVjjAcG3PXyn196u", + "1 | User key [2/2] : hgTRKhjCkB", + "2 | Polyx limit [1/2] : POLYX 25612428566640944380857301230667", + "2 | Polyx limit [2/2] : 6.766461", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Externalagents : Abdicate", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Relayer : Update polyx limit", + "1 | User key [1/2] : 5H6moo4wU5PEeHwthqGaP9oVjjAcG3PXyn196u", + "1 | User key [2/2] : hgTRKhjCkB", + "2 | Polyx limit [1/2] : POLYX 25612428566640944380857301230667", + "2 | Polyx limit [2/2] : 6.766461", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1473, - "name": "Externalagents_Abdicate", - "blob": "2b035449434b45522d3132333435d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1441, + "name": "Relayer_Increase_polyx_limit", + "blob": "2c04746a25ffb64614dd2c7d8f53d247e39763261a2a4c187c424c51edb971f3d435fd56e5cad3287b54b2352f703dbeafc0d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Abdicate", - "1 | Ticker : TICKER-12345" + "0 | Relayer : Increase polyx limit", + "1 | User key [1/2] : 5EhLwjQbRibvSWhbsvw5hvYdKHYF5besUgGbjx", + "1 | User key [2/2] : guT8977hVy", + "2 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "2 | Amount [2/2] : 6.766461", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Externalagents : Abdicate", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Relayer : Increase polyx limit", + "1 | User key [1/2] : 5EhLwjQbRibvSWhbsvw5hvYdKHYF5besUgGbjx", + "1 | User key [2/2] : guT8977hVy", + "2 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "2 | Amount [2/2] : 6.766461", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1474, - "name": "Externalagents_Abdicate", - "blob": "2b035449434b45522d3132333435d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1442, + "name": "Relayer_Increase_polyx_limit", + "blob": "2c042e5388ccb167c9fe3baeba3fed959f63c4e8bceb6c7387a77940029c14239820fd56e5cad3287b54b2352f703dbeafc0d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Abdicate", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 1234.56789" + "0 | Relayer : Increase polyx limit", + "1 | User key [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "1 | User key [2/2] : qta7VKQZKw", + "2 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "2 | Amount [2/2] : 6.766461", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Externalagents : Abdicate", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Relayer : Increase polyx limit", + "1 | User key [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "1 | User key [2/2] : qta7VKQZKw", + "2 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "2 | Amount [2/2] : 6.766461", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1475, - "name": "Externalagents_Abdicate", - "blob": "2b035449434b45522d3132333435d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1443, + "name": "Relayer_Increase_polyx_limit", + "blob": "2c041a649a1e7bc89d0e95d5f757cdbb718b750e1e48f9962d215e0af9222021403efd56e5cad3287b54b2352f703dbeafc0d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Abdicate", - "1 | Ticker : TICKER-12345" - ], - "output_expert": [ - "0 | Externalagents : Abdicate", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1476, - "name": "Externalagents_Change_group", - "blob": "2b045449434b45522d313233343544ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af016cc1cee1d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Change group", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Agent [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Group [1/2] : Custom", - "3 | Group [2/2] : 3788423532", - "4 | Tip : POLYX 5552342.355555" + "0 | Relayer : Increase polyx limit", + "1 | User key [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "1 | User key [2/2] : CXYT6ZmfEg", + "2 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "2 | Amount [2/2] : 6.766461", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Externalagents : Change group", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Agent [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Group [1/2] : Custom", - "3 | Group [2/2] : 3788423532", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Relayer : Increase polyx limit", + "1 | User key [1/2] : 5CfJzDDdmWLRX5mxkQJqK5yVW8565gUUqEfPK4", + "1 | User key [2/2] : CXYT6ZmfEg", + "2 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "2 | Amount [2/2] : 6.766461", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1477, - "name": "Externalagents_Change_group", - "blob": "2b045449434b45522d313233343544ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af00d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1444, + "name": "Relayer_Increase_polyx_limit", + "blob": "2c041ea4f867cc0e916cfbaa637a01eea0d3163df7d154720f78571790913a635219fd56e5cad3287b54b2352f703dbeafc0d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Change group", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Agent [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Group : Full", - "4 | Tip : POLYX 0.000987" + "0 | Relayer : Increase polyx limit", + "1 | User key [1/2] : 5CktJMt3EL46Fd9cgCmATqUnc4rBP6d1LDcAvK", + "1 | User key [2/2] : SX5DnQkqUa", + "2 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "2 | Amount [2/2] : 6.766461" ], "output_expert": [ - "0 | Externalagents : Change group", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Agent [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Group : Full", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Relayer : Increase polyx limit", + "1 | User key [1/2] : 5CktJMt3EL46Fd9cgCmATqUnc4rBP6d1LDcAvK", + "1 | User key [2/2] : SX5DnQkqUa", + "2 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "2 | Amount [2/2] : 6.766461", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1478, - "name": "Externalagents_Change_group", - "blob": "2b045449434b45522d313233343544ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af02d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1445, + "name": "Relayer_Increase_polyx_limit", + "blob": "2c041ea4f867cc0e916cfbaa637a01eea0d3163df7d154720f78571790913a635219fd56e5cad3287b54b2352f703dbeafc0d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Change group", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Agent [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Group : ExceptMeta" + "0 | Relayer : Increase polyx limit", + "1 | User key [1/2] : 5CktJMt3EL46Fd9cgCmATqUnc4rBP6d1LDcAvK", + "1 | User key [2/2] : SX5DnQkqUa", + "2 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "2 | Amount [2/2] : 6.766461", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Externalagents : Change group", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Agent [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Group : ExceptMeta", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", + "0 | Relayer : Increase polyx limit", + "1 | User key [1/2] : 5CktJMt3EL46Fd9cgCmATqUnc4rBP6d1LDcAvK", + "1 | User key [2/2] : SX5DnQkqUa", + "2 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "2 | Amount [2/2] : 6.766461", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1479, - "name": "Externalagents_Change_group", - "blob": "2b045449434b45522d313233343544ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af02d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1446, + "name": "Relayer_Decrease_polyx_limit", + "blob": "2c051ea4f867cc0e916cfbaa637a01eea0d3163df7d154720f78571790913a635219fd56e5cad3287b54b2352f703dbeafc0d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Change group", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Agent [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Group : ExceptMeta", - "4 | Tip : POLYX 55.555555" + "0 | Relayer : Decrease polyx limit", + "1 | User key [1/2] : 5CktJMt3EL46Fd9cgCmATqUnc4rBP6d1LDcAvK", + "1 | User key [2/2] : SX5DnQkqUa", + "2 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "2 | Amount [2/2] : 6.766461" ], "output_expert": [ - "0 | Externalagents : Change group", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Agent [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Group : ExceptMeta", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Relayer : Decrease polyx limit", + "1 | User key [1/2] : 5CktJMt3EL46Fd9cgCmATqUnc4rBP6d1LDcAvK", + "1 | User key [2/2] : SX5DnQkqUa", + "2 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "2 | Amount [2/2] : 6.766461", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1480, - "name": "Externalagents_Change_group", - "blob": "2b045449434b45522d313233343544ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af02d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1447, + "name": "Relayer_Decrease_polyx_limit", + "blob": "2c05b04675564efc66c59b629d4f6f844923f271ebf08fc297a0781f89731bead17ffd56e5cad3287b54b2352f703dbeafc0d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Change group", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Agent [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Group : ExceptMeta", - "4 | Tip : POLYX 0.000987" + "0 | Relayer : Decrease polyx limit", + "1 | User key [1/2] : 5G3qDSksiTK2F5KmS1yryVsRfXMzt1aczrKXJY", + "1 | User key [2/2] : FkFzoSF4YP", + "2 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "2 | Amount [2/2] : 6.766461", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Externalagents : Change group", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "2 | Agent [2/2] : 99f2a85988d897db3b7b56d9af", - "3 | Group : ExceptMeta", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Relayer : Decrease polyx limit", + "1 | User key [1/2] : 5G3qDSksiTK2F5KmS1yryVsRfXMzt1aczrKXJY", + "1 | User key [2/2] : FkFzoSF4YP", + "2 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "2 | Amount [2/2] : 6.766461", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1481, - "name": "Externalagents_Accept_become_agent", - "blob": "2b056400000000000000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1448, + "name": "Relayer_Decrease_polyx_limit", + "blob": "2c051ea4f867cc0e916cfbaa637a01eea0d3163df7d154720f78571790913a635219fd56e5cad3287b54b2352f703dbeafc0d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Accept become agent", - "1 | Auth id : 100" + "0 | Relayer : Decrease polyx limit", + "1 | User key [1/2] : 5CktJMt3EL46Fd9cgCmATqUnc4rBP6d1LDcAvK", + "1 | User key [2/2] : SX5DnQkqUa", + "2 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "2 | Amount [2/2] : 6.766461", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Externalagents : Accept become agent", - "1 | Auth id : 100", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Relayer : Decrease polyx limit", + "1 | User key [1/2] : 5CktJMt3EL46Fd9cgCmATqUnc4rBP6d1LDcAvK", + "1 | User key [2/2] : SX5DnQkqUa", + "2 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "2 | Amount [2/2] : 6.766461", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1482, - "name": "Externalagents_Accept_become_agent", - "blob": "2b056400000000000000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1449, + "name": "Relayer_Decrease_polyx_limit", + "blob": "2c052e5388ccb167c9fe3baeba3fed959f63c4e8bceb6c7387a77940029c14239820fd56e5cad3287b54b2352f703dbeafc0d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Accept become agent", - "1 | Auth id : 100", - "2 | Tip : POLYX 1234.56789" + "0 | Relayer : Decrease polyx limit", + "1 | User key [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "1 | User key [2/2] : qta7VKQZKw", + "2 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "2 | Amount [2/2] : 6.766461", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Externalagents : Accept become agent", - "1 | Auth id : 100", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Relayer : Decrease polyx limit", + "1 | User key [1/2] : 5D7SsgugDFdBeDHZxBZxA7wne74yHG8h1zqofD", + "1 | User key [2/2] : qta7VKQZKw", + "2 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "2 | Amount [2/2] : 6.766461", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1483, - "name": "Externalagents_Accept_become_agent", - "blob": "2b052309000000000000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1450, + "name": "Relayer_Decrease_polyx_limit", + "blob": "2c05b04675564efc66c59b629d4f6f844923f271ebf08fc297a0781f89731bead17ffd56e5cad3287b54b2352f703dbeafc0d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Accept become agent", - "1 | Auth id : 2339" + "0 | Relayer : Decrease polyx limit", + "1 | User key [1/2] : 5G3qDSksiTK2F5KmS1yryVsRfXMzt1aczrKXJY", + "1 | User key [2/2] : FkFzoSF4YP", + "2 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "2 | Amount [2/2] : 6.766461", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Externalagents : Accept become agent", - "1 | Auth id : 2339", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Relayer : Decrease polyx limit", + "1 | User key [1/2] : 5G3qDSksiTK2F5KmS1yryVsRfXMzt1aczrKXJY", + "1 | User key [2/2] : FkFzoSF4YP", + "2 | Amount [1/2] : POLYX 25612428566640944380857301230667", + "2 | Amount [2/2] : 6.766461", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1484, - "name": "Externalagents_Accept_become_agent", - "blob": "2b052309000000000000d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1451, + "name": "Contracts_Call_old_weight", + "blob": "2e0000b91c0828d5fb63795639092cc1c662646babf96458aea56a4bceaee0e19bf70903d20296490fa113f5152f4ce501a5a6010129759502463b5c016d8288888c9051c4a455d1a411513f7c1d86faf7544a093d1e2a09bbe0f58b78a006af87b315e35bac13acee5517cf093bd20a0124904ac5d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Accept become agent", - "1 | Auth id : 2339" + "0 | Contracts : Call old weight", + "1 | Dest [1/2] : 5GFR3T2aUHRosveDUW5ckQANDtWYVUKGjNbhRF", + "1 | Dest [2/2] : 6RoLCjtbjb", + "2 | Amount : POLYX 1234.56789", + "3 | Gas limit : 64541534782296993", + "4 | Storage deposit limit : POLYX 0.010665", + "5 | Data [1/4] : 29759502463b5c016d8288888c9051c4a455d1", + "5 | Data [2/4] : a411513f7c1d86faf7544a093d1e2a09bbe0f5", + "5 | Data [3/4] : 8b78a006af87b315e35bac13acee5517cf093b", + "5 | Data [4/4] : d20a0124904ac5", + "6 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Externalagents : Accept become agent", - "1 | Auth id : 2339", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Contracts : Call old weight", + "1 | Dest [1/2] : 5GFR3T2aUHRosveDUW5ckQANDtWYVUKGjNbhRF", + "1 | Dest [2/2] : 6RoLCjtbjb", + "2 | Amount : POLYX 1234.56789", + "3 | Gas limit : 64541534782296993", + "4 | Storage deposit limit : POLYX 0.010665", + "5 | Data [1/4] : 29759502463b5c016d8288888c9051c4a455d1", + "5 | Data [2/4] : a411513f7c1d86faf7544a093d1e2a09bbe0f5", + "5 | Data [3/4] : 8b78a006af87b315e35bac13acee5517cf093b", + "5 | Data [4/4] : d20a0124904ac5", + "6 | Chain : Polymesh", + "7 | Nonce : 50283", + "8 | Tip : POLYX 5552342.355555", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1485, - "name": "Externalagents_Accept_become_agent", - "blob": "2b056bc4000000000000d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1452, + "name": "Contracts_Call_old_weight", + "blob": "2e00028072ddb7c3e3a9f4c83f8c34281b81c22db8f925c44d9106057bf73469e2f016bd8ed73e0d0c010880c878e7402f4abf94866f8ba269a0122786b8cefaf7e3a6b9dab902d1c556e081d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Accept become agent", - "1 | Auth id : 50283", - "2 | Tip : POLYX 5552342.355555" + "0 | Contracts : Call old weight", + "1 | Dest [1/2] : 72ddb7c3e3a9f4c83f8c34281b81c22db8f925", + "1 | Dest [2/2] : c44d9106057bf73469e2f016bd", + "2 | Amount : POLYX 55.555555", + "3 | Gas limit : 3", + "4 | Storage deposit limit : POLYX 0.000002", + "5 | Data [1/2] : c878e7402f4abf94866f8ba269a0122786b8ce", + "5 | Data [2/2] : faf7e3a6b9dab902d1c556e081" ], "output_expert": [ - "0 | Externalagents : Accept become agent", - "1 | Auth id : 50283", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Contracts : Call old weight", + "1 | Dest [1/2] : 72ddb7c3e3a9f4c83f8c34281b81c22db8f925", + "1 | Dest [2/2] : c44d9106057bf73469e2f016bd", + "2 | Amount : POLYX 55.555555", + "3 | Gas limit : 3", + "4 | Storage deposit limit : POLYX 0.000002", + "5 | Data [1/2] : c878e7402f4abf94866f8ba269a0122786b8ce", + "5 | Data [2/2] : faf7e3a6b9dab902d1c556e081", + "6 | Chain : Polymesh", + "7 | Nonce : 2339", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1486, - "name": "Externalagents_Create_group_and_add_auth", - "blob": "2b065449434b45522d31323334350044ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af018000000000000000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1453, + "name": "Contracts_Call_old_weight", + "blob": "2e0004a6bf6ba54d74ed24f0f22ae261a6d492b9b9a2a88ed73e0d0fa113f5152f4ce501a5a6010129759502463b5c016d8288888c9051c4a455d1a411513f7c1d86faf7544a093d1e2a09bbe0f58b78a006af87b315e35bac13acee5517cf093bd20a0124904ac5d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Create group and add auth", - "1 | Ticker : TICKER-12345", - "2 | Perms : Whole", - "3 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "3 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "4 | Expiry : 128" + "0 | Contracts : Call old weight", + "1 | Dest [1/2] : a6bf6ba54d74ed24f0f22ae261a6d492b9b9a2", + "1 | Dest [2/2] : a8", + "2 | Amount : POLYX 55.555555", + "3 | Gas limit : 64541534782296993", + "4 | Storage deposit limit : POLYX 0.010665", + "5 | Data [1/4] : 29759502463b5c016d8288888c9051c4a455d1", + "5 | Data [2/4] : a411513f7c1d86faf7544a093d1e2a09bbe0f5", + "5 | Data [3/4] : 8b78a006af87b315e35bac13acee5517cf093b", + "5 | Data [4/4] : d20a0124904ac5", + "6 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Externalagents : Create group and add auth", - "1 | Ticker : TICKER-12345", - "2 | Perms : Whole", - "3 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "3 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "4 | Expiry : 128", - "5 | Chain : Polymesh", - "6 | Nonce : 50283", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Contracts : Call old weight", + "1 | Dest [1/2] : a6bf6ba54d74ed24f0f22ae261a6d492b9b9a2", + "1 | Dest [2/2] : a8", + "2 | Amount : POLYX 55.555555", + "3 | Gas limit : 64541534782296993", + "4 | Storage deposit limit : POLYX 0.010665", + "5 | Data [1/4] : 29759502463b5c016d8288888c9051c4a455d1", + "5 | Data [2/4] : a411513f7c1d86faf7544a093d1e2a09bbe0f5", + "5 | Data [3/4] : 8b78a006af87b315e35bac13acee5517cf093b", + "5 | Data [4/4] : d20a0124904ac5", + "6 | Chain : Polymesh", + "7 | Nonce : 100", + "8 | Tip : POLYX 0.000987", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1487, - "name": "Externalagents_Create_group_and_add_auth", - "blob": "2b065449434b45522d31323334350044ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af018000000000000000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1454, + "name": "Contracts_Call_old_weight", + "blob": "2e0000b91c0828d5fb63795639092cc1c662646babf96458aea56a4bceaee0e19bf7090b63ce64c10c050f16e852da89a26701a5a60102d2ce880b42c502e3ae6db5cbdb4644d41929aaf1473b3dffacebfe059c2410288ad0a2b82b7fec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a643ca3d75f249d6aff034afa699cb0f81638a8fec3ac9306b7a68e50aef4b18c58f123b750d4dd9033d5d2ac77de3e6faa49e76688e8768e038da2c68d18c8fbb71153e2ee911bd503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Create group and add auth", - "1 | Ticker : TICKER-12345", - "2 | Perms : Whole", - "3 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "3 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "4 | Expiry : 128", - "5 | Tip : POLYX 55.555555" + "0 | Contracts : Call old weight", + "1 | Dest [1/2] : 5GFR3T2aUHRosveDUW5ckQANDtWYVUKGjNbhRF", + "1 | Dest [2/2] : 6RoLCjtbjb", + "2 | Amount : POLYX 5552342.355555", + "3 | Gas limit : 29170635558283286", + "4 | Storage deposit limit : POLYX 0.010665", + "5 | Data [1/7] : d2ce880b42c502e3ae6db5cbdb4644d41929aa", + "5 | Data [2/7] : f1473b3dffacebfe059c2410288ad0a2b82b7f", + "5 | Data [3/7] : ec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a", + "5 | Data [4/7] : 643ca3d75f249d6aff034afa699cb0f81638a8", + "5 | Data [5/7] : fec3ac9306b7a68e50aef4b18c58f123b750d4", + "5 | Data [6/7] : dd9033d5d2ac77de3e6faa49e76688e8768e03", + "5 | Data [7/7] : 8da2c68d18c8fbb71153e2ee911b", + "6 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Externalagents : Create group and add auth", - "1 | Ticker : TICKER-12345", - "2 | Perms : Whole", - "3 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "3 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "4 | Expiry : 128", - "5 | Chain : Polymesh", - "6 | Nonce : 100", - "7 | Tip : POLYX 55.555555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Contracts : Call old weight", + "1 | Dest [1/2] : 5GFR3T2aUHRosveDUW5ckQANDtWYVUKGjNbhRF", + "1 | Dest [2/2] : 6RoLCjtbjb", + "2 | Amount : POLYX 5552342.355555", + "3 | Gas limit : 29170635558283286", + "4 | Storage deposit limit : POLYX 0.010665", + "5 | Data [1/7] : d2ce880b42c502e3ae6db5cbdb4644d41929aa", + "5 | Data [2/7] : f1473b3dffacebfe059c2410288ad0a2b82b7f", + "5 | Data [3/7] : ec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a", + "5 | Data [4/7] : 643ca3d75f249d6aff034afa699cb0f81638a8", + "5 | Data [5/7] : fec3ac9306b7a68e50aef4b18c58f123b750d4", + "5 | Data [6/7] : dd9033d5d2ac77de3e6faa49e76688e8768e03", + "5 | Data [7/7] : 8da2c68d18c8fbb71153e2ee911b", + "6 | Chain : Polymesh", + "7 | Nonce : 1", + "8 | Tip : POLYX 5552342.355555", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1488, - "name": "Externalagents_Create_group_and_add_auth", - "blob": "2b065449434b45522d31323334350044ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af010008000000000000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1455, + "name": "Contracts_Call_old_weight", + "blob": "2e0003d9c33e50da4265e5eb0a01566304b5dc5bd824d2ed6bbc461c7d61ed59ccc0658ed73e0d0f16e852da89a2670108010129759502463b5c016d8288888c9051c4a455d1a411513f7c1d86faf7544a093d1e2a09bbe0f58b78a006af87b315e35bac13acee5517cf093bd20a0124904ac5d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Create group and add auth", - "1 | Ticker : TICKER-12345", - "2 | Perms : Whole", - "3 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "3 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "4 | Expiry : 2048", - "5 | Tip : POLYX 1234.56789" + "0 | Contracts : Call old weight", + "1 | Dest [1/2] : d9c33e50da4265e5eb0a01566304b5dc5bd824", + "1 | Dest [2/2] : d2ed6bbc461c7d61ed59ccc065", + "2 | Amount : POLYX 55.555555", + "3 | Gas limit : 29170635558283286", + "4 | Storage deposit limit : POLYX 0.000002", + "5 | Data [1/4] : 29759502463b5c016d8288888c9051c4a455d1", + "5 | Data [2/4] : a411513f7c1d86faf7544a093d1e2a09bbe0f5", + "5 | Data [3/4] : 8b78a006af87b315e35bac13acee5517cf093b", + "5 | Data [4/4] : d20a0124904ac5", + "6 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Externalagents : Create group and add auth", - "1 | Ticker : TICKER-12345", - "2 | Perms : Whole", - "3 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "3 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "4 | Expiry : 2048", - "5 | Chain : Polymesh", - "6 | Nonce : 0", - "7 | Tip : POLYX 1234.56789", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Contracts : Call old weight", + "1 | Dest [1/2] : d9c33e50da4265e5eb0a01566304b5dc5bd824", + "1 | Dest [2/2] : d2ed6bbc461c7d61ed59ccc065", + "2 | Amount : POLYX 55.555555", + "3 | Gas limit : 29170635558283286", + "4 | Storage deposit limit : POLYX 0.000002", + "5 | Data [1/4] : 29759502463b5c016d8288888c9051c4a455d1", + "5 | Data [2/4] : a411513f7c1d86faf7544a093d1e2a09bbe0f5", + "5 | Data [3/4] : 8b78a006af87b315e35bac13acee5517cf093b", + "5 | Data [4/4] : d20a0124904ac5", + "6 | Chain : Polymesh", + "7 | Nonce : 50283", + "8 | Tip : POLYX 55.555555", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1489, - "name": "Externalagents_Create_group_and_add_auth", - "blob": "2b065449434b45522d313233343501042050414c4c45545f4202082c44697370617463684142432c446973706174636858595a44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af018000000000000000d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1456, + "name": "Contracts_Instantiate_with_code_old_weight", + "blob": "2e01000c01d1d60102d2ce880b42c502e3ae6db5cbdb4644d41929aaf1473b3dffacebfe059c2410288ad0a2b82b7fec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a643ca3d75f249d6aff034afa699cb0f81638a8fec3ac9306b7a68e50aef4b18c58f123b750d4dd9033d5d2ac77de3e6faa49e76688e8768e038da2c68d18c8fbb71153e2ee911b01016b88a19afd977906ff6da6fdec075611bceccda551c0e710eb786ccf06fd38a72e1ff529a16f3efcc069f803c63240320b883ecde5c375fbd83b1c8d8b6f6c2f010288791b98b8ffc0aa74712db38517362b1ba53ce5897392a0b04a62dd266c9bb592a10419d98e0f2e7db5acc146922d29e8ec271a594e693b53397dddb66b529203aafa6c56ab80a83e8622d746146348c2bf78b0938eaaf8a4b508a445d985298c1e6e812e9f2585ca696e9b5da2c9fcd11d94d43680dfccda0c0ebae1cc97e6d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Create group and add auth", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/5] : These", - "2 | Perms [2/5] : PALLET_B", - "2 | Perms [3/5] : Except", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "3 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "4 | Expiry : 128", - "5 | Tip : POLYX 55.555555" + "0 | Contracts : Instantiate with code old weight", + "1 | Amount : POLYX 0.0", + "2 | Gas limit : 3", + "3 | Storage deposit limit : POLYX 0.013748", + "4 | Code [1/7] : d2ce880b42c502e3ae6db5cbdb4644d41929aa", + "4 | Code [2/7] : f1473b3dffacebfe059c2410288ad0a2b82b7f", + "4 | Code [3/7] : ec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a", + "4 | Code [4/7] : 643ca3d75f249d6aff034afa699cb0f81638a8", + "4 | Code [5/7] : fec3ac9306b7a68e50aef4b18c58f123b750d4", + "4 | Code [6/7] : dd9033d5d2ac77de3e6faa49e76688e8768e03", + "4 | Code [7/7] : 8da2c68d18c8fbb71153e2ee911b", + "5 | Data [1/4] : 6b88a19afd977906ff6da6fdec075611bceccd", + "5 | Data [2/4] : a551c0e710eb786ccf06fd38a72e1ff529a16f", + "5 | Data [3/4] : 3efcc069f803c63240320b883ecde5c375fbd8", + "5 | Data [4/4] : 3b1c8d8b6f6c2f", + "6 | Salt [1/7] : 88791b98b8ffc0aa74712db38517362b1ba53c", + "6 | Salt [2/7] : e5897392a0b04a62dd266c9bb592a10419d98e", + "6 | Salt [3/7] : 0f2e7db5acc146922d29e8ec271a594e693b53", + "6 | Salt [4/7] : 397dddb66b529203aafa6c56ab80a83e8622d7", + "6 | Salt [5/7] : 46146348c2bf78b0938eaaf8a4b508a445d985", + "6 | Salt [6/7] : 298c1e6e812e9f2585ca696e9b5da2c9fcd11d", + "6 | Salt [7/7] : 94d43680dfccda0c0ebae1cc97e6" ], "output_expert": [ - "0 | Externalagents : Create group and add auth", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/5] : These", - "2 | Perms [2/5] : PALLET_B", - "2 | Perms [3/5] : Except", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "3 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "4 | Expiry : 128", - "5 | Chain : Polymesh", - "6 | Nonce : 2339", - "7 | Tip : POLYX 55.555555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Contracts : Instantiate with code old weight", + "1 | Amount : POLYX 0.0", + "2 | Gas limit : 3", + "3 | Storage deposit limit : POLYX 0.013748", + "4 | Code [1/7] : d2ce880b42c502e3ae6db5cbdb4644d41929aa", + "4 | Code [2/7] : f1473b3dffacebfe059c2410288ad0a2b82b7f", + "4 | Code [3/7] : ec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a", + "4 | Code [4/7] : 643ca3d75f249d6aff034afa699cb0f81638a8", + "4 | Code [5/7] : fec3ac9306b7a68e50aef4b18c58f123b750d4", + "4 | Code [6/7] : dd9033d5d2ac77de3e6faa49e76688e8768e03", + "4 | Code [7/7] : 8da2c68d18c8fbb71153e2ee911b", + "5 | Data [1/4] : 6b88a19afd977906ff6da6fdec075611bceccd", + "5 | Data [2/4] : a551c0e710eb786ccf06fd38a72e1ff529a16f", + "5 | Data [3/4] : 3efcc069f803c63240320b883ecde5c375fbd8", + "5 | Data [4/4] : 3b1c8d8b6f6c2f", + "6 | Salt [1/7] : 88791b98b8ffc0aa74712db38517362b1ba53c", + "6 | Salt [2/7] : e5897392a0b04a62dd266c9bb592a10419d98e", + "6 | Salt [3/7] : 0f2e7db5acc146922d29e8ec271a594e693b53", + "6 | Salt [4/7] : 397dddb66b529203aafa6c56ab80a83e8622d7", + "6 | Salt [5/7] : 46146348c2bf78b0938eaaf8a4b508a445d985", + "6 | Salt [6/7] : 298c1e6e812e9f2585ca696e9b5da2c9fcd11d", + "6 | Salt [7/7] : 94d43680dfccda0c0ebae1cc97e6", + "7 | Chain : Polymesh", + "8 | Nonce : 1", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1490, - "name": "Externalagents_Create_group_and_add_auth", - "blob": "2b065449434b45522d313233343502042050414c4c45545f4202082c44697370617463684142432c446973706174636858595a44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9af010001000000000000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1457, + "name": "Contracts_Instantiate_with_code_old_weight", + "blob": "2e016d0f0fa113f5152f4ce501080102b2019b12199bd8c5694f336189f576c8c8f5411b35d6f33faaaf68fd63d1091377b3cf2c9aba4beccafacf81dc55f29f744e5b8d0fde968939a0fa857737c3e6cbd66ea6a34a41bb9adc85657ef9bfec225ae9b86e487242e402518d5634bff9105f73fa07aa99a66f929317789925234a209f75dd3401231a403d4ee9122a300101d8d1357065e78f8829b81f3452a8459d657970f8914a665313385d44b29bfac8c91e901099b2f388bf2cca959da4122d3a34eac8c84dfa07d1998118835864c30102d2ce880b42c502e3ae6db5cbdb4644d41929aaf1473b3dffacebfe059c2410288ad0a2b82b7fec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a643ca3d75f249d6aff034afa699cb0f81638a8fec3ac9306b7a68e50aef4b18c58f123b750d4dd9033d5d2ac77de3e6faa49e76688e8768e038da2c68d18c8fbb71153e2ee911bd5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Create group and add auth", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/5] : Except", - "2 | Perms [2/5] : PALLET_B", - "2 | Perms [3/5] : Except", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "3 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "4 | Expiry : 256", - "5 | Tip : POLYX 1234.56789" + "0 | Contracts : Instantiate with code old weight", + "1 | Amount : POLYX 0.000987", + "2 | Gas limit : 64541534782296993", + "3 | Storage deposit limit : POLYX 0.000002", + "4 | Code [1/7] : b2019b12199bd8c5694f336189f576c8c8f541", + "4 | Code [2/7] : 1b35d6f33faaaf68fd63d1091377b3cf2c9aba", + "4 | Code [3/7] : 4beccafacf81dc55f29f744e5b8d0fde968939", + "4 | Code [4/7] : a0fa857737c3e6cbd66ea6a34a41bb9adc8565", + "4 | Code [5/7] : 7ef9bfec225ae9b86e487242e402518d5634bf", + "4 | Code [6/7] : f9105f73fa07aa99a66f929317789925234a20", + "4 | Code [7/7] : 9f75dd3401231a403d4ee9122a30", + "5 | Data [1/4] : d8d1357065e78f8829b81f3452a8459d657970", + "5 | Data [2/4] : f8914a665313385d44b29bfac8c91e901099b2", + "5 | Data [3/4] : f388bf2cca959da4122d3a34eac8c84dfa07d1", + "5 | Data [4/4] : 998118835864c3", + "6 | Salt [1/7] : d2ce880b42c502e3ae6db5cbdb4644d41929aa", + "6 | Salt [2/7] : f1473b3dffacebfe059c2410288ad0a2b82b7f", + "6 | Salt [3/7] : ec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a", + "6 | Salt [4/7] : 643ca3d75f249d6aff034afa699cb0f81638a8", + "6 | Salt [5/7] : fec3ac9306b7a68e50aef4b18c58f123b750d4", + "6 | Salt [6/7] : dd9033d5d2ac77de3e6faa49e76688e8768e03", + "6 | Salt [7/7] : 8da2c68d18c8fbb71153e2ee911b", + "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "7 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Externalagents : Create group and add auth", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/5] : Except", - "2 | Perms [2/5] : PALLET_B", - "2 | Perms [3/5] : Except", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Target [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "3 | Target [2/2] : 99f2a85988d897db3b7b56d9af", - "4 | Expiry : 256", - "5 | Chain : Polymesh", - "6 | Nonce : 2339", - "7 | Tip : POLYX 1234.56789", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Contracts : Instantiate with code old weight", + "1 | Amount : POLYX 0.000987", + "2 | Gas limit : 64541534782296993", + "3 | Storage deposit limit : POLYX 0.000002", + "4 | Code [1/7] : b2019b12199bd8c5694f336189f576c8c8f541", + "4 | Code [2/7] : 1b35d6f33faaaf68fd63d1091377b3cf2c9aba", + "4 | Code [3/7] : 4beccafacf81dc55f29f744e5b8d0fde968939", + "4 | Code [4/7] : a0fa857737c3e6cbd66ea6a34a41bb9adc8565", + "4 | Code [5/7] : 7ef9bfec225ae9b86e487242e402518d5634bf", + "4 | Code [6/7] : f9105f73fa07aa99a66f929317789925234a20", + "4 | Code [7/7] : 9f75dd3401231a403d4ee9122a30", + "5 | Data [1/4] : d8d1357065e78f8829b81f3452a8459d657970", + "5 | Data [2/4] : f8914a665313385d44b29bfac8c91e901099b2", + "5 | Data [3/4] : f388bf2cca959da4122d3a34eac8c84dfa07d1", + "5 | Data [4/4] : 998118835864c3", + "6 | Salt [1/7] : d2ce880b42c502e3ae6db5cbdb4644d41929aa", + "6 | Salt [2/7] : f1473b3dffacebfe059c2410288ad0a2b82b7f", + "6 | Salt [3/7] : ec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a", + "6 | Salt [4/7] : 643ca3d75f249d6aff034afa699cb0f81638a8", + "6 | Salt [5/7] : fec3ac9306b7a68e50aef4b18c58f123b750d4", + "6 | Salt [6/7] : dd9033d5d2ac77de3e6faa49e76688e8768e03", + "6 | Salt [7/7] : 8da2c68d18c8fbb71153e2ee911b", + "7 | Chain : Polymesh", + "8 | Nonce : 0", + "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "9 | Tip [2/2] : 3.456789", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1491, - "name": "Externalagents_Create_and_change_custom_group", - "blob": "2b075449434b45522d31323334350044ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1458, + "name": "Contracts_Instantiate_with_code_old_weight", + "blob": "2e01000fa113f5152f4ce50108010129759502463b5c016d8288888c9051c4a455d1a411513f7c1d86faf7544a093d1e2a09bbe0f58b78a006af87b315e35bac13acee5517cf093bd20a0124904ac501016b88a19afd977906ff6da6fdec075611bceccda551c0e710eb786ccf06fd38a72e1ff529a16f3efcc069f803c63240320b883ecde5c375fbd83b1c8d8b6f6c2f8026ac0480331bc9ed5ac80af46ec594e1adfd225a3cd010373e2f0d3c09c2a76bd50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Create and change custom group", - "1 | Ticker : TICKER-12345", - "2 | Perms : Whole", - "3 | Agent [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "3 | Agent [2/2] : 99f2a85988d897db3b7b56d9af" + "0 | Contracts : Instantiate with code old weight", + "1 | Amount : POLYX 0.0", + "2 | Gas limit : 64541534782296993", + "3 | Storage deposit limit : POLYX 0.000002", + "4 | Code [1/4] : 29759502463b5c016d8288888c9051c4a455d1", + "4 | Code [2/4] : a411513f7c1d86faf7544a093d1e2a09bbe0f5", + "4 | Code [3/4] : 8b78a006af87b315e35bac13acee5517cf093b", + "4 | Code [4/4] : d20a0124904ac5", + "5 | Data [1/4] : 6b88a19afd977906ff6da6fdec075611bceccd", + "5 | Data [2/4] : a551c0e710eb786ccf06fd38a72e1ff529a16f", + "5 | Data [3/4] : 3efcc069f803c63240320b883ecde5c375fbd8", + "5 | Data [4/4] : 3b1c8d8b6f6c2f", + "6 | Salt [1/2] : 26ac0480331bc9ed5ac80af46ec594e1adfd22", + "6 | Salt [2/2] : 5a3cd010373e2f0d3c09c2a76b", + "7 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Externalagents : Create and change custom group", - "1 | Ticker : TICKER-12345", - "2 | Perms : Whole", - "3 | Agent [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "3 | Agent [2/2] : 99f2a85988d897db3b7b56d9af", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Contracts : Instantiate with code old weight", + "1 | Amount : POLYX 0.0", + "2 | Gas limit : 64541534782296993", + "3 | Storage deposit limit : POLYX 0.000002", + "4 | Code [1/4] : 29759502463b5c016d8288888c9051c4a455d1", + "4 | Code [2/4] : a411513f7c1d86faf7544a093d1e2a09bbe0f5", + "4 | Code [3/4] : 8b78a006af87b315e35bac13acee5517cf093b", + "4 | Code [4/4] : d20a0124904ac5", + "5 | Data [1/4] : 6b88a19afd977906ff6da6fdec075611bceccd", + "5 | Data [2/4] : a551c0e710eb786ccf06fd38a72e1ff529a16f", + "5 | Data [3/4] : 3efcc069f803c63240320b883ecde5c375fbd8", + "5 | Data [4/4] : 3b1c8d8b6f6c2f", + "6 | Salt [1/2] : 26ac0480331bc9ed5ac80af46ec594e1adfd22", + "6 | Salt [2/2] : 5a3cd010373e2f0d3c09c2a76b", + "7 | Chain : Polymesh", + "8 | Nonce : 100", + "9 | Tip : POLYX 5552342.355555", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1492, - "name": "Externalagents_Create_and_change_custom_group", - "blob": "2b075449434b45522d313233343502042050414c4c45545f4202082c44697370617463684142432c446973706174636858595a44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1459, + "name": "Contracts_Instantiate_with_code_old_weight", + "blob": "2e0133158139ae28a3dfaac5fe1560a5e9e05c0c01d1d6010129759502463b5c016d8288888c9051c4a455d1a411513f7c1d86faf7544a093d1e2a09bbe0f58b78a006af87b315e35bac13acee5517cf093bd20a0124904ac58026ac0480331bc9ed5ac80af46ec594e1adfd225a3cd010373e2f0d3c09c2a76b0101d8d1357065e78f8829b81f3452a8459d657970f8914a665313385d44b29bfac8c91e901099b2f388bf2cca959da4122d3a34eac8c84dfa07d1998118835864c3d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Create and change custom group", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/5] : Except", - "2 | Perms [2/5] : PALLET_B", - "2 | Perms [3/5] : Except", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Agent [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "3 | Agent [2/2] : 99f2a85988d897db3b7b56d9af", - "4 | Tip : POLYX 0.000987" + "0 | Contracts : Instantiate with code old weight", + "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "1 | Amount [2/2] : 3.456789", + "2 | Gas limit : 3", + "3 | Storage deposit limit : POLYX 0.013748", + "4 | Code [1/4] : 29759502463b5c016d8288888c9051c4a455d1", + "4 | Code [2/4] : a411513f7c1d86faf7544a093d1e2a09bbe0f5", + "4 | Code [3/4] : 8b78a006af87b315e35bac13acee5517cf093b", + "4 | Code [4/4] : d20a0124904ac5", + "5 | Data [1/2] : 26ac0480331bc9ed5ac80af46ec594e1adfd22", + "5 | Data [2/2] : 5a3cd010373e2f0d3c09c2a76b", + "6 | Salt [1/4] : d8d1357065e78f8829b81f3452a8459d657970", + "6 | Salt [2/4] : f8914a665313385d44b29bfac8c91e901099b2", + "6 | Salt [3/4] : f388bf2cca959da4122d3a34eac8c84dfa07d1", + "6 | Salt [4/4] : 998118835864c3", + "7 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Externalagents : Create and change custom group", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/5] : Except", - "2 | Perms [2/5] : PALLET_B", - "2 | Perms [3/5] : Except", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Agent [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "3 | Agent [2/2] : 99f2a85988d897db3b7b56d9af", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Contracts : Instantiate with code old weight", + "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "1 | Amount [2/2] : 3.456789", + "2 | Gas limit : 3", + "3 | Storage deposit limit : POLYX 0.013748", + "4 | Code [1/4] : 29759502463b5c016d8288888c9051c4a455d1", + "4 | Code [2/4] : a411513f7c1d86faf7544a093d1e2a09bbe0f5", + "4 | Code [3/4] : 8b78a006af87b315e35bac13acee5517cf093b", + "4 | Code [4/4] : d20a0124904ac5", + "5 | Data [1/2] : 26ac0480331bc9ed5ac80af46ec594e1adfd22", + "5 | Data [2/2] : 5a3cd010373e2f0d3c09c2a76b", + "6 | Salt [1/4] : d8d1357065e78f8829b81f3452a8459d657970", + "6 | Salt [2/4] : f8914a665313385d44b29bfac8c91e901099b2", + "6 | Salt [3/4] : f388bf2cca959da4122d3a34eac8c84dfa07d1", + "6 | Salt [4/4] : 998118835864c3", + "7 | Chain : Polymesh", + "8 | Nonce : 50283", + "9 | Tip : POLYX 5552342.355555", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1493, - "name": "Externalagents_Create_and_change_custom_group", - "blob": "2b075449434b45522d313233343501042050414c4c45545f4202082c44697370617463684142432c446973706174636858595a44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1460, + "name": "Contracts_Instantiate_with_code_old_weight", + "blob": "2e016d0f0f16e852da89a26701080102b2019b12199bd8c5694f336189f576c8c8f5411b35d6f33faaaf68fd63d1091377b3cf2c9aba4beccafacf81dc55f29f744e5b8d0fde968939a0fa857737c3e6cbd66ea6a34a41bb9adc85657ef9bfec225ae9b86e487242e402518d5634bff9105f73fa07aa99a66f929317789925234a209f75dd3401231a403d4ee9122a3080c878e7402f4abf94866f8ba269a0122786b8cefaf7e3a6b9dab902d1c556e081010129759502463b5c016d8288888c9051c4a455d1a411513f7c1d86faf7544a093d1e2a09bbe0f58b78a006af87b315e35bac13acee5517cf093bd20a0124904ac5d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Create and change custom group", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/5] : These", - "2 | Perms [2/5] : PALLET_B", - "2 | Perms [3/5] : Except", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Agent [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "3 | Agent [2/2] : 99f2a85988d897db3b7b56d9af", - "4 | Tip : POLYX 55.555555" + "0 | Contracts : Instantiate with code old weight", + "1 | Amount : POLYX 0.000987", + "2 | Gas limit : 29170635558283286", + "3 | Storage deposit limit : POLYX 0.000002", + "4 | Code [1/7] : b2019b12199bd8c5694f336189f576c8c8f541", + "4 | Code [2/7] : 1b35d6f33faaaf68fd63d1091377b3cf2c9aba", + "4 | Code [3/7] : 4beccafacf81dc55f29f744e5b8d0fde968939", + "4 | Code [4/7] : a0fa857737c3e6cbd66ea6a34a41bb9adc8565", + "4 | Code [5/7] : 7ef9bfec225ae9b86e487242e402518d5634bf", + "4 | Code [6/7] : f9105f73fa07aa99a66f929317789925234a20", + "4 | Code [7/7] : 9f75dd3401231a403d4ee9122a30", + "5 | Data [1/2] : c878e7402f4abf94866f8ba269a0122786b8ce", + "5 | Data [2/2] : faf7e3a6b9dab902d1c556e081", + "6 | Salt [1/4] : 29759502463b5c016d8288888c9051c4a455d1", + "6 | Salt [2/4] : a411513f7c1d86faf7544a093d1e2a09bbe0f5", + "6 | Salt [3/4] : 8b78a006af87b315e35bac13acee5517cf093b", + "6 | Salt [4/4] : d20a0124904ac5", + "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "7 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Externalagents : Create and change custom group", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/5] : These", - "2 | Perms [2/5] : PALLET_B", - "2 | Perms [3/5] : Except", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Agent [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "3 | Agent [2/2] : 99f2a85988d897db3b7b56d9af", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Contracts : Instantiate with code old weight", + "1 | Amount : POLYX 0.000987", + "2 | Gas limit : 29170635558283286", + "3 | Storage deposit limit : POLYX 0.000002", + "4 | Code [1/7] : b2019b12199bd8c5694f336189f576c8c8f541", + "4 | Code [2/7] : 1b35d6f33faaaf68fd63d1091377b3cf2c9aba", + "4 | Code [3/7] : 4beccafacf81dc55f29f744e5b8d0fde968939", + "4 | Code [4/7] : a0fa857737c3e6cbd66ea6a34a41bb9adc8565", + "4 | Code [5/7] : 7ef9bfec225ae9b86e487242e402518d5634bf", + "4 | Code [6/7] : f9105f73fa07aa99a66f929317789925234a20", + "4 | Code [7/7] : 9f75dd3401231a403d4ee9122a30", + "5 | Data [1/2] : c878e7402f4abf94866f8ba269a0122786b8ce", + "5 | Data [2/2] : faf7e3a6b9dab902d1c556e081", + "6 | Salt [1/4] : 29759502463b5c016d8288888c9051c4a455d1", + "6 | Salt [2/4] : a411513f7c1d86faf7544a093d1e2a09bbe0f5", + "6 | Salt [3/4] : 8b78a006af87b315e35bac13acee5517cf093b", + "6 | Salt [4/4] : d20a0124904ac5", + "7 | Chain : Polymesh", + "8 | Nonce : 100", + "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "9 | Tip [2/2] : 3.456789", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1494, - "name": "Externalagents_Create_and_change_custom_group", - "blob": "2b075449434b45522d313233343501042050414c4c45545f4202082c44697370617463684142432c446973706174636858595a44ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1461, + "name": "Contracts_Instantiate_old_weight", + "blob": "2e020b63ce64c10c050c01a5a6885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a010129759502463b5c016d8288888c9051c4a455d1a411513f7c1d86faf7544a093d1e2a09bbe0f58b78a006af87b315e35bac13acee5517cf093bd20a0124904ac5010288791b98b8ffc0aa74712db38517362b1ba53ce5897392a0b04a62dd266c9bb592a10419d98e0f2e7db5acc146922d29e8ec271a594e693b53397dddb66b529203aafa6c56ab80a83e8622d746146348c2bf78b0938eaaf8a4b508a445d985298c1e6e812e9f2585ca696e9b5da2c9fcd11d94d43680dfccda0c0ebae1cc97e6d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Create and change custom group", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/5] : These", - "2 | Perms [2/5] : PALLET_B", - "2 | Perms [3/5] : Except", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Agent [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "3 | Agent [2/2] : 99f2a85988d897db3b7b56d9af", - "4 | Tip : POLYX 0.000987" + "0 | Contracts : Instantiate old weight", + "1 | Amount : POLYX 5552342.355555", + "2 | Gas limit : 3", + "3 | Storage deposit limit : POLYX 0.010665", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "5 | Data [1/4] : 29759502463b5c016d8288888c9051c4a455d1", + "5 | Data [2/4] : a411513f7c1d86faf7544a093d1e2a09bbe0f5", + "5 | Data [3/4] : 8b78a006af87b315e35bac13acee5517cf093b", + "5 | Data [4/4] : d20a0124904ac5", + "6 | Salt [1/7] : 88791b98b8ffc0aa74712db38517362b1ba53c", + "6 | Salt [2/7] : e5897392a0b04a62dd266c9bb592a10419d98e", + "6 | Salt [3/7] : 0f2e7db5acc146922d29e8ec271a594e693b53", + "6 | Salt [4/7] : 397dddb66b529203aafa6c56ab80a83e8622d7", + "6 | Salt [5/7] : 46146348c2bf78b0938eaaf8a4b508a445d985", + "6 | Salt [6/7] : 298c1e6e812e9f2585ca696e9b5da2c9fcd11d", + "6 | Salt [7/7] : 94d43680dfccda0c0ebae1cc97e6", + "7 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Externalagents : Create and change custom group", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/5] : These", - "2 | Perms [2/5] : PALLET_B", - "2 | Perms [3/5] : Except", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Agent [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "3 | Agent [2/2] : 99f2a85988d897db3b7b56d9af", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Contracts : Instantiate old weight", + "1 | Amount : POLYX 5552342.355555", + "2 | Gas limit : 3", + "3 | Storage deposit limit : POLYX 0.010665", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "5 | Data [1/4] : 29759502463b5c016d8288888c9051c4a455d1", + "5 | Data [2/4] : a411513f7c1d86faf7544a093d1e2a09bbe0f5", + "5 | Data [3/4] : 8b78a006af87b315e35bac13acee5517cf093b", + "5 | Data [4/4] : d20a0124904ac5", + "6 | Salt [1/7] : 88791b98b8ffc0aa74712db38517362b1ba53c", + "6 | Salt [2/7] : e5897392a0b04a62dd266c9bb592a10419d98e", + "6 | Salt [3/7] : 0f2e7db5acc146922d29e8ec271a594e693b53", + "6 | Salt [4/7] : 397dddb66b529203aafa6c56ab80a83e8622d7", + "6 | Salt [5/7] : 46146348c2bf78b0938eaaf8a4b508a445d985", + "6 | Salt [6/7] : 298c1e6e812e9f2585ca696e9b5da2c9fcd11d", + "6 | Salt [7/7] : 94d43680dfccda0c0ebae1cc97e6", + "7 | Chain : Polymesh", + "8 | Nonce : 100", + "9 | Tip : POLYX 1234.56789", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1495, - "name": "Externalagents_Create_and_change_custom_group", - "blob": "2b075449434b45522d31323334350044ae5d9897f0d6ce91aa70650308bb7d656e5a99f2a85988d897db3b7b56d9afd5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1462, + "name": "Contracts_Instantiate_old_weight", + "blob": "2e020b63ce64c10c050f16e852da89a26701d1d6885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a8026ac0480331bc9ed5ac80af46ec594e1adfd225a3cd010373e2f0d3c09c2a76b0101d8d1357065e78f8829b81f3452a8459d657970f8914a665313385d44b29bfac8c91e901099b2f388bf2cca959da4122d3a34eac8c84dfa07d1998118835864c3d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Externalagents : Create and change custom group", - "1 | Ticker : TICKER-12345", - "2 | Perms : Whole", - "3 | Agent [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "3 | Agent [2/2] : 99f2a85988d897db3b7b56d9af", - "4 | Tip : POLYX 1234.56789" + "0 | Contracts : Instantiate old weight", + "1 | Amount : POLYX 5552342.355555", + "2 | Gas limit : 29170635558283286", + "3 | Storage deposit limit : POLYX 0.013748", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "5 | Data [1/2] : 26ac0480331bc9ed5ac80af46ec594e1adfd22", + "5 | Data [2/2] : 5a3cd010373e2f0d3c09c2a76b", + "6 | Salt [1/4] : d8d1357065e78f8829b81f3452a8459d657970", + "6 | Salt [2/4] : f8914a665313385d44b29bfac8c91e901099b2", + "6 | Salt [3/4] : f388bf2cca959da4122d3a34eac8c84dfa07d1", + "6 | Salt [4/4] : 998118835864c3" ], "output_expert": [ - "0 | Externalagents : Create and change custom group", - "1 | Ticker : TICKER-12345", - "2 | Perms : Whole", - "3 | Agent [1/2] : 44ae5d9897f0d6ce91aa70650308bb7d656e5a", - "3 | Agent [2/2] : 99f2a85988d897db3b7b56d9af", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Contracts : Instantiate old weight", + "1 | Amount : POLYX 5552342.355555", + "2 | Gas limit : 29170635558283286", + "3 | Storage deposit limit : POLYX 0.013748", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "5 | Data [1/2] : 26ac0480331bc9ed5ac80af46ec594e1adfd22", + "5 | Data [2/2] : 5a3cd010373e2f0d3c09c2a76b", + "6 | Salt [1/4] : d8d1357065e78f8829b81f3452a8459d657970", + "6 | Salt [2/4] : f8914a665313385d44b29bfac8c91e901099b2", + "6 | Salt [3/4] : f388bf2cca959da4122d3a34eac8c84dfa07d1", + "6 | Salt [4/4] : 998118835864c3", + "7 | Chain : Polymesh", + "8 | Nonce : 50283", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1496, - "name": "Relayer_Set_paying_key", - "blob": "2c00248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0340d8127ea9f0d1cdf6126ec9c838c9bad50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1463, + "name": "Contracts_Instantiate_old_weight", + "blob": "2e0233158139ae28a3dfaac5fe1560a5e9e05c0fa113f5152f4ce50108885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a010129759502463b5c016d8288888c9051c4a455d1a411513f7c1d86faf7544a093d1e2a09bbe0f58b78a006af87b315e35bac13acee5517cf093bd20a0124904ac50102b2019b12199bd8c5694f336189f576c8c8f5411b35d6f33faaaf68fd63d1091377b3cf2c9aba4beccafacf81dc55f29f744e5b8d0fde968939a0fa857737c3e6cbd66ea6a34a41bb9adc85657ef9bfec225ae9b86e487242e402518d5634bff9105f73fa07aa99a66f929317789925234a209f75dd3401231a403d4ee9122a30d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Relayer : Set paying key", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Polyx limit [1/2] : POLYX 24828121060746971842942860419690", - "2 | Polyx limit [2/2] : 4.68768", - "3 | Tip : POLYX 55.555555" + "0 | Contracts : Instantiate old weight", + "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "1 | Amount [2/2] : 3.456789", + "2 | Gas limit : 64541534782296993", + "3 | Storage deposit limit : POLYX 0.000002", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "5 | Data [1/4] : 29759502463b5c016d8288888c9051c4a455d1", + "5 | Data [2/4] : a411513f7c1d86faf7544a093d1e2a09bbe0f5", + "5 | Data [3/4] : 8b78a006af87b315e35bac13acee5517cf093b", + "5 | Data [4/4] : d20a0124904ac5", + "6 | Salt [1/7] : b2019b12199bd8c5694f336189f576c8c8f541", + "6 | Salt [2/7] : 1b35d6f33faaaf68fd63d1091377b3cf2c9aba", + "6 | Salt [3/7] : 4beccafacf81dc55f29f744e5b8d0fde968939", + "6 | Salt [4/7] : a0fa857737c3e6cbd66ea6a34a41bb9adc8565", + "6 | Salt [5/7] : 7ef9bfec225ae9b86e487242e402518d5634bf", + "6 | Salt [6/7] : f9105f73fa07aa99a66f929317789925234a20", + "6 | Salt [7/7] : 9f75dd3401231a403d4ee9122a30", + "7 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Relayer : Set paying key", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Polyx limit [1/2] : POLYX 24828121060746971842942860419690", - "2 | Polyx limit [2/2] : 4.68768", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Contracts : Instantiate old weight", + "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "1 | Amount [2/2] : 3.456789", + "2 | Gas limit : 64541534782296993", + "3 | Storage deposit limit : POLYX 0.000002", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "5 | Data [1/4] : 29759502463b5c016d8288888c9051c4a455d1", + "5 | Data [2/4] : a411513f7c1d86faf7544a093d1e2a09bbe0f5", + "5 | Data [3/4] : 8b78a006af87b315e35bac13acee5517cf093b", + "5 | Data [4/4] : d20a0124904ac5", + "6 | Salt [1/7] : b2019b12199bd8c5694f336189f576c8c8f541", + "6 | Salt [2/7] : 1b35d6f33faaaf68fd63d1091377b3cf2c9aba", + "6 | Salt [3/7] : 4beccafacf81dc55f29f744e5b8d0fde968939", + "6 | Salt [4/7] : a0fa857737c3e6cbd66ea6a34a41bb9adc8565", + "6 | Salt [5/7] : 7ef9bfec225ae9b86e487242e402518d5634bf", + "6 | Salt [6/7] : f9105f73fa07aa99a66f929317789925234a20", + "6 | Salt [7/7] : 9f75dd3401231a403d4ee9122a30", + "7 | Chain : Polymesh", + "8 | Nonce : 0", + "9 | Tip : POLYX 1234.56789", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1497, - "name": "Relayer_Set_paying_key", - "blob": "2c00248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0340d8127ea9f0d1cdf6126ec9c838c9bad5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1464, + "name": "Contracts_Instantiate_old_weight", + "blob": "2e0203d20296490f63c19579b664cd0108885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a0101d8d1357065e78f8829b81f3452a8459d657970f8914a665313385d44b29bfac8c91e901099b2f388bf2cca959da4122d3a34eac8c84dfa07d1998118835864c30101d8d1357065e78f8829b81f3452a8459d657970f8914a665313385d44b29bfac8c91e901099b2f388bf2cca959da4122d3a34eac8c84dfa07d1998118835864c3d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Relayer : Set paying key", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Polyx limit [1/2] : POLYX 24828121060746971842942860419690", - "2 | Polyx limit [2/2] : 4.68768", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Contracts : Instantiate old weight", + "1 | Amount : POLYX 1234.56789", + "2 | Gas limit : 57813105112367459", + "3 | Storage deposit limit : POLYX 0.000002", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "5 | Data [1/4] : d8d1357065e78f8829b81f3452a8459d657970", + "5 | Data [2/4] : f8914a665313385d44b29bfac8c91e901099b2", + "5 | Data [3/4] : f388bf2cca959da4122d3a34eac8c84dfa07d1", + "5 | Data [4/4] : 998118835864c3", + "6 | Salt [1/4] : d8d1357065e78f8829b81f3452a8459d657970", + "6 | Salt [2/4] : f8914a665313385d44b29bfac8c91e901099b2", + "6 | Salt [3/4] : f388bf2cca959da4122d3a34eac8c84dfa07d1", + "6 | Salt [4/4] : 998118835864c3", + "7 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Relayer : Set paying key", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Polyx limit [1/2] : POLYX 24828121060746971842942860419690", - "2 | Polyx limit [2/2] : 4.68768", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Contracts : Instantiate old weight", + "1 | Amount : POLYX 1234.56789", + "2 | Gas limit : 57813105112367459", + "3 | Storage deposit limit : POLYX 0.000002", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "5 | Data [1/4] : d8d1357065e78f8829b81f3452a8459d657970", + "5 | Data [2/4] : f8914a665313385d44b29bfac8c91e901099b2", + "5 | Data [3/4] : f388bf2cca959da4122d3a34eac8c84dfa07d1", + "5 | Data [4/4] : 998118835864c3", + "6 | Salt [1/4] : d8d1357065e78f8829b81f3452a8459d657970", + "6 | Salt [2/4] : f8914a665313385d44b29bfac8c91e901099b2", + "6 | Salt [3/4] : f388bf2cca959da4122d3a34eac8c84dfa07d1", + "6 | Salt [4/4] : 998118835864c3", + "7 | Chain : Polymesh", + "8 | Nonce : 1", + "9 | Tip : POLYX 55.555555", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1498, - "name": "Relayer_Set_paying_key", - "blob": "2c00248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0340d8127ea9f0d1cdf6126ec9c838c9bad503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1465, + "name": "Contracts_Instantiate_old_weight", + "blob": "2e020b63ce64c10c050fa113f5152f4ce501d1d6885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a0102d2ce880b42c502e3ae6db5cbdb4644d41929aaf1473b3dffacebfe059c2410288ad0a2b82b7fec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a643ca3d75f249d6aff034afa699cb0f81638a8fec3ac9306b7a68e50aef4b18c58f123b750d4dd9033d5d2ac77de3e6faa49e76688e8768e038da2c68d18c8fbb71153e2ee911b010288791b98b8ffc0aa74712db38517362b1ba53ce5897392a0b04a62dd266c9bb592a10419d98e0f2e7db5acc146922d29e8ec271a594e693b53397dddb66b529203aafa6c56ab80a83e8622d746146348c2bf78b0938eaaf8a4b508a445d985298c1e6e812e9f2585ca696e9b5da2c9fcd11d94d43680dfccda0c0ebae1cc97e6d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Relayer : Set paying key", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Polyx limit [1/2] : POLYX 24828121060746971842942860419690", - "2 | Polyx limit [2/2] : 4.68768", - "3 | Tip : POLYX 0.000987" + "0 | Contracts : Instantiate old weight", + "1 | Amount : POLYX 5552342.355555", + "2 | Gas limit : 64541534782296993", + "3 | Storage deposit limit : POLYX 0.013748", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "5 | Data [1/7] : d2ce880b42c502e3ae6db5cbdb4644d41929aa", + "5 | Data [2/7] : f1473b3dffacebfe059c2410288ad0a2b82b7f", + "5 | Data [3/7] : ec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a", + "5 | Data [4/7] : 643ca3d75f249d6aff034afa699cb0f81638a8", + "5 | Data [5/7] : fec3ac9306b7a68e50aef4b18c58f123b750d4", + "5 | Data [6/7] : dd9033d5d2ac77de3e6faa49e76688e8768e03", + "5 | Data [7/7] : 8da2c68d18c8fbb71153e2ee911b", + "6 | Salt [1/7] : 88791b98b8ffc0aa74712db38517362b1ba53c", + "6 | Salt [2/7] : e5897392a0b04a62dd266c9bb592a10419d98e", + "6 | Salt [3/7] : 0f2e7db5acc146922d29e8ec271a594e693b53", + "6 | Salt [4/7] : 397dddb66b529203aafa6c56ab80a83e8622d7", + "6 | Salt [5/7] : 46146348c2bf78b0938eaaf8a4b508a445d985", + "6 | Salt [6/7] : 298c1e6e812e9f2585ca696e9b5da2c9fcd11d", + "6 | Salt [7/7] : 94d43680dfccda0c0ebae1cc97e6", + "7 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Relayer : Set paying key", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Polyx limit [1/2] : POLYX 24828121060746971842942860419690", - "2 | Polyx limit [2/2] : 4.68768", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Contracts : Instantiate old weight", + "1 | Amount : POLYX 5552342.355555", + "2 | Gas limit : 64541534782296993", + "3 | Storage deposit limit : POLYX 0.013748", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "5 | Data [1/7] : d2ce880b42c502e3ae6db5cbdb4644d41929aa", + "5 | Data [2/7] : f1473b3dffacebfe059c2410288ad0a2b82b7f", + "5 | Data [3/7] : ec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a", + "5 | Data [4/7] : 643ca3d75f249d6aff034afa699cb0f81638a8", + "5 | Data [5/7] : fec3ac9306b7a68e50aef4b18c58f123b750d4", + "5 | Data [6/7] : dd9033d5d2ac77de3e6faa49e76688e8768e03", + "5 | Data [7/7] : 8da2c68d18c8fbb71153e2ee911b", + "6 | Salt [1/7] : 88791b98b8ffc0aa74712db38517362b1ba53c", + "6 | Salt [2/7] : e5897392a0b04a62dd266c9bb592a10419d98e", + "6 | Salt [3/7] : 0f2e7db5acc146922d29e8ec271a594e693b53", + "6 | Salt [4/7] : 397dddb66b529203aafa6c56ab80a83e8622d7", + "6 | Salt [5/7] : 46146348c2bf78b0938eaaf8a4b508a445d985", + "6 | Salt [6/7] : 298c1e6e812e9f2585ca696e9b5da2c9fcd11d", + "6 | Salt [7/7] : 94d43680dfccda0c0ebae1cc97e6", + "7 | Chain : Polymesh", + "8 | Nonce : 0", + "9 | Tip : POLYX 0.000987", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1499, - "name": "Relayer_Set_paying_key", - "blob": "2c00248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0340d8127ea9f0d1cdf6126ec9c838c9bad503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1466, + "name": "Contracts_Upload_code", + "blob": "2e0380c878e7402f4abf94866f8ba269a0122786b8cefaf7e3a6b9dab902d1c556e081010801d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Relayer : Set paying key", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Polyx limit [1/2] : POLYX 24828121060746971842942860419690", - "2 | Polyx limit [2/2] : 4.68768", - "3 | Tip : POLYX 5552342.355555" + "0 | Contracts : Upload code", + "1 | Code [1/2] : c878e7402f4abf94866f8ba269a0122786b8ce", + "1 | Code [2/2] : faf7e3a6b9dab902d1c556e081", + "2 | Storage deposit limit : POLYX 0.000002", + "3 | Determinism : AllowIndeterminism", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Relayer : Set paying key", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Polyx limit [1/2] : POLYX 24828121060746971842942860419690", - "2 | Polyx limit [2/2] : 4.68768", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Contracts : Upload code", + "1 | Code [1/2] : c878e7402f4abf94866f8ba269a0122786b8ce", + "1 | Code [2/2] : faf7e3a6b9dab902d1c556e081", + "2 | Storage deposit limit : POLYX 0.000002", + "3 | Determinism : AllowIndeterminism", + "4 | Chain : Polymesh", + "5 | Nonce : 0", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1500, - "name": "Relayer_Set_paying_key", - "blob": "2c00248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0340d8127ea9f0d1cdf6126ec9c838c9bad503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1467, + "name": "Contracts_Upload_code", + "blob": "2e0380c878e7402f4abf94866f8ba269a0122786b8cefaf7e3a6b9dab902d1c556e081010801d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Relayer : Set paying key", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Polyx limit [1/2] : POLYX 24828121060746971842942860419690", - "2 | Polyx limit [2/2] : 4.68768", - "3 | Tip : POLYX 0.000987" + "0 | Contracts : Upload code", + "1 | Code [1/2] : c878e7402f4abf94866f8ba269a0122786b8ce", + "1 | Code [2/2] : faf7e3a6b9dab902d1c556e081", + "2 | Storage deposit limit : POLYX 0.000002", + "3 | Determinism : AllowIndeterminism", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Relayer : Set paying key", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Polyx limit [1/2] : POLYX 24828121060746971842942860419690", - "2 | Polyx limit [2/2] : 4.68768", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", + "0 | Contracts : Upload code", + "1 | Code [1/2] : c878e7402f4abf94866f8ba269a0122786b8ce", + "1 | Code [2/2] : faf7e3a6b9dab902d1c556e081", + "2 | Storage deposit limit : POLYX 0.000002", + "3 | Determinism : AllowIndeterminism", + "4 | Chain : Polymesh", + "5 | Nonce : 0", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 1468, + "name": "Contracts_Upload_code", + "blob": "2e030101d8d1357065e78f8829b81f3452a8459d657970f8914a665313385d44b29bfac8c91e901099b2f388bf2cca959da4122d3a34eac8c84dfa07d1998118835864c3010801d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Contracts : Upload code", + "1 | Code [1/4] : d8d1357065e78f8829b81f3452a8459d657970", + "1 | Code [2/4] : f8914a665313385d44b29bfac8c91e901099b2", + "1 | Code [3/4] : f388bf2cca959da4122d3a34eac8c84dfa07d1", + "1 | Code [4/4] : 998118835864c3", + "2 | Storage deposit limit : POLYX 0.000002", + "3 | Determinism : AllowIndeterminism", + "4 | Tip : POLYX 55.555555" + ], + "output_expert": [ + "0 | Contracts : Upload code", + "1 | Code [1/4] : d8d1357065e78f8829b81f3452a8459d657970", + "1 | Code [2/4] : f8914a665313385d44b29bfac8c91e901099b2", + "1 | Code [3/4] : f388bf2cca959da4122d3a34eac8c84dfa07d1", + "1 | Code [4/4] : 998118835864c3", + "2 | Storage deposit limit : POLYX 0.000002", + "3 | Determinism : AllowIndeterminism", + "4 | Chain : Polymesh", + "5 | Nonce : 0", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 1469, + "name": "Contracts_Upload_code", + "blob": "2e03010288791b98b8ffc0aa74712db38517362b1ba53ce5897392a0b04a62dd266c9bb592a10419d98e0f2e7db5acc146922d29e8ec271a594e693b53397dddb66b529203aafa6c56ab80a83e8622d746146348c2bf78b0938eaaf8a4b508a445d985298c1e6e812e9f2585ca696e9b5da2c9fcd11d94d43680dfccda0c0ebae1cc97e601a5a601d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Contracts : Upload code", + "1 | Code [1/7] : 88791b98b8ffc0aa74712db38517362b1ba53c", + "1 | Code [2/7] : e5897392a0b04a62dd266c9bb592a10419d98e", + "1 | Code [3/7] : 0f2e7db5acc146922d29e8ec271a594e693b53", + "1 | Code [4/7] : 397dddb66b529203aafa6c56ab80a83e8622d7", + "1 | Code [5/7] : 46146348c2bf78b0938eaaf8a4b508a445d985", + "1 | Code [6/7] : 298c1e6e812e9f2585ca696e9b5da2c9fcd11d", + "1 | Code [7/7] : 94d43680dfccda0c0ebae1cc97e6", + "2 | Storage deposit limit : POLYX 0.010665", + "3 | Determinism : AllowIndeterminism" + ], + "output_expert": [ + "0 | Contracts : Upload code", + "1 | Code [1/7] : 88791b98b8ffc0aa74712db38517362b1ba53c", + "1 | Code [2/7] : e5897392a0b04a62dd266c9bb592a10419d98e", + "1 | Code [3/7] : 0f2e7db5acc146922d29e8ec271a594e693b53", + "1 | Code [4/7] : 397dddb66b529203aafa6c56ab80a83e8622d7", + "1 | Code [5/7] : 46146348c2bf78b0938eaaf8a4b508a445d985", + "1 | Code [6/7] : 298c1e6e812e9f2585ca696e9b5da2c9fcd11d", + "1 | Code [7/7] : 94d43680dfccda0c0ebae1cc97e6", + "2 | Storage deposit limit : POLYX 0.010665", + "3 | Determinism : AllowIndeterminism", + "4 | Chain : Polymesh", + "5 | Nonce : 0", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1501, - "name": "Relayer_Accept_paying_key", - "blob": "2c012309000000000000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1470, + "name": "Contracts_Upload_code", + "blob": "2e0301016b88a19afd977906ff6da6fdec075611bceccda551c0e710eb786ccf06fd38a72e1ff529a16f3efcc069f803c63240320b883ecde5c375fbd83b1c8d8b6f6c2f01a5a600d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Relayer : Accept paying key", - "1 | Auth id : 2339", - "2 | Tip : POLYX 5552342.355555" + "0 | Contracts : Upload code", + "1 | Code [1/4] : 6b88a19afd977906ff6da6fdec075611bceccd", + "1 | Code [2/4] : a551c0e710eb786ccf06fd38a72e1ff529a16f", + "1 | Code [3/4] : 3efcc069f803c63240320b883ecde5c375fbd8", + "1 | Code [4/4] : 3b1c8d8b6f6c2f", + "2 | Storage deposit limit : POLYX 0.010665", + "3 | Determinism : Deterministic", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Relayer : Accept paying key", - "1 | Auth id : 2339", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Contracts : Upload code", + "1 | Code [1/4] : 6b88a19afd977906ff6da6fdec075611bceccd", + "1 | Code [2/4] : a551c0e710eb786ccf06fd38a72e1ff529a16f", + "1 | Code [3/4] : 3efcc069f803c63240320b883ecde5c375fbd8", + "1 | Code [4/4] : 3b1c8d8b6f6c2f", + "2 | Storage deposit limit : POLYX 0.010665", + "3 | Determinism : Deterministic", + "4 | Chain : Polymesh", + "5 | Nonce : 100", + "6 | Tip : POLYX 1234.56789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1502, - "name": "Relayer_Accept_paying_key", - "blob": "2c016400000000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1471, + "name": "Contracts_Remove_code", + "blob": "2e04885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Relayer : Accept paying key", - "1 | Auth id : 100", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Contracts : Remove code", + "1 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Relayer : Accept paying key", - "1 | Auth id : 100", + "0 | Contracts : Remove code", + "1 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 0", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1503, - "name": "Relayer_Accept_paying_key", - "blob": "2c016bc4000000000000d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1472, + "name": "Contracts_Remove_code", + "blob": "2e04885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Relayer : Accept paying key", - "1 | Auth id : 50283", + "0 | Contracts : Remove code", + "1 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Relayer : Accept paying key", - "1 | Auth id : 50283", + "0 | Contracts : Remove code", + "1 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", "2 | Chain : Polymesh", - "3 | Nonce : 0", + "3 | Nonce : 100", "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1504, - "name": "Relayer_Accept_paying_key", - "blob": "2c010000000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1473, + "name": "Contracts_Remove_code", + "blob": "2e04885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Relayer : Accept paying key", - "1 | Auth id : 0", + "0 | Contracts : Remove code", + "1 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Relayer : Accept paying key", - "1 | Auth id : 0", + "0 | Contracts : Remove code", + "1 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", "2 | Chain : Polymesh", - "3 | Nonce : 1", + "3 | Nonce : 100", "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1505, - "name": "Relayer_Accept_paying_key", - "blob": "2c010000000000000000d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1474, + "name": "Contracts_Remove_code", + "blob": "2e04885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Relayer : Accept paying key", - "1 | Auth id : 0", - "2 | Tip : POLYX 55.555555" + "0 | Contracts : Remove code", + "1 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Relayer : Accept paying key", - "1 | Auth id : 0", + "0 | Contracts : Remove code", + "1 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", + "3 | Nonce : 50283", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1506, - "name": "Relayer_Remove_paying_key", - "blob": "2c02248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1475, + "name": "Contracts_Remove_code", + "blob": "2e04885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Relayer : Remove paying key", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Paying key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "2 | Paying key [2/2] : D5gRxEbABD" + "0 | Contracts : Remove code", + "1 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Relayer : Remove paying key", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Paying key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "2 | Paying key [2/2] : D5gRxEbABD", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", + "0 | Contracts : Remove code", + "1 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip : POLYX 0.000987", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1507, - "name": "Relayer_Remove_paying_key", - "blob": "2c02248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1476, + "name": "Contracts_Set_code", + "blob": "2e05028072ddb7c3e3a9f4c83f8c34281b81c22db8f925c44d9106057bf73469e2f016bd885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Relayer : Remove paying key", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Paying key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "2 | Paying key [2/2] : D5gRxEbABD", + "0 | Contracts : Set code", + "1 | Dest [1/2] : 72ddb7c3e3a9f4c83f8c34281b81c22db8f925", + "1 | Dest [2/2] : c44d9106057bf73469e2f016bd", + "2 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "2 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Relayer : Remove paying key", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Paying key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "2 | Paying key [2/2] : D5gRxEbABD", + "0 | Contracts : Set code", + "1 | Dest [1/2] : 72ddb7c3e3a9f4c83f8c34281b81c22db8f925", + "1 | Dest [2/2] : c44d9106057bf73469e2f016bd", + "2 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "2 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", "3 | Chain : Polymesh", - "4 | Nonce : 100", + "4 | Nonce : 2339", "5 | Tip : POLYX 5552342.355555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1508, - "name": "Relayer_Remove_paying_key", - "blob": "2c02248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1477, + "name": "Contracts_Set_code", + "blob": "2e0503d9c33e50da4265e5eb0a01566304b5dc5bd824d2ed6bbc461c7d61ed59ccc065885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Relayer : Remove paying key", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Paying key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "2 | Paying key [2/2] : D5gRxEbABD", - "3 | Tip : POLYX 5552342.355555" + "0 | Contracts : Set code", + "1 | Dest [1/2] : d9c33e50da4265e5eb0a01566304b5dc5bd824", + "1 | Dest [2/2] : d2ed6bbc461c7d61ed59ccc065", + "2 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "2 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Relayer : Remove paying key", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Paying key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "2 | Paying key [2/2] : D5gRxEbABD", + "0 | Contracts : Set code", + "1 | Dest [1/2] : d9c33e50da4265e5eb0a01566304b5dc5bd824", + "1 | Dest [2/2] : d2ed6bbc461c7d61ed59ccc065", + "2 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "2 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 2339", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1509, - "name": "Relayer_Remove_paying_key", - "blob": "2c02248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1478, + "name": "Contracts_Set_code", + "blob": "2e0504a6bf6ba54d74ed24f0f22ae261a6d492b9b9a2a8885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Relayer : Remove paying key", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Paying key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "2 | Paying key [2/2] : D5gRxEbABD", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Contracts : Set code", + "1 | Dest [1/2] : a6bf6ba54d74ed24f0f22ae261a6d492b9b9a2", + "1 | Dest [2/2] : a8", + "2 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "2 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Relayer : Remove paying key", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Paying key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "2 | Paying key [2/2] : D5gRxEbABD", + "0 | Contracts : Set code", + "1 | Dest [1/2] : a6bf6ba54d74ed24f0f22ae261a6d492b9b9a2", + "1 | Dest [2/2] : a8", + "2 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "2 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", + "4 | Nonce : 100", + "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1510, - "name": "Relayer_Remove_paying_key", - "blob": "2c02248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d03d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1479, + "name": "Contracts_Set_code", + "blob": "2e05028072ddb7c3e3a9f4c83f8c34281b81c22db8f925c44d9106057bf73469e2f016bd885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Relayer : Remove paying key", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Paying key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "2 | Paying key [2/2] : D5gRxEbABD", - "3 | Tip : POLYX 5552342.355555" + "0 | Contracts : Set code", + "1 | Dest [1/2] : 72ddb7c3e3a9f4c83f8c34281b81c22db8f925", + "1 | Dest [2/2] : c44d9106057bf73469e2f016bd", + "2 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "2 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Relayer : Remove paying key", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Paying key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "2 | Paying key [2/2] : D5gRxEbABD", + "0 | Contracts : Set code", + "1 | Dest [1/2] : 72ddb7c3e3a9f4c83f8c34281b81c22db8f925", + "1 | Dest [2/2] : c44d9106057bf73469e2f016bd", + "2 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "2 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", + "4 | Nonce : 0", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1511, - "name": "Relayer_Update_polyx_limit", - "blob": "2c03248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0340d8127ea9f0d1cdf6126ec9c838c9bad5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1480, + "name": "Contracts_Set_code", + "blob": "2e05028072ddb7c3e3a9f4c83f8c34281b81c22db8f925c44d9106057bf73469e2f016bd885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Relayer : Update polyx limit", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Polyx limit [1/2] : POLYX 24828121060746971842942860419690", - "2 | Polyx limit [2/2] : 4.68768", + "0 | Contracts : Set code", + "1 | Dest [1/2] : 72ddb7c3e3a9f4c83f8c34281b81c22db8f925", + "1 | Dest [2/2] : c44d9106057bf73469e2f016bd", + "2 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "2 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Relayer : Update polyx limit", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Polyx limit [1/2] : POLYX 24828121060746971842942860419690", - "2 | Polyx limit [2/2] : 4.68768", + "0 | Contracts : Set code", + "1 | Dest [1/2] : 72ddb7c3e3a9f4c83f8c34281b81c22db8f925", + "1 | Dest [2/2] : c44d9106057bf73469e2f016bd", + "2 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "2 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", "3 | Chain : Polymesh", "4 | Nonce : 0", "5 | Tip : POLYX 1234.56789", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1512, - "name": "Relayer_Update_polyx_limit", - "blob": "2c03248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0340d8127ea9f0d1cdf6126ec9c838c9bad503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1481, + "name": "Contracts_Call", + "blob": "2e06028072ddb7c3e3a9f4c83f8c34281b81c22db8f925c44d9106057bf73469e2f016bd33158139ae28a3dfaac5fe1560a5e9e05cd6b9750ca2f5394301080102b2019b12199bd8c5694f336189f576c8c8f5411b35d6f33faaaf68fd63d1091377b3cf2c9aba4beccafacf81dc55f29f744e5b8d0fde968939a0fa857737c3e6cbd66ea6a34a41bb9adc85657ef9bfec225ae9b86e487242e402518d5634bff9105f73fa07aa99a66f929317789925234a209f75dd3401231a403d4ee9122a30d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Relayer : Update polyx limit", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Polyx limit [1/2] : POLYX 24828121060746971842942860419690", - "2 | Polyx limit [2/2] : 4.68768", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Contracts : Call", + "1 | Dest [1/2] : 72ddb7c3e3a9f4c83f8c34281b81c22db8f925", + "1 | Dest [2/2] : c44d9106057bf73469e2f016bd", + "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "2 | Amount [2/2] : 3.456789", + "3 | Gas limit [1/2] : 52260469", + "3 | Gas limit [2/2] : 281967976", + "4 | Storage deposit limit : POLYX 0.000002", + "5 | Data [1/7] : b2019b12199bd8c5694f336189f576c8c8f541", + "5 | Data [2/7] : 1b35d6f33faaaf68fd63d1091377b3cf2c9aba", + "5 | Data [3/7] : 4beccafacf81dc55f29f744e5b8d0fde968939", + "5 | Data [4/7] : a0fa857737c3e6cbd66ea6a34a41bb9adc8565", + "5 | Data [5/7] : 7ef9bfec225ae9b86e487242e402518d5634bf", + "5 | Data [6/7] : f9105f73fa07aa99a66f929317789925234a20", + "5 | Data [7/7] : 9f75dd3401231a403d4ee9122a30", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Relayer : Update polyx limit", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Polyx limit [1/2] : POLYX 24828121060746971842942860419690", - "2 | Polyx limit [2/2] : 4.68768", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Contracts : Call", + "1 | Dest [1/2] : 72ddb7c3e3a9f4c83f8c34281b81c22db8f925", + "1 | Dest [2/2] : c44d9106057bf73469e2f016bd", + "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "2 | Amount [2/2] : 3.456789", + "3 | Gas limit [1/2] : 52260469", + "3 | Gas limit [2/2] : 281967976", + "4 | Storage deposit limit : POLYX 0.000002", + "5 | Data [1/7] : b2019b12199bd8c5694f336189f576c8c8f541", + "5 | Data [2/7] : 1b35d6f33faaaf68fd63d1091377b3cf2c9aba", + "5 | Data [3/7] : 4beccafacf81dc55f29f744e5b8d0fde968939", + "5 | Data [4/7] : a0fa857737c3e6cbd66ea6a34a41bb9adc8565", + "5 | Data [5/7] : 7ef9bfec225ae9b86e487242e402518d5634bf", + "5 | Data [6/7] : f9105f73fa07aa99a66f929317789925234a20", + "5 | Data [7/7] : 9f75dd3401231a403d4ee9122a30", + "6 | Chain : Polymesh", + "7 | Nonce : 50283", + "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "8 | Tip [2/2] : 3.456789", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1513, - "name": "Relayer_Update_polyx_limit", - "blob": "2c03248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0340d8127ea9f0d1cdf6126ec9c838c9bad503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1482, + "name": "Contracts_Call", + "blob": "2e0600b91c0828d5fb63795639092cc1c662646babf96458aea56a4bceaee0e19bf7096d0f3641c20b8801a5a68026ac0480331bc9ed5ac80af46ec594e1adfd225a3cd010373e2f0d3c09c2a76bd503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Relayer : Update polyx limit", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Polyx limit [1/2] : POLYX 24828121060746971842942860419690", - "2 | Polyx limit [2/2] : 4.68768", - "3 | Tip : POLYX 0.000987" + "0 | Contracts : Call", + "1 | Dest [1/2] : 5GFR3T2aUHRosveDUW5ckQANDtWYVUKGjNbhRF", + "1 | Dest [2/2] : 6RoLCjtbjb", + "2 | Amount : POLYX 0.000987", + "3 | Gas limit [1/2] : 49320013", + "3 | Gas limit [2/2] : 34", + "4 | Storage deposit limit : POLYX 0.010665", + "5 | Data [1/2] : 26ac0480331bc9ed5ac80af46ec594e1adfd22", + "5 | Data [2/2] : 5a3cd010373e2f0d3c09c2a76b", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Relayer : Update polyx limit", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Polyx limit [1/2] : POLYX 24828121060746971842942860419690", - "2 | Polyx limit [2/2] : 4.68768", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Contracts : Call", + "1 | Dest [1/2] : 5GFR3T2aUHRosveDUW5ckQANDtWYVUKGjNbhRF", + "1 | Dest [2/2] : 6RoLCjtbjb", + "2 | Amount : POLYX 0.000987", + "3 | Gas limit [1/2] : 49320013", + "3 | Gas limit [2/2] : 34", + "4 | Storage deposit limit : POLYX 0.010665", + "5 | Data [1/2] : 26ac0480331bc9ed5ac80af46ec594e1adfd22", + "5 | Data [2/2] : 5a3cd010373e2f0d3c09c2a76b", + "6 | Chain : Polymesh", + "7 | Nonce : 100", + "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "8 | Tip [2/2] : 3.456789", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1514, - "name": "Relayer_Update_polyx_limit", - "blob": "2c03248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0340d8127ea9f0d1cdf6126ec9c838c9bad503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1483, + "name": "Contracts_Call", + "blob": "2e06028072ddb7c3e3a9f4c83f8c34281b81c22db8f925c44d9106057bf73469e2f016bd003641c20b88010880c878e7402f4abf94866f8ba269a0122786b8cefaf7e3a6b9dab902d1c556e081d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Relayer : Update polyx limit", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Polyx limit [1/2] : POLYX 24828121060746971842942860419690", - "2 | Polyx limit [2/2] : 4.68768", - "3 | Tip : POLYX 5552342.355555" + "0 | Contracts : Call", + "1 | Dest [1/2] : 72ddb7c3e3a9f4c83f8c34281b81c22db8f925", + "1 | Dest [2/2] : c44d9106057bf73469e2f016bd", + "2 | Amount : POLYX 0.0", + "3 | Gas limit [1/2] : 49320013", + "3 | Gas limit [2/2] : 34", + "4 | Storage deposit limit : POLYX 0.000002", + "5 | Data [1/2] : c878e7402f4abf94866f8ba269a0122786b8ce", + "5 | Data [2/2] : faf7e3a6b9dab902d1c556e081", + "6 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Relayer : Update polyx limit", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Polyx limit [1/2] : POLYX 24828121060746971842942860419690", - "2 | Polyx limit [2/2] : 4.68768", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Contracts : Call", + "1 | Dest [1/2] : 72ddb7c3e3a9f4c83f8c34281b81c22db8f925", + "1 | Dest [2/2] : c44d9106057bf73469e2f016bd", + "2 | Amount : POLYX 0.0", + "3 | Gas limit [1/2] : 49320013", + "3 | Gas limit [2/2] : 34", + "4 | Storage deposit limit : POLYX 0.000002", + "5 | Data [1/2] : c878e7402f4abf94866f8ba269a0122786b8ce", + "5 | Data [2/2] : faf7e3a6b9dab902d1c556e081", + "6 | Chain : Polymesh", + "7 | Nonce : 2339", + "8 | Tip : POLYX 5552342.355555", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1515, - "name": "Relayer_Update_polyx_limit", - "blob": "2c03248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0340d8127ea9f0d1cdf6126ec9c838c9bad503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1484, + "name": "Contracts_Call", + "blob": "2e0604a6bf6ba54d74ed24f0f22ae261a6d492b9b9a2a833158139ae28a3dfaac5fe1560a5e9e05c3641c20b8801080101d8d1357065e78f8829b81f3452a8459d657970f8914a665313385d44b29bfac8c91e901099b2f388bf2cca959da4122d3a34eac8c84dfa07d1998118835864c3d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Relayer : Update polyx limit", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Polyx limit [1/2] : POLYX 24828121060746971842942860419690", - "2 | Polyx limit [2/2] : 4.68768", - "3 | Tip : POLYX 0.000987" + "0 | Contracts : Call", + "1 | Dest [1/2] : a6bf6ba54d74ed24f0f22ae261a6d492b9b9a2", + "1 | Dest [2/2] : a8", + "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "2 | Amount [2/2] : 3.456789", + "3 | Gas limit [1/2] : 49320013", + "3 | Gas limit [2/2] : 34", + "4 | Storage deposit limit : POLYX 0.000002", + "5 | Data [1/4] : d8d1357065e78f8829b81f3452a8459d657970", + "5 | Data [2/4] : f8914a665313385d44b29bfac8c91e901099b2", + "5 | Data [3/4] : f388bf2cca959da4122d3a34eac8c84dfa07d1", + "5 | Data [4/4] : 998118835864c3", + "6 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Relayer : Update polyx limit", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Polyx limit [1/2] : POLYX 24828121060746971842942860419690", - "2 | Polyx limit [2/2] : 4.68768", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Contracts : Call", + "1 | Dest [1/2] : a6bf6ba54d74ed24f0f22ae261a6d492b9b9a2", + "1 | Dest [2/2] : a8", + "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "2 | Amount [2/2] : 3.456789", + "3 | Gas limit [1/2] : 49320013", + "3 | Gas limit [2/2] : 34", + "4 | Storage deposit limit : POLYX 0.000002", + "5 | Data [1/4] : d8d1357065e78f8829b81f3452a8459d657970", + "5 | Data [2/4] : f8914a665313385d44b29bfac8c91e901099b2", + "5 | Data [3/4] : f388bf2cca959da4122d3a34eac8c84dfa07d1", + "5 | Data [4/4] : 998118835864c3", + "6 | Chain : Polymesh", + "7 | Nonce : 2339", + "8 | Tip : POLYX 1234.56789", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1516, - "name": "Relayer_Increase_polyx_limit", - "blob": "2c04248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0340d8127ea9f0d1cdf6126ec9c838c9bad503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1485, + "name": "Contracts_Call", + "blob": "2e06028072ddb7c3e3a9f4c83f8c34281b81c22db8f925c44d9106057bf73469e2f016bd00d6b9750ca2f5394301a5a680c878e7402f4abf94866f8ba269a0122786b8cefaf7e3a6b9dab902d1c556e081d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Relayer : Increase polyx limit", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "2 | Amount [2/2] : 4.68768", - "3 | Tip : POLYX 55.555555" + "0 | Contracts : Call", + "1 | Dest [1/2] : 72ddb7c3e3a9f4c83f8c34281b81c22db8f925", + "1 | Dest [2/2] : c44d9106057bf73469e2f016bd", + "2 | Amount : POLYX 0.0", + "3 | Gas limit [1/2] : 52260469", + "3 | Gas limit [2/2] : 281967976", + "4 | Storage deposit limit : POLYX 0.010665", + "5 | Data [1/2] : c878e7402f4abf94866f8ba269a0122786b8ce", + "5 | Data [2/2] : faf7e3a6b9dab902d1c556e081", + "6 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Relayer : Increase polyx limit", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "2 | Amount [2/2] : 4.68768", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Contracts : Call", + "1 | Dest [1/2] : 72ddb7c3e3a9f4c83f8c34281b81c22db8f925", + "1 | Dest [2/2] : c44d9106057bf73469e2f016bd", + "2 | Amount : POLYX 0.0", + "3 | Gas limit [1/2] : 52260469", + "3 | Gas limit [2/2] : 281967976", + "4 | Storage deposit limit : POLYX 0.010665", + "5 | Data [1/2] : c878e7402f4abf94866f8ba269a0122786b8ce", + "5 | Data [2/2] : faf7e3a6b9dab902d1c556e081", + "6 | Chain : Polymesh", + "7 | Nonce : 1", + "8 | Tip : POLYX 5552342.355555", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1517, - "name": "Relayer_Increase_polyx_limit", - "blob": "2c04248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0340d8127ea9f0d1cdf6126ec9c838c9bad503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1486, + "name": "Contracts_Instantiate_with_code", + "blob": "2e076d0fd6b9750ca2f5394301a5a680c878e7402f4abf94866f8ba269a0122786b8cefaf7e3a6b9dab902d1c556e081010129759502463b5c016d8288888c9051c4a455d1a411513f7c1d86faf7544a093d1e2a09bbe0f58b78a006af87b315e35bac13acee5517cf093bd20a0124904ac50102d2ce880b42c502e3ae6db5cbdb4644d41929aaf1473b3dffacebfe059c2410288ad0a2b82b7fec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a643ca3d75f249d6aff034afa699cb0f81638a8fec3ac9306b7a68e50aef4b18c58f123b750d4dd9033d5d2ac77de3e6faa49e76688e8768e038da2c68d18c8fbb71153e2ee911bd503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Relayer : Increase polyx limit", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "2 | Amount [2/2] : 4.68768", - "3 | Tip : POLYX 0.000987" + "0 | Contracts : Instantiate with code", + "1 | Amount : POLYX 0.000987", + "2 | Gas limit [1/2] : 52260469", + "2 | Gas limit [2/2] : 281967976", + "3 | Storage deposit limit : POLYX 0.010665", + "4 | Code [1/2] : c878e7402f4abf94866f8ba269a0122786b8ce", + "4 | Code [2/2] : faf7e3a6b9dab902d1c556e081", + "5 | Data [1/4] : 29759502463b5c016d8288888c9051c4a455d1", + "5 | Data [2/4] : a411513f7c1d86faf7544a093d1e2a09bbe0f5", + "5 | Data [3/4] : 8b78a006af87b315e35bac13acee5517cf093b", + "5 | Data [4/4] : d20a0124904ac5", + "6 | Salt [1/7] : d2ce880b42c502e3ae6db5cbdb4644d41929aa", + "6 | Salt [2/7] : f1473b3dffacebfe059c2410288ad0a2b82b7f", + "6 | Salt [3/7] : ec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a", + "6 | Salt [4/7] : 643ca3d75f249d6aff034afa699cb0f81638a8", + "6 | Salt [5/7] : fec3ac9306b7a68e50aef4b18c58f123b750d4", + "6 | Salt [6/7] : dd9033d5d2ac77de3e6faa49e76688e8768e03", + "6 | Salt [7/7] : 8da2c68d18c8fbb71153e2ee911b", + "7 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Relayer : Increase polyx limit", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "2 | Amount [2/2] : 4.68768", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Contracts : Instantiate with code", + "1 | Amount : POLYX 0.000987", + "2 | Gas limit [1/2] : 52260469", + "2 | Gas limit [2/2] : 281967976", + "3 | Storage deposit limit : POLYX 0.010665", + "4 | Code [1/2] : c878e7402f4abf94866f8ba269a0122786b8ce", + "4 | Code [2/2] : faf7e3a6b9dab902d1c556e081", + "5 | Data [1/4] : 29759502463b5c016d8288888c9051c4a455d1", + "5 | Data [2/4] : a411513f7c1d86faf7544a093d1e2a09bbe0f5", + "5 | Data [3/4] : 8b78a006af87b315e35bac13acee5517cf093b", + "5 | Data [4/4] : d20a0124904ac5", + "6 | Salt [1/7] : d2ce880b42c502e3ae6db5cbdb4644d41929aa", + "6 | Salt [2/7] : f1473b3dffacebfe059c2410288ad0a2b82b7f", + "6 | Salt [3/7] : ec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a", + "6 | Salt [4/7] : 643ca3d75f249d6aff034afa699cb0f81638a8", + "6 | Salt [5/7] : fec3ac9306b7a68e50aef4b18c58f123b750d4", + "6 | Salt [6/7] : dd9033d5d2ac77de3e6faa49e76688e8768e03", + "6 | Salt [7/7] : 8da2c68d18c8fbb71153e2ee911b", + "7 | Chain : Polymesh", + "8 | Nonce : 50283", + "9 | Tip : POLYX 5552342.355555", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1518, - "name": "Relayer_Increase_polyx_limit", - "blob": "2c04248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0340d8127ea9f0d1cdf6126ec9c838c9bad5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1487, + "name": "Contracts_Instantiate_with_code", + "blob": "2e0703d20296493641c20b8801d1d60102d2ce880b42c502e3ae6db5cbdb4644d41929aaf1473b3dffacebfe059c2410288ad0a2b82b7fec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a643ca3d75f249d6aff034afa699cb0f81638a8fec3ac9306b7a68e50aef4b18c58f123b750d4dd9033d5d2ac77de3e6faa49e76688e8768e038da2c68d18c8fbb71153e2ee911b010129759502463b5c016d8288888c9051c4a455d1a411513f7c1d86faf7544a093d1e2a09bbe0f58b78a006af87b315e35bac13acee5517cf093bd20a0124904ac5010129759502463b5c016d8288888c9051c4a455d1a411513f7c1d86faf7544a093d1e2a09bbe0f58b78a006af87b315e35bac13acee5517cf093bd20a0124904ac5d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Relayer : Increase polyx limit", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "2 | Amount [2/2] : 4.68768", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Contracts : Instantiate with code", + "1 | Amount : POLYX 1234.56789", + "2 | Gas limit [1/2] : 49320013", + "2 | Gas limit [2/2] : 34", + "3 | Storage deposit limit : POLYX 0.013748", + "4 | Code [1/7] : d2ce880b42c502e3ae6db5cbdb4644d41929aa", + "4 | Code [2/7] : f1473b3dffacebfe059c2410288ad0a2b82b7f", + "4 | Code [3/7] : ec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a", + "4 | Code [4/7] : 643ca3d75f249d6aff034afa699cb0f81638a8", + "4 | Code [5/7] : fec3ac9306b7a68e50aef4b18c58f123b750d4", + "4 | Code [6/7] : dd9033d5d2ac77de3e6faa49e76688e8768e03", + "4 | Code [7/7] : 8da2c68d18c8fbb71153e2ee911b", + "5 | Data [1/4] : 29759502463b5c016d8288888c9051c4a455d1", + "5 | Data [2/4] : a411513f7c1d86faf7544a093d1e2a09bbe0f5", + "5 | Data [3/4] : 8b78a006af87b315e35bac13acee5517cf093b", + "5 | Data [4/4] : d20a0124904ac5", + "6 | Salt [1/4] : 29759502463b5c016d8288888c9051c4a455d1", + "6 | Salt [2/4] : a411513f7c1d86faf7544a093d1e2a09bbe0f5", + "6 | Salt [3/4] : 8b78a006af87b315e35bac13acee5517cf093b", + "6 | Salt [4/4] : d20a0124904ac5", + "7 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Relayer : Increase polyx limit", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "2 | Amount [2/2] : 4.68768", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Contracts : Instantiate with code", + "1 | Amount : POLYX 1234.56789", + "2 | Gas limit [1/2] : 49320013", + "2 | Gas limit [2/2] : 34", + "3 | Storage deposit limit : POLYX 0.013748", + "4 | Code [1/7] : d2ce880b42c502e3ae6db5cbdb4644d41929aa", + "4 | Code [2/7] : f1473b3dffacebfe059c2410288ad0a2b82b7f", + "4 | Code [3/7] : ec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a", + "4 | Code [4/7] : 643ca3d75f249d6aff034afa699cb0f81638a8", + "4 | Code [5/7] : fec3ac9306b7a68e50aef4b18c58f123b750d4", + "4 | Code [6/7] : dd9033d5d2ac77de3e6faa49e76688e8768e03", + "4 | Code [7/7] : 8da2c68d18c8fbb71153e2ee911b", + "5 | Data [1/4] : 29759502463b5c016d8288888c9051c4a455d1", + "5 | Data [2/4] : a411513f7c1d86faf7544a093d1e2a09bbe0f5", + "5 | Data [3/4] : 8b78a006af87b315e35bac13acee5517cf093b", + "5 | Data [4/4] : d20a0124904ac5", + "6 | Salt [1/4] : 29759502463b5c016d8288888c9051c4a455d1", + "6 | Salt [2/4] : a411513f7c1d86faf7544a093d1e2a09bbe0f5", + "6 | Salt [3/4] : 8b78a006af87b315e35bac13acee5517cf093b", + "6 | Salt [4/4] : d20a0124904ac5", + "7 | Chain : Polymesh", + "8 | Nonce : 50283", + "9 | Tip : POLYX 1234.56789", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1519, - "name": "Relayer_Increase_polyx_limit", - "blob": "2c04248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0340d8127ea9f0d1cdf6126ec9c838c9bad503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1488, + "name": "Contracts_Instantiate_with_code", + "blob": "2e078ed73e0d13ebd18da2a0682bd213e3b1c6f54a741ea901080102d2ce880b42c502e3ae6db5cbdb4644d41929aaf1473b3dffacebfe059c2410288ad0a2b82b7fec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a643ca3d75f249d6aff034afa699cb0f81638a8fec3ac9306b7a68e50aef4b18c58f123b750d4dd9033d5d2ac77de3e6faa49e76688e8768e038da2c68d18c8fbb71153e2ee911b01016b88a19afd977906ff6da6fdec075611bceccda551c0e710eb786ccf06fd38a72e1ff529a16f3efcc069f803c63240320b883ecde5c375fbd83b1c8d8b6f6c2f8026ac0480331bc9ed5ac80af46ec594e1adfd225a3cd010373e2f0d3c09c2a76bd5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Relayer : Increase polyx limit", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "2 | Amount [2/2] : 4.68768", - "3 | Tip : POLYX 0.000987" + "0 | Contracts : Instantiate with code", + "1 | Amount : POLYX 55.555555", + "2 | Gas limit [1/2] : 15144313211094684139", + "2 | Gas limit [2/2] : 12186305507010982371", + "3 | Storage deposit limit : POLYX 0.000002", + "4 | Code [1/7] : d2ce880b42c502e3ae6db5cbdb4644d41929aa", + "4 | Code [2/7] : f1473b3dffacebfe059c2410288ad0a2b82b7f", + "4 | Code [3/7] : ec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a", + "4 | Code [4/7] : 643ca3d75f249d6aff034afa699cb0f81638a8", + "4 | Code [5/7] : fec3ac9306b7a68e50aef4b18c58f123b750d4", + "4 | Code [6/7] : dd9033d5d2ac77de3e6faa49e76688e8768e03", + "4 | Code [7/7] : 8da2c68d18c8fbb71153e2ee911b", + "5 | Data [1/4] : 6b88a19afd977906ff6da6fdec075611bceccd", + "5 | Data [2/4] : a551c0e710eb786ccf06fd38a72e1ff529a16f", + "5 | Data [3/4] : 3efcc069f803c63240320b883ecde5c375fbd8", + "5 | Data [4/4] : 3b1c8d8b6f6c2f", + "6 | Salt [1/2] : 26ac0480331bc9ed5ac80af46ec594e1adfd22", + "6 | Salt [2/2] : 5a3cd010373e2f0d3c09c2a76b", + "7 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Relayer : Increase polyx limit", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "2 | Amount [2/2] : 4.68768", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Contracts : Instantiate with code", + "1 | Amount : POLYX 55.555555", + "2 | Gas limit [1/2] : 15144313211094684139", + "2 | Gas limit [2/2] : 12186305507010982371", + "3 | Storage deposit limit : POLYX 0.000002", + "4 | Code [1/7] : d2ce880b42c502e3ae6db5cbdb4644d41929aa", + "4 | Code [2/7] : f1473b3dffacebfe059c2410288ad0a2b82b7f", + "4 | Code [3/7] : ec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a", + "4 | Code [4/7] : 643ca3d75f249d6aff034afa699cb0f81638a8", + "4 | Code [5/7] : fec3ac9306b7a68e50aef4b18c58f123b750d4", + "4 | Code [6/7] : dd9033d5d2ac77de3e6faa49e76688e8768e03", + "4 | Code [7/7] : 8da2c68d18c8fbb71153e2ee911b", + "5 | Data [1/4] : 6b88a19afd977906ff6da6fdec075611bceccd", + "5 | Data [2/4] : a551c0e710eb786ccf06fd38a72e1ff529a16f", + "5 | Data [3/4] : 3efcc069f803c63240320b883ecde5c375fbd8", + "5 | Data [4/4] : 3b1c8d8b6f6c2f", + "6 | Salt [1/2] : 26ac0480331bc9ed5ac80af46ec594e1adfd22", + "6 | Salt [2/2] : 5a3cd010373e2f0d3c09c2a76b", + "7 | Chain : Polymesh", + "8 | Nonce : 0", + "9 | Tip : POLYX 1234.56789", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1520, - "name": "Relayer_Increase_polyx_limit", - "blob": "2c04248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0340d8127ea9f0d1cdf6126ec9c838c9bad503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1489, + "name": "Contracts_Instantiate_with_code", + "blob": "2e0703d2029649d6b9750ca2f5394301a5a6010129759502463b5c016d8288888c9051c4a455d1a411513f7c1d86faf7544a093d1e2a09bbe0f58b78a006af87b315e35bac13acee5517cf093bd20a0124904ac5010288791b98b8ffc0aa74712db38517362b1ba53ce5897392a0b04a62dd266c9bb592a10419d98e0f2e7db5acc146922d29e8ec271a594e693b53397dddb66b529203aafa6c56ab80a83e8622d746146348c2bf78b0938eaaf8a4b508a445d985298c1e6e812e9f2585ca696e9b5da2c9fcd11d94d43680dfccda0c0ebae1cc97e6010129759502463b5c016d8288888c9051c4a455d1a411513f7c1d86faf7544a093d1e2a09bbe0f58b78a006af87b315e35bac13acee5517cf093bd20a0124904ac5d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Relayer : Increase polyx limit", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "2 | Amount [2/2] : 4.68768", - "3 | Tip : POLYX 0.000987" + "0 | Contracts : Instantiate with code", + "1 | Amount : POLYX 1234.56789", + "2 | Gas limit [1/2] : 52260469", + "2 | Gas limit [2/2] : 281967976", + "3 | Storage deposit limit : POLYX 0.010665", + "4 | Code [1/4] : 29759502463b5c016d8288888c9051c4a455d1", + "4 | Code [2/4] : a411513f7c1d86faf7544a093d1e2a09bbe0f5", + "4 | Code [3/4] : 8b78a006af87b315e35bac13acee5517cf093b", + "4 | Code [4/4] : d20a0124904ac5", + "5 | Data [1/7] : 88791b98b8ffc0aa74712db38517362b1ba53c", + "5 | Data [2/7] : e5897392a0b04a62dd266c9bb592a10419d98e", + "5 | Data [3/7] : 0f2e7db5acc146922d29e8ec271a594e693b53", + "5 | Data [4/7] : 397dddb66b529203aafa6c56ab80a83e8622d7", + "5 | Data [5/7] : 46146348c2bf78b0938eaaf8a4b508a445d985", + "5 | Data [6/7] : 298c1e6e812e9f2585ca696e9b5da2c9fcd11d", + "5 | Data [7/7] : 94d43680dfccda0c0ebae1cc97e6", + "6 | Salt [1/4] : 29759502463b5c016d8288888c9051c4a455d1", + "6 | Salt [2/4] : a411513f7c1d86faf7544a093d1e2a09bbe0f5", + "6 | Salt [3/4] : 8b78a006af87b315e35bac13acee5517cf093b", + "6 | Salt [4/4] : d20a0124904ac5", + "7 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Relayer : Increase polyx limit", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "2 | Amount [2/2] : 4.68768", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Contracts : Instantiate with code", + "1 | Amount : POLYX 1234.56789", + "2 | Gas limit [1/2] : 52260469", + "2 | Gas limit [2/2] : 281967976", + "3 | Storage deposit limit : POLYX 0.010665", + "4 | Code [1/4] : 29759502463b5c016d8288888c9051c4a455d1", + "4 | Code [2/4] : a411513f7c1d86faf7544a093d1e2a09bbe0f5", + "4 | Code [3/4] : 8b78a006af87b315e35bac13acee5517cf093b", + "4 | Code [4/4] : d20a0124904ac5", + "5 | Data [1/7] : 88791b98b8ffc0aa74712db38517362b1ba53c", + "5 | Data [2/7] : e5897392a0b04a62dd266c9bb592a10419d98e", + "5 | Data [3/7] : 0f2e7db5acc146922d29e8ec271a594e693b53", + "5 | Data [4/7] : 397dddb66b529203aafa6c56ab80a83e8622d7", + "5 | Data [5/7] : 46146348c2bf78b0938eaaf8a4b508a445d985", + "5 | Data [6/7] : 298c1e6e812e9f2585ca696e9b5da2c9fcd11d", + "5 | Data [7/7] : 94d43680dfccda0c0ebae1cc97e6", + "6 | Salt [1/4] : 29759502463b5c016d8288888c9051c4a455d1", + "6 | Salt [2/4] : a411513f7c1d86faf7544a093d1e2a09bbe0f5", + "6 | Salt [3/4] : 8b78a006af87b315e35bac13acee5517cf093b", + "6 | Salt [4/4] : d20a0124904ac5", + "7 | Chain : Polymesh", + "8 | Nonce : 2339", + "9 | Tip : POLYX 0.000987", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1521, - "name": "Relayer_Decrease_polyx_limit", - "blob": "2c05248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0340d8127ea9f0d1cdf6126ec9c838c9bad5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1490, + "name": "Contracts_Instantiate_with_code", + "blob": "2e0703d2029649d6b9750ca2f5394301080102b2019b12199bd8c5694f336189f576c8c8f5411b35d6f33faaaf68fd63d1091377b3cf2c9aba4beccafacf81dc55f29f744e5b8d0fde968939a0fa857737c3e6cbd66ea6a34a41bb9adc85657ef9bfec225ae9b86e487242e402518d5634bff9105f73fa07aa99a66f929317789925234a209f75dd3401231a403d4ee9122a300102b2019b12199bd8c5694f336189f576c8c8f5411b35d6f33faaaf68fd63d1091377b3cf2c9aba4beccafacf81dc55f29f744e5b8d0fde968939a0fa857737c3e6cbd66ea6a34a41bb9adc85657ef9bfec225ae9b86e487242e402518d5634bff9105f73fa07aa99a66f929317789925234a209f75dd3401231a403d4ee9122a30010129759502463b5c016d8288888c9051c4a455d1a411513f7c1d86faf7544a093d1e2a09bbe0f58b78a006af87b315e35bac13acee5517cf093bd20a0124904ac5d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Relayer : Decrease polyx limit", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "2 | Amount [2/2] : 4.68768" + "0 | Contracts : Instantiate with code", + "1 | Amount : POLYX 1234.56789", + "2 | Gas limit [1/2] : 52260469", + "2 | Gas limit [2/2] : 281967976", + "3 | Storage deposit limit : POLYX 0.000002", + "4 | Code [1/7] : b2019b12199bd8c5694f336189f576c8c8f541", + "4 | Code [2/7] : 1b35d6f33faaaf68fd63d1091377b3cf2c9aba", + "4 | Code [3/7] : 4beccafacf81dc55f29f744e5b8d0fde968939", + "4 | Code [4/7] : a0fa857737c3e6cbd66ea6a34a41bb9adc8565", + "4 | Code [5/7] : 7ef9bfec225ae9b86e487242e402518d5634bf", + "4 | Code [6/7] : f9105f73fa07aa99a66f929317789925234a20", + "4 | Code [7/7] : 9f75dd3401231a403d4ee9122a30", + "5 | Data [1/7] : b2019b12199bd8c5694f336189f576c8c8f541", + "5 | Data [2/7] : 1b35d6f33faaaf68fd63d1091377b3cf2c9aba", + "5 | Data [3/7] : 4beccafacf81dc55f29f744e5b8d0fde968939", + "5 | Data [4/7] : a0fa857737c3e6cbd66ea6a34a41bb9adc8565", + "5 | Data [5/7] : 7ef9bfec225ae9b86e487242e402518d5634bf", + "5 | Data [6/7] : f9105f73fa07aa99a66f929317789925234a20", + "5 | Data [7/7] : 9f75dd3401231a403d4ee9122a30", + "6 | Salt [1/4] : 29759502463b5c016d8288888c9051c4a455d1", + "6 | Salt [2/4] : a411513f7c1d86faf7544a093d1e2a09bbe0f5", + "6 | Salt [3/4] : 8b78a006af87b315e35bac13acee5517cf093b", + "6 | Salt [4/4] : d20a0124904ac5", + "7 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Relayer : Decrease polyx limit", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "2 | Amount [2/2] : 4.68768", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Contracts : Instantiate with code", + "1 | Amount : POLYX 1234.56789", + "2 | Gas limit [1/2] : 52260469", + "2 | Gas limit [2/2] : 281967976", + "3 | Storage deposit limit : POLYX 0.000002", + "4 | Code [1/7] : b2019b12199bd8c5694f336189f576c8c8f541", + "4 | Code [2/7] : 1b35d6f33faaaf68fd63d1091377b3cf2c9aba", + "4 | Code [3/7] : 4beccafacf81dc55f29f744e5b8d0fde968939", + "4 | Code [4/7] : a0fa857737c3e6cbd66ea6a34a41bb9adc8565", + "4 | Code [5/7] : 7ef9bfec225ae9b86e487242e402518d5634bf", + "4 | Code [6/7] : f9105f73fa07aa99a66f929317789925234a20", + "4 | Code [7/7] : 9f75dd3401231a403d4ee9122a30", + "5 | Data [1/7] : b2019b12199bd8c5694f336189f576c8c8f541", + "5 | Data [2/7] : 1b35d6f33faaaf68fd63d1091377b3cf2c9aba", + "5 | Data [3/7] : 4beccafacf81dc55f29f744e5b8d0fde968939", + "5 | Data [4/7] : a0fa857737c3e6cbd66ea6a34a41bb9adc8565", + "5 | Data [5/7] : 7ef9bfec225ae9b86e487242e402518d5634bf", + "5 | Data [6/7] : f9105f73fa07aa99a66f929317789925234a20", + "5 | Data [7/7] : 9f75dd3401231a403d4ee9122a30", + "6 | Salt [1/4] : 29759502463b5c016d8288888c9051c4a455d1", + "6 | Salt [2/4] : a411513f7c1d86faf7544a093d1e2a09bbe0f5", + "6 | Salt [3/4] : 8b78a006af87b315e35bac13acee5517cf093b", + "6 | Salt [4/4] : d20a0124904ac5", + "7 | Chain : Polymesh", + "8 | Nonce : 1", + "9 | Tip : POLYX 55.555555", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1522, - "name": "Relayer_Decrease_polyx_limit", - "blob": "2c05248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0340d8127ea9f0d1cdf6126ec9c838c9bad503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1491, + "name": "Contracts_Instantiate", + "blob": "2e0833158139ae28a3dfaac5fe1560a5e9e05cd6b9750ca2f5394301a5a6885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a0102d2ce880b42c502e3ae6db5cbdb4644d41929aaf1473b3dffacebfe059c2410288ad0a2b82b7fec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a643ca3d75f249d6aff034afa699cb0f81638a8fec3ac9306b7a68e50aef4b18c58f123b750d4dd9033d5d2ac77de3e6faa49e76688e8768e038da2c68d18c8fbb71153e2ee911b8026ac0480331bc9ed5ac80af46ec594e1adfd225a3cd010373e2f0d3c09c2a76bd503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Relayer : Decrease polyx limit", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "2 | Amount [2/2] : 4.68768", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Contracts : Instantiate", + "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "1 | Amount [2/2] : 3.456789", + "2 | Gas limit [1/2] : 52260469", + "2 | Gas limit [2/2] : 281967976", + "3 | Storage deposit limit : POLYX 0.010665", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "5 | Data [1/7] : d2ce880b42c502e3ae6db5cbdb4644d41929aa", + "5 | Data [2/7] : f1473b3dffacebfe059c2410288ad0a2b82b7f", + "5 | Data [3/7] : ec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a", + "5 | Data [4/7] : 643ca3d75f249d6aff034afa699cb0f81638a8", + "5 | Data [5/7] : fec3ac9306b7a68e50aef4b18c58f123b750d4", + "5 | Data [6/7] : dd9033d5d2ac77de3e6faa49e76688e8768e03", + "5 | Data [7/7] : 8da2c68d18c8fbb71153e2ee911b", + "6 | Salt [1/2] : 26ac0480331bc9ed5ac80af46ec594e1adfd22", + "6 | Salt [2/2] : 5a3cd010373e2f0d3c09c2a76b", + "7 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Relayer : Decrease polyx limit", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "2 | Amount [2/2] : 4.68768", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Contracts : Instantiate", + "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "1 | Amount [2/2] : 3.456789", + "2 | Gas limit [1/2] : 52260469", + "2 | Gas limit [2/2] : 281967976", + "3 | Storage deposit limit : POLYX 0.010665", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "5 | Data [1/7] : d2ce880b42c502e3ae6db5cbdb4644d41929aa", + "5 | Data [2/7] : f1473b3dffacebfe059c2410288ad0a2b82b7f", + "5 | Data [3/7] : ec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a", + "5 | Data [4/7] : 643ca3d75f249d6aff034afa699cb0f81638a8", + "5 | Data [5/7] : fec3ac9306b7a68e50aef4b18c58f123b750d4", + "5 | Data [6/7] : dd9033d5d2ac77de3e6faa49e76688e8768e03", + "5 | Data [7/7] : 8da2c68d18c8fbb71153e2ee911b", + "6 | Salt [1/2] : 26ac0480331bc9ed5ac80af46ec594e1adfd22", + "6 | Salt [2/2] : 5a3cd010373e2f0d3c09c2a76b", + "7 | Chain : Polymesh", + "8 | Nonce : 100", + "9 | Tip : POLYX 1234.56789", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1523, - "name": "Relayer_Decrease_polyx_limit", - "blob": "2c05248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0340d8127ea9f0d1cdf6126ec9c838c9bad5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1492, + "name": "Contracts_Instantiate", + "blob": "2e080b63ce64c10c053641c20b8801d1d6885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a0101d8d1357065e78f8829b81f3452a8459d657970f8914a665313385d44b29bfac8c91e901099b2f388bf2cca959da4122d3a34eac8c84dfa07d1998118835864c30102b2019b12199bd8c5694f336189f576c8c8f5411b35d6f33faaaf68fd63d1091377b3cf2c9aba4beccafacf81dc55f29f744e5b8d0fde968939a0fa857737c3e6cbd66ea6a34a41bb9adc85657ef9bfec225ae9b86e487242e402518d5634bff9105f73fa07aa99a66f929317789925234a209f75dd3401231a403d4ee9122a30d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Relayer : Decrease polyx limit", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "2 | Amount [2/2] : 4.68768", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Contracts : Instantiate", + "1 | Amount : POLYX 5552342.355555", + "2 | Gas limit [1/2] : 49320013", + "2 | Gas limit [2/2] : 34", + "3 | Storage deposit limit : POLYX 0.013748", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "5 | Data [1/4] : d8d1357065e78f8829b81f3452a8459d657970", + "5 | Data [2/4] : f8914a665313385d44b29bfac8c91e901099b2", + "5 | Data [3/4] : f388bf2cca959da4122d3a34eac8c84dfa07d1", + "5 | Data [4/4] : 998118835864c3", + "6 | Salt [1/7] : b2019b12199bd8c5694f336189f576c8c8f541", + "6 | Salt [2/7] : 1b35d6f33faaaf68fd63d1091377b3cf2c9aba", + "6 | Salt [3/7] : 4beccafacf81dc55f29f744e5b8d0fde968939", + "6 | Salt [4/7] : a0fa857737c3e6cbd66ea6a34a41bb9adc8565", + "6 | Salt [5/7] : 7ef9bfec225ae9b86e487242e402518d5634bf", + "6 | Salt [6/7] : f9105f73fa07aa99a66f929317789925234a20", + "6 | Salt [7/7] : 9f75dd3401231a403d4ee9122a30", + "7 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Relayer : Decrease polyx limit", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "2 | Amount [2/2] : 4.68768", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Contracts : Instantiate", + "1 | Amount : POLYX 5552342.355555", + "2 | Gas limit [1/2] : 49320013", + "2 | Gas limit [2/2] : 34", + "3 | Storage deposit limit : POLYX 0.013748", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "5 | Data [1/4] : d8d1357065e78f8829b81f3452a8459d657970", + "5 | Data [2/4] : f8914a665313385d44b29bfac8c91e901099b2", + "5 | Data [3/4] : f388bf2cca959da4122d3a34eac8c84dfa07d1", + "5 | Data [4/4] : 998118835864c3", + "6 | Salt [1/7] : b2019b12199bd8c5694f336189f576c8c8f541", + "6 | Salt [2/7] : 1b35d6f33faaaf68fd63d1091377b3cf2c9aba", + "6 | Salt [3/7] : 4beccafacf81dc55f29f744e5b8d0fde968939", + "6 | Salt [4/7] : a0fa857737c3e6cbd66ea6a34a41bb9adc8565", + "6 | Salt [5/7] : 7ef9bfec225ae9b86e487242e402518d5634bf", + "6 | Salt [6/7] : f9105f73fa07aa99a66f929317789925234a20", + "6 | Salt [7/7] : 9f75dd3401231a403d4ee9122a30", + "7 | Chain : Polymesh", + "8 | Nonce : 2339", + "9 | Tip : POLYX 1234.56789", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1524, - "name": "Relayer_Decrease_polyx_limit", - "blob": "2c05248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0340d8127ea9f0d1cdf6126ec9c838c9bad5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1493, + "name": "Contracts_Instantiate", + "blob": "2e0803d20296493641c20b8801a5a6885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a0102d2ce880b42c502e3ae6db5cbdb4644d41929aaf1473b3dffacebfe059c2410288ad0a2b82b7fec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a643ca3d75f249d6aff034afa699cb0f81638a8fec3ac9306b7a68e50aef4b18c58f123b750d4dd9033d5d2ac77de3e6faa49e76688e8768e038da2c68d18c8fbb71153e2ee911b01016b88a19afd977906ff6da6fdec075611bceccda551c0e710eb786ccf06fd38a72e1ff529a16f3efcc069f803c63240320b883ecde5c375fbd83b1c8d8b6f6c2fd50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Relayer : Decrease polyx limit", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "2 | Amount [2/2] : 4.68768", - "3 | Tip : POLYX 1234.56789" + "0 | Contracts : Instantiate", + "1 | Amount : POLYX 1234.56789", + "2 | Gas limit [1/2] : 49320013", + "2 | Gas limit [2/2] : 34", + "3 | Storage deposit limit : POLYX 0.010665", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "5 | Data [1/7] : d2ce880b42c502e3ae6db5cbdb4644d41929aa", + "5 | Data [2/7] : f1473b3dffacebfe059c2410288ad0a2b82b7f", + "5 | Data [3/7] : ec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a", + "5 | Data [4/7] : 643ca3d75f249d6aff034afa699cb0f81638a8", + "5 | Data [5/7] : fec3ac9306b7a68e50aef4b18c58f123b750d4", + "5 | Data [6/7] : dd9033d5d2ac77de3e6faa49e76688e8768e03", + "5 | Data [7/7] : 8da2c68d18c8fbb71153e2ee911b", + "6 | Salt [1/4] : 6b88a19afd977906ff6da6fdec075611bceccd", + "6 | Salt [2/4] : a551c0e710eb786ccf06fd38a72e1ff529a16f", + "6 | Salt [3/4] : 3efcc069f803c63240320b883ecde5c375fbd8", + "6 | Salt [4/4] : 3b1c8d8b6f6c2f", + "7 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Relayer : Decrease polyx limit", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "2 | Amount [2/2] : 4.68768", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Contracts : Instantiate", + "1 | Amount : POLYX 1234.56789", + "2 | Gas limit [1/2] : 49320013", + "2 | Gas limit [2/2] : 34", + "3 | Storage deposit limit : POLYX 0.010665", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "5 | Data [1/7] : d2ce880b42c502e3ae6db5cbdb4644d41929aa", + "5 | Data [2/7] : f1473b3dffacebfe059c2410288ad0a2b82b7f", + "5 | Data [3/7] : ec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a", + "5 | Data [4/7] : 643ca3d75f249d6aff034afa699cb0f81638a8", + "5 | Data [5/7] : fec3ac9306b7a68e50aef4b18c58f123b750d4", + "5 | Data [6/7] : dd9033d5d2ac77de3e6faa49e76688e8768e03", + "5 | Data [7/7] : 8da2c68d18c8fbb71153e2ee911b", + "6 | Salt [1/4] : 6b88a19afd977906ff6da6fdec075611bceccd", + "6 | Salt [2/4] : a551c0e710eb786ccf06fd38a72e1ff529a16f", + "6 | Salt [3/4] : 3efcc069f803c63240320b883ecde5c375fbd8", + "6 | Salt [4/4] : 3b1c8d8b6f6c2f", + "7 | Chain : Polymesh", + "8 | Nonce : 100", + "9 | Tip : POLYX 0.000987", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1525, - "name": "Relayer_Decrease_polyx_limit", - "blob": "2c05248e28e29c51c1d81c7152586552e95160a12cf46a989b613150be120f2d7d0340d8127ea9f0d1cdf6126ec9c838c9bad5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1494, + "name": "Contracts_Instantiate", + "blob": "2e080b63ce64c10c05d6b9750ca2f5394301a5a6885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a010288791b98b8ffc0aa74712db38517362b1ba53ce5897392a0b04a62dd266c9bb592a10419d98e0f2e7db5acc146922d29e8ec271a594e693b53397dddb66b529203aafa6c56ab80a83e8622d746146348c2bf78b0938eaaf8a4b508a445d985298c1e6e812e9f2585ca696e9b5da2c9fcd11d94d43680dfccda0c0ebae1cc97e60102b2019b12199bd8c5694f336189f576c8c8f5411b35d6f33faaaf68fd63d1091377b3cf2c9aba4beccafacf81dc55f29f744e5b8d0fde968939a0fa857737c3e6cbd66ea6a34a41bb9adc85657ef9bfec225ae9b86e487242e402518d5634bff9105f73fa07aa99a66f929317789925234a209f75dd3401231a403d4ee9122a30d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Relayer : Decrease polyx limit", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "2 | Amount [2/2] : 4.68768", - "3 | Tip : POLYX 1234.56789" + "0 | Contracts : Instantiate", + "1 | Amount : POLYX 5552342.355555", + "2 | Gas limit [1/2] : 52260469", + "2 | Gas limit [2/2] : 281967976", + "3 | Storage deposit limit : POLYX 0.010665", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "5 | Data [1/7] : 88791b98b8ffc0aa74712db38517362b1ba53c", + "5 | Data [2/7] : e5897392a0b04a62dd266c9bb592a10419d98e", + "5 | Data [3/7] : 0f2e7db5acc146922d29e8ec271a594e693b53", + "5 | Data [4/7] : 397dddb66b529203aafa6c56ab80a83e8622d7", + "5 | Data [5/7] : 46146348c2bf78b0938eaaf8a4b508a445d985", + "5 | Data [6/7] : 298c1e6e812e9f2585ca696e9b5da2c9fcd11d", + "5 | Data [7/7] : 94d43680dfccda0c0ebae1cc97e6", + "6 | Salt [1/7] : b2019b12199bd8c5694f336189f576c8c8f541", + "6 | Salt [2/7] : 1b35d6f33faaaf68fd63d1091377b3cf2c9aba", + "6 | Salt [3/7] : 4beccafacf81dc55f29f744e5b8d0fde968939", + "6 | Salt [4/7] : a0fa857737c3e6cbd66ea6a34a41bb9adc8565", + "6 | Salt [5/7] : 7ef9bfec225ae9b86e487242e402518d5634bf", + "6 | Salt [6/7] : f9105f73fa07aa99a66f929317789925234a20", + "6 | Salt [7/7] : 9f75dd3401231a403d4ee9122a30", + "7 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Relayer : Decrease polyx limit", - "1 | User key [1/2] : 2DGr4F6tW8RzNhCE47XSjUaDB76VVU1qMM92rj", - "1 | User key [2/2] : D5gRxEbABD", - "2 | Amount [1/2] : POLYX 24828121060746971842942860419690", - "2 | Amount [2/2] : 4.68768", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Contracts : Instantiate", + "1 | Amount : POLYX 5552342.355555", + "2 | Gas limit [1/2] : 52260469", + "2 | Gas limit [2/2] : 281967976", + "3 | Storage deposit limit : POLYX 0.010665", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "5 | Data [1/7] : 88791b98b8ffc0aa74712db38517362b1ba53c", + "5 | Data [2/7] : e5897392a0b04a62dd266c9bb592a10419d98e", + "5 | Data [3/7] : 0f2e7db5acc146922d29e8ec271a594e693b53", + "5 | Data [4/7] : 397dddb66b529203aafa6c56ab80a83e8622d7", + "5 | Data [5/7] : 46146348c2bf78b0938eaaf8a4b508a445d985", + "5 | Data [6/7] : 298c1e6e812e9f2585ca696e9b5da2c9fcd11d", + "5 | Data [7/7] : 94d43680dfccda0c0ebae1cc97e6", + "6 | Salt [1/7] : b2019b12199bd8c5694f336189f576c8c8f541", + "6 | Salt [2/7] : 1b35d6f33faaaf68fd63d1091377b3cf2c9aba", + "6 | Salt [3/7] : 4beccafacf81dc55f29f744e5b8d0fde968939", + "6 | Salt [4/7] : a0fa857737c3e6cbd66ea6a34a41bb9adc8565", + "6 | Salt [5/7] : 7ef9bfec225ae9b86e487242e402518d5634bf", + "6 | Salt [6/7] : f9105f73fa07aa99a66f929317789925234a20", + "6 | Salt [7/7] : 9f75dd3401231a403d4ee9122a30", + "7 | Chain : Polymesh", + "8 | Nonce : 100", + "9 | Tip : POLYX 1234.56789", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1526, - "name": "Contracts_Call_old_weight", - "blob": "2e0002809a2cafb174b302f0f381d2705358111a9c905c258e089eb940a3046ae641e43f0b63ce64c10c054627a7de012bde547c55bae064a8d95aa250f23401013a83a7ff5037a23c0e43affbcc635966aa16484bf4aad5570831c098d7eaa04956dffa80bb93e6f18a1f496c3102ad749a5bd8d8be953c82c1e75595318b35bcd5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1495, + "name": "Contracts_Instantiate", + "blob": "2e0833158139ae28a3dfaac5fe1560a5e9e05c13ebd18da2a0682bd213e3b1c6f54a741ea901a5a6885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a0102d2ce880b42c502e3ae6db5cbdb4644d41929aaf1473b3dffacebfe059c2410288ad0a2b82b7fec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a643ca3d75f249d6aff034afa699cb0f81638a8fec3ac9306b7a68e50aef4b18c58f123b750d4dd9033d5d2ac77de3e6faa49e76688e8768e038da2c68d18c8fbb71153e2ee911b01016b88a19afd977906ff6da6fdec075611bceccda551c0e710eb786ccf06fd38a72e1ff529a16f3efcc069f803c63240320b883ecde5c375fbd83b1c8d8b6f6c2fd503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Contracts : Call old weight", - "1 | Dest [1/2] : 9a2cafb174b302f0f381d2705358111a9c905c", - "1 | Dest [2/2] : 258e089eb940a3046ae641e43f", - "2 | Amount : POLYX 5552342.355555", - "3 | Gas limit : 933874129", - "4 | Storage deposit limit [1/2] : POLYX 1073883469794135377910968975.381", - "4 | Storage deposit limit [2/2] : 726", - "5 | Data [1/4] : 3a83a7ff5037a23c0e43affbcc635966aa1648", - "5 | Data [2/4] : 4bf4aad5570831c098d7eaa04956dffa80bb93", - "5 | Data [3/4] : e6f18a1f496c3102ad749a5bd8d8be953c82c1", - "5 | Data [4/4] : e75595318b35bc", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789" + "0 | Contracts : Instantiate", + "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "1 | Amount [2/2] : 3.456789", + "2 | Gas limit [1/2] : 15144313211094684139", + "2 | Gas limit [2/2] : 12186305507010982371", + "3 | Storage deposit limit : POLYX 0.010665", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "5 | Data [1/7] : d2ce880b42c502e3ae6db5cbdb4644d41929aa", + "5 | Data [2/7] : f1473b3dffacebfe059c2410288ad0a2b82b7f", + "5 | Data [3/7] : ec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a", + "5 | Data [4/7] : 643ca3d75f249d6aff034afa699cb0f81638a8", + "5 | Data [5/7] : fec3ac9306b7a68e50aef4b18c58f123b750d4", + "5 | Data [6/7] : dd9033d5d2ac77de3e6faa49e76688e8768e03", + "5 | Data [7/7] : 8da2c68d18c8fbb71153e2ee911b", + "6 | Salt [1/4] : 6b88a19afd977906ff6da6fdec075611bceccd", + "6 | Salt [2/4] : a551c0e710eb786ccf06fd38a72e1ff529a16f", + "6 | Salt [3/4] : 3efcc069f803c63240320b883ecde5c375fbd8", + "6 | Salt [4/4] : 3b1c8d8b6f6c2f" ], "output_expert": [ - "0 | Contracts : Call old weight", - "1 | Dest [1/2] : 9a2cafb174b302f0f381d2705358111a9c905c", - "1 | Dest [2/2] : 258e089eb940a3046ae641e43f", - "2 | Amount : POLYX 5552342.355555", - "3 | Gas limit : 933874129", - "4 | Storage deposit limit [1/2] : POLYX 1073883469794135377910968975.381", - "4 | Storage deposit limit [2/2] : 726", - "5 | Data [1/4] : 3a83a7ff5037a23c0e43affbcc635966aa1648", - "5 | Data [2/4] : 4bf4aad5570831c098d7eaa04956dffa80bb93", - "5 | Data [3/4] : e6f18a1f496c3102ad749a5bd8d8be953c82c1", - "5 | Data [4/4] : e75595318b35bc", - "6 | Chain : Polymesh", - "7 | Nonce : 1", - "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "8 | Tip [2/2] : 3.456789", + "0 | Contracts : Instantiate", + "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", + "1 | Amount [2/2] : 3.456789", + "2 | Gas limit [1/2] : 15144313211094684139", + "2 | Gas limit [2/2] : 12186305507010982371", + "3 | Storage deposit limit : POLYX 0.010665", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "5 | Data [1/7] : d2ce880b42c502e3ae6db5cbdb4644d41929aa", + "5 | Data [2/7] : f1473b3dffacebfe059c2410288ad0a2b82b7f", + "5 | Data [3/7] : ec6e4ad32fcdcf2be519c2a14e40b3c67e9d4a", + "5 | Data [4/7] : 643ca3d75f249d6aff034afa699cb0f81638a8", + "5 | Data [5/7] : fec3ac9306b7a68e50aef4b18c58f123b750d4", + "5 | Data [6/7] : dd9033d5d2ac77de3e6faa49e76688e8768e03", + "5 | Data [7/7] : 8da2c68d18c8fbb71153e2ee911b", + "6 | Salt [1/4] : 6b88a19afd977906ff6da6fdec075611bceccd", + "6 | Salt [2/4] : a551c0e710eb786ccf06fd38a72e1ff529a16f", + "6 | Salt [3/4] : 3efcc069f803c63240320b883ecde5c375fbd8", + "6 | Salt [4/4] : 3b1c8d8b6f6c2f", + "7 | Chain : Polymesh", + "8 | Nonce : 100", "9 | Era Phase : 61", "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1527, - "name": "Contracts_Call_old_weight", - "blob": "2e0000cad4a18908329105afed699a70c486711444defbe185d1ab764b4afc6db12e5203d2029649c8012b15506d106afd4458de6b5ff64edb01016d0908114ac84677d153d7368feda69cef573eb81308a080f038a74d25a93fef148316d9d6f23f39d32353dccc05e3e15a573a8e62a74bbe1366bf9014cce144d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1496, + "name": "Polymeshcontracts_Instantiate_with_code_perms", + "blob": "2f00fd56e5cad3287b54b2352f703dbeafc013ebd18da2a0682bd213e3b1c6f54a741ea90100000000000000000000000000000000100c293435100e2a0c4910200b200b000000d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Contracts : Call old weight", - "1 | Dest [1/2] : 2H2rwUD6mL4v1G3XQBkZJMxvPY74a6kFrWwyf2", - "1 | Dest [2/2] : 78dcRUPtaj", - "2 | Amount : POLYX 1234.56789", - "3 | Gas limit : 50", - "4 | Storage deposit limit [1/2] : POLYX 4448103748545592106792043649.257", - "4 | Storage deposit limit [2/2] : 493", - "5 | Data [1/4] : 6d0908114ac84677d153d7368feda69cef573e", - "5 | Data [2/4] : b81308a080f038a74d25a93fef148316d9d6f2", - "5 | Data [3/4] : 3f39d32353dccc05e3e15a573a8e62a74bbe13", - "5 | Data [4/4] : 66bf9014cce144", - "6 | Tip : POLYX 5552342.355555" + "0 | Polymeshcontracts : Instantiate with code perms", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 15144313211094684139", + "2 | Gas limit [2/2] : 12186305507010982371", + "3 | Storage deposit limit : POLYX 0.0", + "4 | Code [1/4] : 12", + "4 | Code [2/4] : 41", + "4 | Code [3/4] : 52", + "4 | Code [4/4] : 53", + "5 | Data [1/4] : 14", + "5 | Data [2/4] : 42", + "5 | Data [3/4] : 12", + "5 | Data [4/4] : 73", + "6 | Salt [1/4] : 32", + "6 | Salt [2/4] : 11", + "6 | Salt [3/4] : 32", + "6 | Salt [4/4] : 11", + "7 | Perms [1/3] : Whole", + "7 | Perms [2/3] : Whole", + "7 | Perms [3/3] : Whole", + "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "8 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Contracts : Call old weight", - "1 | Dest [1/2] : 2H2rwUD6mL4v1G3XQBkZJMxvPY74a6kFrWwyf2", - "1 | Dest [2/2] : 78dcRUPtaj", - "2 | Amount : POLYX 1234.56789", - "3 | Gas limit : 50", - "4 | Storage deposit limit [1/2] : POLYX 4448103748545592106792043649.257", - "4 | Storage deposit limit [2/2] : 493", - "5 | Data [1/4] : 6d0908114ac84677d153d7368feda69cef573e", - "5 | Data [2/4] : b81308a080f038a74d25a93fef148316d9d6f2", - "5 | Data [3/4] : 3f39d32353dccc05e3e15a573a8e62a74bbe13", - "5 | Data [4/4] : 66bf9014cce144", - "6 | Chain : Polymesh", - "7 | Nonce : 0", - "8 | Tip : POLYX 5552342.355555", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Polymeshcontracts : Instantiate with code perms", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 15144313211094684139", + "2 | Gas limit [2/2] : 12186305507010982371", + "3 | Storage deposit limit : POLYX 0.0", + "4 | Code [1/4] : 12", + "4 | Code [2/4] : 41", + "4 | Code [3/4] : 52", + "4 | Code [4/4] : 53", + "5 | Data [1/4] : 14", + "5 | Data [2/4] : 42", + "5 | Data [3/4] : 12", + "5 | Data [4/4] : 73", + "6 | Salt [1/4] : 32", + "6 | Salt [2/4] : 11", + "6 | Salt [3/4] : 32", + "6 | Salt [4/4] : 11", + "7 | Perms [1/3] : Whole", + "7 | Perms [2/3] : Whole", + "7 | Perms [3/3] : Whole", + "8 | Chain : Polymesh", + "9 | Nonce : 0", + "10 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "10 | Tip [2/2] : 3.456789", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1528, - "name": "Contracts_Call_old_weight", - "blob": "2e0002809a2cafb174b302f0f381d2705358111a9c905c258e089eb940a3046ae641e43f33158139ae28a3dfaac5fe1560a5e9e05c88012b15506d106afd4458de6b5ff64edb01029e9d8059730a3ea1e80b4b58a6283a0745e95406cfc62ac95402888ad0e9fa835eec2f9b0c21ae892eb2e6e11014a634b5f43bf1e94dff6573c747c619291f393ad665d02f69f74b9c9b1a9db29116d1d0a4520a9735188f8ef86ecd9ba8a9798e552c6db1566d6650d70f7d8555ec65d1c21f6552fa566d1d4d0447958aeb36d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1497, + "name": "Polymeshcontracts_Instantiate_with_code_perms", + "blob": "2f00fd56e5cad3287b54b2352f703dbeafc03641c20b8801158139ae28a3dfaac5fe1560a5e9e05c10200b200b100e2a0c49100e2a0c49000000d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Contracts : Call old weight", - "1 | Dest [1/2] : 9a2cafb174b302f0f381d2705358111a9c905c", - "1 | Dest [2/2] : 258e089eb940a3046ae641e43f", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789", - "3 | Gas limit : 34", - "4 | Storage deposit limit [1/2] : POLYX 4448103748545592106792043649.257", - "4 | Storage deposit limit [2/2] : 493", - "5 | Data [1/7] : 9e9d8059730a3ea1e80b4b58a6283a0745e954", - "5 | Data [2/7] : 06cfc62ac95402888ad0e9fa835eec2f9b0c21", - "5 | Data [3/7] : ae892eb2e6e11014a634b5f43bf1e94dff6573", - "5 | Data [4/7] : c747c619291f393ad665d02f69f74b9c9b1a9d", - "5 | Data [5/7] : b29116d1d0a4520a9735188f8ef86ecd9ba8a9", - "5 | Data [6/7] : 798e552c6db1566d6650d70f7d8555ec65d1c2", - "5 | Data [7/7] : 1f6552fa566d1d4d0447958aeb36", - "6 | Tip : POLYX 55.555555" + "0 | Polymeshcontracts : Instantiate with code perms", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 49320013", + "2 | Gas limit [2/2] : 34", + "3 | Storage deposit limit [1/2] : POLYX 12345678901234567890123456789012", + "3 | Storage deposit limit [2/2] : 3.456789", + "4 | Code [1/4] : 32", + "4 | Code [2/4] : 11", + "4 | Code [3/4] : 32", + "4 | Code [4/4] : 11", + "5 | Data [1/4] : 14", + "5 | Data [2/4] : 42", + "5 | Data [3/4] : 12", + "5 | Data [4/4] : 73", + "6 | Salt [1/4] : 14", + "6 | Salt [2/4] : 42", + "6 | Salt [3/4] : 12", + "6 | Salt [4/4] : 73", + "7 | Perms [1/3] : Whole", + "7 | Perms [2/3] : Whole", + "7 | Perms [3/3] : Whole", + "8 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Contracts : Call old weight", - "1 | Dest [1/2] : 9a2cafb174b302f0f381d2705358111a9c905c", - "1 | Dest [2/2] : 258e089eb940a3046ae641e43f", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789", - "3 | Gas limit : 34", - "4 | Storage deposit limit [1/2] : POLYX 4448103748545592106792043649.257", - "4 | Storage deposit limit [2/2] : 493", - "5 | Data [1/7] : 9e9d8059730a3ea1e80b4b58a6283a0745e954", - "5 | Data [2/7] : 06cfc62ac95402888ad0e9fa835eec2f9b0c21", - "5 | Data [3/7] : ae892eb2e6e11014a634b5f43bf1e94dff6573", - "5 | Data [4/7] : c747c619291f393ad665d02f69f74b9c9b1a9d", - "5 | Data [5/7] : b29116d1d0a4520a9735188f8ef86ecd9ba8a9", - "5 | Data [6/7] : 798e552c6db1566d6650d70f7d8555ec65d1c2", - "5 | Data [7/7] : 1f6552fa566d1d4d0447958aeb36", - "6 | Chain : Polymesh", - "7 | Nonce : 1", - "8 | Tip : POLYX 55.555555", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Polymeshcontracts : Instantiate with code perms", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 49320013", + "2 | Gas limit [2/2] : 34", + "3 | Storage deposit limit [1/2] : POLYX 12345678901234567890123456789012", + "3 | Storage deposit limit [2/2] : 3.456789", + "4 | Code [1/4] : 32", + "4 | Code [2/4] : 11", + "4 | Code [3/4] : 32", + "4 | Code [4/4] : 11", + "5 | Data [1/4] : 14", + "5 | Data [2/4] : 42", + "5 | Data [3/4] : 12", + "5 | Data [4/4] : 73", + "6 | Salt [1/4] : 14", + "6 | Salt [2/4] : 42", + "6 | Salt [3/4] : 12", + "6 | Salt [4/4] : 73", + "7 | Perms [1/3] : Whole", + "7 | Perms [2/3] : Whole", + "7 | Perms [3/3] : Whole", + "8 | Chain : Polymesh", + "9 | Nonce : 0", + "10 | Tip : POLYX 0.000987", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1529, - "name": "Contracts_Call_old_weight", - "blob": "2e00031b5bf215374493b82427331e7a21c5dc7390a7f50938f6209701aa7fefa97f9700c8012b15506d106afd4458de6b5ff64edb803aac0c206ff7943d3804ffdc241d552dbf5f5dc690b29dbf756bb8db19615f25d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1498, + "name": "Polymeshcontracts_Instantiate_with_code_perms", + "blob": "2f00fd56e5cad3287b54b2352f703dbeafc03641c20b8801158139ae28a3dfaac5fe1560a5e9e05c100c293435100c293435100c293435000000d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Contracts : Call old weight", - "1 | Dest [1/2] : 1b5bf215374493b82427331e7a21c5dc7390a7", - "1 | Dest [2/2] : f50938f6209701aa7fefa97f97", - "2 | Amount : POLYX 0.0", - "3 | Gas limit : 50", - "4 | Storage deposit limit [1/2] : POLYX 4448103748545592106792043649.257", - "4 | Storage deposit limit [2/2] : 493", - "5 | Data [1/2] : 3aac0c206ff7943d3804ffdc241d552dbf5f5d", - "5 | Data [2/2] : c690b29dbf756bb8db19615f25", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789" + "0 | Polymeshcontracts : Instantiate with code perms", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 49320013", + "2 | Gas limit [2/2] : 34", + "3 | Storage deposit limit [1/2] : POLYX 12345678901234567890123456789012", + "3 | Storage deposit limit [2/2] : 3.456789", + "4 | Code [1/4] : 12", + "4 | Code [2/4] : 41", + "4 | Code [3/4] : 52", + "4 | Code [4/4] : 53", + "5 | Data [1/4] : 12", + "5 | Data [2/4] : 41", + "5 | Data [3/4] : 52", + "5 | Data [4/4] : 53", + "6 | Salt [1/4] : 12", + "6 | Salt [2/4] : 41", + "6 | Salt [3/4] : 52", + "6 | Salt [4/4] : 53", + "7 | Perms [1/3] : Whole", + "7 | Perms [2/3] : Whole", + "7 | Perms [3/3] : Whole", + "8 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Contracts : Call old weight", - "1 | Dest [1/2] : 1b5bf215374493b82427331e7a21c5dc7390a7", - "1 | Dest [2/2] : f50938f6209701aa7fefa97f97", - "2 | Amount : POLYX 0.0", - "3 | Gas limit : 50", - "4 | Storage deposit limit [1/2] : POLYX 4448103748545592106792043649.257", - "4 | Storage deposit limit [2/2] : 493", - "5 | Data [1/2] : 3aac0c206ff7943d3804ffdc241d552dbf5f5d", - "5 | Data [2/2] : c690b29dbf756bb8db19615f25", - "6 | Chain : Polymesh", - "7 | Nonce : 2339", - "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "8 | Tip [2/2] : 3.456789", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1530, - "name": "Contracts_Call_old_weight", - "blob": "2e0000cad4a18908329105afed699a70c486711444defbe185d1ab764b4afc6db12e520b63ce64c10c05c8012bde547c55bae064a8d95aa250f2340101a6d7930112b16e3b8649dcfe3a9c66cc2c34847d0dd05ad9f7d105ae3adad3d9e84cc085526559dea4a34add6b321ea04abd79fc38aad51749d93ec0031c63c8d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Call old weight", - "1 | Dest [1/2] : 2H2rwUD6mL4v1G3XQBkZJMxvPY74a6kFrWwyf2", - "1 | Dest [2/2] : 78dcRUPtaj", - "2 | Amount : POLYX 5552342.355555", - "3 | Gas limit : 50", - "4 | Storage deposit limit [1/2] : POLYX 1073883469794135377910968975.381", - "4 | Storage deposit limit [2/2] : 726", - "5 | Data [1/4] : a6d7930112b16e3b8649dcfe3a9c66cc2c3484", - "5 | Data [2/4] : 7d0dd05ad9f7d105ae3adad3d9e84cc0855265", - "5 | Data [3/4] : 59dea4a34add6b321ea04abd79fc38aad51749", - "5 | Data [4/4] : d93ec0031c63c8", - "6 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Contracts : Call old weight", - "1 | Dest [1/2] : 2H2rwUD6mL4v1G3XQBkZJMxvPY74a6kFrWwyf2", - "1 | Dest [2/2] : 78dcRUPtaj", - "2 | Amount : POLYX 5552342.355555", - "3 | Gas limit : 50", - "4 | Storage deposit limit [1/2] : POLYX 1073883469794135377910968975.381", - "4 | Storage deposit limit [2/2] : 726", - "5 | Data [1/4] : a6d7930112b16e3b8649dcfe3a9c66cc2c3484", - "5 | Data [2/4] : 7d0dd05ad9f7d105ae3adad3d9e84cc0855265", - "5 | Data [3/4] : 59dea4a34add6b321ea04abd79fc38aad51749", - "5 | Data [4/4] : d93ec0031c63c8", - "6 | Chain : Polymesh", - "7 | Nonce : 0", - "8 | Tip : POLYX 55.555555", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1531, - "name": "Contracts_Instantiate_with_code_old_weight", - "blob": "2e016d0f4627a7de01025d6f2d0102965b7d155e8cb6a82bb929ccb41cc96beac1273eba57b670a322cd901353b196d7090b56178e08f6efc8fbae1df13ace60e6d185adb85cae014c15b232c733ea25b96f90e9203f407d9bcabfae6f9cb64f5a00df0c6ca9bb269ee367c13113722d0c787183849ba5d93b3476a7f2fd961d26503178b044f90f0384e7bd24c1f80101a6d7930112b16e3b8649dcfe3a9c66cc2c34847d0dd05ad9f7d105ae3adad3d9e84cc085526559dea4a34add6b321ea04abd79fc38aad51749d93ec0031c63c80102965b7d155e8cb6a82bb929ccb41cc96beac1273eba57b670a322cd901353b196d7090b56178e08f6efc8fbae1df13ace60e6d185adb85cae014c15b232c733ea25b96f90e9203f407d9bcabfae6f9cb64f5a00df0c6ca9bb269ee367c13113722d0c787183849ba5d93b3476a7f2fd961d26503178b044f90f0384e7bd24c1f8d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Instantiate with code old weight", - "1 | Amount : POLYX 0.000987", - "2 | Gas limit : 933874129", - "3 | Storage deposit limit : POLYX 190.568256", - "4 | Code [1/7] : 965b7d155e8cb6a82bb929ccb41cc96beac127", - "4 | Code [2/7] : 3eba57b670a322cd901353b196d7090b56178e", - "4 | Code [3/7] : 08f6efc8fbae1df13ace60e6d185adb85cae01", - "4 | Code [4/7] : 4c15b232c733ea25b96f90e9203f407d9bcabf", - "4 | Code [5/7] : ae6f9cb64f5a00df0c6ca9bb269ee367c13113", - "4 | Code [6/7] : 722d0c787183849ba5d93b3476a7f2fd961d26", - "4 | Code [7/7] : 503178b044f90f0384e7bd24c1f8", - "5 | Data [1/4] : a6d7930112b16e3b8649dcfe3a9c66cc2c3484", - "5 | Data [2/4] : 7d0dd05ad9f7d105ae3adad3d9e84cc0855265", - "5 | Data [3/4] : 59dea4a34add6b321ea04abd79fc38aad51749", - "5 | Data [4/4] : d93ec0031c63c8", - "6 | Salt [1/7] : 965b7d155e8cb6a82bb929ccb41cc96beac127", - "6 | Salt [2/7] : 3eba57b670a322cd901353b196d7090b56178e", - "6 | Salt [3/7] : 08f6efc8fbae1df13ace60e6d185adb85cae01", - "6 | Salt [4/7] : 4c15b232c733ea25b96f90e9203f407d9bcabf", - "6 | Salt [5/7] : ae6f9cb64f5a00df0c6ca9bb269ee367c13113", - "6 | Salt [6/7] : 722d0c787183849ba5d93b3476a7f2fd961d26", - "6 | Salt [7/7] : 503178b044f90f0384e7bd24c1f8", - "7 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Contracts : Instantiate with code old weight", - "1 | Amount : POLYX 0.000987", - "2 | Gas limit : 933874129", - "3 | Storage deposit limit : POLYX 190.568256", - "4 | Code [1/7] : 965b7d155e8cb6a82bb929ccb41cc96beac127", - "4 | Code [2/7] : 3eba57b670a322cd901353b196d7090b56178e", - "4 | Code [3/7] : 08f6efc8fbae1df13ace60e6d185adb85cae01", - "4 | Code [4/7] : 4c15b232c733ea25b96f90e9203f407d9bcabf", - "4 | Code [5/7] : ae6f9cb64f5a00df0c6ca9bb269ee367c13113", - "4 | Code [6/7] : 722d0c787183849ba5d93b3476a7f2fd961d26", - "4 | Code [7/7] : 503178b044f90f0384e7bd24c1f8", - "5 | Data [1/4] : a6d7930112b16e3b8649dcfe3a9c66cc2c3484", - "5 | Data [2/4] : 7d0dd05ad9f7d105ae3adad3d9e84cc0855265", - "5 | Data [3/4] : 59dea4a34add6b321ea04abd79fc38aad51749", - "5 | Data [4/4] : d93ec0031c63c8", - "6 | Salt [1/7] : 965b7d155e8cb6a82bb929ccb41cc96beac127", - "6 | Salt [2/7] : 3eba57b670a322cd901353b196d7090b56178e", - "6 | Salt [3/7] : 08f6efc8fbae1df13ace60e6d185adb85cae01", - "6 | Salt [4/7] : 4c15b232c733ea25b96f90e9203f407d9bcabf", - "6 | Salt [5/7] : ae6f9cb64f5a00df0c6ca9bb269ee367c13113", - "6 | Salt [6/7] : 722d0c787183849ba5d93b3476a7f2fd961d26", - "6 | Salt [7/7] : 503178b044f90f0384e7bd24c1f8", - "7 | Chain : Polymesh", - "8 | Nonce : 1", - "9 | Tip : POLYX 5552342.355555", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1532, - "name": "Contracts_Instantiate_with_code_old_weight", - "blob": "2e0133158139ae28a3dfaac5fe1560a5e9e05c1401025d6f2d803aac0c206ff7943d3804ffdc241d552dbf5f5dc690b29dbf756bb8db19615f250101a6d7930112b16e3b8649dcfe3a9c66cc2c34847d0dd05ad9f7d105ae3adad3d9e84cc085526559dea4a34add6b321ea04abd79fc38aad51749d93ec0031c63c80102965b7d155e8cb6a82bb929ccb41cc96beac1273eba57b670a322cd901353b196d7090b56178e08f6efc8fbae1df13ace60e6d185adb85cae014c15b232c733ea25b96f90e9203f407d9bcabfae6f9cb64f5a00df0c6ca9bb269ee367c13113722d0c787183849ba5d93b3476a7f2fd961d26503178b044f90f0384e7bd24c1f8d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Instantiate with code old weight", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Gas limit : 5", - "3 | Storage deposit limit : POLYX 190.568256", - "4 | Code [1/2] : 3aac0c206ff7943d3804ffdc241d552dbf5f5d", - "4 | Code [2/2] : c690b29dbf756bb8db19615f25", - "5 | Data [1/4] : a6d7930112b16e3b8649dcfe3a9c66cc2c3484", - "5 | Data [2/4] : 7d0dd05ad9f7d105ae3adad3d9e84cc0855265", - "5 | Data [3/4] : 59dea4a34add6b321ea04abd79fc38aad51749", - "5 | Data [4/4] : d93ec0031c63c8", - "6 | Salt [1/7] : 965b7d155e8cb6a82bb929ccb41cc96beac127", - "6 | Salt [2/7] : 3eba57b670a322cd901353b196d7090b56178e", - "6 | Salt [3/7] : 08f6efc8fbae1df13ace60e6d185adb85cae01", - "6 | Salt [4/7] : 4c15b232c733ea25b96f90e9203f407d9bcabf", - "6 | Salt [5/7] : ae6f9cb64f5a00df0c6ca9bb269ee367c13113", - "6 | Salt [6/7] : 722d0c787183849ba5d93b3476a7f2fd961d26", - "6 | Salt [7/7] : 503178b044f90f0384e7bd24c1f8" - ], - "output_expert": [ - "0 | Contracts : Instantiate with code old weight", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Gas limit : 5", - "3 | Storage deposit limit : POLYX 190.568256", - "4 | Code [1/2] : 3aac0c206ff7943d3804ffdc241d552dbf5f5d", - "4 | Code [2/2] : c690b29dbf756bb8db19615f25", - "5 | Data [1/4] : a6d7930112b16e3b8649dcfe3a9c66cc2c3484", - "5 | Data [2/4] : 7d0dd05ad9f7d105ae3adad3d9e84cc0855265", - "5 | Data [3/4] : 59dea4a34add6b321ea04abd79fc38aad51749", - "5 | Data [4/4] : d93ec0031c63c8", - "6 | Salt [1/7] : 965b7d155e8cb6a82bb929ccb41cc96beac127", - "6 | Salt [2/7] : 3eba57b670a322cd901353b196d7090b56178e", - "6 | Salt [3/7] : 08f6efc8fbae1df13ace60e6d185adb85cae01", - "6 | Salt [4/7] : 4c15b232c733ea25b96f90e9203f407d9bcabf", - "6 | Salt [5/7] : ae6f9cb64f5a00df0c6ca9bb269ee367c13113", - "6 | Salt [6/7] : 722d0c787183849ba5d93b3476a7f2fd961d26", - "6 | Salt [7/7] : 503178b044f90f0384e7bd24c1f8", - "7 | Chain : Polymesh", - "8 | Nonce : 2339", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1533, - "name": "Contracts_Instantiate_with_code_old_weight", - "blob": "2e010b63ce64c10c05c801025d6f2d0102965b7d155e8cb6a82bb929ccb41cc96beac1273eba57b670a322cd901353b196d7090b56178e08f6efc8fbae1df13ace60e6d185adb85cae014c15b232c733ea25b96f90e9203f407d9bcabfae6f9cb64f5a00df0c6ca9bb269ee367c13113722d0c787183849ba5d93b3476a7f2fd961d26503178b044f90f0384e7bd24c1f80102965b7d155e8cb6a82bb929ccb41cc96beac1273eba57b670a322cd901353b196d7090b56178e08f6efc8fbae1df13ace60e6d185adb85cae014c15b232c733ea25b96f90e9203f407d9bcabfae6f9cb64f5a00df0c6ca9bb269ee367c13113722d0c787183849ba5d93b3476a7f2fd961d26503178b044f90f0384e7bd24c1f80102965b7d155e8cb6a82bb929ccb41cc96beac1273eba57b670a322cd901353b196d7090b56178e08f6efc8fbae1df13ace60e6d185adb85cae014c15b232c733ea25b96f90e9203f407d9bcabfae6f9cb64f5a00df0c6ca9bb269ee367c13113722d0c787183849ba5d93b3476a7f2fd961d26503178b044f90f0384e7bd24c1f8d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Instantiate with code old weight", - "1 | Amount : POLYX 5552342.355555", - "2 | Gas limit : 50", - "3 | Storage deposit limit : POLYX 190.568256", - "4 | Code [1/7] : 965b7d155e8cb6a82bb929ccb41cc96beac127", - "4 | Code [2/7] : 3eba57b670a322cd901353b196d7090b56178e", - "4 | Code [3/7] : 08f6efc8fbae1df13ace60e6d185adb85cae01", - "4 | Code [4/7] : 4c15b232c733ea25b96f90e9203f407d9bcabf", - "4 | Code [5/7] : ae6f9cb64f5a00df0c6ca9bb269ee367c13113", - "4 | Code [6/7] : 722d0c787183849ba5d93b3476a7f2fd961d26", - "4 | Code [7/7] : 503178b044f90f0384e7bd24c1f8", - "5 | Data [1/7] : 965b7d155e8cb6a82bb929ccb41cc96beac127", - "5 | Data [2/7] : 3eba57b670a322cd901353b196d7090b56178e", - "5 | Data [3/7] : 08f6efc8fbae1df13ace60e6d185adb85cae01", - "5 | Data [4/7] : 4c15b232c733ea25b96f90e9203f407d9bcabf", - "5 | Data [5/7] : ae6f9cb64f5a00df0c6ca9bb269ee367c13113", - "5 | Data [6/7] : 722d0c787183849ba5d93b3476a7f2fd961d26", - "5 | Data [7/7] : 503178b044f90f0384e7bd24c1f8", - "6 | Salt [1/7] : 965b7d155e8cb6a82bb929ccb41cc96beac127", - "6 | Salt [2/7] : 3eba57b670a322cd901353b196d7090b56178e", - "6 | Salt [3/7] : 08f6efc8fbae1df13ace60e6d185adb85cae01", - "6 | Salt [4/7] : 4c15b232c733ea25b96f90e9203f407d9bcabf", - "6 | Salt [5/7] : ae6f9cb64f5a00df0c6ca9bb269ee367c13113", - "6 | Salt [6/7] : 722d0c787183849ba5d93b3476a7f2fd961d26", - "6 | Salt [7/7] : 503178b044f90f0384e7bd24c1f8", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Contracts : Instantiate with code old weight", - "1 | Amount : POLYX 5552342.355555", - "2 | Gas limit : 50", - "3 | Storage deposit limit : POLYX 190.568256", - "4 | Code [1/7] : 965b7d155e8cb6a82bb929ccb41cc96beac127", - "4 | Code [2/7] : 3eba57b670a322cd901353b196d7090b56178e", - "4 | Code [3/7] : 08f6efc8fbae1df13ace60e6d185adb85cae01", - "4 | Code [4/7] : 4c15b232c733ea25b96f90e9203f407d9bcabf", - "4 | Code [5/7] : ae6f9cb64f5a00df0c6ca9bb269ee367c13113", - "4 | Code [6/7] : 722d0c787183849ba5d93b3476a7f2fd961d26", - "4 | Code [7/7] : 503178b044f90f0384e7bd24c1f8", - "5 | Data [1/7] : 965b7d155e8cb6a82bb929ccb41cc96beac127", - "5 | Data [2/7] : 3eba57b670a322cd901353b196d7090b56178e", - "5 | Data [3/7] : 08f6efc8fbae1df13ace60e6d185adb85cae01", - "5 | Data [4/7] : 4c15b232c733ea25b96f90e9203f407d9bcabf", - "5 | Data [5/7] : ae6f9cb64f5a00df0c6ca9bb269ee367c13113", - "5 | Data [6/7] : 722d0c787183849ba5d93b3476a7f2fd961d26", - "5 | Data [7/7] : 503178b044f90f0384e7bd24c1f8", - "6 | Salt [1/7] : 965b7d155e8cb6a82bb929ccb41cc96beac127", - "6 | Salt [2/7] : 3eba57b670a322cd901353b196d7090b56178e", - "6 | Salt [3/7] : 08f6efc8fbae1df13ace60e6d185adb85cae01", - "6 | Salt [4/7] : 4c15b232c733ea25b96f90e9203f407d9bcabf", - "6 | Salt [5/7] : ae6f9cb64f5a00df0c6ca9bb269ee367c13113", - "6 | Salt [6/7] : 722d0c787183849ba5d93b3476a7f2fd961d26", - "6 | Salt [7/7] : 503178b044f90f0384e7bd24c1f8", - "7 | Chain : Polymesh", - "8 | Nonce : 100", - "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "9 | Tip [2/2] : 3.456789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1534, - "name": "Contracts_Instantiate_with_code_old_weight", - "blob": "2e0133158139ae28a3dfaac5fe1560a5e9e05c4627a7de012bde547c55bae064a8d95aa250f2340102965b7d155e8cb6a82bb929ccb41cc96beac1273eba57b670a322cd901353b196d7090b56178e08f6efc8fbae1df13ace60e6d185adb85cae014c15b232c733ea25b96f90e9203f407d9bcabfae6f9cb64f5a00df0c6ca9bb269ee367c13113722d0c787183849ba5d93b3476a7f2fd961d26503178b044f90f0384e7bd24c1f80102965b7d155e8cb6a82bb929ccb41cc96beac1273eba57b670a322cd901353b196d7090b56178e08f6efc8fbae1df13ace60e6d185adb85cae014c15b232c733ea25b96f90e9203f407d9bcabfae6f9cb64f5a00df0c6ca9bb269ee367c13113722d0c787183849ba5d93b3476a7f2fd961d26503178b044f90f0384e7bd24c1f8803aac0c206ff7943d3804ffdc241d552dbf5f5dc690b29dbf756bb8db19615f25d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Instantiate with code old weight", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Gas limit : 933874129", - "3 | Storage deposit limit [1/2] : POLYX 1073883469794135377910968975.381", - "3 | Storage deposit limit [2/2] : 726", - "4 | Code [1/7] : 965b7d155e8cb6a82bb929ccb41cc96beac127", - "4 | Code [2/7] : 3eba57b670a322cd901353b196d7090b56178e", - "4 | Code [3/7] : 08f6efc8fbae1df13ace60e6d185adb85cae01", - "4 | Code [4/7] : 4c15b232c733ea25b96f90e9203f407d9bcabf", - "4 | Code [5/7] : ae6f9cb64f5a00df0c6ca9bb269ee367c13113", - "4 | Code [6/7] : 722d0c787183849ba5d93b3476a7f2fd961d26", - "4 | Code [7/7] : 503178b044f90f0384e7bd24c1f8", - "5 | Data [1/7] : 965b7d155e8cb6a82bb929ccb41cc96beac127", - "5 | Data [2/7] : 3eba57b670a322cd901353b196d7090b56178e", - "5 | Data [3/7] : 08f6efc8fbae1df13ace60e6d185adb85cae01", - "5 | Data [4/7] : 4c15b232c733ea25b96f90e9203f407d9bcabf", - "5 | Data [5/7] : ae6f9cb64f5a00df0c6ca9bb269ee367c13113", - "5 | Data [6/7] : 722d0c787183849ba5d93b3476a7f2fd961d26", - "5 | Data [7/7] : 503178b044f90f0384e7bd24c1f8", - "6 | Salt [1/2] : 3aac0c206ff7943d3804ffdc241d552dbf5f5d", - "6 | Salt [2/2] : c690b29dbf756bb8db19615f25", - "7 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Contracts : Instantiate with code old weight", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Gas limit : 933874129", - "3 | Storage deposit limit [1/2] : POLYX 1073883469794135377910968975.381", - "3 | Storage deposit limit [2/2] : 726", - "4 | Code [1/7] : 965b7d155e8cb6a82bb929ccb41cc96beac127", - "4 | Code [2/7] : 3eba57b670a322cd901353b196d7090b56178e", - "4 | Code [3/7] : 08f6efc8fbae1df13ace60e6d185adb85cae01", - "4 | Code [4/7] : 4c15b232c733ea25b96f90e9203f407d9bcabf", - "4 | Code [5/7] : ae6f9cb64f5a00df0c6ca9bb269ee367c13113", - "4 | Code [6/7] : 722d0c787183849ba5d93b3476a7f2fd961d26", - "4 | Code [7/7] : 503178b044f90f0384e7bd24c1f8", - "5 | Data [1/7] : 965b7d155e8cb6a82bb929ccb41cc96beac127", - "5 | Data [2/7] : 3eba57b670a322cd901353b196d7090b56178e", - "5 | Data [3/7] : 08f6efc8fbae1df13ace60e6d185adb85cae01", - "5 | Data [4/7] : 4c15b232c733ea25b96f90e9203f407d9bcabf", - "5 | Data [5/7] : ae6f9cb64f5a00df0c6ca9bb269ee367c13113", - "5 | Data [6/7] : 722d0c787183849ba5d93b3476a7f2fd961d26", - "5 | Data [7/7] : 503178b044f90f0384e7bd24c1f8", - "6 | Salt [1/2] : 3aac0c206ff7943d3804ffdc241d552dbf5f5d", - "6 | Salt [2/2] : c690b29dbf756bb8db19615f25", - "7 | Chain : Polymesh", - "8 | Nonce : 1", - "9 | Tip : POLYX 0.000987", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1535, - "name": "Contracts_Instantiate_with_code_old_weight", - "blob": "2e016d0fc801025d6f2d01028f485f68684be25d1a195e85f8b42aed8a3488ce1c71bd1d6399f10c8869f0283e80f26c4a12287c5ee3899c96e83379c414ae5892906f3eca7a80d642a93989ff62cd2052046cbade0a430fe0152db131367bccfb060061bd30700e6ed84becbc323880d56e25b2bb8fea9a1a22b8de3253e6083d4d304d26183733d6ef07b90102965b7d155e8cb6a82bb929ccb41cc96beac1273eba57b670a322cd901353b196d7090b56178e08f6efc8fbae1df13ace60e6d185adb85cae014c15b232c733ea25b96f90e9203f407d9bcabfae6f9cb64f5a00df0c6ca9bb269ee367c13113722d0c787183849ba5d93b3476a7f2fd961d26503178b044f90f0384e7bd24c1f801016d0908114ac84677d153d7368feda69cef573eb81308a080f038a74d25a93fef148316d9d6f23f39d32353dccc05e3e15a573a8e62a74bbe1366bf9014cce144d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Instantiate with code old weight", - "1 | Amount : POLYX 0.000987", - "2 | Gas limit : 50", - "3 | Storage deposit limit : POLYX 190.568256", - "4 | Code [1/7] : 8f485f68684be25d1a195e85f8b42aed8a3488", - "4 | Code [2/7] : ce1c71bd1d6399f10c8869f0283e80f26c4a12", - "4 | Code [3/7] : 287c5ee3899c96e83379c414ae5892906f3eca", - "4 | Code [4/7] : 7a80d642a93989ff62cd2052046cbade0a430f", - "4 | Code [5/7] : e0152db131367bccfb060061bd30700e6ed84b", - "4 | Code [6/7] : ecbc323880d56e25b2bb8fea9a1a22b8de3253", - "4 | Code [7/7] : e6083d4d304d26183733d6ef07b9", - "5 | Data [1/7] : 965b7d155e8cb6a82bb929ccb41cc96beac127", - "5 | Data [2/7] : 3eba57b670a322cd901353b196d7090b56178e", - "5 | Data [3/7] : 08f6efc8fbae1df13ace60e6d185adb85cae01", - "5 | Data [4/7] : 4c15b232c733ea25b96f90e9203f407d9bcabf", - "5 | Data [5/7] : ae6f9cb64f5a00df0c6ca9bb269ee367c13113", - "5 | Data [6/7] : 722d0c787183849ba5d93b3476a7f2fd961d26", - "5 | Data [7/7] : 503178b044f90f0384e7bd24c1f8", - "6 | Salt [1/4] : 6d0908114ac84677d153d7368feda69cef573e", - "6 | Salt [2/4] : b81308a080f038a74d25a93fef148316d9d6f2", - "6 | Salt [3/4] : 3f39d32353dccc05e3e15a573a8e62a74bbe13", - "6 | Salt [4/4] : 66bf9014cce144", - "7 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Contracts : Instantiate with code old weight", - "1 | Amount : POLYX 0.000987", - "2 | Gas limit : 50", - "3 | Storage deposit limit : POLYX 190.568256", - "4 | Code [1/7] : 8f485f68684be25d1a195e85f8b42aed8a3488", - "4 | Code [2/7] : ce1c71bd1d6399f10c8869f0283e80f26c4a12", - "4 | Code [3/7] : 287c5ee3899c96e83379c414ae5892906f3eca", - "4 | Code [4/7] : 7a80d642a93989ff62cd2052046cbade0a430f", - "4 | Code [5/7] : e0152db131367bccfb060061bd30700e6ed84b", - "4 | Code [6/7] : ecbc323880d56e25b2bb8fea9a1a22b8de3253", - "4 | Code [7/7] : e6083d4d304d26183733d6ef07b9", - "5 | Data [1/7] : 965b7d155e8cb6a82bb929ccb41cc96beac127", - "5 | Data [2/7] : 3eba57b670a322cd901353b196d7090b56178e", - "5 | Data [3/7] : 08f6efc8fbae1df13ace60e6d185adb85cae01", - "5 | Data [4/7] : 4c15b232c733ea25b96f90e9203f407d9bcabf", - "5 | Data [5/7] : ae6f9cb64f5a00df0c6ca9bb269ee367c13113", - "5 | Data [6/7] : 722d0c787183849ba5d93b3476a7f2fd961d26", - "5 | Data [7/7] : 503178b044f90f0384e7bd24c1f8", - "6 | Salt [1/4] : 6d0908114ac84677d153d7368feda69cef573e", - "6 | Salt [2/4] : b81308a080f038a74d25a93fef148316d9d6f2", - "6 | Salt [3/4] : 3f39d32353dccc05e3e15a573a8e62a74bbe13", - "6 | Salt [4/4] : 66bf9014cce144", - "7 | Chain : Polymesh", - "8 | Nonce : 0", - "9 | Tip : POLYX 55.555555", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1536, - "name": "Contracts_Instantiate_old_weight", - "blob": "2e020b63ce64c10c051401025d6f2d6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f406301028f485f68684be25d1a195e85f8b42aed8a3488ce1c71bd1d6399f10c8869f0283e80f26c4a12287c5ee3899c96e83379c414ae5892906f3eca7a80d642a93989ff62cd2052046cbade0a430fe0152db131367bccfb060061bd30700e6ed84becbc323880d56e25b2bb8fea9a1a22b8de3253e6083d4d304d26183733d6ef07b90101a6d7930112b16e3b8649dcfe3a9c66cc2c34847d0dd05ad9f7d105ae3adad3d9e84cc085526559dea4a34add6b321ea04abd79fc38aad51749d93ec0031c63c8d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Instantiate old weight", - "1 | Amount : POLYX 5552342.355555", - "2 | Gas limit : 5", - "3 | Storage deposit limit : POLYX 190.568256", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/7] : 8f485f68684be25d1a195e85f8b42aed8a3488", - "5 | Data [2/7] : ce1c71bd1d6399f10c8869f0283e80f26c4a12", - "5 | Data [3/7] : 287c5ee3899c96e83379c414ae5892906f3eca", - "5 | Data [4/7] : 7a80d642a93989ff62cd2052046cbade0a430f", - "5 | Data [5/7] : e0152db131367bccfb060061bd30700e6ed84b", - "5 | Data [6/7] : ecbc323880d56e25b2bb8fea9a1a22b8de3253", - "5 | Data [7/7] : e6083d4d304d26183733d6ef07b9", - "6 | Salt [1/4] : a6d7930112b16e3b8649dcfe3a9c66cc2c3484", - "6 | Salt [2/4] : 7d0dd05ad9f7d105ae3adad3d9e84cc0855265", - "6 | Salt [3/4] : 59dea4a34add6b321ea04abd79fc38aad51749", - "6 | Salt [4/4] : d93ec0031c63c8" - ], - "output_expert": [ - "0 | Contracts : Instantiate old weight", - "1 | Amount : POLYX 5552342.355555", - "2 | Gas limit : 5", - "3 | Storage deposit limit : POLYX 190.568256", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/7] : 8f485f68684be25d1a195e85f8b42aed8a3488", - "5 | Data [2/7] : ce1c71bd1d6399f10c8869f0283e80f26c4a12", - "5 | Data [3/7] : 287c5ee3899c96e83379c414ae5892906f3eca", - "5 | Data [4/7] : 7a80d642a93989ff62cd2052046cbade0a430f", - "5 | Data [5/7] : e0152db131367bccfb060061bd30700e6ed84b", - "5 | Data [6/7] : ecbc323880d56e25b2bb8fea9a1a22b8de3253", - "5 | Data [7/7] : e6083d4d304d26183733d6ef07b9", - "6 | Salt [1/4] : a6d7930112b16e3b8649dcfe3a9c66cc2c3484", - "6 | Salt [2/4] : 7d0dd05ad9f7d105ae3adad3d9e84cc0855265", - "6 | Salt [3/4] : 59dea4a34add6b321ea04abd79fc38aad51749", - "6 | Salt [4/4] : d93ec0031c63c8", - "7 | Chain : Polymesh", - "8 | Nonce : 2339", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1537, - "name": "Contracts_Instantiate_old_weight", - "blob": "2e0203d2029649c8012bde547c55bae064a8d95aa250f2346fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f406301013a83a7ff5037a23c0e43affbcc635966aa16484bf4aad5570831c098d7eaa04956dffa80bb93e6f18a1f496c3102ad749a5bd8d8be953c82c1e75595318b35bc80aa6a3cf21b1789d31250ee845cd2569fd46d8e0eaa6aa1ae8ce3429cbe2e02f1d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Instantiate old weight", - "1 | Amount : POLYX 1234.56789", - "2 | Gas limit : 50", - "3 | Storage deposit limit [1/2] : POLYX 1073883469794135377910968975.381", - "3 | Storage deposit limit [2/2] : 726", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 3a83a7ff5037a23c0e43affbcc635966aa1648", - "5 | Data [2/4] : 4bf4aad5570831c098d7eaa04956dffa80bb93", - "5 | Data [3/4] : e6f18a1f496c3102ad749a5bd8d8be953c82c1", - "5 | Data [4/4] : e75595318b35bc", - "6 | Salt [1/2] : aa6a3cf21b1789d31250ee845cd2569fd46d8e", - "6 | Salt [2/2] : 0eaa6aa1ae8ce3429cbe2e02f1", - "7 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Contracts : Instantiate old weight", - "1 | Amount : POLYX 1234.56789", - "2 | Gas limit : 50", - "3 | Storage deposit limit [1/2] : POLYX 1073883469794135377910968975.381", - "3 | Storage deposit limit [2/2] : 726", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 3a83a7ff5037a23c0e43affbcc635966aa1648", - "5 | Data [2/4] : 4bf4aad5570831c098d7eaa04956dffa80bb93", - "5 | Data [3/4] : e6f18a1f496c3102ad749a5bd8d8be953c82c1", - "5 | Data [4/4] : e75595318b35bc", - "6 | Salt [1/2] : aa6a3cf21b1789d31250ee845cd2569fd46d8e", - "6 | Salt [2/2] : 0eaa6aa1ae8ce3429cbe2e02f1", - "7 | Chain : Polymesh", - "8 | Nonce : 100", - "9 | Tip : POLYX 0.000987", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1538, - "name": "Contracts_Instantiate_old_weight", - "blob": "2e020088012bde547c55bae064a8d95aa250f2346fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f406301028f485f68684be25d1a195e85f8b42aed8a3488ce1c71bd1d6399f10c8869f0283e80f26c4a12287c5ee3899c96e83379c414ae5892906f3eca7a80d642a93989ff62cd2052046cbade0a430fe0152db131367bccfb060061bd30700e6ed84becbc323880d56e25b2bb8fea9a1a22b8de3253e6083d4d304d26183733d6ef07b90102965b7d155e8cb6a82bb929ccb41cc96beac1273eba57b670a322cd901353b196d7090b56178e08f6efc8fbae1df13ace60e6d185adb85cae014c15b232c733ea25b96f90e9203f407d9bcabfae6f9cb64f5a00df0c6ca9bb269ee367c13113722d0c787183849ba5d93b3476a7f2fd961d26503178b044f90f0384e7bd24c1f8d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Instantiate old weight", - "1 | Amount : POLYX 0.0", - "2 | Gas limit : 34", - "3 | Storage deposit limit [1/2] : POLYX 1073883469794135377910968975.381", - "3 | Storage deposit limit [2/2] : 726", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/7] : 8f485f68684be25d1a195e85f8b42aed8a3488", - "5 | Data [2/7] : ce1c71bd1d6399f10c8869f0283e80f26c4a12", - "5 | Data [3/7] : 287c5ee3899c96e83379c414ae5892906f3eca", - "5 | Data [4/7] : 7a80d642a93989ff62cd2052046cbade0a430f", - "5 | Data [5/7] : e0152db131367bccfb060061bd30700e6ed84b", - "5 | Data [6/7] : ecbc323880d56e25b2bb8fea9a1a22b8de3253", - "5 | Data [7/7] : e6083d4d304d26183733d6ef07b9", - "6 | Salt [1/7] : 965b7d155e8cb6a82bb929ccb41cc96beac127", - "6 | Salt [2/7] : 3eba57b670a322cd901353b196d7090b56178e", - "6 | Salt [3/7] : 08f6efc8fbae1df13ace60e6d185adb85cae01", - "6 | Salt [4/7] : 4c15b232c733ea25b96f90e9203f407d9bcabf", - "6 | Salt [5/7] : ae6f9cb64f5a00df0c6ca9bb269ee367c13113", - "6 | Salt [6/7] : 722d0c787183849ba5d93b3476a7f2fd961d26", - "6 | Salt [7/7] : 503178b044f90f0384e7bd24c1f8", - "7 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Contracts : Instantiate old weight", - "1 | Amount : POLYX 0.0", - "2 | Gas limit : 34", - "3 | Storage deposit limit [1/2] : POLYX 1073883469794135377910968975.381", - "3 | Storage deposit limit [2/2] : 726", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/7] : 8f485f68684be25d1a195e85f8b42aed8a3488", - "5 | Data [2/7] : ce1c71bd1d6399f10c8869f0283e80f26c4a12", - "5 | Data [3/7] : 287c5ee3899c96e83379c414ae5892906f3eca", - "5 | Data [4/7] : 7a80d642a93989ff62cd2052046cbade0a430f", - "5 | Data [5/7] : e0152db131367bccfb060061bd30700e6ed84b", - "5 | Data [6/7] : ecbc323880d56e25b2bb8fea9a1a22b8de3253", - "5 | Data [7/7] : e6083d4d304d26183733d6ef07b9", - "6 | Salt [1/7] : 965b7d155e8cb6a82bb929ccb41cc96beac127", - "6 | Salt [2/7] : 3eba57b670a322cd901353b196d7090b56178e", - "6 | Salt [3/7] : 08f6efc8fbae1df13ace60e6d185adb85cae01", - "6 | Salt [4/7] : 4c15b232c733ea25b96f90e9203f407d9bcabf", - "6 | Salt [5/7] : ae6f9cb64f5a00df0c6ca9bb269ee367c13113", - "6 | Salt [6/7] : 722d0c787183849ba5d93b3476a7f2fd961d26", - "6 | Salt [7/7] : 503178b044f90f0384e7bd24c1f8", - "7 | Chain : Polymesh", - "8 | Nonce : 0", - "9 | Tip : POLYX 0.000987", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1539, - "name": "Contracts_Instantiate_old_weight", - "blob": "2e020b63ce64c10c0514012bde547c55bae064a8d95aa250f2346fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f406301013a83a7ff5037a23c0e43affbcc635966aa16484bf4aad5570831c098d7eaa04956dffa80bb93e6f18a1f496c3102ad749a5bd8d8be953c82c1e75595318b35bc0102965b7d155e8cb6a82bb929ccb41cc96beac1273eba57b670a322cd901353b196d7090b56178e08f6efc8fbae1df13ace60e6d185adb85cae014c15b232c733ea25b96f90e9203f407d9bcabfae6f9cb64f5a00df0c6ca9bb269ee367c13113722d0c787183849ba5d93b3476a7f2fd961d26503178b044f90f0384e7bd24c1f8d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Instantiate old weight", - "1 | Amount : POLYX 5552342.355555", - "2 | Gas limit : 5", - "3 | Storage deposit limit [1/2] : POLYX 1073883469794135377910968975.381", - "3 | Storage deposit limit [2/2] : 726", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 3a83a7ff5037a23c0e43affbcc635966aa1648", - "5 | Data [2/4] : 4bf4aad5570831c098d7eaa04956dffa80bb93", - "5 | Data [3/4] : e6f18a1f496c3102ad749a5bd8d8be953c82c1", - "5 | Data [4/4] : e75595318b35bc", - "6 | Salt [1/7] : 965b7d155e8cb6a82bb929ccb41cc96beac127", - "6 | Salt [2/7] : 3eba57b670a322cd901353b196d7090b56178e", - "6 | Salt [3/7] : 08f6efc8fbae1df13ace60e6d185adb85cae01", - "6 | Salt [4/7] : 4c15b232c733ea25b96f90e9203f407d9bcabf", - "6 | Salt [5/7] : ae6f9cb64f5a00df0c6ca9bb269ee367c13113", - "6 | Salt [6/7] : 722d0c787183849ba5d93b3476a7f2fd961d26", - "6 | Salt [7/7] : 503178b044f90f0384e7bd24c1f8", - "7 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Contracts : Instantiate old weight", - "1 | Amount : POLYX 5552342.355555", - "2 | Gas limit : 5", - "3 | Storage deposit limit [1/2] : POLYX 1073883469794135377910968975.381", - "3 | Storage deposit limit [2/2] : 726", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 3a83a7ff5037a23c0e43affbcc635966aa1648", - "5 | Data [2/4] : 4bf4aad5570831c098d7eaa04956dffa80bb93", - "5 | Data [3/4] : e6f18a1f496c3102ad749a5bd8d8be953c82c1", - "5 | Data [4/4] : e75595318b35bc", - "6 | Salt [1/7] : 965b7d155e8cb6a82bb929ccb41cc96beac127", - "6 | Salt [2/7] : 3eba57b670a322cd901353b196d7090b56178e", - "6 | Salt [3/7] : 08f6efc8fbae1df13ace60e6d185adb85cae01", - "6 | Salt [4/7] : 4c15b232c733ea25b96f90e9203f407d9bcabf", - "6 | Salt [5/7] : ae6f9cb64f5a00df0c6ca9bb269ee367c13113", - "6 | Salt [6/7] : 722d0c787183849ba5d93b3476a7f2fd961d26", - "6 | Salt [7/7] : 503178b044f90f0384e7bd24c1f8", - "7 | Chain : Polymesh", - "8 | Nonce : 2339", - "9 | Tip : POLYX 1234.56789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1540, - "name": "Contracts_Instantiate_old_weight", - "blob": "2e020b63ce64c10c05c801025d6f2d6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f406301029e9d8059730a3ea1e80b4b58a6283a0745e95406cfc62ac95402888ad0e9fa835eec2f9b0c21ae892eb2e6e11014a634b5f43bf1e94dff6573c747c619291f393ad665d02f69f74b9c9b1a9db29116d1d0a4520a9735188f8ef86ecd9ba8a9798e552c6db1566d6650d70f7d8555ec65d1c21f6552fa566d1d4d0447958aeb36803aac0c206ff7943d3804ffdc241d552dbf5f5dc690b29dbf756bb8db19615f25d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Instantiate old weight", - "1 | Amount : POLYX 5552342.355555", - "2 | Gas limit : 50", - "3 | Storage deposit limit : POLYX 190.568256", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/7] : 9e9d8059730a3ea1e80b4b58a6283a0745e954", - "5 | Data [2/7] : 06cfc62ac95402888ad0e9fa835eec2f9b0c21", - "5 | Data [3/7] : ae892eb2e6e11014a634b5f43bf1e94dff6573", - "5 | Data [4/7] : c747c619291f393ad665d02f69f74b9c9b1a9d", - "5 | Data [5/7] : b29116d1d0a4520a9735188f8ef86ecd9ba8a9", - "5 | Data [6/7] : 798e552c6db1566d6650d70f7d8555ec65d1c2", - "5 | Data [7/7] : 1f6552fa566d1d4d0447958aeb36", - "6 | Salt [1/2] : 3aac0c206ff7943d3804ffdc241d552dbf5f5d", - "6 | Salt [2/2] : c690b29dbf756bb8db19615f25", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Contracts : Instantiate old weight", - "1 | Amount : POLYX 5552342.355555", - "2 | Gas limit : 50", - "3 | Storage deposit limit : POLYX 190.568256", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/7] : 9e9d8059730a3ea1e80b4b58a6283a0745e954", - "5 | Data [2/7] : 06cfc62ac95402888ad0e9fa835eec2f9b0c21", - "5 | Data [3/7] : ae892eb2e6e11014a634b5f43bf1e94dff6573", - "5 | Data [4/7] : c747c619291f393ad665d02f69f74b9c9b1a9d", - "5 | Data [5/7] : b29116d1d0a4520a9735188f8ef86ecd9ba8a9", - "5 | Data [6/7] : 798e552c6db1566d6650d70f7d8555ec65d1c2", - "5 | Data [7/7] : 1f6552fa566d1d4d0447958aeb36", - "6 | Salt [1/2] : 3aac0c206ff7943d3804ffdc241d552dbf5f5d", - "6 | Salt [2/2] : c690b29dbf756bb8db19615f25", - "7 | Chain : Polymesh", - "8 | Nonce : 2339", - "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "9 | Tip [2/2] : 3.456789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1541, - "name": "Contracts_Upload_code", - "blob": "2e030101a6d7930112b16e3b8649dcfe3a9c66cc2c34847d0dd05ad9f7d105ae3adad3d9e84cc085526559dea4a34add6b321ea04abd79fc38aad51749d93ec0031c63c8012b15506d106afd4458de6b5ff64edb00d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Upload code", - "1 | Code [1/4] : a6d7930112b16e3b8649dcfe3a9c66cc2c3484", - "1 | Code [2/4] : 7d0dd05ad9f7d105ae3adad3d9e84cc0855265", - "1 | Code [3/4] : 59dea4a34add6b321ea04abd79fc38aad51749", - "1 | Code [4/4] : d93ec0031c63c8", - "2 | Storage deposit limit [1/2] : POLYX 4448103748545592106792043649.257", - "2 | Storage deposit limit [2/2] : 493", - "3 | Determinism : Deterministic", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Contracts : Upload code", - "1 | Code [1/4] : a6d7930112b16e3b8649dcfe3a9c66cc2c3484", - "1 | Code [2/4] : 7d0dd05ad9f7d105ae3adad3d9e84cc0855265", - "1 | Code [3/4] : 59dea4a34add6b321ea04abd79fc38aad51749", - "1 | Code [4/4] : d93ec0031c63c8", - "2 | Storage deposit limit [1/2] : POLYX 4448103748545592106792043649.257", - "2 | Storage deposit limit [2/2] : 493", - "3 | Determinism : Deterministic", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1542, - "name": "Contracts_Upload_code", - "blob": "2e0301016d0908114ac84677d153d7368feda69cef573eb81308a080f038a74d25a93fef148316d9d6f23f39d32353dccc05e3e15a573a8e62a74bbe1366bf9014cce14401025d6f2d01d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Upload code", - "1 | Code [1/4] : 6d0908114ac84677d153d7368feda69cef573e", - "1 | Code [2/4] : b81308a080f038a74d25a93fef148316d9d6f2", - "1 | Code [3/4] : 3f39d32353dccc05e3e15a573a8e62a74bbe13", - "1 | Code [4/4] : 66bf9014cce144", - "2 | Storage deposit limit : POLYX 190.568256", - "3 | Determinism : AllowIndeterminism", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Contracts : Upload code", - "1 | Code [1/4] : 6d0908114ac84677d153d7368feda69cef573e", - "1 | Code [2/4] : b81308a080f038a74d25a93fef148316d9d6f2", - "1 | Code [3/4] : 3f39d32353dccc05e3e15a573a8e62a74bbe13", - "1 | Code [4/4] : 66bf9014cce144", - "2 | Storage deposit limit : POLYX 190.568256", - "3 | Determinism : AllowIndeterminism", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1543, - "name": "Contracts_Upload_code", - "blob": "2e030102965b7d155e8cb6a82bb929ccb41cc96beac1273eba57b670a322cd901353b196d7090b56178e08f6efc8fbae1df13ace60e6d185adb85cae014c15b232c733ea25b96f90e9203f407d9bcabfae6f9cb64f5a00df0c6ca9bb269ee367c13113722d0c787183849ba5d93b3476a7f2fd961d26503178b044f90f0384e7bd24c1f8012b15506d106afd4458de6b5ff64edb01d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Upload code", - "1 | Code [1/7] : 965b7d155e8cb6a82bb929ccb41cc96beac127", - "1 | Code [2/7] : 3eba57b670a322cd901353b196d7090b56178e", - "1 | Code [3/7] : 08f6efc8fbae1df13ace60e6d185adb85cae01", - "1 | Code [4/7] : 4c15b232c733ea25b96f90e9203f407d9bcabf", - "1 | Code [5/7] : ae6f9cb64f5a00df0c6ca9bb269ee367c13113", - "1 | Code [6/7] : 722d0c787183849ba5d93b3476a7f2fd961d26", - "1 | Code [7/7] : 503178b044f90f0384e7bd24c1f8", - "2 | Storage deposit limit [1/2] : POLYX 4448103748545592106792043649.257", - "2 | Storage deposit limit [2/2] : 493", - "3 | Determinism : AllowIndeterminism", - "4 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Contracts : Upload code", - "1 | Code [1/7] : 965b7d155e8cb6a82bb929ccb41cc96beac127", - "1 | Code [2/7] : 3eba57b670a322cd901353b196d7090b56178e", - "1 | Code [3/7] : 08f6efc8fbae1df13ace60e6d185adb85cae01", - "1 | Code [4/7] : 4c15b232c733ea25b96f90e9203f407d9bcabf", - "1 | Code [5/7] : ae6f9cb64f5a00df0c6ca9bb269ee367c13113", - "1 | Code [6/7] : 722d0c787183849ba5d93b3476a7f2fd961d26", - "1 | Code [7/7] : 503178b044f90f0384e7bd24c1f8", - "2 | Storage deposit limit [1/2] : POLYX 4448103748545592106792043649.257", - "2 | Storage deposit limit [2/2] : 493", - "3 | Determinism : AllowIndeterminism", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1544, - "name": "Contracts_Upload_code", - "blob": "2e0301028f485f68684be25d1a195e85f8b42aed8a3488ce1c71bd1d6399f10c8869f0283e80f26c4a12287c5ee3899c96e83379c414ae5892906f3eca7a80d642a93989ff62cd2052046cbade0a430fe0152db131367bccfb060061bd30700e6ed84becbc323880d56e25b2bb8fea9a1a22b8de3253e6083d4d304d26183733d6ef07b9012bde547c55bae064a8d95aa250f23400d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Upload code", - "1 | Code [1/7] : 8f485f68684be25d1a195e85f8b42aed8a3488", - "1 | Code [2/7] : ce1c71bd1d6399f10c8869f0283e80f26c4a12", - "1 | Code [3/7] : 287c5ee3899c96e83379c414ae5892906f3eca", - "1 | Code [4/7] : 7a80d642a93989ff62cd2052046cbade0a430f", - "1 | Code [5/7] : e0152db131367bccfb060061bd30700e6ed84b", - "1 | Code [6/7] : ecbc323880d56e25b2bb8fea9a1a22b8de3253", - "1 | Code [7/7] : e6083d4d304d26183733d6ef07b9", - "2 | Storage deposit limit [1/2] : POLYX 1073883469794135377910968975.381", - "2 | Storage deposit limit [2/2] : 726", - "3 | Determinism : Deterministic", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Contracts : Upload code", - "1 | Code [1/7] : 8f485f68684be25d1a195e85f8b42aed8a3488", - "1 | Code [2/7] : ce1c71bd1d6399f10c8869f0283e80f26c4a12", - "1 | Code [3/7] : 287c5ee3899c96e83379c414ae5892906f3eca", - "1 | Code [4/7] : 7a80d642a93989ff62cd2052046cbade0a430f", - "1 | Code [5/7] : e0152db131367bccfb060061bd30700e6ed84b", - "1 | Code [6/7] : ecbc323880d56e25b2bb8fea9a1a22b8de3253", - "1 | Code [7/7] : e6083d4d304d26183733d6ef07b9", - "2 | Storage deposit limit [1/2] : POLYX 1073883469794135377910968975.381", - "2 | Storage deposit limit [2/2] : 726", - "3 | Determinism : Deterministic", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1545, - "name": "Contracts_Upload_code", - "blob": "2e030102965b7d155e8cb6a82bb929ccb41cc96beac1273eba57b670a322cd901353b196d7090b56178e08f6efc8fbae1df13ace60e6d185adb85cae014c15b232c733ea25b96f90e9203f407d9bcabfae6f9cb64f5a00df0c6ca9bb269ee367c13113722d0c787183849ba5d93b3476a7f2fd961d26503178b044f90f0384e7bd24c1f8012b15506d106afd4458de6b5ff64edb00d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Upload code", - "1 | Code [1/7] : 965b7d155e8cb6a82bb929ccb41cc96beac127", - "1 | Code [2/7] : 3eba57b670a322cd901353b196d7090b56178e", - "1 | Code [3/7] : 08f6efc8fbae1df13ace60e6d185adb85cae01", - "1 | Code [4/7] : 4c15b232c733ea25b96f90e9203f407d9bcabf", - "1 | Code [5/7] : ae6f9cb64f5a00df0c6ca9bb269ee367c13113", - "1 | Code [6/7] : 722d0c787183849ba5d93b3476a7f2fd961d26", - "1 | Code [7/7] : 503178b044f90f0384e7bd24c1f8", - "2 | Storage deposit limit [1/2] : POLYX 4448103748545592106792043649.257", - "2 | Storage deposit limit [2/2] : 493", - "3 | Determinism : Deterministic", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Contracts : Upload code", - "1 | Code [1/7] : 965b7d155e8cb6a82bb929ccb41cc96beac127", - "1 | Code [2/7] : 3eba57b670a322cd901353b196d7090b56178e", - "1 | Code [3/7] : 08f6efc8fbae1df13ace60e6d185adb85cae01", - "1 | Code [4/7] : 4c15b232c733ea25b96f90e9203f407d9bcabf", - "1 | Code [5/7] : ae6f9cb64f5a00df0c6ca9bb269ee367c13113", - "1 | Code [6/7] : 722d0c787183849ba5d93b3476a7f2fd961d26", - "1 | Code [7/7] : 503178b044f90f0384e7bd24c1f8", - "2 | Storage deposit limit [1/2] : POLYX 4448103748545592106792043649.257", - "2 | Storage deposit limit [2/2] : 493", - "3 | Determinism : Deterministic", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1546, - "name": "Contracts_Remove_code", - "blob": "2e046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Remove code", - "1 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Contracts : Remove code", - "1 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1547, - "name": "Contracts_Remove_code", - "blob": "2e046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Remove code", - "1 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Contracts : Remove code", - "1 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1548, - "name": "Contracts_Remove_code", - "blob": "2e046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Remove code", - "1 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Contracts : Remove code", - "1 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1549, - "name": "Contracts_Remove_code", - "blob": "2e046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Remove code", - "1 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Contracts : Remove code", - "1 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1550, - "name": "Contracts_Remove_code", - "blob": "2e046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Remove code", - "1 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ], - "output_expert": [ - "0 | Contracts : Remove code", - "1 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1551, - "name": "Contracts_Set_code", - "blob": "2e0502809a2cafb174b302f0f381d2705358111a9c905c258e089eb940a3046ae641e43f6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Set code", - "1 | Dest [1/2] : 9a2cafb174b302f0f381d2705358111a9c905c", - "1 | Dest [2/2] : 258e089eb940a3046ae641e43f", - "2 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "2 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Contracts : Set code", - "1 | Dest [1/2] : 9a2cafb174b302f0f381d2705358111a9c905c", - "1 | Dest [2/2] : 258e089eb940a3046ae641e43f", - "2 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "2 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1552, - "name": "Contracts_Set_code", - "blob": "2e05031b5bf215374493b82427331e7a21c5dc7390a7f50938f6209701aa7fefa97f976fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Set code", - "1 | Dest [1/2] : 1b5bf215374493b82427331e7a21c5dc7390a7", - "1 | Dest [2/2] : f50938f6209701aa7fefa97f97", - "2 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "2 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Contracts : Set code", - "1 | Dest [1/2] : 1b5bf215374493b82427331e7a21c5dc7390a7", - "1 | Dest [2/2] : f50938f6209701aa7fefa97f97", - "2 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "2 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1553, - "name": "Contracts_Set_code", - "blob": "2e0500cad4a18908329105afed699a70c486711444defbe185d1ab764b4afc6db12e526fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Set code", - "1 | Dest [1/2] : 2H2rwUD6mL4v1G3XQBkZJMxvPY74a6kFrWwyf2", - "1 | Dest [2/2] : 78dcRUPtaj", - "2 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "2 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Contracts : Set code", - "1 | Dest [1/2] : 2H2rwUD6mL4v1G3XQBkZJMxvPY74a6kFrWwyf2", - "1 | Dest [2/2] : 78dcRUPtaj", - "2 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "2 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1554, - "name": "Contracts_Set_code", - "blob": "2e0504c1db1bc1e1aa732243490c29461a3e63b91dd88a6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Set code", - "1 | Dest [1/2] : c1db1bc1e1aa732243490c29461a3e63b91dd8", - "1 | Dest [2/2] : 8a", - "2 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "2 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Contracts : Set code", - "1 | Dest [1/2] : c1db1bc1e1aa732243490c29461a3e63b91dd8", - "1 | Dest [2/2] : 8a", - "2 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "2 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1555, - "name": "Contracts_Set_code", - "blob": "2e0500cad4a18908329105afed699a70c486711444defbe185d1ab764b4afc6db12e526fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Set code", - "1 | Dest [1/2] : 2H2rwUD6mL4v1G3XQBkZJMxvPY74a6kFrWwyf2", - "1 | Dest [2/2] : 78dcRUPtaj", - "2 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "2 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Contracts : Set code", - "1 | Dest [1/2] : 2H2rwUD6mL4v1G3XQBkZJMxvPY74a6kFrWwyf2", - "1 | Dest [2/2] : 78dcRUPtaj", - "2 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "2 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1556, - "name": "Contracts_Call", - "blob": "2e06031b5bf215374493b82427331e7a21c5dc7390a7f50938f6209701aa7fefa97f9703d2029649c1690f51da19d99ba97201025d6f2d0101a6d7930112b16e3b8649dcfe3a9c66cc2c34847d0dd05ad9f7d105ae3adad3d9e84cc085526559dea4a34add6b321ea04abd79fc38aad51749d93ec0031c63c8d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Call", - "1 | Dest [1/2] : 1b5bf215374493b82427331e7a21c5dc7390a7", - "1 | Dest [2/2] : f50938f6209701aa7fefa97f97", - "2 | Amount : POLYX 1234.56789", - "3 | Gas limit [1/2] : 6768", - "3 | Gas limit [2/2] : 32274634172389969", - "4 | Storage deposit limit : POLYX 190.568256", - "5 | Data [1/4] : a6d7930112b16e3b8649dcfe3a9c66cc2c3484", - "5 | Data [2/4] : 7d0dd05ad9f7d105ae3adad3d9e84cc0855265", - "5 | Data [3/4] : 59dea4a34add6b321ea04abd79fc38aad51749", - "5 | Data [4/4] : d93ec0031c63c8" - ], - "output_expert": [ - "0 | Contracts : Call", - "1 | Dest [1/2] : 1b5bf215374493b82427331e7a21c5dc7390a7", - "1 | Dest [2/2] : f50938f6209701aa7fefa97f97", - "2 | Amount : POLYX 1234.56789", - "3 | Gas limit [1/2] : 6768", - "3 | Gas limit [2/2] : 32274634172389969", - "4 | Storage deposit limit : POLYX 190.568256", - "5 | Data [1/4] : a6d7930112b16e3b8649dcfe3a9c66cc2c3484", - "5 | Data [2/4] : 7d0dd05ad9f7d105ae3adad3d9e84cc0855265", - "5 | Data [3/4] : 59dea4a34add6b321ea04abd79fc38aad51749", - "5 | Data [4/4] : d93ec0031c63c8", - "6 | Chain : Polymesh", - "7 | Nonce : 2339", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1557, - "name": "Contracts_Call", - "blob": "2e0604c1db1bc1e1aa732243490c29461a3e63b91dd88a00c1690f51da19d99ba97201025d6f2d01013a83a7ff5037a23c0e43affbcc635966aa16484bf4aad5570831c098d7eaa04956dffa80bb93e6f18a1f496c3102ad749a5bd8d8be953c82c1e75595318b35bcd5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Call", - "1 | Dest [1/2] : c1db1bc1e1aa732243490c29461a3e63b91dd8", - "1 | Dest [2/2] : 8a", - "2 | Amount : POLYX 0.0", - "3 | Gas limit [1/2] : 6768", - "3 | Gas limit [2/2] : 32274634172389969", - "4 | Storage deposit limit : POLYX 190.568256", - "5 | Data [1/4] : 3a83a7ff5037a23c0e43affbcc635966aa1648", - "5 | Data [2/4] : 4bf4aad5570831c098d7eaa04956dffa80bb93", - "5 | Data [3/4] : e6f18a1f496c3102ad749a5bd8d8be953c82c1", - "5 | Data [4/4] : e75595318b35bc", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Contracts : Call", - "1 | Dest [1/2] : c1db1bc1e1aa732243490c29461a3e63b91dd8", - "1 | Dest [2/2] : 8a", - "2 | Amount : POLYX 0.0", - "3 | Gas limit [1/2] : 6768", - "3 | Gas limit [2/2] : 32274634172389969", - "4 | Storage deposit limit : POLYX 190.568256", - "5 | Data [1/4] : 3a83a7ff5037a23c0e43affbcc635966aa1648", - "5 | Data [2/4] : 4bf4aad5570831c098d7eaa04956dffa80bb93", - "5 | Data [3/4] : e6f18a1f496c3102ad749a5bd8d8be953c82c1", - "5 | Data [4/4] : e75595318b35bc", - "6 | Chain : Polymesh", - "7 | Nonce : 0", - "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "8 | Tip [2/2] : 3.456789", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Polymeshcontracts : Instantiate with code perms", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 49320013", + "2 | Gas limit [2/2] : 34", + "3 | Storage deposit limit [1/2] : POLYX 12345678901234567890123456789012", + "3 | Storage deposit limit [2/2] : 3.456789", + "4 | Code [1/4] : 12", + "4 | Code [2/4] : 41", + "4 | Code [3/4] : 52", + "4 | Code [4/4] : 53", + "5 | Data [1/4] : 12", + "5 | Data [2/4] : 41", + "5 | Data [3/4] : 52", + "5 | Data [4/4] : 53", + "6 | Salt [1/4] : 12", + "6 | Salt [2/4] : 41", + "6 | Salt [3/4] : 52", + "6 | Salt [4/4] : 53", + "7 | Perms [1/3] : Whole", + "7 | Perms [2/3] : Whole", + "7 | Perms [3/3] : Whole", + "8 | Chain : Polymesh", + "9 | Nonce : 50283", + "10 | Tip : POLYX 0.000987", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1558, - "name": "Contracts_Call", - "blob": "2e0604c1db1bc1e1aa732243490c29461a3e63b91dd88a03d2029649c1690f51da19d99ba97201025d6f2d80aa6a3cf21b1789d31250ee845cd2569fd46d8e0eaa6aa1ae8ce3429cbe2e02f1d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1499, + "name": "Polymeshcontracts_Instantiate_with_code_perms", + "blob": "2f00fd56e5cad3287b54b2352f703dbeafc03641c20b8801158139ae28a3dfaac5fe1560a5e9e05c100e2a0c49100d0c1323100e2a0c49000000d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Contracts : Call", - "1 | Dest [1/2] : c1db1bc1e1aa732243490c29461a3e63b91dd8", - "1 | Dest [2/2] : 8a", - "2 | Amount : POLYX 1234.56789", - "3 | Gas limit [1/2] : 6768", - "3 | Gas limit [2/2] : 32274634172389969", - "4 | Storage deposit limit : POLYX 190.568256", - "5 | Data [1/2] : aa6a3cf21b1789d31250ee845cd2569fd46d8e", - "5 | Data [2/2] : 0eaa6aa1ae8ce3429cbe2e02f1", - "6 | Tip : POLYX 55.555555" + "0 | Polymeshcontracts : Instantiate with code perms", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 49320013", + "2 | Gas limit [2/2] : 34", + "3 | Storage deposit limit [1/2] : POLYX 12345678901234567890123456789012", + "3 | Storage deposit limit [2/2] : 3.456789", + "4 | Code [1/4] : 14", + "4 | Code [2/4] : 42", + "4 | Code [3/4] : 12", + "4 | Code [4/4] : 73", + "5 | Data [1/4] : 13", + "5 | Data [2/4] : 12", + "5 | Data [3/4] : 19", + "5 | Data [4/4] : 35", + "6 | Salt [1/4] : 14", + "6 | Salt [2/4] : 42", + "6 | Salt [3/4] : 12", + "6 | Salt [4/4] : 73", + "7 | Perms [1/3] : Whole", + "7 | Perms [2/3] : Whole", + "7 | Perms [3/3] : Whole", + "8 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Contracts : Call", - "1 | Dest [1/2] : c1db1bc1e1aa732243490c29461a3e63b91dd8", - "1 | Dest [2/2] : 8a", - "2 | Amount : POLYX 1234.56789", - "3 | Gas limit [1/2] : 6768", - "3 | Gas limit [2/2] : 32274634172389969", - "4 | Storage deposit limit : POLYX 190.568256", - "5 | Data [1/2] : aa6a3cf21b1789d31250ee845cd2569fd46d8e", - "5 | Data [2/2] : 0eaa6aa1ae8ce3429cbe2e02f1", - "6 | Chain : Polymesh", - "7 | Nonce : 0", - "8 | Tip : POLYX 55.555555", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Polymeshcontracts : Instantiate with code perms", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 49320013", + "2 | Gas limit [2/2] : 34", + "3 | Storage deposit limit [1/2] : POLYX 12345678901234567890123456789012", + "3 | Storage deposit limit [2/2] : 3.456789", + "4 | Code [1/4] : 14", + "4 | Code [2/4] : 42", + "4 | Code [3/4] : 12", + "4 | Code [4/4] : 73", + "5 | Data [1/4] : 13", + "5 | Data [2/4] : 12", + "5 | Data [3/4] : 19", + "5 | Data [4/4] : 35", + "6 | Salt [1/4] : 14", + "6 | Salt [2/4] : 42", + "6 | Salt [3/4] : 12", + "6 | Salt [4/4] : 73", + "7 | Perms [1/3] : Whole", + "7 | Perms [2/3] : Whole", + "7 | Perms [3/3] : Whole", + "8 | Chain : Polymesh", + "9 | Nonce : 2339", + "10 | Tip : POLYX 55.555555", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1559, - "name": "Contracts_Call", - "blob": "2e0602809a2cafb174b302f0f381d2705358111a9c905c258e089eb940a3046ae641e43f33158139ae28a3dfaac5fe1560a5e9e05c139f386be0e29147ce13d5cc2b675623e52e01025d6f2d80aa6a3cf21b1789d31250ee845cd2569fd46d8e0eaa6aa1ae8ce3429cbe2e02f1d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1500, + "name": "Polymeshcontracts_Instantiate_with_code_perms", + "blob": "2f00fd56e5cad3287b54b2352f703dbeafc03641c20b880163ce64c10c0500000000000000000000100c293435100e2a0c4910200b200b0104417373657449442d31323334353637380104043001042c446973706174636858595a0104c98f334f51562273bd98198fd956167d4ecd0f08341dee6ae8352cf6e94509920140e2010000000000d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Contracts : Call", - "1 | Dest [1/2] : 9a2cafb174b302f0f381d2705358111a9c905c", - "1 | Dest [2/2] : 258e089eb940a3046ae641e43f", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789", - "3 | Gas limit [1/2] : 14864009498773371039", - "3 | Gas limit [2/2] : 3379145949416508629", - "4 | Storage deposit limit : POLYX 190.568256", - "5 | Data [1/2] : aa6a3cf21b1789d31250ee845cd2569fd46d8e", - "5 | Data [2/2] : 0eaa6aa1ae8ce3429cbe2e02f1", - "6 | Tip : POLYX 1234.56789" + "0 | Polymeshcontracts : Instantiate with code perms", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 49320013", + "2 | Gas limit [2/2] : 34", + "3 | Storage deposit limit : POLYX 5552342.355555", + "4 | Code [1/4] : 12", + "4 | Code [2/4] : 41", + "4 | Code [3/4] : 52", + "4 | Code [4/4] : 53", + "5 | Data [1/4] : 14", + "5 | Data [2/4] : 42", + "5 | Data [3/4] : 12", + "5 | Data [4/4] : 73", + "6 | Salt [1/4] : 32", + "6 | Salt [2/4] : 11", + "6 | Salt [3/4] : 32", + "6 | Salt [4/4] : 11", + "7 | Perms [1/10] : These", + "7 | Perms [2/10] : AssetID-12345678", + "7 | Perms [3/10] : These", + "7 | Perms [4/10] : 0", + "7 | Perms [5/10] : These", + "7 | Perms [6/10] : DispatchXYZ", + "7 | Perms [7/10] : These", + "7 | Perms [8/10] : c98f334f51562273bd98198fd956167d4ecd0f", + "7 | Perms [9/10] : 08341dee6ae8352cf6e9450992", + "7 | Perms [10/10] : 123456", + "8 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Contracts : Call", - "1 | Dest [1/2] : 9a2cafb174b302f0f381d2705358111a9c905c", - "1 | Dest [2/2] : 258e089eb940a3046ae641e43f", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789", - "3 | Gas limit [1/2] : 14864009498773371039", - "3 | Gas limit [2/2] : 3379145949416508629", - "4 | Storage deposit limit : POLYX 190.568256", - "5 | Data [1/2] : aa6a3cf21b1789d31250ee845cd2569fd46d8e", - "5 | Data [2/2] : 0eaa6aa1ae8ce3429cbe2e02f1", - "6 | Chain : Polymesh", - "7 | Nonce : 1", - "8 | Tip : POLYX 1234.56789", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Polymeshcontracts : Instantiate with code perms", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 49320013", + "2 | Gas limit [2/2] : 34", + "3 | Storage deposit limit : POLYX 5552342.355555", + "4 | Code [1/4] : 12", + "4 | Code [2/4] : 41", + "4 | Code [3/4] : 52", + "4 | Code [4/4] : 53", + "5 | Data [1/4] : 14", + "5 | Data [2/4] : 42", + "5 | Data [3/4] : 12", + "5 | Data [4/4] : 73", + "6 | Salt [1/4] : 32", + "6 | Salt [2/4] : 11", + "6 | Salt [3/4] : 32", + "6 | Salt [4/4] : 11", + "7 | Perms [1/10] : These", + "7 | Perms [2/10] : AssetID-12345678", + "7 | Perms [3/10] : These", + "7 | Perms [4/10] : 0", + "7 | Perms [5/10] : These", + "7 | Perms [6/10] : DispatchXYZ", + "7 | Perms [7/10] : These", + "7 | Perms [8/10] : c98f334f51562273bd98198fd956167d4ecd0f", + "7 | Perms [9/10] : 08341dee6ae8352cf6e9450992", + "7 | Perms [10/10] : 123456", + "8 | Chain : Polymesh", + "9 | Nonce : 100", + "10 | Tip : POLYX 5552342.355555", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1560, - "name": "Contracts_Call", - "blob": "2e0600cad4a18908329105afed699a70c486711444defbe185d1ab764b4afc6db12e5200139f386be0e29147ce13d5cc2b675623e52e012bde547c55bae064a8d95aa250f2340102965b7d155e8cb6a82bb929ccb41cc96beac1273eba57b670a322cd901353b196d7090b56178e08f6efc8fbae1df13ace60e6d185adb85cae014c15b232c733ea25b96f90e9203f407d9bcabfae6f9cb64f5a00df0c6ca9bb269ee367c13113722d0c787183849ba5d93b3476a7f2fd961d26503178b044f90f0384e7bd24c1f8d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1501, + "name": "Polymeshcontracts_Instantiate_with_hash_perms", + "blob": "2f01fd56e5cad3287b54b2352f703dbeafc03641c20b8801158139ae28a3dfaac5fe1560a5e9e05c885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a100c293435100d0c13230104417373657449442d31323334353637380104043001042c446973706174636858595a0104c98f334f51562273bd98198fd956167d4ecd0f08341dee6ae8352cf6e94509920140e2010000000000d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Contracts : Call", - "1 | Dest [1/2] : 2H2rwUD6mL4v1G3XQBkZJMxvPY74a6kFrWwyf2", - "1 | Dest [2/2] : 78dcRUPtaj", - "2 | Amount : POLYX 0.0", - "3 | Gas limit [1/2] : 14864009498773371039", - "3 | Gas limit [2/2] : 3379145949416508629", - "4 | Storage deposit limit [1/2] : POLYX 1073883469794135377910968975.381", - "4 | Storage deposit limit [2/2] : 726", - "5 | Data [1/7] : 965b7d155e8cb6a82bb929ccb41cc96beac127", - "5 | Data [2/7] : 3eba57b670a322cd901353b196d7090b56178e", - "5 | Data [3/7] : 08f6efc8fbae1df13ace60e6d185adb85cae01", - "5 | Data [4/7] : 4c15b232c733ea25b96f90e9203f407d9bcabf", - "5 | Data [5/7] : ae6f9cb64f5a00df0c6ca9bb269ee367c13113", - "5 | Data [6/7] : 722d0c787183849ba5d93b3476a7f2fd961d26", - "5 | Data [7/7] : 503178b044f90f0384e7bd24c1f8", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789" + "0 | Polymeshcontracts : Instantiate with hash perms", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 49320013", + "2 | Gas limit [2/2] : 34", + "3 | Storage deposit limit [1/2] : POLYX 12345678901234567890123456789012", + "3 | Storage deposit limit [2/2] : 3.456789", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "5 | Data [1/4] : 12", + "5 | Data [2/4] : 41", + "5 | Data [3/4] : 52", + "5 | Data [4/4] : 53", + "6 | Salt [1/4] : 13", + "6 | Salt [2/4] : 12", + "6 | Salt [3/4] : 19", + "6 | Salt [4/4] : 35", + "7 | Perms [1/10] : These", + "7 | Perms [2/10] : AssetID-12345678", + "7 | Perms [3/10] : These", + "7 | Perms [4/10] : 0", + "7 | Perms [5/10] : These", + "7 | Perms [6/10] : DispatchXYZ", + "7 | Perms [7/10] : These", + "7 | Perms [8/10] : c98f334f51562273bd98198fd956167d4ecd0f", + "7 | Perms [9/10] : 08341dee6ae8352cf6e9450992", + "7 | Perms [10/10] : 123456", + "8 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Contracts : Call", - "1 | Dest [1/2] : 2H2rwUD6mL4v1G3XQBkZJMxvPY74a6kFrWwyf2", - "1 | Dest [2/2] : 78dcRUPtaj", - "2 | Amount : POLYX 0.0", - "3 | Gas limit [1/2] : 14864009498773371039", - "3 | Gas limit [2/2] : 3379145949416508629", - "4 | Storage deposit limit [1/2] : POLYX 1073883469794135377910968975.381", - "4 | Storage deposit limit [2/2] : 726", - "5 | Data [1/7] : 965b7d155e8cb6a82bb929ccb41cc96beac127", - "5 | Data [2/7] : 3eba57b670a322cd901353b196d7090b56178e", - "5 | Data [3/7] : 08f6efc8fbae1df13ace60e6d185adb85cae01", - "5 | Data [4/7] : 4c15b232c733ea25b96f90e9203f407d9bcabf", - "5 | Data [5/7] : ae6f9cb64f5a00df0c6ca9bb269ee367c13113", - "5 | Data [6/7] : 722d0c787183849ba5d93b3476a7f2fd961d26", - "5 | Data [7/7] : 503178b044f90f0384e7bd24c1f8", - "6 | Chain : Polymesh", - "7 | Nonce : 50283", - "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "8 | Tip [2/2] : 3.456789", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Polymeshcontracts : Instantiate with hash perms", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 49320013", + "2 | Gas limit [2/2] : 34", + "3 | Storage deposit limit [1/2] : POLYX 12345678901234567890123456789012", + "3 | Storage deposit limit [2/2] : 3.456789", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "5 | Data [1/4] : 12", + "5 | Data [2/4] : 41", + "5 | Data [3/4] : 52", + "5 | Data [4/4] : 53", + "6 | Salt [1/4] : 13", + "6 | Salt [2/4] : 12", + "6 | Salt [3/4] : 19", + "6 | Salt [4/4] : 35", + "7 | Perms [1/10] : These", + "7 | Perms [2/10] : AssetID-12345678", + "7 | Perms [3/10] : These", + "7 | Perms [4/10] : 0", + "7 | Perms [5/10] : These", + "7 | Perms [6/10] : DispatchXYZ", + "7 | Perms [7/10] : These", + "7 | Perms [8/10] : c98f334f51562273bd98198fd956167d4ecd0f", + "7 | Perms [9/10] : 08341dee6ae8352cf6e9450992", + "7 | Perms [10/10] : 123456", + "8 | Chain : Polymesh", + "9 | Nonce : 50283", + "10 | Tip : POLYX 55.555555", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1561, - "name": "Contracts_Instantiate_with_code", - "blob": "2e0733158139ae28a3dfaac5fe1560a5e9e05cc1c268012b15506d106afd4458de6b5ff64edb80aa6a3cf21b1789d31250ee845cd2569fd46d8e0eaa6aa1ae8ce3429cbe2e02f101029e9d8059730a3ea1e80b4b58a6283a0745e95406cfc62ac95402888ad0e9fa835eec2f9b0c21ae892eb2e6e11014a634b5f43bf1e94dff6573c747c619291f393ad665d02f69f74b9c9b1a9db29116d1d0a4520a9735188f8ef86ecd9ba8a9798e552c6db1566d6650d70f7d8555ec65d1c21f6552fa566d1d4d0447958aeb3601013a83a7ff5037a23c0e43affbcc635966aa16484bf4aad5570831c098d7eaa04956dffa80bb93e6f18a1f496c3102ad749a5bd8d8be953c82c1e75595318b35bcd503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1502, + "name": "Polymeshcontracts_Instantiate_with_hash_perms", + "blob": "2f01fd56e5cad3287b54b2352f703dbeafc013ebd18da2a0682bd213e3b1c6f54a741ea901db030000000000000000000000000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a10200b200b100c2934350104417373657449442d31323334353637380104043001042c446973706174636858595a0104c98f334f51562273bd98198fd956167d4ecd0f08341dee6ae8352cf6e94509920140e2010000000000d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Contracts : Instantiate with code", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit [1/2] : POLYX 4448103748545592106792043649.257", - "3 | Storage deposit limit [2/2] : 493", - "4 | Code [1/2] : aa6a3cf21b1789d31250ee845cd2569fd46d8e", - "4 | Code [2/2] : 0eaa6aa1ae8ce3429cbe2e02f1", - "5 | Data [1/7] : 9e9d8059730a3ea1e80b4b58a6283a0745e954", - "5 | Data [2/7] : 06cfc62ac95402888ad0e9fa835eec2f9b0c21", - "5 | Data [3/7] : ae892eb2e6e11014a634b5f43bf1e94dff6573", - "5 | Data [4/7] : c747c619291f393ad665d02f69f74b9c9b1a9d", - "5 | Data [5/7] : b29116d1d0a4520a9735188f8ef86ecd9ba8a9", - "5 | Data [6/7] : 798e552c6db1566d6650d70f7d8555ec65d1c2", - "5 | Data [7/7] : 1f6552fa566d1d4d0447958aeb36", - "6 | Salt [1/4] : 3a83a7ff5037a23c0e43affbcc635966aa1648", - "6 | Salt [2/4] : 4bf4aad5570831c098d7eaa04956dffa80bb93", - "6 | Salt [3/4] : e6f18a1f496c3102ad749a5bd8d8be953c82c1", - "6 | Salt [4/4] : e75595318b35bc", - "7 | Tip : POLYX 0.000987" + "0 | Polymeshcontracts : Instantiate with hash perms", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 15144313211094684139", + "2 | Gas limit [2/2] : 12186305507010982371", + "3 | Storage deposit limit : POLYX 0.000987", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "5 | Data [1/4] : 32", + "5 | Data [2/4] : 11", + "5 | Data [3/4] : 32", + "5 | Data [4/4] : 11", + "6 | Salt [1/4] : 12", + "6 | Salt [2/4] : 41", + "6 | Salt [3/4] : 52", + "6 | Salt [4/4] : 53", + "7 | Perms [1/10] : These", + "7 | Perms [2/10] : AssetID-12345678", + "7 | Perms [3/10] : These", + "7 | Perms [4/10] : 0", + "7 | Perms [5/10] : These", + "7 | Perms [6/10] : DispatchXYZ", + "7 | Perms [7/10] : These", + "7 | Perms [8/10] : c98f334f51562273bd98198fd956167d4ecd0f", + "7 | Perms [9/10] : 08341dee6ae8352cf6e9450992", + "7 | Perms [10/10] : 123456", + "8 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Contracts : Instantiate with code", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit [1/2] : POLYX 4448103748545592106792043649.257", - "3 | Storage deposit limit [2/2] : 493", - "4 | Code [1/2] : aa6a3cf21b1789d31250ee845cd2569fd46d8e", - "4 | Code [2/2] : 0eaa6aa1ae8ce3429cbe2e02f1", - "5 | Data [1/7] : 9e9d8059730a3ea1e80b4b58a6283a0745e954", - "5 | Data [2/7] : 06cfc62ac95402888ad0e9fa835eec2f9b0c21", - "5 | Data [3/7] : ae892eb2e6e11014a634b5f43bf1e94dff6573", - "5 | Data [4/7] : c747c619291f393ad665d02f69f74b9c9b1a9d", - "5 | Data [5/7] : b29116d1d0a4520a9735188f8ef86ecd9ba8a9", - "5 | Data [6/7] : 798e552c6db1566d6650d70f7d8555ec65d1c2", - "5 | Data [7/7] : 1f6552fa566d1d4d0447958aeb36", - "6 | Salt [1/4] : 3a83a7ff5037a23c0e43affbcc635966aa1648", - "6 | Salt [2/4] : 4bf4aad5570831c098d7eaa04956dffa80bb93", - "6 | Salt [3/4] : e6f18a1f496c3102ad749a5bd8d8be953c82c1", - "6 | Salt [4/4] : e75595318b35bc", - "7 | Chain : Polymesh", - "8 | Nonce : 1", - "9 | Tip : POLYX 0.000987", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Polymeshcontracts : Instantiate with hash perms", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 15144313211094684139", + "2 | Gas limit [2/2] : 12186305507010982371", + "3 | Storage deposit limit : POLYX 0.000987", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "5 | Data [1/4] : 32", + "5 | Data [2/4] : 11", + "5 | Data [3/4] : 32", + "5 | Data [4/4] : 11", + "6 | Salt [1/4] : 12", + "6 | Salt [2/4] : 41", + "6 | Salt [3/4] : 52", + "6 | Salt [4/4] : 53", + "7 | Perms [1/10] : These", + "7 | Perms [2/10] : AssetID-12345678", + "7 | Perms [3/10] : These", + "7 | Perms [4/10] : 0", + "7 | Perms [5/10] : These", + "7 | Perms [6/10] : DispatchXYZ", + "7 | Perms [7/10] : These", + "7 | Perms [8/10] : c98f334f51562273bd98198fd956167d4ecd0f", + "7 | Perms [9/10] : 08341dee6ae8352cf6e9450992", + "7 | Perms [10/10] : 123456", + "8 | Chain : Polymesh", + "9 | Nonce : 50283", + "10 | Tip : POLYX 1234.56789", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1562, - "name": "Contracts_Instantiate_with_code", - "blob": "2e078ed73e0dc1c26801025d6f2d80aa6a3cf21b1789d31250ee845cd2569fd46d8e0eaa6aa1ae8ce3429cbe2e02f101013a83a7ff5037a23c0e43affbcc635966aa16484bf4aad5570831c098d7eaa04956dffa80bb93e6f18a1f496c3102ad749a5bd8d8be953c82c1e75595318b35bc0101a6d7930112b16e3b8649dcfe3a9c66cc2c34847d0dd05ad9f7d105ae3adad3d9e84cc085526559dea4a34add6b321ea04abd79fc38aad51749d93ec0031c63c8d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1503, + "name": "Polymeshcontracts_Instantiate_with_hash_perms", + "blob": "2f01fd56e5cad3287b54b2352f703dbeafc013ebd18da2a0682bd213e3b1c6f54a741ea901d2029649000000000000000000000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a100d0c1323100c2934350104417373657449442d31323334353637380104043001042c446973706174636858595a0104c98f334f51562273bd98198fd956167d4ecd0f08341dee6ae8352cf6e94509920140e2010000000000d5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Contracts : Instantiate with code", - "1 | Amount : POLYX 55.555555", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit : POLYX 190.568256", - "4 | Code [1/2] : aa6a3cf21b1789d31250ee845cd2569fd46d8e", - "4 | Code [2/2] : 0eaa6aa1ae8ce3429cbe2e02f1", - "5 | Data [1/4] : 3a83a7ff5037a23c0e43affbcc635966aa1648", - "5 | Data [2/4] : 4bf4aad5570831c098d7eaa04956dffa80bb93", - "5 | Data [3/4] : e6f18a1f496c3102ad749a5bd8d8be953c82c1", - "5 | Data [4/4] : e75595318b35bc", - "6 | Salt [1/4] : a6d7930112b16e3b8649dcfe3a9c66cc2c3484", - "6 | Salt [2/4] : 7d0dd05ad9f7d105ae3adad3d9e84cc0855265", - "6 | Salt [3/4] : 59dea4a34add6b321ea04abd79fc38aad51749", - "6 | Salt [4/4] : d93ec0031c63c8", - "7 | Tip : POLYX 1234.56789" + "0 | Polymeshcontracts : Instantiate with hash perms", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 15144313211094684139", + "2 | Gas limit [2/2] : 12186305507010982371", + "3 | Storage deposit limit : POLYX 1234.56789", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "5 | Data [1/4] : 13", + "5 | Data [2/4] : 12", + "5 | Data [3/4] : 19", + "5 | Data [4/4] : 35", + "6 | Salt [1/4] : 12", + "6 | Salt [2/4] : 41", + "6 | Salt [3/4] : 52", + "6 | Salt [4/4] : 53", + "7 | Perms [1/10] : These", + "7 | Perms [2/10] : AssetID-12345678", + "7 | Perms [3/10] : These", + "7 | Perms [4/10] : 0", + "7 | Perms [5/10] : These", + "7 | Perms [6/10] : DispatchXYZ", + "7 | Perms [7/10] : These", + "7 | Perms [8/10] : c98f334f51562273bd98198fd956167d4ecd0f", + "7 | Perms [9/10] : 08341dee6ae8352cf6e9450992", + "7 | Perms [10/10] : 123456", + "8 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Contracts : Instantiate with code", - "1 | Amount : POLYX 55.555555", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit : POLYX 190.568256", - "4 | Code [1/2] : aa6a3cf21b1789d31250ee845cd2569fd46d8e", - "4 | Code [2/2] : 0eaa6aa1ae8ce3429cbe2e02f1", - "5 | Data [1/4] : 3a83a7ff5037a23c0e43affbcc635966aa1648", - "5 | Data [2/4] : 4bf4aad5570831c098d7eaa04956dffa80bb93", - "5 | Data [3/4] : e6f18a1f496c3102ad749a5bd8d8be953c82c1", - "5 | Data [4/4] : e75595318b35bc", - "6 | Salt [1/4] : a6d7930112b16e3b8649dcfe3a9c66cc2c3484", - "6 | Salt [2/4] : 7d0dd05ad9f7d105ae3adad3d9e84cc0855265", - "6 | Salt [3/4] : 59dea4a34add6b321ea04abd79fc38aad51749", - "6 | Salt [4/4] : d93ec0031c63c8", - "7 | Chain : Polymesh", - "8 | Nonce : 1", - "9 | Tip : POLYX 1234.56789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Polymeshcontracts : Instantiate with hash perms", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 15144313211094684139", + "2 | Gas limit [2/2] : 12186305507010982371", + "3 | Storage deposit limit : POLYX 1234.56789", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "5 | Data [1/4] : 13", + "5 | Data [2/4] : 12", + "5 | Data [3/4] : 19", + "5 | Data [4/4] : 35", + "6 | Salt [1/4] : 12", + "6 | Salt [2/4] : 41", + "6 | Salt [3/4] : 52", + "6 | Salt [4/4] : 53", + "7 | Perms [1/10] : These", + "7 | Perms [2/10] : AssetID-12345678", + "7 | Perms [3/10] : These", + "7 | Perms [4/10] : 0", + "7 | Perms [5/10] : These", + "7 | Perms [6/10] : DispatchXYZ", + "7 | Perms [7/10] : These", + "7 | Perms [8/10] : c98f334f51562273bd98198fd956167d4ecd0f", + "7 | Perms [9/10] : 08341dee6ae8352cf6e9450992", + "7 | Perms [10/10] : 123456", + "8 | Chain : Polymesh", + "9 | Nonce : 2339", + "10 | Tip : POLYX 5552342.355555", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1563, - "name": "Contracts_Instantiate_with_code", - "blob": "2e0700c1690f51da19d99ba97201025d6f2d01013a83a7ff5037a23c0e43affbcc635966aa16484bf4aad5570831c098d7eaa04956dffa80bb93e6f18a1f496c3102ad749a5bd8d8be953c82c1e75595318b35bc803aac0c206ff7943d3804ffdc241d552dbf5f5dc690b29dbf756bb8db19615f2580aa6a3cf21b1789d31250ee845cd2569fd46d8e0eaa6aa1ae8ce3429cbe2e02f1d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1504, + "name": "Polymeshcontracts_Instantiate_with_hash_perms", + "blob": "2f01fd56e5cad3287b54b2352f703dbeafc03641c20b8801158139ae28a3dfaac5fe1560a5e9e05c885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a10200b200b10200b200b0104417373657449442d31323334353637380104043001042c446973706174636858595a0104c98f334f51562273bd98198fd956167d4ecd0f08341dee6ae8352cf6e94509920140e2010000000000d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Contracts : Instantiate with code", - "1 | Amount : POLYX 0.0", - "2 | Gas limit [1/2] : 6768", - "2 | Gas limit [2/2] : 32274634172389969", - "3 | Storage deposit limit : POLYX 190.568256", - "4 | Code [1/4] : 3a83a7ff5037a23c0e43affbcc635966aa1648", - "4 | Code [2/4] : 4bf4aad5570831c098d7eaa04956dffa80bb93", - "4 | Code [3/4] : e6f18a1f496c3102ad749a5bd8d8be953c82c1", - "4 | Code [4/4] : e75595318b35bc", - "5 | Data [1/2] : 3aac0c206ff7943d3804ffdc241d552dbf5f5d", - "5 | Data [2/2] : c690b29dbf756bb8db19615f25", - "6 | Salt [1/2] : aa6a3cf21b1789d31250ee845cd2569fd46d8e", - "6 | Salt [2/2] : 0eaa6aa1ae8ce3429cbe2e02f1" + "0 | Polymeshcontracts : Instantiate with hash perms", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 49320013", + "2 | Gas limit [2/2] : 34", + "3 | Storage deposit limit [1/2] : POLYX 12345678901234567890123456789012", + "3 | Storage deposit limit [2/2] : 3.456789", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "5 | Data [1/4] : 32", + "5 | Data [2/4] : 11", + "5 | Data [3/4] : 32", + "5 | Data [4/4] : 11", + "6 | Salt [1/4] : 32", + "6 | Salt [2/4] : 11", + "6 | Salt [3/4] : 32", + "6 | Salt [4/4] : 11", + "7 | Perms [1/10] : These", + "7 | Perms [2/10] : AssetID-12345678", + "7 | Perms [3/10] : These", + "7 | Perms [4/10] : 0", + "7 | Perms [5/10] : These", + "7 | Perms [6/10] : DispatchXYZ", + "7 | Perms [7/10] : These", + "7 | Perms [8/10] : c98f334f51562273bd98198fd956167d4ecd0f", + "7 | Perms [9/10] : 08341dee6ae8352cf6e9450992", + "7 | Perms [10/10] : 123456", + "8 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Contracts : Instantiate with code", - "1 | Amount : POLYX 0.0", - "2 | Gas limit [1/2] : 6768", - "2 | Gas limit [2/2] : 32274634172389969", - "3 | Storage deposit limit : POLYX 190.568256", - "4 | Code [1/4] : 3a83a7ff5037a23c0e43affbcc635966aa1648", - "4 | Code [2/4] : 4bf4aad5570831c098d7eaa04956dffa80bb93", - "4 | Code [3/4] : e6f18a1f496c3102ad749a5bd8d8be953c82c1", - "4 | Code [4/4] : e75595318b35bc", - "5 | Data [1/2] : 3aac0c206ff7943d3804ffdc241d552dbf5f5d", - "5 | Data [2/2] : c690b29dbf756bb8db19615f25", - "6 | Salt [1/2] : aa6a3cf21b1789d31250ee845cd2569fd46d8e", - "6 | Salt [2/2] : 0eaa6aa1ae8ce3429cbe2e02f1", - "7 | Chain : Polymesh", - "8 | Nonce : 100", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Polymeshcontracts : Instantiate with hash perms", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 49320013", + "2 | Gas limit [2/2] : 34", + "3 | Storage deposit limit [1/2] : POLYX 12345678901234567890123456789012", + "3 | Storage deposit limit [2/2] : 3.456789", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "5 | Data [1/4] : 32", + "5 | Data [2/4] : 11", + "5 | Data [3/4] : 32", + "5 | Data [4/4] : 11", + "6 | Salt [1/4] : 32", + "6 | Salt [2/4] : 11", + "6 | Salt [3/4] : 32", + "6 | Salt [4/4] : 11", + "7 | Perms [1/10] : These", + "7 | Perms [2/10] : AssetID-12345678", + "7 | Perms [3/10] : These", + "7 | Perms [4/10] : 0", + "7 | Perms [5/10] : These", + "7 | Perms [6/10] : DispatchXYZ", + "7 | Perms [7/10] : These", + "7 | Perms [8/10] : c98f334f51562273bd98198fd956167d4ecd0f", + "7 | Perms [9/10] : 08341dee6ae8352cf6e9450992", + "7 | Perms [10/10] : 123456", + "8 | Chain : Polymesh", + "9 | Nonce : 0", + "10 | Tip : POLYX 55.555555", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1564, - "name": "Contracts_Instantiate_with_code", - "blob": "2e0733158139ae28a3dfaac5fe1560a5e9e05cc1690f51da19d99ba972012bde547c55bae064a8d95aa250f23480aa6a3cf21b1789d31250ee845cd2569fd46d8e0eaa6aa1ae8ce3429cbe2e02f101013a83a7ff5037a23c0e43affbcc635966aa16484bf4aad5570831c098d7eaa04956dffa80bb93e6f18a1f496c3102ad749a5bd8d8be953c82c1e75595318b35bc803aac0c206ff7943d3804ffdc241d552dbf5f5dc690b29dbf756bb8db19615f25d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1505, + "name": "Polymeshcontracts_Instantiate_with_hash_perms", + "blob": "2f01fd56e5cad3287b54b2352f703dbeafc013ebd18da2a0682bd213e3b1c6f54a741ea90163ce64c10c0500000000000000000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a100e2a0c49100c2934350104417373657449442d31323334353637380104043001042c446973706174636858595a0104c98f334f51562273bd98198fd956167d4ecd0f08341dee6ae8352cf6e94509920140e2010000000000d5030433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Contracts : Instantiate with code", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Gas limit [1/2] : 6768", - "2 | Gas limit [2/2] : 32274634172389969", - "3 | Storage deposit limit [1/2] : POLYX 1073883469794135377910968975.381", - "3 | Storage deposit limit [2/2] : 726", - "4 | Code [1/2] : aa6a3cf21b1789d31250ee845cd2569fd46d8e", - "4 | Code [2/2] : 0eaa6aa1ae8ce3429cbe2e02f1", - "5 | Data [1/4] : 3a83a7ff5037a23c0e43affbcc635966aa1648", - "5 | Data [2/4] : 4bf4aad5570831c098d7eaa04956dffa80bb93", - "5 | Data [3/4] : e6f18a1f496c3102ad749a5bd8d8be953c82c1", - "5 | Data [4/4] : e75595318b35bc", - "6 | Salt [1/2] : 3aac0c206ff7943d3804ffdc241d552dbf5f5d", - "6 | Salt [2/2] : c690b29dbf756bb8db19615f25", - "7 | Tip : POLYX 1234.56789" + "0 | Polymeshcontracts : Instantiate with hash perms", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 15144313211094684139", + "2 | Gas limit [2/2] : 12186305507010982371", + "3 | Storage deposit limit : POLYX 5552342.355555", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "5 | Data [1/4] : 14", + "5 | Data [2/4] : 42", + "5 | Data [3/4] : 12", + "5 | Data [4/4] : 73", + "6 | Salt [1/4] : 12", + "6 | Salt [2/4] : 41", + "6 | Salt [3/4] : 52", + "6 | Salt [4/4] : 53", + "7 | Perms [1/10] : These", + "7 | Perms [2/10] : AssetID-12345678", + "7 | Perms [3/10] : These", + "7 | Perms [4/10] : 0", + "7 | Perms [5/10] : These", + "7 | Perms [6/10] : DispatchXYZ", + "7 | Perms [7/10] : These", + "7 | Perms [8/10] : c98f334f51562273bd98198fd956167d4ecd0f", + "7 | Perms [9/10] : 08341dee6ae8352cf6e9450992", + "7 | Perms [10/10] : 123456", + "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "8 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Contracts : Instantiate with code", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Gas limit [1/2] : 6768", - "2 | Gas limit [2/2] : 32274634172389969", - "3 | Storage deposit limit [1/2] : POLYX 1073883469794135377910968975.381", - "3 | Storage deposit limit [2/2] : 726", - "4 | Code [1/2] : aa6a3cf21b1789d31250ee845cd2569fd46d8e", - "4 | Code [2/2] : 0eaa6aa1ae8ce3429cbe2e02f1", - "5 | Data [1/4] : 3a83a7ff5037a23c0e43affbcc635966aa1648", - "5 | Data [2/4] : 4bf4aad5570831c098d7eaa04956dffa80bb93", - "5 | Data [3/4] : e6f18a1f496c3102ad749a5bd8d8be953c82c1", - "5 | Data [4/4] : e75595318b35bc", - "6 | Salt [1/2] : 3aac0c206ff7943d3804ffdc241d552dbf5f5d", - "6 | Salt [2/2] : c690b29dbf756bb8db19615f25", - "7 | Chain : Polymesh", - "8 | Nonce : 100", - "9 | Tip : POLYX 1234.56789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Polymeshcontracts : Instantiate with hash perms", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 15144313211094684139", + "2 | Gas limit [2/2] : 12186305507010982371", + "3 | Storage deposit limit : POLYX 5552342.355555", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "5 | Data [1/4] : 14", + "5 | Data [2/4] : 42", + "5 | Data [3/4] : 12", + "5 | Data [4/4] : 73", + "6 | Salt [1/4] : 12", + "6 | Salt [2/4] : 41", + "6 | Salt [3/4] : 52", + "6 | Salt [4/4] : 53", + "7 | Perms [1/10] : These", + "7 | Perms [2/10] : AssetID-12345678", + "7 | Perms [3/10] : These", + "7 | Perms [4/10] : 0", + "7 | Perms [5/10] : These", + "7 | Perms [6/10] : DispatchXYZ", + "7 | Perms [7/10] : These", + "7 | Perms [8/10] : c98f334f51562273bd98198fd956167d4ecd0f", + "7 | Perms [9/10] : 08341dee6ae8352cf6e9450992", + "7 | Perms [10/10] : 123456", + "8 | Chain : Polymesh", + "9 | Nonce : 1", + "10 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "10 | Tip [2/2] : 3.456789", + "11 | Era Phase : 61", + "12 | Era Period : 64", + "13 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "13 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1565, - "name": "Contracts_Instantiate_with_code", - "blob": "2e0733158139ae28a3dfaac5fe1560a5e9e05cc1c268012bde547c55bae064a8d95aa250f2340101a6d7930112b16e3b8649dcfe3a9c66cc2c34847d0dd05ad9f7d105ae3adad3d9e84cc085526559dea4a34add6b321ea04abd79fc38aad51749d93ec0031c63c801016d0908114ac84677d153d7368feda69cef573eb81308a080f038a74d25a93fef148316d9d6f23f39d32353dccc05e3e15a573a8e62a74bbe1366bf9014cce14401029e9d8059730a3ea1e80b4b58a6283a0745e95406cfc62ac95402888ad0e9fa835eec2f9b0c21ae892eb2e6e11014a634b5f43bf1e94dff6573c747c619291f393ad665d02f69f74b9c9b1a9db29116d1d0a4520a9735188f8ef86ecd9ba8a9798e552c6db1566d6650d70f7d8555ec65d1c21f6552fa566d1d4d0447958aeb36d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1506, + "name": "Polymeshcontracts_Update_call_runtime_whitelist", + "blob": "2f0200d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Contracts : Instantiate with code", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit [1/2] : POLYX 1073883469794135377910968975.381", - "3 | Storage deposit limit [2/2] : 726", - "4 | Code [1/4] : a6d7930112b16e3b8649dcfe3a9c66cc2c3484", - "4 | Code [2/4] : 7d0dd05ad9f7d105ae3adad3d9e84cc0855265", - "4 | Code [3/4] : 59dea4a34add6b321ea04abd79fc38aad51749", - "4 | Code [4/4] : d93ec0031c63c8", - "5 | Data [1/4] : 6d0908114ac84677d153d7368feda69cef573e", - "5 | Data [2/4] : b81308a080f038a74d25a93fef148316d9d6f2", - "5 | Data [3/4] : 3f39d32353dccc05e3e15a573a8e62a74bbe13", - "5 | Data [4/4] : 66bf9014cce144", - "6 | Salt [1/7] : 9e9d8059730a3ea1e80b4b58a6283a0745e954", - "6 | Salt [2/7] : 06cfc62ac95402888ad0e9fa835eec2f9b0c21", - "6 | Salt [3/7] : ae892eb2e6e11014a634b5f43bf1e94dff6573", - "6 | Salt [4/7] : c747c619291f393ad665d02f69f74b9c9b1a9d", - "6 | Salt [5/7] : b29116d1d0a4520a9735188f8ef86ecd9ba8a9", - "6 | Salt [6/7] : 798e552c6db1566d6650d70f7d8555ec65d1c2", - "6 | Salt [7/7] : 1f6552fa566d1d4d0447958aeb36", - "7 | Tip : POLYX 1234.56789" + "0 | Polymeshcontracts : Update call runtime whitelist", + "1 | Updates : ", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Contracts : Instantiate with code", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit [1/2] : POLYX 1073883469794135377910968975.381", - "3 | Storage deposit limit [2/2] : 726", - "4 | Code [1/4] : a6d7930112b16e3b8649dcfe3a9c66cc2c3484", - "4 | Code [2/4] : 7d0dd05ad9f7d105ae3adad3d9e84cc0855265", - "4 | Code [3/4] : 59dea4a34add6b321ea04abd79fc38aad51749", - "4 | Code [4/4] : d93ec0031c63c8", - "5 | Data [1/4] : 6d0908114ac84677d153d7368feda69cef573e", - "5 | Data [2/4] : b81308a080f038a74d25a93fef148316d9d6f2", - "5 | Data [3/4] : 3f39d32353dccc05e3e15a573a8e62a74bbe13", - "5 | Data [4/4] : 66bf9014cce144", - "6 | Salt [1/7] : 9e9d8059730a3ea1e80b4b58a6283a0745e954", - "6 | Salt [2/7] : 06cfc62ac95402888ad0e9fa835eec2f9b0c21", - "6 | Salt [3/7] : ae892eb2e6e11014a634b5f43bf1e94dff6573", - "6 | Salt [4/7] : c747c619291f393ad665d02f69f74b9c9b1a9d", - "6 | Salt [5/7] : b29116d1d0a4520a9735188f8ef86ecd9ba8a9", - "6 | Salt [6/7] : 798e552c6db1566d6650d70f7d8555ec65d1c2", - "6 | Salt [7/7] : 1f6552fa566d1d4d0447958aeb36", - "7 | Chain : Polymesh", - "8 | Nonce : 0", - "9 | Tip : POLYX 1234.56789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Polymeshcontracts : Update call runtime whitelist", + "1 | Updates : ", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1566, - "name": "Contracts_Instantiate", - "blob": "2e0800c1c268012bde547c55bae064a8d95aa250f2346fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f406301029e9d8059730a3ea1e80b4b58a6283a0745e95406cfc62ac95402888ad0e9fa835eec2f9b0c21ae892eb2e6e11014a634b5f43bf1e94dff6573c747c619291f393ad665d02f69f74b9c9b1a9db29116d1d0a4520a9735188f8ef86ecd9ba8a9798e552c6db1566d6650d70f7d8555ec65d1c21f6552fa566d1d4d0447958aeb360101a6d7930112b16e3b8649dcfe3a9c66cc2c34847d0dd05ad9f7d105ae3adad3d9e84cc085526559dea4a34add6b321ea04abd79fc38aad51749d93ec0031c63c8d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1507, + "name": "Polymeshcontracts_Update_call_runtime_whitelist", + "blob": "2f0208b3f901685b00d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Contracts : Instantiate", - "1 | Amount : POLYX 0.0", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit [1/2] : POLYX 1073883469794135377910968975.381", - "3 | Storage deposit limit [2/2] : 726", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/7] : 9e9d8059730a3ea1e80b4b58a6283a0745e954", - "5 | Data [2/7] : 06cfc62ac95402888ad0e9fa835eec2f9b0c21", - "5 | Data [3/7] : ae892eb2e6e11014a634b5f43bf1e94dff6573", - "5 | Data [4/7] : c747c619291f393ad665d02f69f74b9c9b1a9d", - "5 | Data [5/7] : b29116d1d0a4520a9735188f8ef86ecd9ba8a9", - "5 | Data [6/7] : 798e552c6db1566d6650d70f7d8555ec65d1c2", - "5 | Data [7/7] : 1f6552fa566d1d4d0447958aeb36", - "6 | Salt [1/4] : a6d7930112b16e3b8649dcfe3a9c66cc2c3484", - "6 | Salt [2/4] : 7d0dd05ad9f7d105ae3adad3d9e84cc0855265", - "6 | Salt [3/4] : 59dea4a34add6b321ea04abd79fc38aad51749", - "6 | Salt [4/4] : d93ec0031c63c8", - "7 | Tip : POLYX 0.000987" + "0 | Polymeshcontracts : Update call runtime whitelist", + "1 | Updates [1/6] : 179", + "1 | Updates [2/6] : 249", + "1 | Updates [3/6] : True", + "1 | Updates [4/6] : 104", + "1 | Updates [5/6] : 91", + "1 | Updates [6/6] : False" ], "output_expert": [ - "0 | Contracts : Instantiate", - "1 | Amount : POLYX 0.0", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit [1/2] : POLYX 1073883469794135377910968975.381", - "3 | Storage deposit limit [2/2] : 726", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/7] : 9e9d8059730a3ea1e80b4b58a6283a0745e954", - "5 | Data [2/7] : 06cfc62ac95402888ad0e9fa835eec2f9b0c21", - "5 | Data [3/7] : ae892eb2e6e11014a634b5f43bf1e94dff6573", - "5 | Data [4/7] : c747c619291f393ad665d02f69f74b9c9b1a9d", - "5 | Data [5/7] : b29116d1d0a4520a9735188f8ef86ecd9ba8a9", - "5 | Data [6/7] : 798e552c6db1566d6650d70f7d8555ec65d1c2", - "5 | Data [7/7] : 1f6552fa566d1d4d0447958aeb36", - "6 | Salt [1/4] : a6d7930112b16e3b8649dcfe3a9c66cc2c3484", - "6 | Salt [2/4] : 7d0dd05ad9f7d105ae3adad3d9e84cc0855265", - "6 | Salt [3/4] : 59dea4a34add6b321ea04abd79fc38aad51749", - "6 | Salt [4/4] : d93ec0031c63c8", - "7 | Chain : Polymesh", - "8 | Nonce : 0", - "9 | Tip : POLYX 0.000987", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Polymeshcontracts : Update call runtime whitelist", + "1 | Updates [1/6] : 179", + "1 | Updates [2/6] : 249", + "1 | Updates [3/6] : True", + "1 | Updates [4/6] : 104", + "1 | Updates [5/6] : 91", + "1 | Updates [6/6] : False", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1567, - "name": "Contracts_Instantiate", - "blob": "2e0833158139ae28a3dfaac5fe1560a5e9e05c139f386be0e29147ce13d5cc2b675623e52e012bde547c55bae064a8d95aa250f2346fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063803aac0c206ff7943d3804ffdc241d552dbf5f5dc690b29dbf756bb8db19615f2501013a83a7ff5037a23c0e43affbcc635966aa16484bf4aad5570831c098d7eaa04956dffa80bb93e6f18a1f496c3102ad749a5bd8d8be953c82c1e75595318b35bcd503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1508, + "name": "Polymeshcontracts_Update_call_runtime_whitelist", + "blob": "2f0200d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Contracts : Instantiate", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Gas limit [1/2] : 14864009498773371039", - "2 | Gas limit [2/2] : 3379145949416508629", - "3 | Storage deposit limit [1/2] : POLYX 1073883469794135377910968975.381", - "3 | Storage deposit limit [2/2] : 726", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/2] : 3aac0c206ff7943d3804ffdc241d552dbf5f5d", - "5 | Data [2/2] : c690b29dbf756bb8db19615f25", - "6 | Salt [1/4] : 3a83a7ff5037a23c0e43affbcc635966aa1648", - "6 | Salt [2/4] : 4bf4aad5570831c098d7eaa04956dffa80bb93", - "6 | Salt [3/4] : e6f18a1f496c3102ad749a5bd8d8be953c82c1", - "6 | Salt [4/4] : e75595318b35bc", - "7 | Tip : POLYX 0.000987" + "0 | Polymeshcontracts : Update call runtime whitelist", + "1 | Updates : ", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Contracts : Instantiate", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Gas limit [1/2] : 14864009498773371039", - "2 | Gas limit [2/2] : 3379145949416508629", - "3 | Storage deposit limit [1/2] : POLYX 1073883469794135377910968975.381", - "3 | Storage deposit limit [2/2] : 726", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/2] : 3aac0c206ff7943d3804ffdc241d552dbf5f5d", - "5 | Data [2/2] : c690b29dbf756bb8db19615f25", - "6 | Salt [1/4] : 3a83a7ff5037a23c0e43affbcc635966aa1648", - "6 | Salt [2/4] : 4bf4aad5570831c098d7eaa04956dffa80bb93", - "6 | Salt [3/4] : e6f18a1f496c3102ad749a5bd8d8be953c82c1", - "6 | Salt [4/4] : e75595318b35bc", - "7 | Chain : Polymesh", - "8 | Nonce : 50283", - "9 | Tip : POLYX 0.000987", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Polymeshcontracts : Update call runtime whitelist", + "1 | Updates : ", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1568, - "name": "Contracts_Instantiate", - "blob": "2e088ed73e0dc1c26801025d6f2d6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f406301016d0908114ac84677d153d7368feda69cef573eb81308a080f038a74d25a93fef148316d9d6f23f39d32353dccc05e3e15a573a8e62a74bbe1366bf9014cce144803aac0c206ff7943d3804ffdc241d552dbf5f5dc690b29dbf756bb8db19615f25d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1509, + "name": "Polymeshcontracts_Update_call_runtime_whitelist", + "blob": "2f0208b3f901685b00d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Contracts : Instantiate", - "1 | Amount : POLYX 55.555555", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit : POLYX 190.568256", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 6d0908114ac84677d153d7368feda69cef573e", - "5 | Data [2/4] : b81308a080f038a74d25a93fef148316d9d6f2", - "5 | Data [3/4] : 3f39d32353dccc05e3e15a573a8e62a74bbe13", - "5 | Data [4/4] : 66bf9014cce144", - "6 | Salt [1/2] : 3aac0c206ff7943d3804ffdc241d552dbf5f5d", - "6 | Salt [2/2] : c690b29dbf756bb8db19615f25", - "7 | Tip : POLYX 55.555555" + "0 | Polymeshcontracts : Update call runtime whitelist", + "1 | Updates [1/6] : 179", + "1 | Updates [2/6] : 249", + "1 | Updates [3/6] : True", + "1 | Updates [4/6] : 104", + "1 | Updates [5/6] : 91", + "1 | Updates [6/6] : False", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Contracts : Instantiate", - "1 | Amount : POLYX 55.555555", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit : POLYX 190.568256", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 6d0908114ac84677d153d7368feda69cef573e", - "5 | Data [2/4] : b81308a080f038a74d25a93fef148316d9d6f2", - "5 | Data [3/4] : 3f39d32353dccc05e3e15a573a8e62a74bbe13", - "5 | Data [4/4] : 66bf9014cce144", - "6 | Salt [1/2] : 3aac0c206ff7943d3804ffdc241d552dbf5f5d", - "6 | Salt [2/2] : c690b29dbf756bb8db19615f25", - "7 | Chain : Polymesh", - "8 | Nonce : 0", - "9 | Tip : POLYX 55.555555", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Polymeshcontracts : Update call runtime whitelist", + "1 | Updates [1/6] : 179", + "1 | Updates [2/6] : 249", + "1 | Updates [3/6] : True", + "1 | Updates [4/6] : 104", + "1 | Updates [5/6] : 91", + "1 | Updates [6/6] : False", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1569, - "name": "Contracts_Instantiate", - "blob": "2e086d0fc1690f51da19d99ba97201025d6f2d6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f406301016d0908114ac84677d153d7368feda69cef573eb81308a080f038a74d25a93fef148316d9d6f23f39d32353dccc05e3e15a573a8e62a74bbe1366bf9014cce14401029e9d8059730a3ea1e80b4b58a6283a0745e95406cfc62ac95402888ad0e9fa835eec2f9b0c21ae892eb2e6e11014a634b5f43bf1e94dff6573c747c619291f393ad665d02f69f74b9c9b1a9db29116d1d0a4520a9735188f8ef86ecd9ba8a9798e552c6db1566d6650d70f7d8555ec65d1c21f6552fa566d1d4d0447958aeb36d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1510, + "name": "Polymeshcontracts_Update_call_runtime_whitelist", + "blob": "2f020c799700000d01b7cd00d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Contracts : Instantiate", - "1 | Amount : POLYX 0.000987", - "2 | Gas limit [1/2] : 6768", - "2 | Gas limit [2/2] : 32274634172389969", - "3 | Storage deposit limit : POLYX 190.568256", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 6d0908114ac84677d153d7368feda69cef573e", - "5 | Data [2/4] : b81308a080f038a74d25a93fef148316d9d6f2", - "5 | Data [3/4] : 3f39d32353dccc05e3e15a573a8e62a74bbe13", - "5 | Data [4/4] : 66bf9014cce144", - "6 | Salt [1/7] : 9e9d8059730a3ea1e80b4b58a6283a0745e954", - "6 | Salt [2/7] : 06cfc62ac95402888ad0e9fa835eec2f9b0c21", - "6 | Salt [3/7] : ae892eb2e6e11014a634b5f43bf1e94dff6573", - "6 | Salt [4/7] : c747c619291f393ad665d02f69f74b9c9b1a9d", - "6 | Salt [5/7] : b29116d1d0a4520a9735188f8ef86ecd9ba8a9", - "6 | Salt [6/7] : 798e552c6db1566d6650d70f7d8555ec65d1c2", - "6 | Salt [7/7] : 1f6552fa566d1d4d0447958aeb36", - "7 | Tip : POLYX 0.000987" + "0 | Polymeshcontracts : Update call runtime whitelist", + "1 | Updates [1/9] : 121", + "1 | Updates [2/9] : 151", + "1 | Updates [3/9] : False", + "1 | Updates [4/9] : 0", + "1 | Updates [5/9] : 13", + "1 | Updates [6/9] : True", + "1 | Updates [7/9] : 183", + "1 | Updates [8/9] : 205", + "1 | Updates [9/9] : False", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Contracts : Instantiate", - "1 | Amount : POLYX 0.000987", - "2 | Gas limit [1/2] : 6768", - "2 | Gas limit [2/2] : 32274634172389969", - "3 | Storage deposit limit : POLYX 190.568256", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 6d0908114ac84677d153d7368feda69cef573e", - "5 | Data [2/4] : b81308a080f038a74d25a93fef148316d9d6f2", - "5 | Data [3/4] : 3f39d32353dccc05e3e15a573a8e62a74bbe13", - "5 | Data [4/4] : 66bf9014cce144", - "6 | Salt [1/7] : 9e9d8059730a3ea1e80b4b58a6283a0745e954", - "6 | Salt [2/7] : 06cfc62ac95402888ad0e9fa835eec2f9b0c21", - "6 | Salt [3/7] : ae892eb2e6e11014a634b5f43bf1e94dff6573", - "6 | Salt [4/7] : c747c619291f393ad665d02f69f74b9c9b1a9d", - "6 | Salt [5/7] : b29116d1d0a4520a9735188f8ef86ecd9ba8a9", - "6 | Salt [6/7] : 798e552c6db1566d6650d70f7d8555ec65d1c2", - "6 | Salt [7/7] : 1f6552fa566d1d4d0447958aeb36", - "7 | Chain : Polymesh", - "8 | Nonce : 100", - "9 | Tip : POLYX 0.000987", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Polymeshcontracts : Update call runtime whitelist", + "1 | Updates [1/9] : 121", + "1 | Updates [2/9] : 151", + "1 | Updates [3/9] : False", + "1 | Updates [4/9] : 0", + "1 | Updates [5/9] : 13", + "1 | Updates [6/9] : True", + "1 | Updates [7/9] : 183", + "1 | Updates [8/9] : 205", + "1 | Updates [9/9] : False", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1570, - "name": "Contracts_Instantiate", - "blob": "2e080b63ce64c10c05c1c268012b15506d106afd4458de6b5ff64edb6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f406380aa6a3cf21b1789d31250ee845cd2569fd46d8e0eaa6aa1ae8ce3429cbe2e02f180aa6a3cf21b1789d31250ee845cd2569fd46d8e0eaa6aa1ae8ce3429cbe2e02f1d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1511, + "name": "Polymeshcontracts_Instantiate_with_code_as_primary_key", + "blob": "2f03fd56e5cad3287b54b2352f703dbeafc0d6b9750ca2f5394301d2029649000000000000000000000000100c293435100c293435100d0c1323d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Contracts : Instantiate", - "1 | Amount : POLYX 5552342.355555", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit [1/2] : POLYX 4448103748545592106792043649.257", - "3 | Storage deposit limit [2/2] : 493", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/2] : aa6a3cf21b1789d31250ee845cd2569fd46d8e", - "5 | Data [2/2] : 0eaa6aa1ae8ce3429cbe2e02f1", - "6 | Salt [1/2] : aa6a3cf21b1789d31250ee845cd2569fd46d8e", - "6 | Salt [2/2] : 0eaa6aa1ae8ce3429cbe2e02f1", - "7 | Tip : POLYX 1234.56789" + "0 | Polymeshcontracts : Instantiate with code as primary key", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 52260469", + "2 | Gas limit [2/2] : 281967976", + "3 | Storage deposit limit : POLYX 1234.56789", + "4 | Code [1/4] : 12", + "4 | Code [2/4] : 41", + "4 | Code [3/4] : 52", + "4 | Code [4/4] : 53", + "5 | Data [1/4] : 12", + "5 | Data [2/4] : 41", + "5 | Data [3/4] : 52", + "5 | Data [4/4] : 53", + "6 | Salt [1/4] : 13", + "6 | Salt [2/4] : 12", + "6 | Salt [3/4] : 19", + "6 | Salt [4/4] : 35", + "7 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Contracts : Instantiate", - "1 | Amount : POLYX 5552342.355555", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit [1/2] : POLYX 4448103748545592106792043649.257", - "3 | Storage deposit limit [2/2] : 493", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/2] : aa6a3cf21b1789d31250ee845cd2569fd46d8e", - "5 | Data [2/2] : 0eaa6aa1ae8ce3429cbe2e02f1", - "6 | Salt [1/2] : aa6a3cf21b1789d31250ee845cd2569fd46d8e", - "6 | Salt [2/2] : 0eaa6aa1ae8ce3429cbe2e02f1", + "0 | Polymeshcontracts : Instantiate with code as primary key", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 52260469", + "2 | Gas limit [2/2] : 281967976", + "3 | Storage deposit limit : POLYX 1234.56789", + "4 | Code [1/4] : 12", + "4 | Code [2/4] : 41", + "4 | Code [3/4] : 52", + "4 | Code [4/4] : 53", + "5 | Data [1/4] : 12", + "5 | Data [2/4] : 41", + "5 | Data [3/4] : 52", + "5 | Data [4/4] : 53", + "6 | Salt [1/4] : 13", + "6 | Salt [2/4] : 12", + "6 | Salt [3/4] : 19", + "6 | Salt [4/4] : 35", "7 | Chain : Polymesh", - "8 | Nonce : 50283", - "9 | Tip : POLYX 1234.56789", + "8 | Nonce : 2339", + "9 | Tip : POLYX 0.000987", "10 | Era Phase : 61", "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1571, - "name": "Polymeshcontracts_Instantiate_with_code_perms", - "blob": "2f0040d8127ea9f0d1cdf6126ec9c838c9bac1c26801158139ae28a3dfaac5fe1560a5e9e05c100c29343510200b200b10200b200b01085449434b45522d31323836335449434b45522d313238373301042050414c4c45545f4202082c44697370617463684142432c446973706174636858595a0104d8877bab29ec03d12832f72948526a15dbe68f387bebc5f504dab994619275650140e2010000000000d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1512, + "name": "Polymeshcontracts_Instantiate_with_code_as_primary_key", + "blob": "2f03fd56e5cad3287b54b2352f703dbeafc013ebd18da2a0682bd213e3b1c6f54a741ea90100000000000000000000000000000000100c29343510200b200b100c293435d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Polymeshcontracts : Instantiate with code perms", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit [1/2] : POLYX 12345678901234567890123456789012", - "3 | Storage deposit limit [2/2] : 3.456789", + "0 | Polymeshcontracts : Instantiate with code as primary key", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 15144313211094684139", + "2 | Gas limit [2/2] : 12186305507010982371", + "3 | Storage deposit limit : POLYX 0.0", "4 | Code [1/4] : 12", "4 | Code [2/4] : 41", "4 | Code [3/4] : 52", @@ -42782,32 +42360,19 @@ "5 | Data [2/4] : 11", "5 | Data [3/4] : 32", "5 | Data [4/4] : 11", - "6 | Salt [1/4] : 32", - "6 | Salt [2/4] : 11", - "6 | Salt [3/4] : 32", - "6 | Salt [4/4] : 11", - "7 | Perms [1/12] : These", - "7 | Perms [2/12] : TICKER-12863", - "7 | Perms [3/12] : TICKER-12873", - "7 | Perms [4/12] : These", - "7 | Perms [5/12] : PALLET_B", - "7 | Perms [6/12] : Except", - "7 | Perms [7/12] : DispatchABC", - "7 | Perms [8/12] : DispatchXYZ", - "7 | Perms [9/12] : These", - "7 | Perms [10/12] : d8877bab29ec03d12832f72948526a15dbe68f", - "7 | Perms [11/12] : 387bebc5f504dab99461927565", - "7 | Perms [12/12] : 123456", - "8 | Tip : POLYX 1234.56789" + "6 | Salt [1/4] : 12", + "6 | Salt [2/4] : 41", + "6 | Salt [3/4] : 52", + "6 | Salt [4/4] : 53", + "7 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Polymeshcontracts : Instantiate with code perms", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit [1/2] : POLYX 12345678901234567890123456789012", - "3 | Storage deposit limit [2/2] : 3.456789", + "0 | Polymeshcontracts : Instantiate with code as primary key", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 15144313211094684139", + "2 | Gas limit [2/2] : 12186305507010982371", + "3 | Storage deposit limit : POLYX 0.0", "4 | Code [1/4] : 12", "4 | Code [2/4] : 41", "4 | Code [3/4] : 52", @@ -42816,336 +42381,195 @@ "5 | Data [2/4] : 11", "5 | Data [3/4] : 32", "5 | Data [4/4] : 11", - "6 | Salt [1/4] : 32", - "6 | Salt [2/4] : 11", - "6 | Salt [3/4] : 32", - "6 | Salt [4/4] : 11", - "7 | Perms [1/12] : These", - "7 | Perms [2/12] : TICKER-12863", - "7 | Perms [3/12] : TICKER-12873", - "7 | Perms [4/12] : These", - "7 | Perms [5/12] : PALLET_B", - "7 | Perms [6/12] : Except", - "7 | Perms [7/12] : DispatchABC", - "7 | Perms [8/12] : DispatchXYZ", - "7 | Perms [9/12] : These", - "7 | Perms [10/12] : d8877bab29ec03d12832f72948526a15dbe68f", - "7 | Perms [11/12] : 387bebc5f504dab99461927565", - "7 | Perms [12/12] : 123456", - "8 | Chain : Polymesh", - "9 | Nonce : 50283", - "10 | Tip : POLYX 1234.56789", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Salt [1/4] : 12", + "6 | Salt [2/4] : 41", + "6 | Salt [3/4] : 52", + "6 | Salt [4/4] : 53", + "7 | Chain : Polymesh", + "8 | Nonce : 0", + "9 | Tip : POLYX 5552342.355555", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1572, - "name": "Polymeshcontracts_Instantiate_with_code_perms", - "blob": "2f0040d8127ea9f0d1cdf6126ec9c838c9bac1c268010000000000000000000000000000000010200b200b100d0c1323100d0c1323000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1513, + "name": "Polymeshcontracts_Instantiate_with_code_as_primary_key", + "blob": "2f03fd56e5cad3287b54b2352f703dbeafc0d6b9750ca2f5394301db03000000000000000000000000000010200b200b100c293435100c293435d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Polymeshcontracts : Instantiate with code perms", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit : POLYX 0.0", + "0 | Polymeshcontracts : Instantiate with code as primary key", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 52260469", + "2 | Gas limit [2/2] : 281967976", + "3 | Storage deposit limit : POLYX 0.000987", "4 | Code [1/4] : 32", "4 | Code [2/4] : 11", "4 | Code [3/4] : 32", "4 | Code [4/4] : 11", - "5 | Data [1/4] : 13", - "5 | Data [2/4] : 12", - "5 | Data [3/4] : 19", - "5 | Data [4/4] : 35", - "6 | Salt [1/4] : 13", - "6 | Salt [2/4] : 12", - "6 | Salt [3/4] : 19", - "6 | Salt [4/4] : 35", - "7 | Perms [1/3] : Whole", - "7 | Perms [2/3] : Whole", - "7 | Perms [3/3] : Whole", - "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "8 | Tip [2/2] : 3.456789" + "5 | Data [1/4] : 12", + "5 | Data [2/4] : 41", + "5 | Data [3/4] : 52", + "5 | Data [4/4] : 53", + "6 | Salt [1/4] : 12", + "6 | Salt [2/4] : 41", + "6 | Salt [3/4] : 52", + "6 | Salt [4/4] : 53", + "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "7 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Polymeshcontracts : Instantiate with code perms", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit : POLYX 0.0", + "0 | Polymeshcontracts : Instantiate with code as primary key", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 52260469", + "2 | Gas limit [2/2] : 281967976", + "3 | Storage deposit limit : POLYX 0.000987", "4 | Code [1/4] : 32", "4 | Code [2/4] : 11", "4 | Code [3/4] : 32", "4 | Code [4/4] : 11", - "5 | Data [1/4] : 13", - "5 | Data [2/4] : 12", - "5 | Data [3/4] : 19", - "5 | Data [4/4] : 35", - "6 | Salt [1/4] : 13", - "6 | Salt [2/4] : 12", - "6 | Salt [3/4] : 19", - "6 | Salt [4/4] : 35", - "7 | Perms [1/3] : Whole", - "7 | Perms [2/3] : Whole", - "7 | Perms [3/3] : Whole", - "8 | Chain : Polymesh", - "9 | Nonce : 100", - "10 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "10 | Tip [2/2] : 3.456789", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1573, - "name": "Polymeshcontracts_Instantiate_with_code_perms", - "blob": "2f0040d8127ea9f0d1cdf6126ec9c838c9bac1c26801e3b54f03000000000000000000000000100e2a0c49100e2a0c49100e2a0c4901085449434b45522d31323836335449434b45522d313238373301042050414c4c45545f4202082c44697370617463684142432c446973706174636858595a0104d8877bab29ec03d12832f72948526a15dbe68f387bebc5f504dab994619275650140e2010000000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcontracts : Instantiate with code perms", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit : POLYX 55.555555", - "4 | Code [1/4] : 14", - "4 | Code [2/4] : 42", - "4 | Code [3/4] : 12", - "4 | Code [4/4] : 73", - "5 | Data [1/4] : 14", - "5 | Data [2/4] : 42", - "5 | Data [3/4] : 12", - "5 | Data [4/4] : 73", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73", - "7 | Perms [1/12] : These", - "7 | Perms [2/12] : TICKER-12863", - "7 | Perms [3/12] : TICKER-12873", - "7 | Perms [4/12] : These", - "7 | Perms [5/12] : PALLET_B", - "7 | Perms [6/12] : Except", - "7 | Perms [7/12] : DispatchABC", - "7 | Perms [8/12] : DispatchXYZ", - "7 | Perms [9/12] : These", - "7 | Perms [10/12] : d8877bab29ec03d12832f72948526a15dbe68f", - "7 | Perms [11/12] : 387bebc5f504dab99461927565", - "7 | Perms [12/12] : 123456", - "8 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Polymeshcontracts : Instantiate with code perms", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit : POLYX 55.555555", - "4 | Code [1/4] : 14", - "4 | Code [2/4] : 42", - "4 | Code [3/4] : 12", - "4 | Code [4/4] : 73", - "5 | Data [1/4] : 14", - "5 | Data [2/4] : 42", - "5 | Data [3/4] : 12", - "5 | Data [4/4] : 73", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73", - "7 | Perms [1/12] : These", - "7 | Perms [2/12] : TICKER-12863", - "7 | Perms [3/12] : TICKER-12873", - "7 | Perms [4/12] : These", - "7 | Perms [5/12] : PALLET_B", - "7 | Perms [6/12] : Except", - "7 | Perms [7/12] : DispatchABC", - "7 | Perms [8/12] : DispatchXYZ", - "7 | Perms [9/12] : These", - "7 | Perms [10/12] : d8877bab29ec03d12832f72948526a15dbe68f", - "7 | Perms [11/12] : 387bebc5f504dab99461927565", - "7 | Perms [12/12] : 123456", - "8 | Chain : Polymesh", - "9 | Nonce : 0", - "10 | Tip : POLYX 5552342.355555", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "5 | Data [1/4] : 12", + "5 | Data [2/4] : 41", + "5 | Data [3/4] : 52", + "5 | Data [4/4] : 53", + "6 | Salt [1/4] : 12", + "6 | Salt [2/4] : 41", + "6 | Salt [3/4] : 52", + "6 | Salt [4/4] : 53", + "7 | Chain : Polymesh", + "8 | Nonce : 2339", + "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "9 | Tip [2/2] : 3.456789", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1574, - "name": "Polymeshcontracts_Instantiate_with_code_perms", - "blob": "2f0040d8127ea9f0d1cdf6126ec9c838c9bac1c2680100000000000000000000000000000000100c293435100e2a0c4910200b200b01085449434b45522d31323836335449434b45522d313238373301042050414c4c45545f4202082c44697370617463684142432c446973706174636858595a0104d8877bab29ec03d12832f72948526a15dbe68f387bebc5f504dab994619275650140e2010000000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1514, + "name": "Polymeshcontracts_Instantiate_with_code_as_primary_key", + "blob": "2f03fd56e5cad3287b54b2352f703dbeafc013ebd18da2a0682bd213e3b1c6f54a741ea901db030000000000000000000000000000100d0c1323100d0c132310200b200bd503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Polymeshcontracts : Instantiate with code perms", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit : POLYX 0.0", - "4 | Code [1/4] : 12", - "4 | Code [2/4] : 41", - "4 | Code [3/4] : 52", - "4 | Code [4/4] : 53", - "5 | Data [1/4] : 14", - "5 | Data [2/4] : 42", - "5 | Data [3/4] : 12", - "5 | Data [4/4] : 73", + "0 | Polymeshcontracts : Instantiate with code as primary key", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 15144313211094684139", + "2 | Gas limit [2/2] : 12186305507010982371", + "3 | Storage deposit limit : POLYX 0.000987", + "4 | Code [1/4] : 13", + "4 | Code [2/4] : 12", + "4 | Code [3/4] : 19", + "4 | Code [4/4] : 35", + "5 | Data [1/4] : 13", + "5 | Data [2/4] : 12", + "5 | Data [3/4] : 19", + "5 | Data [4/4] : 35", "6 | Salt [1/4] : 32", "6 | Salt [2/4] : 11", "6 | Salt [3/4] : 32", "6 | Salt [4/4] : 11", - "7 | Perms [1/12] : These", - "7 | Perms [2/12] : TICKER-12863", - "7 | Perms [3/12] : TICKER-12873", - "7 | Perms [4/12] : These", - "7 | Perms [5/12] : PALLET_B", - "7 | Perms [6/12] : Except", - "7 | Perms [7/12] : DispatchABC", - "7 | Perms [8/12] : DispatchXYZ", - "7 | Perms [9/12] : These", - "7 | Perms [10/12] : d8877bab29ec03d12832f72948526a15dbe68f", - "7 | Perms [11/12] : 387bebc5f504dab99461927565", - "7 | Perms [12/12] : 123456", - "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "8 | Tip [2/2] : 3.456789" + "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "7 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Polymeshcontracts : Instantiate with code perms", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit : POLYX 0.0", - "4 | Code [1/4] : 12", - "4 | Code [2/4] : 41", - "4 | Code [3/4] : 52", - "4 | Code [4/4] : 53", - "5 | Data [1/4] : 14", - "5 | Data [2/4] : 42", - "5 | Data [3/4] : 12", - "5 | Data [4/4] : 73", + "0 | Polymeshcontracts : Instantiate with code as primary key", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 15144313211094684139", + "2 | Gas limit [2/2] : 12186305507010982371", + "3 | Storage deposit limit : POLYX 0.000987", + "4 | Code [1/4] : 13", + "4 | Code [2/4] : 12", + "4 | Code [3/4] : 19", + "4 | Code [4/4] : 35", + "5 | Data [1/4] : 13", + "5 | Data [2/4] : 12", + "5 | Data [3/4] : 19", + "5 | Data [4/4] : 35", "6 | Salt [1/4] : 32", "6 | Salt [2/4] : 11", "6 | Salt [3/4] : 32", "6 | Salt [4/4] : 11", - "7 | Perms [1/12] : These", - "7 | Perms [2/12] : TICKER-12863", - "7 | Perms [3/12] : TICKER-12873", - "7 | Perms [4/12] : These", - "7 | Perms [5/12] : PALLET_B", - "7 | Perms [6/12] : Except", - "7 | Perms [7/12] : DispatchABC", - "7 | Perms [8/12] : DispatchXYZ", - "7 | Perms [9/12] : These", - "7 | Perms [10/12] : d8877bab29ec03d12832f72948526a15dbe68f", - "7 | Perms [11/12] : 387bebc5f504dab99461927565", - "7 | Perms [12/12] : 123456", - "8 | Chain : Polymesh", - "9 | Nonce : 100", - "10 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "10 | Tip [2/2] : 3.456789", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Chain : Polymesh", + "8 | Nonce : 100", + "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "9 | Tip [2/2] : 3.456789", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1575, - "name": "Polymeshcontracts_Instantiate_with_code_perms", - "blob": "2f0040d8127ea9f0d1cdf6126ec9c838c9ba139f386be0e29147ce13d5cc2b675623e52e0163ce64c10c0500000000000000000000100c293435100e2a0c49100d0c132301085449434b45522d31323836335449434b45522d313238373301042050414c4c45545f4202082c44697370617463684142432c446973706174636858595a0104d8877bab29ec03d12832f72948526a15dbe68f387bebc5f504dab994619275650140e2010000000000d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1515, + "name": "Polymeshcontracts_Instantiate_with_code_as_primary_key", + "blob": "2f03fd56e5cad3287b54b2352f703dbeafc013ebd18da2a0682bd213e3b1c6f54a741ea901db030000000000000000000000000000100d0c1323100c293435100e2a0c49d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Polymeshcontracts : Instantiate with code perms", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 14864009498773371039", - "2 | Gas limit [2/2] : 3379145949416508629", - "3 | Storage deposit limit : POLYX 5552342.355555", - "4 | Code [1/4] : 12", - "4 | Code [2/4] : 41", - "4 | Code [3/4] : 52", - "4 | Code [4/4] : 53", - "5 | Data [1/4] : 14", - "5 | Data [2/4] : 42", - "5 | Data [3/4] : 12", - "5 | Data [4/4] : 73", - "6 | Salt [1/4] : 13", - "6 | Salt [2/4] : 12", - "6 | Salt [3/4] : 19", - "6 | Salt [4/4] : 35", - "7 | Perms [1/12] : These", - "7 | Perms [2/12] : TICKER-12863", - "7 | Perms [3/12] : TICKER-12873", - "7 | Perms [4/12] : These", - "7 | Perms [5/12] : PALLET_B", - "7 | Perms [6/12] : Except", - "7 | Perms [7/12] : DispatchABC", - "7 | Perms [8/12] : DispatchXYZ", - "7 | Perms [9/12] : These", - "7 | Perms [10/12] : d8877bab29ec03d12832f72948526a15dbe68f", - "7 | Perms [11/12] : 387bebc5f504dab99461927565", - "7 | Perms [12/12] : 123456" + "0 | Polymeshcontracts : Instantiate with code as primary key", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 15144313211094684139", + "2 | Gas limit [2/2] : 12186305507010982371", + "3 | Storage deposit limit : POLYX 0.000987", + "4 | Code [1/4] : 13", + "4 | Code [2/4] : 12", + "4 | Code [3/4] : 19", + "4 | Code [4/4] : 35", + "5 | Data [1/4] : 12", + "5 | Data [2/4] : 41", + "5 | Data [3/4] : 52", + "5 | Data [4/4] : 53", + "6 | Salt [1/4] : 14", + "6 | Salt [2/4] : 42", + "6 | Salt [3/4] : 12", + "6 | Salt [4/4] : 73", + "7 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Polymeshcontracts : Instantiate with code perms", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 14864009498773371039", - "2 | Gas limit [2/2] : 3379145949416508629", - "3 | Storage deposit limit : POLYX 5552342.355555", - "4 | Code [1/4] : 12", - "4 | Code [2/4] : 41", - "4 | Code [3/4] : 52", - "4 | Code [4/4] : 53", - "5 | Data [1/4] : 14", - "5 | Data [2/4] : 42", - "5 | Data [3/4] : 12", - "5 | Data [4/4] : 73", - "6 | Salt [1/4] : 13", - "6 | Salt [2/4] : 12", - "6 | Salt [3/4] : 19", - "6 | Salt [4/4] : 35", - "7 | Perms [1/12] : These", - "7 | Perms [2/12] : TICKER-12863", - "7 | Perms [3/12] : TICKER-12873", - "7 | Perms [4/12] : These", - "7 | Perms [5/12] : PALLET_B", - "7 | Perms [6/12] : Except", - "7 | Perms [7/12] : DispatchABC", - "7 | Perms [8/12] : DispatchXYZ", - "7 | Perms [9/12] : These", - "7 | Perms [10/12] : d8877bab29ec03d12832f72948526a15dbe68f", - "7 | Perms [11/12] : 387bebc5f504dab99461927565", - "7 | Perms [12/12] : 123456", - "8 | Chain : Polymesh", - "9 | Nonce : 0", + "0 | Polymeshcontracts : Instantiate with code as primary key", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 15144313211094684139", + "2 | Gas limit [2/2] : 12186305507010982371", + "3 | Storage deposit limit : POLYX 0.000987", + "4 | Code [1/4] : 13", + "4 | Code [2/4] : 12", + "4 | Code [3/4] : 19", + "4 | Code [4/4] : 35", + "5 | Data [1/4] : 12", + "5 | Data [2/4] : 41", + "5 | Data [3/4] : 52", + "5 | Data [4/4] : 53", + "6 | Salt [1/4] : 14", + "6 | Salt [2/4] : 42", + "6 | Salt [3/4] : 12", + "6 | Salt [4/4] : 73", + "7 | Chain : Polymesh", + "8 | Nonce : 0", + "9 | Tip : POLYX 5552342.355555", "10 | Era Phase : 61", "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1576, - "name": "Polymeshcontracts_Instantiate_with_hash_perms", - "blob": "2f0140d8127ea9f0d1cdf6126ec9c838c9bac1c26801d20296490000000000000000000000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063100e2a0c4910200b200b01085449434b45522d31323836335449434b45522d313238373301042050414c4c45545f4202082c44697370617463684142432c446973706174636858595a0104d8877bab29ec03d12832f72948526a15dbe68f387bebc5f504dab994619275650140e2010000000000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1516, + "name": "Polymeshcontracts_Instantiate_with_hash_as_primary_key", + "blob": "2f04fd56e5cad3287b54b2352f703dbeafc0d6b9750ca2f5394301e3b54f03000000000000000000000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a100e2a0c4910200b200bd5038d240b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Polymeshcontracts : Instantiate with hash perms", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit : POLYX 1234.56789", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", + "0 | Polymeshcontracts : Instantiate with hash as primary key", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 52260469", + "2 | Gas limit [2/2] : 281967976", + "3 | Storage deposit limit : POLYX 55.555555", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", "5 | Data [1/4] : 14", "5 | Data [2/4] : 42", "5 | Data [3/4] : 12", @@ -43154,30 +42578,17 @@ "6 | Salt [2/4] : 11", "6 | Salt [3/4] : 32", "6 | Salt [4/4] : 11", - "7 | Perms [1/12] : These", - "7 | Perms [2/12] : TICKER-12863", - "7 | Perms [3/12] : TICKER-12873", - "7 | Perms [4/12] : These", - "7 | Perms [5/12] : PALLET_B", - "7 | Perms [6/12] : Except", - "7 | Perms [7/12] : DispatchABC", - "7 | Perms [8/12] : DispatchXYZ", - "7 | Perms [9/12] : These", - "7 | Perms [10/12] : d8877bab29ec03d12832f72948526a15dbe68f", - "7 | Perms [11/12] : 387bebc5f504dab99461927565", - "7 | Perms [12/12] : 123456", - "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "8 | Tip [2/2] : 3.456789" + "7 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Polymeshcontracts : Instantiate with hash perms", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit : POLYX 1234.56789", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", + "0 | Polymeshcontracts : Instantiate with hash as primary key", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 52260469", + "2 | Gas limit [2/2] : 281967976", + "3 | Storage deposit limit : POLYX 55.555555", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", "5 | Data [1/4] : 14", "5 | Data [2/4] : 42", "5 | Data [3/4] : 12", @@ -43186,114 +42597,79 @@ "6 | Salt [2/4] : 11", "6 | Salt [3/4] : 32", "6 | Salt [4/4] : 11", - "7 | Perms [1/12] : These", - "7 | Perms [2/12] : TICKER-12863", - "7 | Perms [3/12] : TICKER-12873", - "7 | Perms [4/12] : These", - "7 | Perms [5/12] : PALLET_B", - "7 | Perms [6/12] : Except", - "7 | Perms [7/12] : DispatchABC", - "7 | Perms [8/12] : DispatchXYZ", - "7 | Perms [9/12] : These", - "7 | Perms [10/12] : d8877bab29ec03d12832f72948526a15dbe68f", - "7 | Perms [11/12] : 387bebc5f504dab99461927565", - "7 | Perms [12/12] : 123456", - "8 | Chain : Polymesh", - "9 | Nonce : 1", - "10 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "10 | Tip [2/2] : 3.456789", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Chain : Polymesh", + "8 | Nonce : 2339", + "9 | Tip : POLYX 5552342.355555", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1577, - "name": "Polymeshcontracts_Instantiate_with_hash_perms", - "blob": "2f0140d8127ea9f0d1cdf6126ec9c838c9ba139f386be0e29147ce13d5cc2b675623e52e01db0300000000000000000000000000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063100c293435100e2a0c4901085449434b45522d31323836335449434b45522d313238373301042050414c4c45545f4202082c44697370617463684142432c446973706174636858595a0104d8877bab29ec03d12832f72948526a15dbe68f387bebc5f504dab994619275650140e2010000000000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1517, + "name": "Polymeshcontracts_Instantiate_with_hash_as_primary_key", + "blob": "2f04fd56e5cad3287b54b2352f703dbeafc013ebd18da2a0682bd213e3b1c6f54a741ea90163ce64c10c0500000000000000000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a100c293435100d0c1323d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Polymeshcontracts : Instantiate with hash perms", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 14864009498773371039", - "2 | Gas limit [2/2] : 3379145949416508629", - "3 | Storage deposit limit : POLYX 0.000987", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", + "0 | Polymeshcontracts : Instantiate with hash as primary key", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 15144313211094684139", + "2 | Gas limit [2/2] : 12186305507010982371", + "3 | Storage deposit limit : POLYX 5552342.355555", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", "5 | Data [1/4] : 12", "5 | Data [2/4] : 41", "5 | Data [3/4] : 52", "5 | Data [4/4] : 53", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73", - "7 | Perms [1/12] : These", - "7 | Perms [2/12] : TICKER-12863", - "7 | Perms [3/12] : TICKER-12873", - "7 | Perms [4/12] : These", - "7 | Perms [5/12] : PALLET_B", - "7 | Perms [6/12] : Except", - "7 | Perms [7/12] : DispatchABC", - "7 | Perms [8/12] : DispatchXYZ", - "7 | Perms [9/12] : These", - "7 | Perms [10/12] : d8877bab29ec03d12832f72948526a15dbe68f", - "7 | Perms [11/12] : 387bebc5f504dab99461927565", - "7 | Perms [12/12] : 123456", - "8 | Tip : POLYX 1234.56789" + "6 | Salt [1/4] : 13", + "6 | Salt [2/4] : 12", + "6 | Salt [3/4] : 19", + "6 | Salt [4/4] : 35", + "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "7 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Polymeshcontracts : Instantiate with hash perms", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 14864009498773371039", - "2 | Gas limit [2/2] : 3379145949416508629", - "3 | Storage deposit limit : POLYX 0.000987", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", + "0 | Polymeshcontracts : Instantiate with hash as primary key", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 15144313211094684139", + "2 | Gas limit [2/2] : 12186305507010982371", + "3 | Storage deposit limit : POLYX 5552342.355555", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", "5 | Data [1/4] : 12", "5 | Data [2/4] : 41", "5 | Data [3/4] : 52", "5 | Data [4/4] : 53", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73", - "7 | Perms [1/12] : These", - "7 | Perms [2/12] : TICKER-12863", - "7 | Perms [3/12] : TICKER-12873", - "7 | Perms [4/12] : These", - "7 | Perms [5/12] : PALLET_B", - "7 | Perms [6/12] : Except", - "7 | Perms [7/12] : DispatchABC", - "7 | Perms [8/12] : DispatchXYZ", - "7 | Perms [9/12] : These", - "7 | Perms [10/12] : d8877bab29ec03d12832f72948526a15dbe68f", - "7 | Perms [11/12] : 387bebc5f504dab99461927565", - "7 | Perms [12/12] : 123456", - "8 | Chain : Polymesh", - "9 | Nonce : 2339", - "10 | Tip : POLYX 1234.56789", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Salt [1/4] : 13", + "6 | Salt [2/4] : 12", + "6 | Salt [3/4] : 19", + "6 | Salt [4/4] : 35", + "7 | Chain : Polymesh", + "8 | Nonce : 0", + "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "9 | Tip [2/2] : 3.456789", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1578, - "name": "Polymeshcontracts_Instantiate_with_hash_perms", - "blob": "2f0140d8127ea9f0d1cdf6126ec9c838c9bac1690f51da19d99ba97201000000000000000000000000000000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063100e2a0c49100c293435000000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1518, + "name": "Polymeshcontracts_Instantiate_with_hash_as_primary_key", + "blob": "2f04fd56e5cad3287b54b2352f703dbeafc0d6b9750ca2f5394301db030000000000000000000000000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a100e2a0c49100c293435d5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Polymeshcontracts : Instantiate with hash perms", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 6768", - "2 | Gas limit [2/2] : 32274634172389969", - "3 | Storage deposit limit : POLYX 0.0", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", + "0 | Polymeshcontracts : Instantiate with hash as primary key", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 52260469", + "2 | Gas limit [2/2] : 281967976", + "3 | Storage deposit limit : POLYX 0.000987", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", "5 | Data [1/4] : 14", "5 | Data [2/4] : 42", "5 | Data [3/4] : 12", @@ -43301,21 +42677,17 @@ "6 | Salt [1/4] : 12", "6 | Salt [2/4] : 41", "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", - "7 | Perms [1/3] : Whole", - "7 | Perms [2/3] : Whole", - "7 | Perms [3/3] : Whole", - "8 | Tip : POLYX 55.555555" + "6 | Salt [4/4] : 53" ], "output_expert": [ - "0 | Polymeshcontracts : Instantiate with hash perms", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 6768", - "2 | Gas limit [2/2] : 32274634172389969", - "3 | Storage deposit limit : POLYX 0.0", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", + "0 | Polymeshcontracts : Instantiate with hash as primary key", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 52260469", + "2 | Gas limit [2/2] : 281967976", + "3 | Storage deposit limit : POLYX 0.000987", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", "5 | Data [1/4] : 14", "5 | Data [2/4] : 42", "5 | Data [3/4] : 12", @@ -43324,2020 +42696,2818 @@ "6 | Salt [2/4] : 41", "6 | Salt [3/4] : 52", "6 | Salt [4/4] : 53", - "7 | Perms [1/3] : Whole", - "7 | Perms [2/3] : Whole", - "7 | Perms [3/3] : Whole", - "8 | Chain : Polymesh", - "9 | Nonce : 100", - "10 | Tip : POLYX 55.555555", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Chain : Polymesh", + "8 | Nonce : 1", + "9 | Era Phase : 61", + "10 | Era Period : 64", + "11 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "11 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1579, - "name": "Polymeshcontracts_Instantiate_with_hash_perms", - "blob": "2f0140d8127ea9f0d1cdf6126ec9c838c9bac1c26801e3b54f030000000000000000000000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063100e2a0c4910200b200b000000d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1519, + "name": "Polymeshcontracts_Instantiate_with_hash_as_primary_key", + "blob": "2f04fd56e5cad3287b54b2352f703dbeafc0d6b9750ca2f539430100000000000000000000000000000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a100d0c132310200b200bd5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Polymeshcontracts : Instantiate with hash perms", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit : POLYX 55.555555", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 14", - "5 | Data [2/4] : 42", - "5 | Data [3/4] : 12", - "5 | Data [4/4] : 73", + "0 | Polymeshcontracts : Instantiate with hash as primary key", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 52260469", + "2 | Gas limit [2/2] : 281967976", + "3 | Storage deposit limit : POLYX 0.0", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "5 | Data [1/4] : 13", + "5 | Data [2/4] : 12", + "5 | Data [3/4] : 19", + "5 | Data [4/4] : 35", "6 | Salt [1/4] : 32", "6 | Salt [2/4] : 11", "6 | Salt [3/4] : 32", "6 | Salt [4/4] : 11", - "7 | Perms [1/3] : Whole", - "7 | Perms [2/3] : Whole", - "7 | Perms [3/3] : Whole", - "8 | Tip : POLYX 5552342.355555" + "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "7 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Polymeshcontracts : Instantiate with hash perms", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit : POLYX 55.555555", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 14", - "5 | Data [2/4] : 42", - "5 | Data [3/4] : 12", - "5 | Data [4/4] : 73", + "0 | Polymeshcontracts : Instantiate with hash as primary key", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 52260469", + "2 | Gas limit [2/2] : 281967976", + "3 | Storage deposit limit : POLYX 0.0", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "5 | Data [1/4] : 13", + "5 | Data [2/4] : 12", + "5 | Data [3/4] : 19", + "5 | Data [4/4] : 35", "6 | Salt [1/4] : 32", "6 | Salt [2/4] : 11", "6 | Salt [3/4] : 32", "6 | Salt [4/4] : 11", - "7 | Perms [1/3] : Whole", - "7 | Perms [2/3] : Whole", - "7 | Perms [3/3] : Whole", - "8 | Chain : Polymesh", - "9 | Nonce : 2339", - "10 | Tip : POLYX 5552342.355555", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Chain : Polymesh", + "8 | Nonce : 2339", + "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "9 | Tip [2/2] : 3.456789", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 1520, + "name": "Polymeshcontracts_Instantiate_with_hash_as_primary_key", + "blob": "2f04fd56e5cad3287b54b2352f703dbeafc013ebd18da2a0682bd213e3b1c6f54a741ea90163ce64c10c0500000000000000000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a100d0c1323100e2a0c49d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Polymeshcontracts : Instantiate with hash as primary key", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 15144313211094684139", + "2 | Gas limit [2/2] : 12186305507010982371", + "3 | Storage deposit limit : POLYX 5552342.355555", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "5 | Data [1/4] : 13", + "5 | Data [2/4] : 12", + "5 | Data [3/4] : 19", + "5 | Data [4/4] : 35", + "6 | Salt [1/4] : 14", + "6 | Salt [2/4] : 42", + "6 | Salt [3/4] : 12", + "6 | Salt [4/4] : 73", + "7 | Tip : POLYX 55.555555" + ], + "output_expert": [ + "0 | Polymeshcontracts : Instantiate with hash as primary key", + "1 | Endowment [1/2] : POLYX 25612428566640944380857301230667", + "1 | Endowment [2/2] : 6.766461", + "2 | Gas limit [1/2] : 15144313211094684139", + "2 | Gas limit [2/2] : 12186305507010982371", + "3 | Storage deposit limit : POLYX 5552342.355555", + "4 | Code hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "4 | Code hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "5 | Data [1/4] : 13", + "5 | Data [2/4] : 12", + "5 | Data [3/4] : 19", + "5 | Data [4/4] : 35", + "6 | Salt [1/4] : 14", + "6 | Salt [2/4] : 42", + "6 | Salt [3/4] : 12", + "6 | Salt [4/4] : 73", + "7 | Chain : Polymesh", + "8 | Nonce : 1", + "9 | Tip : POLYX 55.555555", + "10 | Era Phase : 61", + "11 | Era Period : 64", + "12 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "12 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 1521, + "name": "Polymeshcontracts_Upgrade_api", + "blob": "2f0568ad954c4826bacd3bcfe5a5123aa42fff0463894da7697897a16256a843ac5aae231da18d8434806e357ba8b9aaf82bd503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Polymeshcontracts : Upgrade api", + "1 | Api [1/2] : 3451528776", + "1 | Api [2/2] : 68ad954c", + "2 | Next upgrade [1/4] : 2783301435", + "2 | Next upgrade [2/4] : 799291922", + "2 | Next upgrade [3/4] : ff0463894da7697897a16256a843ac5aae231d", + "2 | Next upgrade [4/4] : a18d8434806e357ba8b9aaf82b", + "3 | Tip : POLYX 55.555555" + ], + "output_expert": [ + "0 | Polymeshcontracts : Upgrade api", + "1 | Api [1/2] : 3451528776", + "1 | Api [2/2] : 68ad954c", + "2 | Next upgrade [1/4] : 2783301435", + "2 | Next upgrade [2/4] : 799291922", + "2 | Next upgrade [3/4] : ff0463894da7697897a16256a843ac5aae231d", + "2 | Next upgrade [4/4] : a18d8434806e357ba8b9aaf82b", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 1522, + "name": "Polymeshcontracts_Upgrade_api", + "blob": "2f050a41448391be2e482af11337e53d869a93be79b6b5a50083bef4cc011ebb641cd8251ff715b73a0fae006e95b38f8b43d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Polymeshcontracts : Upgrade api", + "1 | Api [1/2] : 1211022993", + "1 | Api [2/2] : 0a414483", + "2 | Next upgrade [1/4] : 924053802", + "2 | Next upgrade [2/4] : 2592488933", + "2 | Next upgrade [3/4] : 93be79b6b5a50083bef4cc011ebb641cd8251f", + "2 | Next upgrade [4/4] : f715b73a0fae006e95b38f8b43" + ], + "output_expert": [ + "0 | Polymeshcontracts : Upgrade api", + "1 | Api [1/2] : 1211022993", + "1 | Api [2/2] : 0a414483", + "2 | Next upgrade [1/4] : 924053802", + "2 | Next upgrade [2/4] : 2592488933", + "2 | Next upgrade [3/4] : 93be79b6b5a50083bef4cc011ebb641cd8251f", + "2 | Next upgrade [4/4] : f715b73a0fae006e95b38f8b43", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 1523, + "name": "Polymeshcontracts_Upgrade_api", + "blob": "2f0568ad954c4826bacd3bcfe5a5123aa42fff0463894da7697897a16256a843ac5aae231da18d8434806e357ba8b9aaf82bd503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Polymeshcontracts : Upgrade api", + "1 | Api [1/2] : 3451528776", + "1 | Api [2/2] : 68ad954c", + "2 | Next upgrade [1/4] : 2783301435", + "2 | Next upgrade [2/4] : 799291922", + "2 | Next upgrade [3/4] : ff0463894da7697897a16256a843ac5aae231d", + "2 | Next upgrade [4/4] : a18d8434806e357ba8b9aaf82b" + ], + "output_expert": [ + "0 | Polymeshcontracts : Upgrade api", + "1 | Api [1/2] : 3451528776", + "1 | Api [2/2] : 68ad954c", + "2 | Next upgrade [1/4] : 2783301435", + "2 | Next upgrade [2/4] : 799291922", + "2 | Next upgrade [3/4] : ff0463894da7697897a16256a843ac5aae231d", + "2 | Next upgrade [4/4] : a18d8434806e357ba8b9aaf82b", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 1524, + "name": "Polymeshcontracts_Upgrade_api", + "blob": "2f057b82884a024d3a170c93aafeef126a92728e3ebea60ce2880767d6748e6c4668db6202cf2e0c18aeade0b6e8801d15e2d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Polymeshcontracts : Upgrade api", + "1 | Api [1/2] : 389696770", + "1 | Api [2/2] : 7b82884a", + "2 | Next upgrade [1/4] : 4272591628", + "2 | Next upgrade [2/4] : 2456425199", + "2 | Next upgrade [3/4] : 728e3ebea60ce2880767d6748e6c4668db6202", + "2 | Next upgrade [4/4] : cf2e0c18aeade0b6e8801d15e2" + ], + "output_expert": [ + "0 | Polymeshcontracts : Upgrade api", + "1 | Api [1/2] : 389696770", + "1 | Api [2/2] : 7b82884a", + "2 | Next upgrade [1/4] : 4272591628", + "2 | Next upgrade [2/4] : 2456425199", + "2 | Next upgrade [3/4] : 728e3ebea60ce2880767d6748e6c4668db6202", + "2 | Next upgrade [4/4] : cf2e0c18aeade0b6e8801d15e2", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 1525, + "name": "Polymeshcontracts_Upgrade_api", + "blob": "2f050a41448391be2e488c9f2e399fe8080edfe46d711a1f02d4f06f730585472386a5f4cca69f431fb54124af50f61872a7d5030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Polymeshcontracts : Upgrade api", + "1 | Api [1/2] : 1211022993", + "1 | Api [2/2] : 0a414483", + "2 | Next upgrade [1/4] : 959356812", + "2 | Next upgrade [2/4] : 235464863", + "2 | Next upgrade [3/4] : dfe46d711a1f02d4f06f730585472386a5f4cc", + "2 | Next upgrade [4/4] : a69f431fb54124af50f61872a7", + "3 | Tip : POLYX 1234.56789" + ], + "output_expert": [ + "0 | Polymeshcontracts : Upgrade api", + "1 | Api [1/2] : 1211022993", + "1 | Api [2/2] : 0a414483", + "2 | Next upgrade [1/4] : 959356812", + "2 | Next upgrade [2/4] : 235464863", + "2 | Next upgrade [3/4] : dfe46d711a1f02d4f06f730585472386a5f4cc", + "2 | Next upgrade [4/4] : a69f431fb54124af50f61872a7", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1580, - "name": "Polymeshcontracts_Instantiate_with_hash_perms", - "blob": "2f0140d8127ea9f0d1cdf6126ec9c838c9bac1c2680163ce64c10c05000000000000000000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f406310200b200b100c293435000000d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1526, + "name": "Preimage_Note_preimage", + "blob": "300010200b200bd503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Polymeshcontracts : Instantiate with hash perms", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit : POLYX 5552342.355555", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 32", - "5 | Data [2/4] : 11", - "5 | Data [3/4] : 32", - "5 | Data [4/4] : 11", - "6 | Salt [1/4] : 12", - "6 | Salt [2/4] : 41", - "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", - "7 | Perms [1/3] : Whole", - "7 | Perms [2/3] : Whole", - "7 | Perms [3/3] : Whole", - "8 | Tip : POLYX 0.000987" + "0 | Preimage : Note preimage", + "1 | Bytes [1/4] : 32", + "1 | Bytes [2/4] : 11", + "1 | Bytes [3/4] : 32", + "1 | Bytes [4/4] : 11", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Polymeshcontracts : Instantiate with hash perms", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit : POLYX 5552342.355555", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 32", - "5 | Data [2/4] : 11", - "5 | Data [3/4] : 32", - "5 | Data [4/4] : 11", - "6 | Salt [1/4] : 12", - "6 | Salt [2/4] : 41", - "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", - "7 | Perms [1/3] : Whole", - "7 | Perms [2/3] : Whole", - "7 | Perms [3/3] : Whole", - "8 | Chain : Polymesh", - "9 | Nonce : 50283", - "10 | Tip : POLYX 0.000987", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Preimage : Note preimage", + "1 | Bytes [1/4] : 32", + "1 | Bytes [2/4] : 11", + "1 | Bytes [3/4] : 32", + "1 | Bytes [4/4] : 11", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1581, - "name": "Polymeshcontracts_Update_call_runtime_whitelist", - "blob": "2f020cfcbd00d59c018dd200d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1527, + "name": "Preimage_Note_preimage", + "blob": "3000100c293435d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Polymeshcontracts : Update call runtime whitelist", - "1 | Updates [1/9] : 252", - "1 | Updates [2/9] : 189", - "1 | Updates [3/9] : False", - "1 | Updates [4/9] : 213", - "1 | Updates [5/9] : 156", - "1 | Updates [6/9] : True", - "1 | Updates [7/9] : 141", - "1 | Updates [8/9] : 210", - "1 | Updates [9/9] : False", - "2 | Tip : POLYX 0.000987" + "0 | Preimage : Note preimage", + "1 | Bytes [1/4] : 12", + "1 | Bytes [2/4] : 41", + "1 | Bytes [3/4] : 52", + "1 | Bytes [4/4] : 53", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Polymeshcontracts : Update call runtime whitelist", - "1 | Updates [1/9] : 252", - "1 | Updates [2/9] : 189", - "1 | Updates [3/9] : False", - "1 | Updates [4/9] : 213", - "1 | Updates [5/9] : 156", - "1 | Updates [6/9] : True", - "1 | Updates [7/9] : 141", - "1 | Updates [8/9] : 210", - "1 | Updates [9/9] : False", + "0 | Preimage : Note preimage", + "1 | Bytes [1/4] : 12", + "1 | Bytes [2/4] : 41", + "1 | Bytes [3/4] : 52", + "1 | Bytes [4/4] : 53", "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1582, - "name": "Polymeshcontracts_Update_call_runtime_whitelist", - "blob": "2f0208717b0126ab00d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1528, + "name": "Preimage_Note_preimage", + "blob": "3000100d0c1323d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Polymeshcontracts : Update call runtime whitelist", - "1 | Updates [1/6] : 113", - "1 | Updates [2/6] : 123", - "1 | Updates [3/6] : True", - "1 | Updates [4/6] : 38", - "1 | Updates [5/6] : 171", - "1 | Updates [6/6] : False" + "0 | Preimage : Note preimage", + "1 | Bytes [1/4] : 13", + "1 | Bytes [2/4] : 12", + "1 | Bytes [3/4] : 19", + "1 | Bytes [4/4] : 35" ], "output_expert": [ - "0 | Polymeshcontracts : Update call runtime whitelist", - "1 | Updates [1/6] : 113", - "1 | Updates [2/6] : 123", - "1 | Updates [3/6] : True", - "1 | Updates [4/6] : 38", - "1 | Updates [5/6] : 171", - "1 | Updates [6/6] : False", + "0 | Preimage : Note preimage", + "1 | Bytes [1/4] : 13", + "1 | Bytes [2/4] : 12", + "1 | Bytes [3/4] : 19", + "1 | Bytes [4/4] : 35", "2 | Chain : Polymesh", - "3 | Nonce : 100", + "3 | Nonce : 0", "4 | Era Phase : 61", "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1583, - "name": "Polymeshcontracts_Update_call_runtime_whitelist", - "blob": "2f0208717b0126ab00d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1529, + "name": "Preimage_Note_preimage", + "blob": "3000100c293435d503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Polymeshcontracts : Update call runtime whitelist", - "1 | Updates [1/6] : 113", - "1 | Updates [2/6] : 123", - "1 | Updates [3/6] : True", - "1 | Updates [4/6] : 38", - "1 | Updates [5/6] : 171", - "1 | Updates [6/6] : False", - "2 | Tip : POLYX 0.000987" + "0 | Preimage : Note preimage", + "1 | Bytes [1/4] : 12", + "1 | Bytes [2/4] : 41", + "1 | Bytes [3/4] : 52", + "1 | Bytes [4/4] : 53", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Polymeshcontracts : Update call runtime whitelist", - "1 | Updates [1/6] : 113", - "1 | Updates [2/6] : 123", - "1 | Updates [3/6] : True", - "1 | Updates [4/6] : 38", - "1 | Updates [5/6] : 171", - "1 | Updates [6/6] : False", + "0 | Preimage : Note preimage", + "1 | Bytes [1/4] : 12", + "1 | Bytes [2/4] : 41", + "1 | Bytes [3/4] : 52", + "1 | Bytes [4/4] : 53", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", + "3 | Nonce : 100", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1584, - "name": "Polymeshcontracts_Update_call_runtime_whitelist", - "blob": "2f0208717b0126ab00d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1530, + "name": "Preimage_Note_preimage", + "blob": "300010200b200bd5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Polymeshcontracts : Update call runtime whitelist", - "1 | Updates [1/6] : 113", - "1 | Updates [2/6] : 123", - "1 | Updates [3/6] : True", - "1 | Updates [4/6] : 38", - "1 | Updates [5/6] : 171", - "1 | Updates [6/6] : False", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Preimage : Note preimage", + "1 | Bytes [1/4] : 32", + "1 | Bytes [2/4] : 11", + "1 | Bytes [3/4] : 32", + "1 | Bytes [4/4] : 11", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Polymeshcontracts : Update call runtime whitelist", - "1 | Updates [1/6] : 113", - "1 | Updates [2/6] : 123", - "1 | Updates [3/6] : True", - "1 | Updates [4/6] : 38", - "1 | Updates [5/6] : 171", - "1 | Updates [6/6] : False", + "0 | Preimage : Note preimage", + "1 | Bytes [1/4] : 32", + "1 | Bytes [2/4] : 11", + "1 | Bytes [3/4] : 32", + "1 | Bytes [4/4] : 11", "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", + "3 | Nonce : 1", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1585, - "name": "Polymeshcontracts_Update_call_runtime_whitelist", - "blob": "2f0208717b0126ab00d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1531, + "name": "Preimage_Unnote_preimage", + "blob": "3001885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Polymeshcontracts : Update call runtime whitelist", - "1 | Updates [1/6] : 113", - "1 | Updates [2/6] : 123", - "1 | Updates [3/6] : True", - "1 | Updates [4/6] : 38", - "1 | Updates [5/6] : 171", - "1 | Updates [6/6] : False", - "2 | Tip : POLYX 5552342.355555" + "0 | Preimage : Unnote preimage", + "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Polymeshcontracts : Update call runtime whitelist", - "1 | Updates [1/6] : 113", - "1 | Updates [2/6] : 123", - "1 | Updates [3/6] : True", - "1 | Updates [4/6] : 38", - "1 | Updates [5/6] : 171", - "1 | Updates [6/6] : False", + "0 | Preimage : Unnote preimage", + "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", + "3 | Nonce : 1", + "4 | Tip : POLYX 1234.56789", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1586, - "name": "Polymeshcontracts_Instantiate_with_code_as_primary_key", - "blob": "2f0340d8127ea9f0d1cdf6126ec9c838c9bac1690f51da19d99ba97201d202964900000000000000000000000010200b200b100e2a0c49100e2a0c49d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1532, + "name": "Preimage_Unnote_preimage", + "blob": "3001885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Polymeshcontracts : Instantiate with code as primary key", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 6768", - "2 | Gas limit [2/2] : 32274634172389969", - "3 | Storage deposit limit : POLYX 1234.56789", - "4 | Code [1/4] : 32", - "4 | Code [2/4] : 11", - "4 | Code [3/4] : 32", - "4 | Code [4/4] : 11", - "5 | Data [1/4] : 14", - "5 | Data [2/4] : 42", - "5 | Data [3/4] : 12", - "5 | Data [4/4] : 73", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73" + "0 | Preimage : Unnote preimage", + "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Polymeshcontracts : Instantiate with code as primary key", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 6768", - "2 | Gas limit [2/2] : 32274634172389969", - "3 | Storage deposit limit : POLYX 1234.56789", - "4 | Code [1/4] : 32", - "4 | Code [2/4] : 11", - "4 | Code [3/4] : 32", - "4 | Code [4/4] : 11", - "5 | Data [1/4] : 14", - "5 | Data [2/4] : 42", - "5 | Data [3/4] : 12", - "5 | Data [4/4] : 73", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73", - "7 | Chain : Polymesh", - "8 | Nonce : 100", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Preimage : Unnote preimage", + "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1587, - "name": "Polymeshcontracts_Instantiate_with_code_as_primary_key", - "blob": "2f0340d8127ea9f0d1cdf6126ec9c838c9ba139f386be0e29147ce13d5cc2b675623e52e01db03000000000000000000000000000010200b200b10200b200b100c293435d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1533, + "name": "Preimage_Unnote_preimage", + "blob": "3001885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Polymeshcontracts : Instantiate with code as primary key", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 14864009498773371039", - "2 | Gas limit [2/2] : 3379145949416508629", - "3 | Storage deposit limit : POLYX 0.000987", - "4 | Code [1/4] : 32", - "4 | Code [2/4] : 11", - "4 | Code [3/4] : 32", - "4 | Code [4/4] : 11", - "5 | Data [1/4] : 32", - "5 | Data [2/4] : 11", - "5 | Data [3/4] : 32", - "5 | Data [4/4] : 11", - "6 | Salt [1/4] : 12", - "6 | Salt [2/4] : 41", - "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", - "7 | Tip : POLYX 0.000987" + "0 | Preimage : Unnote preimage", + "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Polymeshcontracts : Instantiate with code as primary key", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 14864009498773371039", - "2 | Gas limit [2/2] : 3379145949416508629", - "3 | Storage deposit limit : POLYX 0.000987", - "4 | Code [1/4] : 32", - "4 | Code [2/4] : 11", - "4 | Code [3/4] : 32", - "4 | Code [4/4] : 11", - "5 | Data [1/4] : 32", - "5 | Data [2/4] : 11", - "5 | Data [3/4] : 32", - "5 | Data [4/4] : 11", - "6 | Salt [1/4] : 12", - "6 | Salt [2/4] : 41", - "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", - "7 | Chain : Polymesh", - "8 | Nonce : 100", - "9 | Tip : POLYX 0.000987", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Preimage : Unnote preimage", + "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 1534, + "name": "Preimage_Unnote_preimage", + "blob": "3001885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Preimage : Unnote preimage", + "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ], + "output_expert": [ + "0 | Preimage : Unnote preimage", + "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1588, - "name": "Polymeshcontracts_Instantiate_with_code_as_primary_key", - "blob": "2f0340d8127ea9f0d1cdf6126ec9c838c9ba139f386be0e29147ce13d5cc2b675623e52e01d2029649000000000000000000000000100c29343510200b200b100d0c1323d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1535, + "name": "Preimage_Unnote_preimage", + "blob": "3001885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Polymeshcontracts : Instantiate with code as primary key", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 14864009498773371039", - "2 | Gas limit [2/2] : 3379145949416508629", - "3 | Storage deposit limit : POLYX 1234.56789", - "4 | Code [1/4] : 12", - "4 | Code [2/4] : 41", - "4 | Code [3/4] : 52", - "4 | Code [4/4] : 53", - "5 | Data [1/4] : 32", - "5 | Data [2/4] : 11", - "5 | Data [3/4] : 32", - "5 | Data [4/4] : 11", - "6 | Salt [1/4] : 13", - "6 | Salt [2/4] : 12", - "6 | Salt [3/4] : 19", - "6 | Salt [4/4] : 35" + "0 | Preimage : Unnote preimage", + "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Polymeshcontracts : Instantiate with code as primary key", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 14864009498773371039", - "2 | Gas limit [2/2] : 3379145949416508629", - "3 | Storage deposit limit : POLYX 1234.56789", - "4 | Code [1/4] : 12", - "4 | Code [2/4] : 41", - "4 | Code [3/4] : 52", - "4 | Code [4/4] : 53", - "5 | Data [1/4] : 32", - "5 | Data [2/4] : 11", - "5 | Data [3/4] : 32", - "5 | Data [4/4] : 11", - "6 | Salt [1/4] : 13", - "6 | Salt [2/4] : 12", - "6 | Salt [3/4] : 19", - "6 | Salt [4/4] : 35", - "7 | Chain : Polymesh", - "8 | Nonce : 0", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Preimage : Unnote preimage", + "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1589, - "name": "Polymeshcontracts_Instantiate_with_code_as_primary_key", - "blob": "2f0340d8127ea9f0d1cdf6126ec9c838c9bac1690f51da19d99ba97201e3b54f03000000000000000000000000100c293435100d0c132310200b200bd503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1536, + "name": "Preimage_Request_preimage", + "blob": "3002885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Polymeshcontracts : Instantiate with code as primary key", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 6768", - "2 | Gas limit [2/2] : 32274634172389969", - "3 | Storage deposit limit : POLYX 55.555555", - "4 | Code [1/4] : 12", - "4 | Code [2/4] : 41", - "4 | Code [3/4] : 52", - "4 | Code [4/4] : 53", - "5 | Data [1/4] : 13", - "5 | Data [2/4] : 12", - "5 | Data [3/4] : 19", - "5 | Data [4/4] : 35", - "6 | Salt [1/4] : 32", - "6 | Salt [2/4] : 11", - "6 | Salt [3/4] : 32", - "6 | Salt [4/4] : 11", - "7 | Tip : POLYX 1234.56789" + "0 | Preimage : Request preimage", + "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Polymeshcontracts : Instantiate with code as primary key", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 6768", - "2 | Gas limit [2/2] : 32274634172389969", - "3 | Storage deposit limit : POLYX 55.555555", - "4 | Code [1/4] : 12", - "4 | Code [2/4] : 41", - "4 | Code [3/4] : 52", - "4 | Code [4/4] : 53", - "5 | Data [1/4] : 13", - "5 | Data [2/4] : 12", - "5 | Data [3/4] : 19", - "5 | Data [4/4] : 35", - "6 | Salt [1/4] : 32", - "6 | Salt [2/4] : 11", - "6 | Salt [3/4] : 32", - "6 | Salt [4/4] : 11", - "7 | Chain : Polymesh", - "8 | Nonce : 50283", - "9 | Tip : POLYX 1234.56789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Preimage : Request preimage", + "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1590, - "name": "Polymeshcontracts_Instantiate_with_code_as_primary_key", - "blob": "2f0340d8127ea9f0d1cdf6126ec9c838c9bac1c26801db03000000000000000000000000000010200b200b100d0c1323100e2a0c49d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1537, + "name": "Preimage_Request_preimage", + "blob": "3002885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Polymeshcontracts : Instantiate with code as primary key", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit : POLYX 0.000987", - "4 | Code [1/4] : 32", - "4 | Code [2/4] : 11", - "4 | Code [3/4] : 32", - "4 | Code [4/4] : 11", - "5 | Data [1/4] : 13", - "5 | Data [2/4] : 12", - "5 | Data [3/4] : 19", - "5 | Data [4/4] : 35", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73", - "7 | Tip : POLYX 0.000987" + "0 | Preimage : Request preimage", + "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Polymeshcontracts : Instantiate with code as primary key", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit : POLYX 0.000987", - "4 | Code [1/4] : 32", - "4 | Code [2/4] : 11", - "4 | Code [3/4] : 32", - "4 | Code [4/4] : 11", - "5 | Data [1/4] : 13", - "5 | Data [2/4] : 12", - "5 | Data [3/4] : 19", - "5 | Data [4/4] : 35", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73", - "7 | Chain : Polymesh", - "8 | Nonce : 0", - "9 | Tip : POLYX 0.000987", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Preimage : Request preimage", + "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1591, - "name": "Polymeshcontracts_Instantiate_with_hash_as_primary_key", - "blob": "2f0440d8127ea9f0d1cdf6126ec9c838c9bac1c26801db0300000000000000000000000000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f406310200b200b100e2a0c49d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1538, + "name": "Preimage_Request_preimage", + "blob": "3002885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Polymeshcontracts : Instantiate with hash as primary key", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit : POLYX 0.000987", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 32", - "5 | Data [2/4] : 11", - "5 | Data [3/4] : 32", - "5 | Data [4/4] : 11", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73" + "0 | Preimage : Request preimage", + "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Polymeshcontracts : Instantiate with hash as primary key", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit : POLYX 0.000987", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 32", - "5 | Data [2/4] : 11", - "5 | Data [3/4] : 32", - "5 | Data [4/4] : 11", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73", - "7 | Chain : Polymesh", - "8 | Nonce : 100", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Preimage : Request preimage", + "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1592, - "name": "Polymeshcontracts_Instantiate_with_hash_as_primary_key", - "blob": "2f0440d8127ea9f0d1cdf6126ec9c838c9bac1c2680163ce64c10c05000000000000000000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f406310200b200b100c293435d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1539, + "name": "Preimage_Request_preimage", + "blob": "3002885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Polymeshcontracts : Instantiate with hash as primary key", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit : POLYX 5552342.355555", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 32", - "5 | Data [2/4] : 11", - "5 | Data [3/4] : 32", - "5 | Data [4/4] : 11", - "6 | Salt [1/4] : 12", - "6 | Salt [2/4] : 41", - "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", - "7 | Tip : POLYX 5552342.355555" + "0 | Preimage : Request preimage", + "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Polymeshcontracts : Instantiate with hash as primary key", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit : POLYX 5552342.355555", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 32", - "5 | Data [2/4] : 11", - "5 | Data [3/4] : 32", - "5 | Data [4/4] : 11", - "6 | Salt [1/4] : 12", - "6 | Salt [2/4] : 41", - "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", - "7 | Chain : Polymesh", - "8 | Nonce : 50283", - "9 | Tip : POLYX 5552342.355555", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Preimage : Request preimage", + "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1593, - "name": "Polymeshcontracts_Instantiate_with_hash_as_primary_key", - "blob": "2f0440d8127ea9f0d1cdf6126ec9c838c9bac1c26801158139ae28a3dfaac5fe1560a5e9e05c6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063100d0c132310200b200bd5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1540, + "name": "Preimage_Request_preimage", + "blob": "3002885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Polymeshcontracts : Instantiate with hash as primary key", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit [1/2] : POLYX 12345678901234567890123456789012", - "3 | Storage deposit limit [2/2] : 3.456789", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 13", - "5 | Data [2/4] : 12", - "5 | Data [3/4] : 19", - "5 | Data [4/4] : 35", - "6 | Salt [1/4] : 32", - "6 | Salt [2/4] : 11", - "6 | Salt [3/4] : 32", - "6 | Salt [4/4] : 11", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789" + "0 | Preimage : Request preimage", + "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ], "output_expert": [ - "0 | Polymeshcontracts : Instantiate with hash as primary key", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit [1/2] : POLYX 12345678901234567890123456789012", - "3 | Storage deposit limit [2/2] : 3.456789", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 13", - "5 | Data [2/4] : 12", - "5 | Data [3/4] : 19", - "5 | Data [4/4] : 35", - "6 | Salt [1/4] : 32", - "6 | Salt [2/4] : 11", - "6 | Salt [3/4] : 32", - "6 | Salt [4/4] : 11", - "7 | Chain : Polymesh", - "8 | Nonce : 1", - "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "9 | Tip [2/2] : 3.456789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Preimage : Request preimage", + "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1594, - "name": "Polymeshcontracts_Instantiate_with_hash_as_primary_key", - "blob": "2f0440d8127ea9f0d1cdf6126ec9c838c9bac1c26801d20296490000000000000000000000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063100c293435100c293435d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1541, + "name": "Preimage_Unrequest_preimage", + "blob": "3003885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Polymeshcontracts : Instantiate with hash as primary key", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit : POLYX 1234.56789", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 12", - "5 | Data [2/4] : 41", - "5 | Data [3/4] : 52", - "5 | Data [4/4] : 53", - "6 | Salt [1/4] : 12", - "6 | Salt [2/4] : 41", - "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", - "7 | Tip : POLYX 5552342.355555" + "0 | Preimage : Unrequest preimage", + "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ], "output_expert": [ - "0 | Polymeshcontracts : Instantiate with hash as primary key", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 12464", - "2 | Gas limit [2/2] : 26", - "3 | Storage deposit limit : POLYX 1234.56789", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 12", - "5 | Data [2/4] : 41", - "5 | Data [3/4] : 52", - "5 | Data [4/4] : 53", - "6 | Salt [1/4] : 12", - "6 | Salt [2/4] : 41", - "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", - "7 | Chain : Polymesh", - "8 | Nonce : 100", - "9 | Tip : POLYX 5552342.355555", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Preimage : Unrequest preimage", + "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1595, - "name": "Polymeshcontracts_Instantiate_with_hash_as_primary_key", - "blob": "2f0440d8127ea9f0d1cdf6126ec9c838c9bac1690f51da19d99ba9720163ce64c10c05000000000000000000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063100c293435100c293435d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1542, + "name": "Preimage_Unrequest_preimage", + "blob": "3003885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad503910103d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Polymeshcontracts : Instantiate with hash as primary key", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 6768", - "2 | Gas limit [2/2] : 32274634172389969", - "3 | Storage deposit limit : POLYX 5552342.355555", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 12", - "5 | Data [2/4] : 41", - "5 | Data [3/4] : 52", - "5 | Data [4/4] : 53", - "6 | Salt [1/4] : 12", - "6 | Salt [2/4] : 41", - "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", - "7 | Tip : POLYX 5552342.355555" + "0 | Preimage : Unrequest preimage", + "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Polymeshcontracts : Instantiate with hash as primary key", - "1 | Endowment [1/2] : POLYX 24828121060746971842942860419690", - "1 | Endowment [2/2] : 4.68768", - "2 | Gas limit [1/2] : 6768", - "2 | Gas limit [2/2] : 32274634172389969", - "3 | Storage deposit limit : POLYX 5552342.355555", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 12", - "5 | Data [2/4] : 41", - "5 | Data [3/4] : 52", - "5 | Data [4/4] : 53", - "6 | Salt [1/4] : 12", - "6 | Salt [2/4] : 41", - "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", - "7 | Chain : Polymesh", - "8 | Nonce : 50283", - "9 | Tip : POLYX 5552342.355555", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Preimage : Unrequest preimage", + "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1596, - "name": "Polymeshcontracts_Upgrade_api", - "blob": "2f05d45944c657eb3ee84d2feb467c0e05b2237886f9d68f5748a831d0762c54d753fe0ccb6e7dea5156df31e7cf73f756b1d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1543, + "name": "Preimage_Unrequest_preimage", + "blob": "3003885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Polymeshcontracts : Upgrade api", - "1 | Api [1/2] : 3896437591", - "1 | Api [2/2] : d45944c6", - "2 | Next upgrade [1/4] : 1189818189", - "2 | Next upgrade [2/4] : 2986675836", - "2 | Next upgrade [3/4] : 237886f9d68f5748a831d0762c54d753fe0ccb", - "2 | Next upgrade [4/4] : 6e7dea5156df31e7cf73f756b1", - "3 | Tip : POLYX 1234.56789" + "0 | Preimage : Unrequest preimage", + "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Polymeshcontracts : Upgrade api", - "1 | Api [1/2] : 3896437591", - "1 | Api [2/2] : d45944c6", - "2 | Next upgrade [1/4] : 1189818189", - "2 | Next upgrade [2/4] : 2986675836", - "2 | Next upgrade [3/4] : 237886f9d68f5748a831d0762c54d753fe0ccb", - "2 | Next upgrade [4/4] : 6e7dea5156df31e7cf73f756b1", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Preimage : Unrequest preimage", + "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1597, - "name": "Polymeshcontracts_Upgrade_api", - "blob": "2f055a938b7950e34effbb1b592af450ed0e7a5b9f28d81a6ab20456a9ed5fbf0916492135d6d6ba74b86610c092161250ced503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1544, + "name": "Preimage_Unrequest_preimage", + "blob": "3003885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Polymeshcontracts : Upgrade api", - "1 | Api [1/2] : 4283360080", - "1 | Api [2/2] : 5a938b79", - "2 | Next upgrade [1/4] : 710482875", - "2 | Next upgrade [2/4] : 250433780", - "2 | Next upgrade [3/4] : 7a5b9f28d81a6ab20456a9ed5fbf0916492135", - "2 | Next upgrade [4/4] : d6d6ba74b86610c092161250ce", - "3 | Tip : POLYX 1234.56789" + "0 | Preimage : Unrequest preimage", + "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Polymeshcontracts : Upgrade api", - "1 | Api [1/2] : 4283360080", - "1 | Api [2/2] : 5a938b79", - "2 | Next upgrade [1/4] : 710482875", - "2 | Next upgrade [2/4] : 250433780", - "2 | Next upgrade [3/4] : 7a5b9f28d81a6ab20456a9ed5fbf0916492135", - "2 | Next upgrade [4/4] : d6d6ba74b86610c092161250ce", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Preimage : Unrequest preimage", + "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1598, - "name": "Polymeshcontracts_Upgrade_api", - "blob": "2f055a938b7950e34eff4d2feb467c0e05b2237886f9d68f5748a831d0762c54d753fe0ccb6e7dea5156df31e7cf73f756b1d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1545, + "name": "Preimage_Unrequest_preimage", + "blob": "3003885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0ad5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Polymeshcontracts : Upgrade api", - "1 | Api [1/2] : 4283360080", - "1 | Api [2/2] : 5a938b79", - "2 | Next upgrade [1/4] : 1189818189", - "2 | Next upgrade [2/4] : 2986675836", - "2 | Next upgrade [3/4] : 237886f9d68f5748a831d0762c54d753fe0ccb", - "2 | Next upgrade [4/4] : 6e7dea5156df31e7cf73f756b1", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Preimage : Unrequest preimage", + "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ], "output_expert": [ - "0 | Polymeshcontracts : Upgrade api", - "1 | Api [1/2] : 4283360080", - "1 | Api [2/2] : 5a938b79", - "2 | Next upgrade [1/4] : 1189818189", - "2 | Next upgrade [2/4] : 2986675836", - "2 | Next upgrade [3/4] : 237886f9d68f5748a831d0762c54d753fe0ccb", - "2 | Next upgrade [4/4] : 6e7dea5156df31e7cf73f756b1", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Preimage : Unrequest preimage", + "1 | Hash [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "1 | Hash [2/2] : 25b41ba30e0c1aaf1ab411dd0a", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1599, - "name": "Polymeshcontracts_Upgrade_api", - "blob": "2f057250a1428f296d014d2feb467c0e05b2237886f9d68f5748a831d0762c54d753fe0ccb6e7dea5156df31e7cf73f756b1d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1546, + "name": "Nft_Create_nft_collection", + "blob": "310001417373657449442d3132333435363738000801377f14ce727ace5500478640c84d9aa2a1d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Polymeshcontracts : Upgrade api", - "1 | Api [1/2] : 23931279", - "1 | Api [2/2] : 7250a142", - "2 | Next upgrade [1/4] : 1189818189", - "2 | Next upgrade [2/4] : 2986675836", - "2 | Next upgrade [3/4] : 237886f9d68f5748a831d0762c54d753fe0ccb", - "2 | Next upgrade [4/4] : 6e7dea5156df31e7cf73f756b1", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" + "0 | Nft : Create nft collection", + "1 | Asset id : AssetID-12345678", + "2 | Nft type : None", + "3 | Collection keys [1/2] : 6183013971928579895", + "3 | Collection keys [2/2] : 11647041245196355143", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Polymeshcontracts : Upgrade api", - "1 | Api [1/2] : 23931279", - "1 | Api [2/2] : 7250a142", - "2 | Next upgrade [1/4] : 1189818189", - "2 | Next upgrade [2/4] : 2986675836", - "2 | Next upgrade [3/4] : 237886f9d68f5748a831d0762c54d753fe0ccb", - "2 | Next upgrade [4/4] : 6e7dea5156df31e7cf73f756b1", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Nft : Create nft collection", + "1 | Asset id : AssetID-12345678", + "2 | Nft type : None", + "3 | Collection keys [1/2] : 6183013971928579895", + "3 | Collection keys [2/2] : 11647041245196355143", + "4 | Chain : Polymesh", + "5 | Nonce : 1", + "6 | Tip : POLYX 5552342.355555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1600, - "name": "Polymeshcontracts_Upgrade_api", - "blob": "2f05153049dc88a59b4c873fe61a42cf106e67e35a498feb0cd0ee29081a0f5bec6761872d4cca60ef08985ff0587d6c13d3d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1547, + "name": "Nft_Create_nft_collection", + "blob": "310001417373657449442d31323334353637380102040014df1f8aec782936d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Polymeshcontracts : Upgrade api", - "1 | Api [1/2] : 1285268872", - "1 | Api [2/2] : 153049dc", - "2 | Next upgrade [1/4] : 451297159", - "2 | Next upgrade [2/4] : 1846595394", - "2 | Next upgrade [3/4] : 67e35a498feb0cd0ee29081a0f5bec6761872d", - "2 | Next upgrade [4/4] : 4cca60ef08985ff0587d6c13d3" + "0 | Nft : Create nft collection", + "1 | Asset id : AssetID-12345678", + "2 | Nft type : Invoice", + "3 | Collection keys : 3902783509418204948", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Polymeshcontracts : Upgrade api", - "1 | Api [1/2] : 1285268872", - "1 | Api [2/2] : 153049dc", - "2 | Next upgrade [1/4] : 451297159", - "2 | Next upgrade [2/4] : 1846595394", - "2 | Next upgrade [3/4] : 67e35a498feb0cd0ee29081a0f5bec6761872d", - "2 | Next upgrade [4/4] : 4cca60ef08985ff0587d6c13d3", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Nft : Create nft collection", + "1 | Asset id : AssetID-12345678", + "2 | Nft type : Invoice", + "3 | Collection keys : 3902783509418204948", + "4 | Chain : Polymesh", + "5 | Nonce : 100", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1601, - "name": "Preimage_Note_preimage", - "blob": "3000100c293435d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1548, + "name": "Nft_Create_nft_collection", + "blob": "310001417373657449442d31323334353637380100040014df1f8aec782936d50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Preimage : Note preimage", - "1 | Bytes [1/4] : 12", - "1 | Bytes [2/4] : 41", - "1 | Bytes [3/4] : 52", - "1 | Bytes [4/4] : 53" + "0 | Nft : Create nft collection", + "1 | Asset id : AssetID-12345678", + "2 | Nft type : Derivative", + "3 | Collection keys : 3902783509418204948", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Preimage : Note preimage", - "1 | Bytes [1/4] : 12", - "1 | Bytes [2/4] : 41", - "1 | Bytes [3/4] : 52", - "1 | Bytes [4/4] : 53", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Nft : Create nft collection", + "1 | Asset id : AssetID-12345678", + "2 | Nft type : Derivative", + "3 | Collection keys : 3902783509418204948", + "4 | Chain : Polymesh", + "5 | Nonce : 100", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1602, - "name": "Preimage_Note_preimage", - "blob": "3000100e2a0c49d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1549, + "name": "Nft_Create_nft_collection", + "blob": "310001417373657449442d313233343536373801010801377f14ce727ace5500478640c84d9aa2a1d503000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Preimage : Note preimage", - "1 | Bytes [1/4] : 14", - "1 | Bytes [2/4] : 42", - "1 | Bytes [3/4] : 12", - "1 | Bytes [4/4] : 73", - "2 | Tip : POLYX 0.000987" + "0 | Nft : Create nft collection", + "1 | Asset id : AssetID-12345678", + "2 | Nft type : FixedIncome", + "3 | Collection keys [1/2] : 6183013971928579895", + "3 | Collection keys [2/2] : 11647041245196355143", + "4 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Preimage : Note preimage", - "1 | Bytes [1/4] : 14", - "1 | Bytes [2/4] : 42", - "1 | Bytes [3/4] : 12", - "1 | Bytes [4/4] : 73", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Nft : Create nft collection", + "1 | Asset id : AssetID-12345678", + "2 | Nft type : FixedIncome", + "3 | Collection keys [1/2] : 6183013971928579895", + "3 | Collection keys [2/2] : 11647041245196355143", + "4 | Chain : Polymesh", + "5 | Nonce : 0", + "6 | Tip : POLYX 5552342.355555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1603, - "name": "Preimage_Note_preimage", - "blob": "3000100d0c1323d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1550, + "name": "Nft_Create_nft_collection", + "blob": "310001417373657449442d3132333435363738000401f4e347f75aada9d5d503046d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Preimage : Note preimage", - "1 | Bytes [1/4] : 13", - "1 | Bytes [2/4] : 12", - "1 | Bytes [3/4] : 19", - "1 | Bytes [4/4] : 35", - "2 | Tip : POLYX 1234.56789" + "0 | Nft : Create nft collection", + "1 | Asset id : AssetID-12345678", + "2 | Nft type : None", + "3 | Collection keys : 15396027407350096884", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Preimage : Note preimage", - "1 | Bytes [1/4] : 13", - "1 | Bytes [2/4] : 12", - "1 | Bytes [3/4] : 19", - "1 | Bytes [4/4] : 35", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Nft : Create nft collection", + "1 | Asset id : AssetID-12345678", + "2 | Nft type : None", + "3 | Collection keys : 15396027407350096884", + "4 | Chain : Polymesh", + "5 | Nonce : 1", + "6 | Tip : POLYX 0.000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 1551, + "name": "Nft_Issue_nft", + "blob": "3101417373657449442d31323334353637380001141466c3803e0000d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Nft : Issue nft", + "1 | Asset id : AssetID-12345678", + "2 | Nft metadata attributes : ", + "3 | Portfolio kind : 68722754982932", + "4 | Tip : POLYX 55.555555" + ], + "output_expert": [ + "0 | Nft : Issue nft", + "1 | Asset id : AssetID-12345678", + "2 | Nft metadata attributes : ", + "3 | Portfolio kind : 68722754982932", + "4 | Chain : Polymesh", + "5 | Nonce : 2339", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1604, - "name": "Preimage_Note_preimage", - "blob": "3000100d0c1323d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1552, + "name": "Nft_Issue_nft", + "blob": "3101417373657449442d31323334353637380800b54883efa7ee9a2880163b2b8bb85dab91d02e1bca83dda50b4c7e9389000a08ce30baed1cf1029f780143ace74eac06eb2f0101e231f2f518e27d58eb2ac784e03e618abb15ce4a16dc0f23206db5e914eac5aa09fc4d5e6b2b78d47c5cf82e1a3eae05568fbfcfb116c6e6473c7106ff80ceef01141466c3803e0000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Preimage : Note preimage", - "1 | Bytes [1/4] : 13", - "1 | Bytes [2/4] : 12", - "1 | Bytes [3/4] : 19", - "1 | Bytes [4/4] : 35", - "2 | Tip : POLYX 1234.56789" + "0 | Nft : Issue nft", + "1 | Asset id : AssetID-12345678", + "2 | Nft metadata attributes [1/8] : 2925913312975866037", + "2 | Nft metadata attributes [2/8] : 163b2b8bb85dab91d02e1bca83dda50b4c7e93", + "2 | Nft metadata attributes [3/8] : 89000a08ce30baed1cf1029f78", + "2 | Nft metadata attributes [4/8] : 3452860876437564483", + "2 | Nft metadata attributes [5/8] : e231f2f518e27d58eb2ac784e03e618abb15ce", + "2 | Nft metadata attributes [6/8] : 4a16dc0f23206db5e914eac5aa09fc4d5e6b2b", + "2 | Nft metadata attributes [7/8] : 78d47c5cf82e1a3eae05568fbfcfb116c6e647", + "2 | Nft metadata attributes [8/8] : 3c7106ff80ceef", + "3 | Portfolio kind : 68722754982932", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Preimage : Note preimage", - "1 | Bytes [1/4] : 13", - "1 | Bytes [2/4] : 12", - "1 | Bytes [3/4] : 19", - "1 | Bytes [4/4] : 35", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Nft : Issue nft", + "1 | Asset id : AssetID-12345678", + "2 | Nft metadata attributes [1/8] : 2925913312975866037", + "2 | Nft metadata attributes [2/8] : 163b2b8bb85dab91d02e1bca83dda50b4c7e93", + "2 | Nft metadata attributes [3/8] : 89000a08ce30baed1cf1029f78", + "2 | Nft metadata attributes [4/8] : 3452860876437564483", + "2 | Nft metadata attributes [5/8] : e231f2f518e27d58eb2ac784e03e618abb15ce", + "2 | Nft metadata attributes [6/8] : 4a16dc0f23206db5e914eac5aa09fc4d5e6b2b", + "2 | Nft metadata attributes [7/8] : 78d47c5cf82e1a3eae05568fbfcfb116c6e647", + "2 | Nft metadata attributes [8/8] : 3c7106ff80ceef", + "3 | Portfolio kind : 68722754982932", + "4 | Chain : Polymesh", + "5 | Nonce : 50283", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1605, - "name": "Preimage_Note_preimage", - "blob": "3000100d0c1323d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1553, + "name": "Nft_Issue_nft", + "blob": "3101417373657449442d313233343536373800014b4f2f1881570000d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Preimage : Note preimage", - "1 | Bytes [1/4] : 13", - "1 | Bytes [2/4] : 12", - "1 | Bytes [3/4] : 19", - "1 | Bytes [4/4] : 35", - "2 | Tip : POLYX 55.555555" + "0 | Nft : Issue nft", + "1 | Asset id : AssetID-12345678", + "2 | Nft metadata attributes : ", + "3 | Portfolio kind : 96211968151371", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Preimage : Note preimage", - "1 | Bytes [1/4] : 13", - "1 | Bytes [2/4] : 12", - "1 | Bytes [3/4] : 19", - "1 | Bytes [4/4] : 35", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Nft : Issue nft", + "1 | Asset id : AssetID-12345678", + "2 | Nft metadata attributes : ", + "3 | Portfolio kind : 96211968151371", + "4 | Chain : Polymesh", + "5 | Nonce : 2339", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1606, - "name": "Preimage_Unnote_preimage", - "blob": "30016fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1554, + "name": "Nft_Issue_nft", + "blob": "3101417373657449442d313233343536373800014b4f2f1881570000d503ae11030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Preimage : Unnote preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip : POLYX 0.000987" + "0 | Nft : Issue nft", + "1 | Asset id : AssetID-12345678", + "2 | Nft metadata attributes : ", + "3 | Portfolio kind : 96211968151371" ], "output_expert": [ - "0 | Preimage : Unnote preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Nft : Issue nft", + "1 | Asset id : AssetID-12345678", + "2 | Nft metadata attributes : ", + "3 | Portfolio kind : 96211968151371", + "4 | Chain : Polymesh", + "5 | Nonce : 50283", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1607, - "name": "Preimage_Unnote_preimage", - "blob": "30016fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1555, + "name": "Nft_Issue_nft", + "blob": "3101417373657449442d31323334353637380001141466c3803e0000d503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Preimage : Unnote preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip : POLYX 5552342.355555" + "0 | Nft : Issue nft", + "1 | Asset id : AssetID-12345678", + "2 | Nft metadata attributes : ", + "3 | Portfolio kind : 68722754982932", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Preimage : Unnote preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Nft : Issue nft", + "1 | Asset id : AssetID-12345678", + "2 | Nft metadata attributes : ", + "3 | Portfolio kind : 68722754982932", + "4 | Chain : Polymesh", + "5 | Nonce : 1", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1608, - "name": "Preimage_Unnote_preimage", - "blob": "30016fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1556, + "name": "Nft_Redeem_nft", + "blob": "3102417373657449442d3132333435363738043d035d85046be200017bd5030400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Preimage : Unnote preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Nft : Redeem nft", + "1 | Asset id : AssetID-12345678", + "2 | Nft id : 16315139045917408516", + "3 | Portfolio kind : Default", + "4 | Number of keys : 123" ], "output_expert": [ - "0 | Preimage : Unnote preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Nft : Redeem nft", + "1 | Asset id : AssetID-12345678", + "2 | Nft id : 16315139045917408516", + "3 | Portfolio kind : Default", + "4 | Number of keys : 123", + "5 | Chain : Polymesh", + "6 | Nonce : 1", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1609, - "name": "Preimage_Unnote_preimage", - "blob": "30016fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1557, + "name": "Nft_Redeem_nft", + "blob": "3102417373657449442d31323334353637385a8d09816368565b01141466c3803e0000017bd503048ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Preimage : Unnote preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip : POLYX 55.555555" + "0 | Nft : Redeem nft", + "1 | Asset id : AssetID-12345678", + "2 | Nft id : 6581562682024496474", + "3 | Portfolio kind : 68722754982932", + "4 | Number of keys : 123", + "5 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Preimage : Unnote preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Nft : Redeem nft", + "1 | Asset id : AssetID-12345678", + "2 | Nft id : 6581562682024496474", + "3 | Portfolio kind : 68722754982932", + "4 | Number of keys : 123", + "5 | Chain : Polymesh", + "6 | Nonce : 1", + "7 | Tip : POLYX 55.555555", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1610, - "name": "Preimage_Unnote_preimage", - "blob": "30016fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1558, + "name": "Nft_Redeem_nft", + "blob": "3102417373657449442d31323334353637385a8d09816368565b00017bd50391018ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Preimage : Unnote preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" + "0 | Nft : Redeem nft", + "1 | Asset id : AssetID-12345678", + "2 | Nft id : 6581562682024496474", + "3 | Portfolio kind : Default", + "4 | Number of keys : 123", + "5 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Preimage : Unnote preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Nft : Redeem nft", + "1 | Asset id : AssetID-12345678", + "2 | Nft id : 6581562682024496474", + "3 | Portfolio kind : Default", + "4 | Number of keys : 123", + "5 | Chain : Polymesh", + "6 | Nonce : 100", + "7 | Tip : POLYX 55.555555", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1611, - "name": "Preimage_Request_preimage", - "blob": "30026fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1559, + "name": "Nft_Redeem_nft", + "blob": "3102417373657449442d31323334353637384c351eee504289f401141466c3803e0000017bd50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Preimage : Request preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip : POLYX 55.555555" + "0 | Nft : Redeem nft", + "1 | Asset id : AssetID-12345678", + "2 | Nft id : 17620687932423550284", + "3 | Portfolio kind : 68722754982932", + "4 | Number of keys : 123", + "5 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Preimage : Request preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Nft : Redeem nft", + "1 | Asset id : AssetID-12345678", + "2 | Nft id : 17620687932423550284", + "3 | Portfolio kind : 68722754982932", + "4 | Number of keys : 123", + "5 | Chain : Polymesh", + "6 | Nonce : 100", + "7 | Tip : POLYX 5552342.355555", + "8 | Era Phase : 61", + "9 | Era Period : 64", + "10 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "10 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1612, - "name": "Preimage_Request_preimage", - "blob": "30026fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1560, + "name": "Nft_Redeem_nft", + "blob": "3102417373657449442d31323334353637385a8d09816368565b01141466c3803e0000017bd503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Preimage : Request preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip : POLYX 1234.56789" + "0 | Nft : Redeem nft", + "1 | Asset id : AssetID-12345678", + "2 | Nft id : 6581562682024496474", + "3 | Portfolio kind : 68722754982932", + "4 | Number of keys : 123" ], "output_expert": [ - "0 | Preimage : Request preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Nft : Redeem nft", + "1 | Asset id : AssetID-12345678", + "2 | Nft id : 6581562682024496474", + "3 | Portfolio kind : 68722754982932", + "4 | Number of keys : 123", + "5 | Chain : Polymesh", + "6 | Nonce : 100", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1613, - "name": "Preimage_Request_preimage", - "blob": "30026fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1561, + "name": "Nft_Controller_transfer", + "blob": "3103417373657449442d313233343536373804465004a8c5f2e56732e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e201000000000001cc4beb0ae1950000d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Preimage : Request preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip : POLYX 1234.56789" + "0 | Nft : Controller transfer", + "1 | Nfts [1/2] : AssetID-12345678", + "1 | Nfts [2/2] : 7486656886314651718", + "2 | Source portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Source portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Source portfolio [3/3] : 123456", + "3 | Callers portfolio kind : 164793783372748", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Preimage : Request preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Nft : Controller transfer", + "1 | Nfts [1/2] : AssetID-12345678", + "1 | Nfts [2/2] : 7486656886314651718", + "2 | Source portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Source portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Source portfolio [3/3] : 123456", + "3 | Callers portfolio kind : 164793783372748", + "4 | Chain : Polymesh", + "5 | Nonce : 2339", + "6 | Tip : POLYX 0.000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1614, - "name": "Preimage_Request_preimage", - "blob": "30026fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1562, + "name": "Nft_Controller_transfer", + "blob": "3103417373657449442d313233343536373804465004a8c5f2e56732e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e201000000000001cc4beb0ae1950000d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Preimage : Request preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip : POLYX 1234.56789" + "0 | Nft : Controller transfer", + "1 | Nfts [1/2] : AssetID-12345678", + "1 | Nfts [2/2] : 7486656886314651718", + "2 | Source portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Source portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Source portfolio [3/3] : 123456", + "3 | Callers portfolio kind : 164793783372748", + "4 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Preimage : Request preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Nft : Controller transfer", + "1 | Nfts [1/2] : AssetID-12345678", + "1 | Nfts [2/2] : 7486656886314651718", + "2 | Source portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Source portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Source portfolio [3/3] : 123456", + "3 | Callers portfolio kind : 164793783372748", + "4 | Chain : Polymesh", + "5 | Nonce : 50283", + "6 | Tip : POLYX 1234.56789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1615, - "name": "Preimage_Request_preimage", - "blob": "30026fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1563, + "name": "Nft_Controller_transfer", + "blob": "3103417373657449442d31323334353637380cdc624bdbe3321873ff8f46c34b6f569cf55b083a775b1eb632e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e201000000000001cc4beb0ae1950000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Preimage : Request preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip : POLYX 55.555555" + "0 | Nft : Controller transfer", + "1 | Nfts [1/4] : AssetID-12345678", + "1 | Nfts [2/4] : 8293434668020884188", + "1 | Nfts [3/4] : 11265313889103286271", + "1 | Nfts [4/4] : 13123026931837066229", + "2 | Source portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Source portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Source portfolio [3/3] : 123456", + "3 | Callers portfolio kind : 164793783372748", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Preimage : Request preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Nft : Controller transfer", + "1 | Nfts [1/4] : AssetID-12345678", + "1 | Nfts [2/4] : 8293434668020884188", + "1 | Nfts [3/4] : 11265313889103286271", + "1 | Nfts [4/4] : 13123026931837066229", + "2 | Source portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Source portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Source portfolio [3/3] : 123456", + "3 | Callers portfolio kind : 164793783372748", + "4 | Chain : Polymesh", + "5 | Nonce : 2339", + "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "6 | Tip [2/2] : 3.456789", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1616, - "name": "Preimage_Unrequest_preimage", - "blob": "30036fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1564, + "name": "Nft_Controller_transfer", + "blob": "3103417373657449442d31323334353637380c5b47044d305631b919d10abcc7aa61813cfbe43e642b4cd532e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e2010000000000014b4f2f1881570000d503008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Preimage : Unrequest preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip : POLYX 1234.56789" + "0 | Nft : Controller transfer", + "1 | Nfts [1/4] : AssetID-12345678", + "1 | Nfts [2/4] : 13344541936326035291", + "1 | Nfts [3/4] : 9322920478463676697", + "1 | Nfts [4/4] : 15369707337860578108", + "2 | Source portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Source portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Source portfolio [3/3] : 123456", + "3 | Callers portfolio kind : 96211968151371", + "4 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Preimage : Unrequest preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Nft : Controller transfer", + "1 | Nfts [1/4] : AssetID-12345678", + "1 | Nfts [2/4] : 13344541936326035291", + "1 | Nfts [3/4] : 9322920478463676697", + "1 | Nfts [4/4] : 15369707337860578108", + "2 | Source portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Source portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Source portfolio [3/3] : 123456", + "3 | Callers portfolio kind : 96211968151371", + "4 | Chain : Polymesh", + "5 | Nonce : 0", + "6 | Tip : POLYX 55.555555", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1617, - "name": "Preimage_Unrequest_preimage", - "blob": "30036fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1565, + "name": "Nft_Controller_transfer", + "blob": "3103417373657449442d31323334353637380c5b47044d305631b919d10abcc7aa61813cfbe43e642b4cd532e52f52c5f2e7ee97caea3ccf5f3004fe2be800712e3f02320776d5c34c1eaf0140e201000000000000d50391016d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Preimage : Unrequest preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip : POLYX 0.000987" + "0 | Nft : Controller transfer", + "1 | Nfts [1/4] : AssetID-12345678", + "1 | Nfts [2/4] : 13344541936326035291", + "1 | Nfts [3/4] : 9322920478463676697", + "1 | Nfts [4/4] : 15369707337860578108", + "2 | Source portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Source portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Source portfolio [3/3] : 123456", + "3 | Callers portfolio kind : Default", + "4 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Preimage : Unrequest preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Nft : Controller transfer", + "1 | Nfts [1/4] : AssetID-12345678", + "1 | Nfts [2/4] : 13344541936326035291", + "1 | Nfts [3/4] : 9322920478463676697", + "1 | Nfts [4/4] : 15369707337860578108", + "2 | Source portfolio [1/3] : 32e52f52c5f2e7ee97caea3ccf5f3004fe2be8", + "2 | Source portfolio [2/3] : 00712e3f02320776d5c34c1eaf", + "2 | Source portfolio [3/3] : 123456", + "3 | Callers portfolio kind : Default", + "4 | Chain : Polymesh", + "5 | Nonce : 100", + "6 | Tip : POLYX 0.000987", + "7 | Era Phase : 61", + "8 | Era Period : 64", + "9 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "9 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1618, - "name": "Preimage_Unrequest_preimage", - "blob": "30036fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Preimage : Unrequest preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip : POLYX 1234.56789" + "index": 1566, + "name": "Electionprovidermultiphase_Submit_unsigned", + "blob": "3200047d400004c56a007136310204014f85330078000004a9123d14d064bc0d0301010004d66ff932c92f9d21b800d58a54002461030426b5ec00005d01550100dd865824fc7061b800046400e034456874a1fbf438bc19e30015020004fcd5ac4d18885d71c902d000fcfc7c61024102fd915102d8047eab3bcd55020000001547a8f59e14fd02f058c83d0280d5d700cd03048a5727fc28042903fd190000000000003c2d02001d6611d50000810185f30436bfdd02004044b9010051023d03ac003c00004025ca00000015010071030d030419d0700000fd6b0015022828d1ccc8f8003502ad0109010503c903180000006102c4042d5600b1be2d02f00025d868b8b9610000b440a10100005503000000d101b15e000061a00416f26e025400dd309c2800ed021967b841014d02b4c01c9000ed14f8bd40180000780d0130d400048d2d8c0dc3d5b9006d33ed3e991f00000000e8009574ac0089e94c74d50158314af0d9c1009101d000e80439931dc30028001903d156000da88103d164b902b101bd779ce0000c25010030bc00b17a5875010ce0d0cc00590298d9159e91ef1fb12b520cd8f5249452e419e9e2319342b205e209de28028969d12b74c3061cec62f03d37dfb644706ea6100027e2c897dc5980d503ae11030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Electionprovidermultiphase : Submit unsigned", + "1 | Raw solution [1/43] : {\"solution\":{\"votes1\":[[4127,0]],\"vote", + "1 | Raw solution [2/43] : s2\":[[6833,[0,3484],140]],\"votes3\":[[5", + "1 | Raw solution [3/43] : 056,[[3297,0],[30,0]],0]],\"votes4\":[[1", + "1 | Raw solution [4/43] : 194,[[1295,52],[25,47],[195,64]],0]],\"", + "1 | Raw solution [5/43] : votes5\":[[213801973,[[3058,2151],[46,0", + "1 | Raw solution [6/43] : ],[8885,21],[0,9]],216]],\"votes6\":[[38", + "1 | Raw solution [7/43] : 78217,[[0,87],[85,0],[8631,22],[9,63],", + "1 | Raw solution [8/43] : [28,11800]],0]],\"votes7\":[[25,[[0,56],", + "1 | Raw solution [9/43] : [13,6673],[29,16104],[61,14],[47,14534", + "1 | Raw solution [10/43] : ],[0,133]],0]],\"votes8\":[[63,[[11061,1", + "1 | Raw solution [11/43] : 555],[34,7255],[178,52],[0,63],[63,31]", + "1 | Raw solution [12/43] : ,[152,144],[9343,148]],54]],\"votes9\":[", + "1 | Raw solution [13/43] : [860809951,[[149,0],[0,0],[4549,42],[1", + "1 | Raw solution [14/43] : 0173,5],[191,60],[22,50],[143,32],[138", + "1 | Raw solution [15/43] : 13,0]],243]],\"votes10\":[[1057609186,[[", + "1 | Raw solution [16/43] : 10,1],[202,1663],[0,0],[0,0],[0,0],[15", + "1 | Raw solution [17/43] : ,139],[0,6535],[13636,0],[0,96]],15585", + "1 | Raw solution [18/43] : ]],\"votes11\":[[12021709,[[0,16],[17,11", + "1 | Raw solution [19/43] : 0],[0,148],[207,43],[0,15],[0,0],[16,1", + "1 | Raw solution [20/43] : 2937],[0,0],[0,69],[0,220]],195]],\"vot", + "1 | Raw solution [21/43] : es12\":[[13318,[[28,0],[0,6911],[0,133]", + "1 | Raw solution [22/43] : ,[10,10],[13108,50],[62,0],[141,107],[", + "1 | Raw solution [23/43] : 66,193],[242,6],[0,0],[0,152]],49]],\"v", + "1 | Raw solution [24/43] : otes13\":[[5515,[[0,12204],[139,60],[0,", + "1 | Raw solution [25/43] : 13833],[26,46],[6254,0],[0,45],[16,104", + "1 | Raw solution [26/43] : ],[0,0],[213,0],[0,0],[116,6060],[0,0]", + "1 | Raw solution [27/43] : ],10264]],\"votes14\":[[10206341,[[21,0]", + "1 | Raw solution [28/43] : ,[3127,39],[10,0],[187,6598],[46,80],[", + "1 | Raw solution [29/43] : 147,45],[48,7],[36,0],[1339,62],[4143,", + "1 | Raw solution [30/43] : 6],[0,0],[30,67],[12,53]],0]],\"votes15", + "1 | Raw solution [31/43] : \":[[2915,[[35,12483],[11893,0],[3291,4", + "1 | Raw solution [32/43] : 027],[2022,0],[0,0],[0,58],[0,7461],[4", + "1 | Raw solution [33/43] : 3,0],[14946,19],[29,117],[22,4748],[60", + "1 | Raw solution [34/43] : ,12406],[0,100],[52,0]],58]],\"votes16\"", + "1 | Raw solution [35/43] : :[[9422,[[12487,0],[10,0],[198,5556],[", + "1 | Raw solution [36/43] : 0,10755],[224,6452],[174,108],[7663,39", + "1 | Raw solution [37/43] : ],[56,0],[3,73],[0,12],[47,0],[7852,22", + "1 | Raw solution [38/43] : ],[93,3],[56,52],[51,0]],150]]},\"score", + "1 | Raw solution [39/43] : \":{\"minimalStake\":\"0x529424f5d80c522bb", + "1 | Raw solution [40/43] : 11fef919e15d998\",\"sumStake\":\"0x6989022", + "1 | Raw solution [41/43] : 8de09e205b2429331e2e919e4\",\"sumStakeSq", + "1 | Raw solution [42/43] : uared\":\"0x6e7044b6df373df062ec1c06c374", + "1 | Raw solution [43/43] : 2bd1\"},\"round\":654315686}", + "2 | Witness : {\"voters\":925233720,\"targets\":8214}", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Preimage : Unrequest preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Electionprovidermultiphase : Submit unsigned", + "1 | Raw solution [1/43] : {\"solution\":{\"votes1\":[[4127,0]],\"vote", + "1 | Raw solution [2/43] : s2\":[[6833,[0,3484],140]],\"votes3\":[[5", + "1 | Raw solution [3/43] : 056,[[3297,0],[30,0]],0]],\"votes4\":[[1", + "1 | Raw solution [4/43] : 194,[[1295,52],[25,47],[195,64]],0]],\"", + "1 | Raw solution [5/43] : votes5\":[[213801973,[[3058,2151],[46,0", + "1 | Raw solution [6/43] : ],[8885,21],[0,9]],216]],\"votes6\":[[38", + "1 | Raw solution [7/43] : 78217,[[0,87],[85,0],[8631,22],[9,63],", + "1 | Raw solution [8/43] : [28,11800]],0]],\"votes7\":[[25,[[0,56],", + "1 | Raw solution [9/43] : [13,6673],[29,16104],[61,14],[47,14534", + "1 | Raw solution [10/43] : ],[0,133]],0]],\"votes8\":[[63,[[11061,1", + "1 | Raw solution [11/43] : 555],[34,7255],[178,52],[0,63],[63,31]", + "1 | Raw solution [12/43] : ,[152,144],[9343,148]],54]],\"votes9\":[", + "1 | Raw solution [13/43] : [860809951,[[149,0],[0,0],[4549,42],[1", + "1 | Raw solution [14/43] : 0173,5],[191,60],[22,50],[143,32],[138", + "1 | Raw solution [15/43] : 13,0]],243]],\"votes10\":[[1057609186,[[", + "1 | Raw solution [16/43] : 10,1],[202,1663],[0,0],[0,0],[0,0],[15", + "1 | Raw solution [17/43] : ,139],[0,6535],[13636,0],[0,96]],15585", + "1 | Raw solution [18/43] : ]],\"votes11\":[[12021709,[[0,16],[17,11", + "1 | Raw solution [19/43] : 0],[0,148],[207,43],[0,15],[0,0],[16,1", + "1 | Raw solution [20/43] : 2937],[0,0],[0,69],[0,220]],195]],\"vot", + "1 | Raw solution [21/43] : es12\":[[13318,[[28,0],[0,6911],[0,133]", + "1 | Raw solution [22/43] : ,[10,10],[13108,50],[62,0],[141,107],[", + "1 | Raw solution [23/43] : 66,193],[242,6],[0,0],[0,152]],49]],\"v", + "1 | Raw solution [24/43] : otes13\":[[5515,[[0,12204],[139,60],[0,", + "1 | Raw solution [25/43] : 13833],[26,46],[6254,0],[0,45],[16,104", + "1 | Raw solution [26/43] : ],[0,0],[213,0],[0,0],[116,6060],[0,0]", + "1 | Raw solution [27/43] : ],10264]],\"votes14\":[[10206341,[[21,0]", + "1 | Raw solution [28/43] : ,[3127,39],[10,0],[187,6598],[46,80],[", + "1 | Raw solution [29/43] : 147,45],[48,7],[36,0],[1339,62],[4143,", + "1 | Raw solution [30/43] : 6],[0,0],[30,67],[12,53]],0]],\"votes15", + "1 | Raw solution [31/43] : \":[[2915,[[35,12483],[11893,0],[3291,4", + "1 | Raw solution [32/43] : 027],[2022,0],[0,0],[0,58],[0,7461],[4", + "1 | Raw solution [33/43] : 3,0],[14946,19],[29,117],[22,4748],[60", + "1 | Raw solution [34/43] : ,12406],[0,100],[52,0]],58]],\"votes16\"", + "1 | Raw solution [35/43] : :[[9422,[[12487,0],[10,0],[198,5556],[", + "1 | Raw solution [36/43] : 0,10755],[224,6452],[174,108],[7663,39", + "1 | Raw solution [37/43] : ],[56,0],[3,73],[0,12],[47,0],[7852,22", + "1 | Raw solution [38/43] : ],[93,3],[56,52],[51,0]],150]]},\"score", + "1 | Raw solution [39/43] : \":{\"minimalStake\":\"0x529424f5d80c522bb", + "1 | Raw solution [40/43] : 11fef919e15d998\",\"sumStake\":\"0x6989022", + "1 | Raw solution [41/43] : 8de09e205b2429331e2e919e4\",\"sumStakeSq", + "1 | Raw solution [42/43] : uared\":\"0x6e7044b6df373df062ec1c06c374", + "1 | Raw solution [43/43] : 2bd1\"},\"round\":654315686}", + "2 | Witness : {\"voters\":925233720,\"targets\":8214}", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1619, - "name": "Preimage_Unrequest_preimage", - "blob": "30036fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Preimage : Unrequest preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip : POLYX 5552342.355555" + "index": 1567, + "name": "Electionprovidermultiphase_Submit_unsigned", + "blob": "3200047d400004c56a007136310204014f85330078000004a9123d14d064bc0d0301010004d66ff932c92f9d21b800d58a54002461030426b5ec00005d01550100dd865824fc7061b800046400e034456874a1fbf438bc19e30015020004fcd5ac4d18885d71c902d000fcfc7c61024102fd915102d8047eab3bcd55020000001547a8f59e14fd02f058c83d0280d5d700cd03048a5727fc28042903fd190000000000003c2d02001d6611d50000810185f30436bfdd02004044b9010051023d03ac003c00004025ca00000015010071030d030419d0700000fd6b0015022828d1ccc8f8003502ad0109010503c903180000006102c4042d5600b1be2d02f00025d868b8b9610000b440a10100005503000000d101b15e000061a00416f26e025400dd309c2800ed021967b841014d02b4c01c9000ed14f8bd40180000780d0130d400048d2d8c0dc3d5b9006d33ed3e991f00000000e8009574ac0089e94c74d50158314af0d9c1009101d000e80439931dc30028001903d156000da88103d164b902b101bd779ce0000c25010030bc00b17a5875010ce0d0cc00590298d9159e91ef1fb12b520cd8f5249452e419e9e2319342b205e209de28028969d12b74c3061cec62f03d37dfb644706ea6100027e2c897dc5980d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Electionprovidermultiphase : Submit unsigned", + "1 | Raw solution [1/43] : {\"solution\":{\"votes1\":[[4127,0]],\"vote", + "1 | Raw solution [2/43] : s2\":[[6833,[0,3484],140]],\"votes3\":[[5", + "1 | Raw solution [3/43] : 056,[[3297,0],[30,0]],0]],\"votes4\":[[1", + "1 | Raw solution [4/43] : 194,[[1295,52],[25,47],[195,64]],0]],\"", + "1 | Raw solution [5/43] : votes5\":[[213801973,[[3058,2151],[46,0", + "1 | Raw solution [6/43] : ],[8885,21],[0,9]],216]],\"votes6\":[[38", + "1 | Raw solution [7/43] : 78217,[[0,87],[85,0],[8631,22],[9,63],", + "1 | Raw solution [8/43] : [28,11800]],0]],\"votes7\":[[25,[[0,56],", + "1 | Raw solution [9/43] : [13,6673],[29,16104],[61,14],[47,14534", + "1 | Raw solution [10/43] : ],[0,133]],0]],\"votes8\":[[63,[[11061,1", + "1 | Raw solution [11/43] : 555],[34,7255],[178,52],[0,63],[63,31]", + "1 | Raw solution [12/43] : ,[152,144],[9343,148]],54]],\"votes9\":[", + "1 | Raw solution [13/43] : [860809951,[[149,0],[0,0],[4549,42],[1", + "1 | Raw solution [14/43] : 0173,5],[191,60],[22,50],[143,32],[138", + "1 | Raw solution [15/43] : 13,0]],243]],\"votes10\":[[1057609186,[[", + "1 | Raw solution [16/43] : 10,1],[202,1663],[0,0],[0,0],[0,0],[15", + "1 | Raw solution [17/43] : ,139],[0,6535],[13636,0],[0,96]],15585", + "1 | Raw solution [18/43] : ]],\"votes11\":[[12021709,[[0,16],[17,11", + "1 | Raw solution [19/43] : 0],[0,148],[207,43],[0,15],[0,0],[16,1", + "1 | Raw solution [20/43] : 2937],[0,0],[0,69],[0,220]],195]],\"vot", + "1 | Raw solution [21/43] : es12\":[[13318,[[28,0],[0,6911],[0,133]", + "1 | Raw solution [22/43] : ,[10,10],[13108,50],[62,0],[141,107],[", + "1 | Raw solution [23/43] : 66,193],[242,6],[0,0],[0,152]],49]],\"v", + "1 | Raw solution [24/43] : otes13\":[[5515,[[0,12204],[139,60],[0,", + "1 | Raw solution [25/43] : 13833],[26,46],[6254,0],[0,45],[16,104", + "1 | Raw solution [26/43] : ],[0,0],[213,0],[0,0],[116,6060],[0,0]", + "1 | Raw solution [27/43] : ],10264]],\"votes14\":[[10206341,[[21,0]", + "1 | Raw solution [28/43] : ,[3127,39],[10,0],[187,6598],[46,80],[", + "1 | Raw solution [29/43] : 147,45],[48,7],[36,0],[1339,62],[4143,", + "1 | Raw solution [30/43] : 6],[0,0],[30,67],[12,53]],0]],\"votes15", + "1 | Raw solution [31/43] : \":[[2915,[[35,12483],[11893,0],[3291,4", + "1 | Raw solution [32/43] : 027],[2022,0],[0,0],[0,58],[0,7461],[4", + "1 | Raw solution [33/43] : 3,0],[14946,19],[29,117],[22,4748],[60", + "1 | Raw solution [34/43] : ,12406],[0,100],[52,0]],58]],\"votes16\"", + "1 | Raw solution [35/43] : :[[9422,[[12487,0],[10,0],[198,5556],[", + "1 | Raw solution [36/43] : 0,10755],[224,6452],[174,108],[7663,39", + "1 | Raw solution [37/43] : ],[56,0],[3,73],[0,12],[47,0],[7852,22", + "1 | Raw solution [38/43] : ],[93,3],[56,52],[51,0]],150]]},\"score", + "1 | Raw solution [39/43] : \":{\"minimalStake\":\"0x529424f5d80c522bb", + "1 | Raw solution [40/43] : 11fef919e15d998\",\"sumStake\":\"0x6989022", + "1 | Raw solution [41/43] : 8de09e205b2429331e2e919e4\",\"sumStakeSq", + "1 | Raw solution [42/43] : uared\":\"0x6e7044b6df373df062ec1c06c374", + "1 | Raw solution [43/43] : 2bd1\"},\"round\":654315686}", + "2 | Witness : {\"voters\":925233720,\"targets\":8214}", + "3 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Preimage : Unrequest preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Electionprovidermultiphase : Submit unsigned", + "1 | Raw solution [1/43] : {\"solution\":{\"votes1\":[[4127,0]],\"vote", + "1 | Raw solution [2/43] : s2\":[[6833,[0,3484],140]],\"votes3\":[[5", + "1 | Raw solution [3/43] : 056,[[3297,0],[30,0]],0]],\"votes4\":[[1", + "1 | Raw solution [4/43] : 194,[[1295,52],[25,47],[195,64]],0]],\"", + "1 | Raw solution [5/43] : votes5\":[[213801973,[[3058,2151],[46,0", + "1 | Raw solution [6/43] : ],[8885,21],[0,9]],216]],\"votes6\":[[38", + "1 | Raw solution [7/43] : 78217,[[0,87],[85,0],[8631,22],[9,63],", + "1 | Raw solution [8/43] : [28,11800]],0]],\"votes7\":[[25,[[0,56],", + "1 | Raw solution [9/43] : [13,6673],[29,16104],[61,14],[47,14534", + "1 | Raw solution [10/43] : ],[0,133]],0]],\"votes8\":[[63,[[11061,1", + "1 | Raw solution [11/43] : 555],[34,7255],[178,52],[0,63],[63,31]", + "1 | Raw solution [12/43] : ,[152,144],[9343,148]],54]],\"votes9\":[", + "1 | Raw solution [13/43] : [860809951,[[149,0],[0,0],[4549,42],[1", + "1 | Raw solution [14/43] : 0173,5],[191,60],[22,50],[143,32],[138", + "1 | Raw solution [15/43] : 13,0]],243]],\"votes10\":[[1057609186,[[", + "1 | Raw solution [16/43] : 10,1],[202,1663],[0,0],[0,0],[0,0],[15", + "1 | Raw solution [17/43] : ,139],[0,6535],[13636,0],[0,96]],15585", + "1 | Raw solution [18/43] : ]],\"votes11\":[[12021709,[[0,16],[17,11", + "1 | Raw solution [19/43] : 0],[0,148],[207,43],[0,15],[0,0],[16,1", + "1 | Raw solution [20/43] : 2937],[0,0],[0,69],[0,220]],195]],\"vot", + "1 | Raw solution [21/43] : es12\":[[13318,[[28,0],[0,6911],[0,133]", + "1 | Raw solution [22/43] : ,[10,10],[13108,50],[62,0],[141,107],[", + "1 | Raw solution [23/43] : 66,193],[242,6],[0,0],[0,152]],49]],\"v", + "1 | Raw solution [24/43] : otes13\":[[5515,[[0,12204],[139,60],[0,", + "1 | Raw solution [25/43] : 13833],[26,46],[6254,0],[0,45],[16,104", + "1 | Raw solution [26/43] : ],[0,0],[213,0],[0,0],[116,6060],[0,0]", + "1 | Raw solution [27/43] : ],10264]],\"votes14\":[[10206341,[[21,0]", + "1 | Raw solution [28/43] : ,[3127,39],[10,0],[187,6598],[46,80],[", + "1 | Raw solution [29/43] : 147,45],[48,7],[36,0],[1339,62],[4143,", + "1 | Raw solution [30/43] : 6],[0,0],[30,67],[12,53]],0]],\"votes15", + "1 | Raw solution [31/43] : \":[[2915,[[35,12483],[11893,0],[3291,4", + "1 | Raw solution [32/43] : 027],[2022,0],[0,0],[0,58],[0,7461],[4", + "1 | Raw solution [33/43] : 3,0],[14946,19],[29,117],[22,4748],[60", + "1 | Raw solution [34/43] : ,12406],[0,100],[52,0]],58]],\"votes16\"", + "1 | Raw solution [35/43] : :[[9422,[[12487,0],[10,0],[198,5556],[", + "1 | Raw solution [36/43] : 0,10755],[224,6452],[174,108],[7663,39", + "1 | Raw solution [37/43] : ],[56,0],[3,73],[0,12],[47,0],[7852,22", + "1 | Raw solution [38/43] : ],[93,3],[56,52],[51,0]],150]]},\"score", + "1 | Raw solution [39/43] : \":{\"minimalStake\":\"0x529424f5d80c522bb", + "1 | Raw solution [40/43] : 11fef919e15d998\",\"sumStake\":\"0x6989022", + "1 | Raw solution [41/43] : 8de09e205b2429331e2e919e4\",\"sumStakeSq", + "1 | Raw solution [42/43] : uared\":\"0x6e7044b6df373df062ec1c06c374", + "1 | Raw solution [43/43] : 2bd1\"},\"round\":654315686}", + "2 | Witness : {\"voters\":925233720,\"targets\":8214}", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip : POLYX 1234.56789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1620, - "name": "Preimage_Unrequest_preimage", - "blob": "30036fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Preimage : Unrequest preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip : POLYX 5552342.355555" + "index": 1568, + "name": "Electionprovidermultiphase_Submit_unsigned", + "blob": "3200047d400004c56a007136310204014f85330078000004a9123d14d064bc0d0301010004d66ff932c92f9d21b800d58a54002461030426b5ec00005d01550100dd865824fc7061b800046400e034456874a1fbf438bc19e30015020004fcd5ac4d18885d71c902d000fcfc7c61024102fd915102d8047eab3bcd55020000001547a8f59e14fd02f058c83d0280d5d700cd03048a5727fc28042903fd190000000000003c2d02001d6611d50000810185f30436bfdd02004044b9010051023d03ac003c00004025ca00000015010071030d030419d0700000fd6b0015022828d1ccc8f8003502ad0109010503c903180000006102c4042d5600b1be2d02f00025d868b8b9610000b440a10100005503000000d101b15e000061a00416f26e025400dd309c2800ed021967b841014d02b4c01c9000ed14f8bd40180000780d0130d400048d2d8c0dc3d5b9006d33ed3e991f00000000e8009574ac0089e94c74d50158314af0d9c1009101d000e80439931dc30028001903d156000da88103d164b902b101bd779ce0000c25010030bc00b17a5875010ce0d0cc00590298d9159e91ef1fb12b520cd8f5249452e419e9e2319342b205e209de28028969d12b74c3061cec62f03d37dfb644706ea6100027e2c897dc5980d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Electionprovidermultiphase : Submit unsigned", + "1 | Raw solution [1/43] : {\"solution\":{\"votes1\":[[4127,0]],\"vote", + "1 | Raw solution [2/43] : s2\":[[6833,[0,3484],140]],\"votes3\":[[5", + "1 | Raw solution [3/43] : 056,[[3297,0],[30,0]],0]],\"votes4\":[[1", + "1 | Raw solution [4/43] : 194,[[1295,52],[25,47],[195,64]],0]],\"", + "1 | Raw solution [5/43] : votes5\":[[213801973,[[3058,2151],[46,0", + "1 | Raw solution [6/43] : ],[8885,21],[0,9]],216]],\"votes6\":[[38", + "1 | Raw solution [7/43] : 78217,[[0,87],[85,0],[8631,22],[9,63],", + "1 | Raw solution [8/43] : [28,11800]],0]],\"votes7\":[[25,[[0,56],", + "1 | Raw solution [9/43] : [13,6673],[29,16104],[61,14],[47,14534", + "1 | Raw solution [10/43] : ],[0,133]],0]],\"votes8\":[[63,[[11061,1", + "1 | Raw solution [11/43] : 555],[34,7255],[178,52],[0,63],[63,31]", + "1 | Raw solution [12/43] : ,[152,144],[9343,148]],54]],\"votes9\":[", + "1 | Raw solution [13/43] : [860809951,[[149,0],[0,0],[4549,42],[1", + "1 | Raw solution [14/43] : 0173,5],[191,60],[22,50],[143,32],[138", + "1 | Raw solution [15/43] : 13,0]],243]],\"votes10\":[[1057609186,[[", + "1 | Raw solution [16/43] : 10,1],[202,1663],[0,0],[0,0],[0,0],[15", + "1 | Raw solution [17/43] : ,139],[0,6535],[13636,0],[0,96]],15585", + "1 | Raw solution [18/43] : ]],\"votes11\":[[12021709,[[0,16],[17,11", + "1 | Raw solution [19/43] : 0],[0,148],[207,43],[0,15],[0,0],[16,1", + "1 | Raw solution [20/43] : 2937],[0,0],[0,69],[0,220]],195]],\"vot", + "1 | Raw solution [21/43] : es12\":[[13318,[[28,0],[0,6911],[0,133]", + "1 | Raw solution [22/43] : ,[10,10],[13108,50],[62,0],[141,107],[", + "1 | Raw solution [23/43] : 66,193],[242,6],[0,0],[0,152]],49]],\"v", + "1 | Raw solution [24/43] : otes13\":[[5515,[[0,12204],[139,60],[0,", + "1 | Raw solution [25/43] : 13833],[26,46],[6254,0],[0,45],[16,104", + "1 | Raw solution [26/43] : ],[0,0],[213,0],[0,0],[116,6060],[0,0]", + "1 | Raw solution [27/43] : ],10264]],\"votes14\":[[10206341,[[21,0]", + "1 | Raw solution [28/43] : ,[3127,39],[10,0],[187,6598],[46,80],[", + "1 | Raw solution [29/43] : 147,45],[48,7],[36,0],[1339,62],[4143,", + "1 | Raw solution [30/43] : 6],[0,0],[30,67],[12,53]],0]],\"votes15", + "1 | Raw solution [31/43] : \":[[2915,[[35,12483],[11893,0],[3291,4", + "1 | Raw solution [32/43] : 027],[2022,0],[0,0],[0,58],[0,7461],[4", + "1 | Raw solution [33/43] : 3,0],[14946,19],[29,117],[22,4748],[60", + "1 | Raw solution [34/43] : ,12406],[0,100],[52,0]],58]],\"votes16\"", + "1 | Raw solution [35/43] : :[[9422,[[12487,0],[10,0],[198,5556],[", + "1 | Raw solution [36/43] : 0,10755],[224,6452],[174,108],[7663,39", + "1 | Raw solution [37/43] : ],[56,0],[3,73],[0,12],[47,0],[7852,22", + "1 | Raw solution [38/43] : ],[93,3],[56,52],[51,0]],150]]},\"score", + "1 | Raw solution [39/43] : \":{\"minimalStake\":\"0x529424f5d80c522bb", + "1 | Raw solution [40/43] : 11fef919e15d998\",\"sumStake\":\"0x6989022", + "1 | Raw solution [41/43] : 8de09e205b2429331e2e919e4\",\"sumStakeSq", + "1 | Raw solution [42/43] : uared\":\"0x6e7044b6df373df062ec1c06c374", + "1 | Raw solution [43/43] : 2bd1\"},\"round\":654315686}", + "2 | Witness : {\"voters\":925233720,\"targets\":8214}", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Preimage : Unrequest preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", + "0 | Electionprovidermultiphase : Submit unsigned", + "1 | Raw solution [1/43] : {\"solution\":{\"votes1\":[[4127,0]],\"vote", + "1 | Raw solution [2/43] : s2\":[[6833,[0,3484],140]],\"votes3\":[[5", + "1 | Raw solution [3/43] : 056,[[3297,0],[30,0]],0]],\"votes4\":[[1", + "1 | Raw solution [4/43] : 194,[[1295,52],[25,47],[195,64]],0]],\"", + "1 | Raw solution [5/43] : votes5\":[[213801973,[[3058,2151],[46,0", + "1 | Raw solution [6/43] : ],[8885,21],[0,9]],216]],\"votes6\":[[38", + "1 | Raw solution [7/43] : 78217,[[0,87],[85,0],[8631,22],[9,63],", + "1 | Raw solution [8/43] : [28,11800]],0]],\"votes7\":[[25,[[0,56],", + "1 | Raw solution [9/43] : [13,6673],[29,16104],[61,14],[47,14534", + "1 | Raw solution [10/43] : ],[0,133]],0]],\"votes8\":[[63,[[11061,1", + "1 | Raw solution [11/43] : 555],[34,7255],[178,52],[0,63],[63,31]", + "1 | Raw solution [12/43] : ,[152,144],[9343,148]],54]],\"votes9\":[", + "1 | Raw solution [13/43] : [860809951,[[149,0],[0,0],[4549,42],[1", + "1 | Raw solution [14/43] : 0173,5],[191,60],[22,50],[143,32],[138", + "1 | Raw solution [15/43] : 13,0]],243]],\"votes10\":[[1057609186,[[", + "1 | Raw solution [16/43] : 10,1],[202,1663],[0,0],[0,0],[0,0],[15", + "1 | Raw solution [17/43] : ,139],[0,6535],[13636,0],[0,96]],15585", + "1 | Raw solution [18/43] : ]],\"votes11\":[[12021709,[[0,16],[17,11", + "1 | Raw solution [19/43] : 0],[0,148],[207,43],[0,15],[0,0],[16,1", + "1 | Raw solution [20/43] : 2937],[0,0],[0,69],[0,220]],195]],\"vot", + "1 | Raw solution [21/43] : es12\":[[13318,[[28,0],[0,6911],[0,133]", + "1 | Raw solution [22/43] : ,[10,10],[13108,50],[62,0],[141,107],[", + "1 | Raw solution [23/43] : 66,193],[242,6],[0,0],[0,152]],49]],\"v", + "1 | Raw solution [24/43] : otes13\":[[5515,[[0,12204],[139,60],[0,", + "1 | Raw solution [25/43] : 13833],[26,46],[6254,0],[0,45],[16,104", + "1 | Raw solution [26/43] : ],[0,0],[213,0],[0,0],[116,6060],[0,0]", + "1 | Raw solution [27/43] : ],10264]],\"votes14\":[[10206341,[[21,0]", + "1 | Raw solution [28/43] : ,[3127,39],[10,0],[187,6598],[46,80],[", + "1 | Raw solution [29/43] : 147,45],[48,7],[36,0],[1339,62],[4143,", + "1 | Raw solution [30/43] : 6],[0,0],[30,67],[12,53]],0]],\"votes15", + "1 | Raw solution [31/43] : \":[[2915,[[35,12483],[11893,0],[3291,4", + "1 | Raw solution [32/43] : 027],[2022,0],[0,0],[0,58],[0,7461],[4", + "1 | Raw solution [33/43] : 3,0],[14946,19],[29,117],[22,4748],[60", + "1 | Raw solution [34/43] : ,12406],[0,100],[52,0]],58]],\"votes16\"", + "1 | Raw solution [35/43] : :[[9422,[[12487,0],[10,0],[198,5556],[", + "1 | Raw solution [36/43] : 0,10755],[224,6452],[174,108],[7663,39", + "1 | Raw solution [37/43] : ],[56,0],[3,73],[0,12],[47,0],[7852,22", + "1 | Raw solution [38/43] : ],[93,3],[56,52],[51,0]],150]]},\"score", + "1 | Raw solution [39/43] : \":{\"minimalStake\":\"0x529424f5d80c522bb", + "1 | Raw solution [40/43] : 11fef919e15d998\",\"sumStake\":\"0x6989022", + "1 | Raw solution [41/43] : 8de09e205b2429331e2e919e4\",\"sumStakeSq", + "1 | Raw solution [42/43] : uared\":\"0x6e7044b6df373df062ec1c06c374", + "1 | Raw solution [43/43] : 2bd1\"},\"round\":654315686}", + "2 | Witness : {\"voters\":925233720,\"targets\":8214}", + "3 | Chain : Polymesh", + "4 | Nonce : 0", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 1569, + "name": "Electionprovidermultiphase_Submit_unsigned", + "blob": "3200047d400004c56a007136310204014f85330078000004a9123d14d064bc0d0301010004d66ff932c92f9d21b800d58a54002461030426b5ec00005d01550100dd865824fc7061b800046400e034456874a1fbf438bc19e30015020004fcd5ac4d18885d71c902d000fcfc7c61024102fd915102d8047eab3bcd55020000001547a8f59e14fd02f058c83d0280d5d700cd03048a5727fc28042903fd190000000000003c2d02001d6611d50000810185f30436bfdd02004044b9010051023d03ac003c00004025ca00000015010071030d030419d0700000fd6b0015022828d1ccc8f8003502ad0109010503c903180000006102c4042d5600b1be2d02f00025d868b8b9610000b440a10100005503000000d101b15e000061a00416f26e025400dd309c2800ed021967b841014d02b4c01c9000ed14f8bd40180000780d0130d400048d2d8c0dc3d5b9006d33ed3e991f00000000e8009574ac0089e94c74d50158314af0d9c1009101d000e80439931dc30028001903d156000da88103d164b902b101bd779ce0000c25010030bc00b17a5875010ce0d0cc00590298d9159e91ef1fb12b520cd8f5249452e419e9e2319342b205e209de28028969d12b74c3061cec62f03d37dfb644706ea6100027e2c897dc5980d5038d2400c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Electionprovidermultiphase : Submit unsigned", + "1 | Raw solution [1/43] : {\"solution\":{\"votes1\":[[4127,0]],\"vote", + "1 | Raw solution [2/43] : s2\":[[6833,[0,3484],140]],\"votes3\":[[5", + "1 | Raw solution [3/43] : 056,[[3297,0],[30,0]],0]],\"votes4\":[[1", + "1 | Raw solution [4/43] : 194,[[1295,52],[25,47],[195,64]],0]],\"", + "1 | Raw solution [5/43] : votes5\":[[213801973,[[3058,2151],[46,0", + "1 | Raw solution [6/43] : ],[8885,21],[0,9]],216]],\"votes6\":[[38", + "1 | Raw solution [7/43] : 78217,[[0,87],[85,0],[8631,22],[9,63],", + "1 | Raw solution [8/43] : [28,11800]],0]],\"votes7\":[[25,[[0,56],", + "1 | Raw solution [9/43] : [13,6673],[29,16104],[61,14],[47,14534", + "1 | Raw solution [10/43] : ],[0,133]],0]],\"votes8\":[[63,[[11061,1", + "1 | Raw solution [11/43] : 555],[34,7255],[178,52],[0,63],[63,31]", + "1 | Raw solution [12/43] : ,[152,144],[9343,148]],54]],\"votes9\":[", + "1 | Raw solution [13/43] : [860809951,[[149,0],[0,0],[4549,42],[1", + "1 | Raw solution [14/43] : 0173,5],[191,60],[22,50],[143,32],[138", + "1 | Raw solution [15/43] : 13,0]],243]],\"votes10\":[[1057609186,[[", + "1 | Raw solution [16/43] : 10,1],[202,1663],[0,0],[0,0],[0,0],[15", + "1 | Raw solution [17/43] : ,139],[0,6535],[13636,0],[0,96]],15585", + "1 | Raw solution [18/43] : ]],\"votes11\":[[12021709,[[0,16],[17,11", + "1 | Raw solution [19/43] : 0],[0,148],[207,43],[0,15],[0,0],[16,1", + "1 | Raw solution [20/43] : 2937],[0,0],[0,69],[0,220]],195]],\"vot", + "1 | Raw solution [21/43] : es12\":[[13318,[[28,0],[0,6911],[0,133]", + "1 | Raw solution [22/43] : ,[10,10],[13108,50],[62,0],[141,107],[", + "1 | Raw solution [23/43] : 66,193],[242,6],[0,0],[0,152]],49]],\"v", + "1 | Raw solution [24/43] : otes13\":[[5515,[[0,12204],[139,60],[0,", + "1 | Raw solution [25/43] : 13833],[26,46],[6254,0],[0,45],[16,104", + "1 | Raw solution [26/43] : ],[0,0],[213,0],[0,0],[116,6060],[0,0]", + "1 | Raw solution [27/43] : ],10264]],\"votes14\":[[10206341,[[21,0]", + "1 | Raw solution [28/43] : ,[3127,39],[10,0],[187,6598],[46,80],[", + "1 | Raw solution [29/43] : 147,45],[48,7],[36,0],[1339,62],[4143,", + "1 | Raw solution [30/43] : 6],[0,0],[30,67],[12,53]],0]],\"votes15", + "1 | Raw solution [31/43] : \":[[2915,[[35,12483],[11893,0],[3291,4", + "1 | Raw solution [32/43] : 027],[2022,0],[0,0],[0,58],[0,7461],[4", + "1 | Raw solution [33/43] : 3,0],[14946,19],[29,117],[22,4748],[60", + "1 | Raw solution [34/43] : ,12406],[0,100],[52,0]],58]],\"votes16\"", + "1 | Raw solution [35/43] : :[[9422,[[12487,0],[10,0],[198,5556],[", + "1 | Raw solution [36/43] : 0,10755],[224,6452],[174,108],[7663,39", + "1 | Raw solution [37/43] : ],[56,0],[3,73],[0,12],[47,0],[7852,22", + "1 | Raw solution [38/43] : ],[93,3],[56,52],[51,0]],150]]},\"score", + "1 | Raw solution [39/43] : \":{\"minimalStake\":\"0x529424f5d80c522bb", + "1 | Raw solution [40/43] : 11fef919e15d998\",\"sumStake\":\"0x6989022", + "1 | Raw solution [41/43] : 8de09e205b2429331e2e919e4\",\"sumStakeSq", + "1 | Raw solution [42/43] : uared\":\"0x6e7044b6df373df062ec1c06c374", + "1 | Raw solution [43/43] : 2bd1\"},\"round\":654315686}", + "2 | Witness : {\"voters\":925233720,\"targets\":8214}" + ], + "output_expert": [ + "0 | Electionprovidermultiphase : Submit unsigned", + "1 | Raw solution [1/43] : {\"solution\":{\"votes1\":[[4127,0]],\"vote", + "1 | Raw solution [2/43] : s2\":[[6833,[0,3484],140]],\"votes3\":[[5", + "1 | Raw solution [3/43] : 056,[[3297,0],[30,0]],0]],\"votes4\":[[1", + "1 | Raw solution [4/43] : 194,[[1295,52],[25,47],[195,64]],0]],\"", + "1 | Raw solution [5/43] : votes5\":[[213801973,[[3058,2151],[46,0", + "1 | Raw solution [6/43] : ],[8885,21],[0,9]],216]],\"votes6\":[[38", + "1 | Raw solution [7/43] : 78217,[[0,87],[85,0],[8631,22],[9,63],", + "1 | Raw solution [8/43] : [28,11800]],0]],\"votes7\":[[25,[[0,56],", + "1 | Raw solution [9/43] : [13,6673],[29,16104],[61,14],[47,14534", + "1 | Raw solution [10/43] : ],[0,133]],0]],\"votes8\":[[63,[[11061,1", + "1 | Raw solution [11/43] : 555],[34,7255],[178,52],[0,63],[63,31]", + "1 | Raw solution [12/43] : ,[152,144],[9343,148]],54]],\"votes9\":[", + "1 | Raw solution [13/43] : [860809951,[[149,0],[0,0],[4549,42],[1", + "1 | Raw solution [14/43] : 0173,5],[191,60],[22,50],[143,32],[138", + "1 | Raw solution [15/43] : 13,0]],243]],\"votes10\":[[1057609186,[[", + "1 | Raw solution [16/43] : 10,1],[202,1663],[0,0],[0,0],[0,0],[15", + "1 | Raw solution [17/43] : ,139],[0,6535],[13636,0],[0,96]],15585", + "1 | Raw solution [18/43] : ]],\"votes11\":[[12021709,[[0,16],[17,11", + "1 | Raw solution [19/43] : 0],[0,148],[207,43],[0,15],[0,0],[16,1", + "1 | Raw solution [20/43] : 2937],[0,0],[0,69],[0,220]],195]],\"vot", + "1 | Raw solution [21/43] : es12\":[[13318,[[28,0],[0,6911],[0,133]", + "1 | Raw solution [22/43] : ,[10,10],[13108,50],[62,0],[141,107],[", + "1 | Raw solution [23/43] : 66,193],[242,6],[0,0],[0,152]],49]],\"v", + "1 | Raw solution [24/43] : otes13\":[[5515,[[0,12204],[139,60],[0,", + "1 | Raw solution [25/43] : 13833],[26,46],[6254,0],[0,45],[16,104", + "1 | Raw solution [26/43] : ],[0,0],[213,0],[0,0],[116,6060],[0,0]", + "1 | Raw solution [27/43] : ],10264]],\"votes14\":[[10206341,[[21,0]", + "1 | Raw solution [28/43] : ,[3127,39],[10,0],[187,6598],[46,80],[", + "1 | Raw solution [29/43] : 147,45],[48,7],[36,0],[1339,62],[4143,", + "1 | Raw solution [30/43] : 6],[0,0],[30,67],[12,53]],0]],\"votes15", + "1 | Raw solution [31/43] : \":[[2915,[[35,12483],[11893,0],[3291,4", + "1 | Raw solution [32/43] : 027],[2022,0],[0,0],[0,58],[0,7461],[4", + "1 | Raw solution [33/43] : 3,0],[14946,19],[29,117],[22,4748],[60", + "1 | Raw solution [34/43] : ,12406],[0,100],[52,0]],58]],\"votes16\"", + "1 | Raw solution [35/43] : :[[9422,[[12487,0],[10,0],[198,5556],[", + "1 | Raw solution [36/43] : 0,10755],[224,6452],[174,108],[7663,39", + "1 | Raw solution [37/43] : ],[56,0],[3,73],[0,12],[47,0],[7852,22", + "1 | Raw solution [38/43] : ],[93,3],[56,52],[51,0]],150]]},\"score", + "1 | Raw solution [39/43] : \":{\"minimalStake\":\"0x529424f5d80c522bb", + "1 | Raw solution [40/43] : 11fef919e15d998\",\"sumStake\":\"0x6989022", + "1 | Raw solution [41/43] : 8de09e205b2429331e2e919e4\",\"sumStakeSq", + "1 | Raw solution [42/43] : uared\":\"0x6e7044b6df373df062ec1c06c374", + "1 | Raw solution [43/43] : 2bd1\"},\"round\":654315686}", + "2 | Witness : {\"voters\":925233720,\"targets\":8214}", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", "5 | Era Phase : 61", "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1621, - "name": "Nft_Create_nft_collection", - "blob": "31005449434b45522d313233343501000401df153555522d8a71d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Nft : Create nft collection", - "1 | Ticker : TICKER-12345", - "2 | Nft type : Derivative", - "3 | Collection keys : 8181401504712037855" + "index": 1570, + "name": "Electionprovidermultiphase_Submit_unsigned", + "blob": "3200047d400004c56a007136310204014f85330078000004a9123d14d064bc0d0301010004d66ff932c92f9d21b800d58a54002461030426b5ec00005d01550100dd865824fc7061b800046400e034456874a1fbf438bc19e30015020004fcd5ac4d18885d71c902d000fcfc7c61024102fd915102d8047eab3bcd55020000001547a8f59e14fd02f058c83d0280d5d700cd03048a5727fc28042903fd190000000000003c2d02001d6611d50000810185f30436bfdd02004044b9010051023d03ac003c00004025ca00000015010071030d030419d0700000fd6b0015022828d1ccc8f8003502ad0109010503c903180000006102c4042d5600b1be2d02f00025d868b8b9610000b440a10100005503000000d101b15e000061a00416f26e025400dd309c2800ed021967b841014d02b4c01c9000ed14f8bd40180000780d0130d400048d2d8c0dc3d5b9006d33ed3e991f00000000e8009574ac0089e94c74d50158314af0d9c1009101d000e80439931dc30028001903d156000da88103d164b902b101bd779ce0000c25010030bc00b17a5875010ce0d0cc00590298d9159e91ef1fb12b520cd8f5249452e419e9e2319342b205e209de28028969d12b74c3061cec62f03d37dfb644706ea6100027e2c897dc5980d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Electionprovidermultiphase : Submit unsigned", + "1 | Raw solution [1/43] : {\"solution\":{\"votes1\":[[4127,0]],\"vote", + "1 | Raw solution [2/43] : s2\":[[6833,[0,3484],140]],\"votes3\":[[5", + "1 | Raw solution [3/43] : 056,[[3297,0],[30,0]],0]],\"votes4\":[[1", + "1 | Raw solution [4/43] : 194,[[1295,52],[25,47],[195,64]],0]],\"", + "1 | Raw solution [5/43] : votes5\":[[213801973,[[3058,2151],[46,0", + "1 | Raw solution [6/43] : ],[8885,21],[0,9]],216]],\"votes6\":[[38", + "1 | Raw solution [7/43] : 78217,[[0,87],[85,0],[8631,22],[9,63],", + "1 | Raw solution [8/43] : [28,11800]],0]],\"votes7\":[[25,[[0,56],", + "1 | Raw solution [9/43] : [13,6673],[29,16104],[61,14],[47,14534", + "1 | Raw solution [10/43] : ],[0,133]],0]],\"votes8\":[[63,[[11061,1", + "1 | Raw solution [11/43] : 555],[34,7255],[178,52],[0,63],[63,31]", + "1 | Raw solution [12/43] : ,[152,144],[9343,148]],54]],\"votes9\":[", + "1 | Raw solution [13/43] : [860809951,[[149,0],[0,0],[4549,42],[1", + "1 | Raw solution [14/43] : 0173,5],[191,60],[22,50],[143,32],[138", + "1 | Raw solution [15/43] : 13,0]],243]],\"votes10\":[[1057609186,[[", + "1 | Raw solution [16/43] : 10,1],[202,1663],[0,0],[0,0],[0,0],[15", + "1 | Raw solution [17/43] : ,139],[0,6535],[13636,0],[0,96]],15585", + "1 | Raw solution [18/43] : ]],\"votes11\":[[12021709,[[0,16],[17,11", + "1 | Raw solution [19/43] : 0],[0,148],[207,43],[0,15],[0,0],[16,1", + "1 | Raw solution [20/43] : 2937],[0,0],[0,69],[0,220]],195]],\"vot", + "1 | Raw solution [21/43] : es12\":[[13318,[[28,0],[0,6911],[0,133]", + "1 | Raw solution [22/43] : ,[10,10],[13108,50],[62,0],[141,107],[", + "1 | Raw solution [23/43] : 66,193],[242,6],[0,0],[0,152]],49]],\"v", + "1 | Raw solution [24/43] : otes13\":[[5515,[[0,12204],[139,60],[0,", + "1 | Raw solution [25/43] : 13833],[26,46],[6254,0],[0,45],[16,104", + "1 | Raw solution [26/43] : ],[0,0],[213,0],[0,0],[116,6060],[0,0]", + "1 | Raw solution [27/43] : ],10264]],\"votes14\":[[10206341,[[21,0]", + "1 | Raw solution [28/43] : ,[3127,39],[10,0],[187,6598],[46,80],[", + "1 | Raw solution [29/43] : 147,45],[48,7],[36,0],[1339,62],[4143,", + "1 | Raw solution [30/43] : 6],[0,0],[30,67],[12,53]],0]],\"votes15", + "1 | Raw solution [31/43] : \":[[2915,[[35,12483],[11893,0],[3291,4", + "1 | Raw solution [32/43] : 027],[2022,0],[0,0],[0,58],[0,7461],[4", + "1 | Raw solution [33/43] : 3,0],[14946,19],[29,117],[22,4748],[60", + "1 | Raw solution [34/43] : ,12406],[0,100],[52,0]],58]],\"votes16\"", + "1 | Raw solution [35/43] : :[[9422,[[12487,0],[10,0],[198,5556],[", + "1 | Raw solution [36/43] : 0,10755],[224,6452],[174,108],[7663,39", + "1 | Raw solution [37/43] : ],[56,0],[3,73],[0,12],[47,0],[7852,22", + "1 | Raw solution [38/43] : ],[93,3],[56,52],[51,0]],150]]},\"score", + "1 | Raw solution [39/43] : \":{\"minimalStake\":\"0x529424f5d80c522bb", + "1 | Raw solution [40/43] : 11fef919e15d998\",\"sumStake\":\"0x6989022", + "1 | Raw solution [41/43] : 8de09e205b2429331e2e919e4\",\"sumStakeSq", + "1 | Raw solution [42/43] : uared\":\"0x6e7044b6df373df062ec1c06c374", + "1 | Raw solution [43/43] : 2bd1\"},\"round\":654315686}", + "2 | Witness : {\"voters\":925233720,\"targets\":8214}", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Nft : Create nft collection", - "1 | Ticker : TICKER-12345", - "2 | Nft type : Derivative", - "3 | Collection keys : 8181401504712037855", - "4 | Chain : Polymesh", - "5 | Nonce : 0", + "0 | Electionprovidermultiphase : Submit unsigned", + "1 | Raw solution [1/43] : {\"solution\":{\"votes1\":[[4127,0]],\"vote", + "1 | Raw solution [2/43] : s2\":[[6833,[0,3484],140]],\"votes3\":[[5", + "1 | Raw solution [3/43] : 056,[[3297,0],[30,0]],0]],\"votes4\":[[1", + "1 | Raw solution [4/43] : 194,[[1295,52],[25,47],[195,64]],0]],\"", + "1 | Raw solution [5/43] : votes5\":[[213801973,[[3058,2151],[46,0", + "1 | Raw solution [6/43] : ],[8885,21],[0,9]],216]],\"votes6\":[[38", + "1 | Raw solution [7/43] : 78217,[[0,87],[85,0],[8631,22],[9,63],", + "1 | Raw solution [8/43] : [28,11800]],0]],\"votes7\":[[25,[[0,56],", + "1 | Raw solution [9/43] : [13,6673],[29,16104],[61,14],[47,14534", + "1 | Raw solution [10/43] : ],[0,133]],0]],\"votes8\":[[63,[[11061,1", + "1 | Raw solution [11/43] : 555],[34,7255],[178,52],[0,63],[63,31]", + "1 | Raw solution [12/43] : ,[152,144],[9343,148]],54]],\"votes9\":[", + "1 | Raw solution [13/43] : [860809951,[[149,0],[0,0],[4549,42],[1", + "1 | Raw solution [14/43] : 0173,5],[191,60],[22,50],[143,32],[138", + "1 | Raw solution [15/43] : 13,0]],243]],\"votes10\":[[1057609186,[[", + "1 | Raw solution [16/43] : 10,1],[202,1663],[0,0],[0,0],[0,0],[15", + "1 | Raw solution [17/43] : ,139],[0,6535],[13636,0],[0,96]],15585", + "1 | Raw solution [18/43] : ]],\"votes11\":[[12021709,[[0,16],[17,11", + "1 | Raw solution [19/43] : 0],[0,148],[207,43],[0,15],[0,0],[16,1", + "1 | Raw solution [20/43] : 2937],[0,0],[0,69],[0,220]],195]],\"vot", + "1 | Raw solution [21/43] : es12\":[[13318,[[28,0],[0,6911],[0,133]", + "1 | Raw solution [22/43] : ,[10,10],[13108,50],[62,0],[141,107],[", + "1 | Raw solution [23/43] : 66,193],[242,6],[0,0],[0,152]],49]],\"v", + "1 | Raw solution [24/43] : otes13\":[[5515,[[0,12204],[139,60],[0,", + "1 | Raw solution [25/43] : 13833],[26,46],[6254,0],[0,45],[16,104", + "1 | Raw solution [26/43] : ],[0,0],[213,0],[0,0],[116,6060],[0,0]", + "1 | Raw solution [27/43] : ],10264]],\"votes14\":[[10206341,[[21,0]", + "1 | Raw solution [28/43] : ,[3127,39],[10,0],[187,6598],[46,80],[", + "1 | Raw solution [29/43] : 147,45],[48,7],[36,0],[1339,62],[4143,", + "1 | Raw solution [30/43] : 6],[0,0],[30,67],[12,53]],0]],\"votes15", + "1 | Raw solution [31/43] : \":[[2915,[[35,12483],[11893,0],[3291,4", + "1 | Raw solution [32/43] : 027],[2022,0],[0,0],[0,58],[0,7461],[4", + "1 | Raw solution [33/43] : 3,0],[14946,19],[29,117],[22,4748],[60", + "1 | Raw solution [34/43] : ,12406],[0,100],[52,0]],58]],\"votes16\"", + "1 | Raw solution [35/43] : :[[9422,[[12487,0],[10,0],[198,5556],[", + "1 | Raw solution [36/43] : 0,10755],[224,6452],[174,108],[7663,39", + "1 | Raw solution [37/43] : ],[56,0],[3,73],[0,12],[47,0],[7852,22", + "1 | Raw solution [38/43] : ],[93,3],[56,52],[51,0]],150]]},\"score", + "1 | Raw solution [39/43] : \":{\"minimalStake\":\"0x529424f5d80c522bb", + "1 | Raw solution [40/43] : 11fef919e15d998\",\"sumStake\":\"0x6989022", + "1 | Raw solution [41/43] : 8de09e205b2429331e2e919e4\",\"sumStakeSq", + "1 | Raw solution [42/43] : uared\":\"0x6e7044b6df373df062ec1c06c374", + "1 | Raw solution [43/43] : 2bd1\"},\"round\":654315686}", + "2 | Witness : {\"voters\":925233720,\"targets\":8214}", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip : POLYX 55.555555", "6 | Era Phase : 61", "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1622, - "name": "Nft_Create_nft_collection", - "blob": "31005449434b45522d313233343501000401df153555522d8a71d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Nft : Create nft collection", - "1 | Ticker : TICKER-12345", - "2 | Nft type : Derivative", - "3 | Collection keys : 8181401504712037855", - "4 | Tip : POLYX 1234.56789" + "index": 1571, + "name": "Electionprovidermultiphase_Set_minimum_untrusted_score", + "blob": "320101b8c09e532fd8cca0f26f2291b1f6148f446e531b4fbf6289703f9ae20c90e126510365b1dddfeac5916dc6c82c955d69d5030033158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Electionprovidermultiphase : Set minimum untrusted score", + "1 | Maybe next score [1/6] : POLYX 19018845287547788827386753499222", + "1 | Maybe next score [2/6] : 8.139192", + "1 | Maybe next score [3/6] : POLYX 51681852320848101779345210236659", + "1 | Maybe next score [4/6] : .265092", + "1 | Maybe next score [5/6] : POLYX 14005484879246688705441579085846", + "1 | Maybe next score [6/6] : 9.442385", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Nft : Create nft collection", - "1 | Ticker : TICKER-12345", - "2 | Nft type : Derivative", - "3 | Collection keys : 8181401504712037855", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Electionprovidermultiphase : Set minimum untrusted score", + "1 | Maybe next score [1/6] : POLYX 19018845287547788827386753499222", + "1 | Maybe next score [2/6] : 8.139192", + "1 | Maybe next score [3/6] : POLYX 51681852320848101779345210236659", + "1 | Maybe next score [4/6] : .265092", + "1 | Maybe next score [5/6] : POLYX 14005484879246688705441579085846", + "1 | Maybe next score [6/6] : 9.442385", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1623, - "name": "Nft_Create_nft_collection", - "blob": "31005449434b45522d313233343501035be1ace10401df153555522d8a71d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Nft : Create nft collection", - "1 | Ticker : TICKER-12345", - "2 | Nft type [1/2] : Custom", - "2 | Nft type [2/2] : 3786203483", - "3 | Collection keys : 8181401504712037855", - "4 | Tip : POLYX 0.000987" + "index": 1572, + "name": "Electionprovidermultiphase_Set_minimum_untrusted_score", + "blob": "320101b8c09e532fd8cca0f26f2291b1f6148f446e531b4fbf6289703f9ae20c90e126510365b1dddfeac5916dc6c82c955d69d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Electionprovidermultiphase : Set minimum untrusted score", + "1 | Maybe next score [1/6] : POLYX 19018845287547788827386753499222", + "1 | Maybe next score [2/6] : 8.139192", + "1 | Maybe next score [3/6] : POLYX 51681852320848101779345210236659", + "1 | Maybe next score [4/6] : .265092", + "1 | Maybe next score [5/6] : POLYX 14005484879246688705441579085846", + "1 | Maybe next score [6/6] : 9.442385", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Nft : Create nft collection", - "1 | Ticker : TICKER-12345", - "2 | Nft type [1/2] : Custom", - "2 | Nft type [2/2] : 3786203483", - "3 | Collection keys : 8181401504712037855", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Electionprovidermultiphase : Set minimum untrusted score", + "1 | Maybe next score [1/6] : POLYX 19018845287547788827386753499222", + "1 | Maybe next score [2/6] : 8.139192", + "1 | Maybe next score [3/6] : POLYX 51681852320848101779345210236659", + "1 | Maybe next score [4/6] : .265092", + "1 | Maybe next score [5/6] : POLYX 14005484879246688705441579085846", + "1 | Maybe next score [6/6] : 9.442385", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1624, - "name": "Nft_Create_nft_collection", - "blob": "31005449434b45522d313233343501020801ddc995aea1a86e5a00766ac21082a84f57d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Nft : Create nft collection", - "1 | Ticker : TICKER-12345", - "2 | Nft type : Invoice", - "3 | Collection keys [1/2] : 6516331123223939549", - "3 | Collection keys [2/2] : 6291432481040263798", - "4 | Tip : POLYX 1234.56789" + "index": 1573, + "name": "Electionprovidermultiphase_Set_minimum_untrusted_score", + "blob": "320101b8c09e532fd8cca0f26f2291b1f6148f446e531b4fbf6289703f9ae20c90e126510365b1dddfeac5916dc6c82c955d69d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Electionprovidermultiphase : Set minimum untrusted score", + "1 | Maybe next score [1/6] : POLYX 19018845287547788827386753499222", + "1 | Maybe next score [2/6] : 8.139192", + "1 | Maybe next score [3/6] : POLYX 51681852320848101779345210236659", + "1 | Maybe next score [4/6] : .265092", + "1 | Maybe next score [5/6] : POLYX 14005484879246688705441579085846", + "1 | Maybe next score [6/6] : 9.442385", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Nft : Create nft collection", - "1 | Ticker : TICKER-12345", - "2 | Nft type : Invoice", - "3 | Collection keys [1/2] : 6516331123223939549", - "3 | Collection keys [2/2] : 6291432481040263798", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Electionprovidermultiphase : Set minimum untrusted score", + "1 | Maybe next score [1/6] : POLYX 19018845287547788827386753499222", + "1 | Maybe next score [2/6] : 8.139192", + "1 | Maybe next score [3/6] : POLYX 51681852320848101779345210236659", + "1 | Maybe next score [4/6] : .265092", + "1 | Maybe next score [5/6] : POLYX 14005484879246688705441579085846", + "1 | Maybe next score [6/6] : 9.442385", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1625, - "name": "Nft_Create_nft_collection", - "blob": "31005449434b45522d3132333435010100d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Nft : Create nft collection", - "1 | Ticker : TICKER-12345", - "2 | Nft type : FixedIncome", - "3 | Collection keys : " + "index": 1574, + "name": "Electionprovidermultiphase_Set_minimum_untrusted_score", + "blob": "320101b8c09e532fd8cca0f26f2291b1f6148f446e531b4fbf6289703f9ae20c90e126510365b1dddfeac5916dc6c82c955d69d503ae11030003d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Electionprovidermultiphase : Set minimum untrusted score", + "1 | Maybe next score [1/6] : POLYX 19018845287547788827386753499222", + "1 | Maybe next score [2/6] : 8.139192", + "1 | Maybe next score [3/6] : POLYX 51681852320848101779345210236659", + "1 | Maybe next score [4/6] : .265092", + "1 | Maybe next score [5/6] : POLYX 14005484879246688705441579085846", + "1 | Maybe next score [6/6] : 9.442385", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Nft : Create nft collection", - "1 | Ticker : TICKER-12345", - "2 | Nft type : FixedIncome", - "3 | Collection keys : ", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Electionprovidermultiphase : Set minimum untrusted score", + "1 | Maybe next score [1/6] : POLYX 19018845287547788827386753499222", + "1 | Maybe next score [2/6] : 8.139192", + "1 | Maybe next score [3/6] : POLYX 51681852320848101779345210236659", + "1 | Maybe next score [4/6] : .265092", + "1 | Maybe next score [5/6] : POLYX 14005484879246688705441579085846", + "1 | Maybe next score [6/6] : 9.442385", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1626, - "name": "Nft_Issue_nft", - "blob": "31015449434b45522d3132333435080021c11681b549dbc9010276446a2b2d066c75832065aec64e0cc78ed7f27d6f6ba3a12e3c6ae3b665541667f1eb70c344d61ec4779b23acceb49d3cb8e9d65f96a77c3ce5e285c1d7927906989d9d07407231f7cc35790beb36e9edb97b7e7823bfec7d667f6764dba9b8865c016bd5f20e91d0b31f849b1d9d36325b71d5fdcac35658fcb934c958166601077fe000f8df7a3880ced5949bdfe2a3faacc31b88b486c835265ccec2efb0cb6197e70ac2755802bc01bd0d90b68b8ef739d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Nft : Issue nft", - "1 | Ticker : TICKER-12345", - "2 | Nft metadata attributes [1/11] : 14545300465426809121", - "2 | Nft metadata attributes [2/11] : 76446a2b2d066c75832065aec64e0cc78ed7f2", - "2 | Nft metadata attributes [3/11] : 7d6f6ba3a12e3c6ae3b665541667f1eb70c344", - "2 | Nft metadata attributes [4/11] : d61ec4779b23acceb49d3cb8e9d65f96a77c3c", - "2 | Nft metadata attributes [5/11] : e5e285c1d7927906989d9d07407231f7cc3579", - "2 | Nft metadata attributes [6/11] : 0beb36e9edb97b7e7823bfec7d667f6764dba9", - "2 | Nft metadata attributes [7/11] : b8865c016bd5f20e91d0b31f849b1d9d36325b", - "2 | Nft metadata attributes [8/11] : 71d5fdcac35658fcb934c9581666", - "2 | Nft metadata attributes [9/11] : 4069811469542260487", - "2 | Nft metadata attributes [10/11] : ced5949bdfe2a3faacc31b88b486c835265cce", - "2 | Nft metadata attributes [11/11] : c2efb0cb6197e70ac2755802bc", - "3 | Portfolio kind : 4176963910123916733", - "4 | Tip : POLYX 0.000987" + "index": 1575, + "name": "Electionprovidermultiphase_Set_minimum_untrusted_score", + "blob": "320101b8c09e532fd8cca0f26f2291b1f6148f446e531b4fbf6289703f9ae20c90e126510365b1dddfeac5916dc6c82c955d69d5038d248ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Electionprovidermultiphase : Set minimum untrusted score", + "1 | Maybe next score [1/6] : POLYX 19018845287547788827386753499222", + "1 | Maybe next score [2/6] : 8.139192", + "1 | Maybe next score [3/6] : POLYX 51681852320848101779345210236659", + "1 | Maybe next score [4/6] : .265092", + "1 | Maybe next score [5/6] : POLYX 14005484879246688705441579085846", + "1 | Maybe next score [6/6] : 9.442385", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Nft : Issue nft", - "1 | Ticker : TICKER-12345", - "2 | Nft metadata attributes [1/11] : 14545300465426809121", - "2 | Nft metadata attributes [2/11] : 76446a2b2d066c75832065aec64e0cc78ed7f2", - "2 | Nft metadata attributes [3/11] : 7d6f6ba3a12e3c6ae3b665541667f1eb70c344", - "2 | Nft metadata attributes [4/11] : d61ec4779b23acceb49d3cb8e9d65f96a77c3c", - "2 | Nft metadata attributes [5/11] : e5e285c1d7927906989d9d07407231f7cc3579", - "2 | Nft metadata attributes [6/11] : 0beb36e9edb97b7e7823bfec7d667f6764dba9", - "2 | Nft metadata attributes [7/11] : b8865c016bd5f20e91d0b31f849b1d9d36325b", - "2 | Nft metadata attributes [8/11] : 71d5fdcac35658fcb934c9581666", - "2 | Nft metadata attributes [9/11] : 4069811469542260487", - "2 | Nft metadata attributes [10/11] : ced5949bdfe2a3faacc31b88b486c835265cce", - "2 | Nft metadata attributes [11/11] : c2efb0cb6197e70ac2755802bc", - "3 | Portfolio kind : 4176963910123916733", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Electionprovidermultiphase : Set minimum untrusted score", + "1 | Maybe next score [1/6] : POLYX 19018845287547788827386753499222", + "1 | Maybe next score [2/6] : 8.139192", + "1 | Maybe next score [3/6] : POLYX 51681852320848101779345210236659", + "1 | Maybe next score [4/6] : .265092", + "1 | Maybe next score [5/6] : POLYX 14005484879246688705441579085846", + "1 | Maybe next score [6/6] : 9.442385", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1627, - "name": "Nft_Issue_nft", - "blob": "31015449434b45522d31323334350000d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Nft : Issue nft", - "1 | Ticker : TICKER-12345", - "2 | Nft metadata attributes : ", - "3 | Portfolio kind : Default", - "4 | Tip : POLYX 5552342.355555" + "index": 1576, + "name": "Electionprovidermultiphase_Set_emergency_election_result", + "blob": "3202045acdc8280fd624005469e3cc1c969b68905dcb6159e96bc5873128fca980f09ec0a8e701025832ca1f58909580f4eb7a04469f2bf16ba29775958e8f9ceafa84f2d5f55ed9fbdc8ebb1c603d52076a9309c1d8bd12f5179b040fa4c984418e91e1d503006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Electionprovidermultiphase : Set emergency election result", + "1 | Supports [1/8] : 5E7mJAa8J3yVQRYe1JqndKGbkLCbeUyPydiVMD", + "1 | Supports [2/8] : mqyNeRx4hn", + "1 | Supports [3/8] : 163390964342951281756462068259575.2777", + "1 | Supports [4/8] : 6", + "1 | Supports [5/8] : 5DfJVYXYPxPyKtEbrqVbHQWLNzwuBL2UzSz8xV", + "1 | Supports [6/8] : WDemC3aLBv", + "1 | Supports [7/8] : 299832067389183693505171981222989.9122", + "1 | Supports [8/8] : 57", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Nft : Issue nft", - "1 | Ticker : TICKER-12345", - "2 | Nft metadata attributes : ", - "3 | Portfolio kind : Default", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Electionprovidermultiphase : Set emergency election result", + "1 | Supports [1/8] : 5E7mJAa8J3yVQRYe1JqndKGbkLCbeUyPydiVMD", + "1 | Supports [2/8] : mqyNeRx4hn", + "1 | Supports [3/8] : 163390964342951281756462068259575.2777", + "1 | Supports [4/8] : 6", + "1 | Supports [5/8] : 5DfJVYXYPxPyKtEbrqVbHQWLNzwuBL2UzSz8xV", + "1 | Supports [6/8] : WDemC3aLBv", + "1 | Supports [7/8] : 299832067389183693505171981222989.9122", + "1 | Supports [8/8] : 57", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1628, - "name": "Nft_Issue_nft", - "blob": "31015449434b45522d3132333435080021c11681b549dbc9010276446a2b2d066c75832065aec64e0cc78ed7f27d6f6ba3a12e3c6ae3b665541667f1eb70c344d61ec4779b23acceb49d3cb8e9d65f96a77c3ce5e285c1d7927906989d9d07407231f7cc35790beb36e9edb97b7e7823bfec7d667f6764dba9b8865c016bd5f20e91d0b31f849b1d9d36325b71d5fdcac35658fcb934c958166601077fe000f8df7a3880ced5949bdfe2a3faacc31b88b486c835265ccec2efb0cb6197e70ac2755802bc017783de5904926d17d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Nft : Issue nft", - "1 | Ticker : TICKER-12345", - "2 | Nft metadata attributes [1/11] : 14545300465426809121", - "2 | Nft metadata attributes [2/11] : 76446a2b2d066c75832065aec64e0cc78ed7f2", - "2 | Nft metadata attributes [3/11] : 7d6f6ba3a12e3c6ae3b665541667f1eb70c344", - "2 | Nft metadata attributes [4/11] : d61ec4779b23acceb49d3cb8e9d65f96a77c3c", - "2 | Nft metadata attributes [5/11] : e5e285c1d7927906989d9d07407231f7cc3579", - "2 | Nft metadata attributes [6/11] : 0beb36e9edb97b7e7823bfec7d667f6764dba9", - "2 | Nft metadata attributes [7/11] : b8865c016bd5f20e91d0b31f849b1d9d36325b", - "2 | Nft metadata attributes [8/11] : 71d5fdcac35658fcb934c9581666", - "2 | Nft metadata attributes [9/11] : 4069811469542260487", - "2 | Nft metadata attributes [10/11] : ced5949bdfe2a3faacc31b88b486c835265cce", - "2 | Nft metadata attributes [11/11] : c2efb0cb6197e70ac2755802bc", - "3 | Portfolio kind : 1688165982719083383", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Nft : Issue nft", - "1 | Ticker : TICKER-12345", - "2 | Nft metadata attributes [1/11] : 14545300465426809121", - "2 | Nft metadata attributes [2/11] : 76446a2b2d066c75832065aec64e0cc78ed7f2", - "2 | Nft metadata attributes [3/11] : 7d6f6ba3a12e3c6ae3b665541667f1eb70c344", - "2 | Nft metadata attributes [4/11] : d61ec4779b23acceb49d3cb8e9d65f96a77c3c", - "2 | Nft metadata attributes [5/11] : e5e285c1d7927906989d9d07407231f7cc3579", - "2 | Nft metadata attributes [6/11] : 0beb36e9edb97b7e7823bfec7d667f6764dba9", - "2 | Nft metadata attributes [7/11] : b8865c016bd5f20e91d0b31f849b1d9d36325b", - "2 | Nft metadata attributes [8/11] : 71d5fdcac35658fcb934c9581666", - "2 | Nft metadata attributes [9/11] : 4069811469542260487", - "2 | Nft metadata attributes [10/11] : ced5949bdfe2a3faacc31b88b486c835265cce", - "2 | Nft metadata attributes [11/11] : c2efb0cb6197e70ac2755802bc", - "3 | Portfolio kind : 1688165982719083383", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "index": 1577, + "name": "Electionprovidermultiphase_Set_emergency_election_result", + "blob": "3202045acdc8280fd624005469e3cc1c969b68905dcb6159e96bc5873128fca980f09ec0a8e701025832ca1f58909580f4eb7a04469f2bf16ba29775958e8f9ceafa84f2d5f55ed9fbdc8ebb1c603d52076a9309c1d8bd12f5179b040fa4c984418e91e1d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Electionprovidermultiphase : Set emergency election result", + "1 | Supports [1/8] : 5E7mJAa8J3yVQRYe1JqndKGbkLCbeUyPydiVMD", + "1 | Supports [2/8] : mqyNeRx4hn", + "1 | Supports [3/8] : 163390964342951281756462068259575.2777", + "1 | Supports [4/8] : 6", + "1 | Supports [5/8] : 5DfJVYXYPxPyKtEbrqVbHQWLNzwuBL2UzSz8xV", + "1 | Supports [6/8] : WDemC3aLBv", + "1 | Supports [7/8] : 299832067389183693505171981222989.9122", + "1 | Supports [8/8] : 57", + "2 | Tip : POLYX 1234.56789" + ], + "output_expert": [ + "0 | Electionprovidermultiphase : Set emergency election result", + "1 | Supports [1/8] : 5E7mJAa8J3yVQRYe1JqndKGbkLCbeUyPydiVMD", + "1 | Supports [2/8] : mqyNeRx4hn", + "1 | Supports [3/8] : 163390964342951281756462068259575.2777", + "1 | Supports [4/8] : 6", + "1 | Supports [5/8] : 5DfJVYXYPxPyKtEbrqVbHQWLNzwuBL2UzSz8xV", + "1 | Supports [6/8] : WDemC3aLBv", + "1 | Supports [7/8] : 299832067389183693505171981222989.9122", + "1 | Supports [8/8] : 57", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1629, - "name": "Nft_Issue_nft", - "blob": "31015449434b45522d31323334350001bd0d90b68b8ef739d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Nft : Issue nft", - "1 | Ticker : TICKER-12345", - "2 | Nft metadata attributes : ", - "3 | Portfolio kind : 4176963910123916733", - "4 | Tip : POLYX 1234.56789" + "index": 1578, + "name": "Electionprovidermultiphase_Set_emergency_election_result", + "blob": "3202045acdc8280fd624005469e3cc1c969b68905dcb6159e96bc5873128fca980f09ec0a8e701025832ca1f58909580f4eb7a04469f2bf16ba29775958e8f9ceafa84f2d5f55ed9fbdc8ebb1c603d52076a9309c1d8bd12f5179b040fa4c984418e91e1d5038d2403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Electionprovidermultiphase : Set emergency election result", + "1 | Supports [1/8] : 5E7mJAa8J3yVQRYe1JqndKGbkLCbeUyPydiVMD", + "1 | Supports [2/8] : mqyNeRx4hn", + "1 | Supports [3/8] : 163390964342951281756462068259575.2777", + "1 | Supports [4/8] : 6", + "1 | Supports [5/8] : 5DfJVYXYPxPyKtEbrqVbHQWLNzwuBL2UzSz8xV", + "1 | Supports [6/8] : WDemC3aLBv", + "1 | Supports [7/8] : 299832067389183693505171981222989.9122", + "1 | Supports [8/8] : 57", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Nft : Issue nft", - "1 | Ticker : TICKER-12345", - "2 | Nft metadata attributes : ", - "3 | Portfolio kind : 4176963910123916733", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Electionprovidermultiphase : Set emergency election result", + "1 | Supports [1/8] : 5E7mJAa8J3yVQRYe1JqndKGbkLCbeUyPydiVMD", + "1 | Supports [2/8] : mqyNeRx4hn", + "1 | Supports [3/8] : 163390964342951281756462068259575.2777", + "1 | Supports [4/8] : 6", + "1 | Supports [5/8] : 5DfJVYXYPxPyKtEbrqVbHQWLNzwuBL2UzSz8xV", + "1 | Supports [6/8] : WDemC3aLBv", + "1 | Supports [7/8] : 299832067389183693505171981222989.9122", + "1 | Supports [8/8] : 57", + "2 | Chain : Polymesh", + "3 | Nonce : 2339", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1630, - "name": "Nft_Issue_nft", - "blob": "31015449434b45522d31323334350000d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Nft : Issue nft", - "1 | Ticker : TICKER-12345", - "2 | Nft metadata attributes : ", - "3 | Portfolio kind : Default", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "index": 1579, + "name": "Electionprovidermultiphase_Set_emergency_election_result", + "blob": "3202045acdc8280fd624005469e3cc1c969b68905dcb6159e96bc5873128fca980f09ec0a8e701025832ca1f58909580f4eb7a04469f2bf16ba29775958e8f9ceafa84f2d5f55ed9fbdc8ebb1c603d52076a9309c1d8bd12f5179b040fa4c984418e91e1d5030403d2029649c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Electionprovidermultiphase : Set emergency election result", + "1 | Supports [1/8] : 5E7mJAa8J3yVQRYe1JqndKGbkLCbeUyPydiVMD", + "1 | Supports [2/8] : mqyNeRx4hn", + "1 | Supports [3/8] : 163390964342951281756462068259575.2777", + "1 | Supports [4/8] : 6", + "1 | Supports [5/8] : 5DfJVYXYPxPyKtEbrqVbHQWLNzwuBL2UzSz8xV", + "1 | Supports [6/8] : WDemC3aLBv", + "1 | Supports [7/8] : 299832067389183693505171981222989.9122", + "1 | Supports [8/8] : 57", + "2 | Tip : POLYX 1234.56789" ], "output_expert": [ - "0 | Nft : Issue nft", - "1 | Ticker : TICKER-12345", - "2 | Nft metadata attributes : ", - "3 | Portfolio kind : Default", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Electionprovidermultiphase : Set emergency election result", + "1 | Supports [1/8] : 5E7mJAa8J3yVQRYe1JqndKGbkLCbeUyPydiVMD", + "1 | Supports [2/8] : mqyNeRx4hn", + "1 | Supports [3/8] : 163390964342951281756462068259575.2777", + "1 | Supports [4/8] : 6", + "1 | Supports [5/8] : 5DfJVYXYPxPyKtEbrqVbHQWLNzwuBL2UzSz8xV", + "1 | Supports [6/8] : WDemC3aLBv", + "1 | Supports [7/8] : 299832067389183693505171981222989.9122", + "1 | Supports [8/8] : 57", + "2 | Chain : Polymesh", + "3 | Nonce : 1", + "4 | Tip : POLYX 1234.56789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1631, - "name": "Nft_Redeem_nft", - "blob": "31025449434b45522d313233343559159451a17422cf01664083c01528efb0d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Nft : Redeem nft", - "1 | Ticker : TICKER-12345", - "2 | Nft id : 14925620351266461017", - "3 | Portfolio kind : 12749453143998414950", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "index": 1580, + "name": "Electionprovidermultiphase_Set_emergency_election_result", + "blob": "3202045acdc8280fd624005469e3cc1c969b68905dcb6159e96bc5873128fca980f09ec0a8e701025832ca1f58909580f4eb7a04469f2bf16ba29775958e8f9ceafa84f2d5f55ed9fbdc8ebb1c603d52076a9309c1d8bd12f5179b040fa4c984418e91e1d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Electionprovidermultiphase : Set emergency election result", + "1 | Supports [1/8] : 5E7mJAa8J3yVQRYe1JqndKGbkLCbeUyPydiVMD", + "1 | Supports [2/8] : mqyNeRx4hn", + "1 | Supports [3/8] : 163390964342951281756462068259575.2777", + "1 | Supports [4/8] : 6", + "1 | Supports [5/8] : 5DfJVYXYPxPyKtEbrqVbHQWLNzwuBL2UzSz8xV", + "1 | Supports [6/8] : WDemC3aLBv", + "1 | Supports [7/8] : 299832067389183693505171981222989.9122", + "1 | Supports [8/8] : 57", + "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "2 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Nft : Redeem nft", - "1 | Ticker : TICKER-12345", - "2 | Nft id : 14925620351266461017", - "3 | Portfolio kind : 12749453143998414950", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Electionprovidermultiphase : Set emergency election result", + "1 | Supports [1/8] : 5E7mJAa8J3yVQRYe1JqndKGbkLCbeUyPydiVMD", + "1 | Supports [2/8] : mqyNeRx4hn", + "1 | Supports [3/8] : 163390964342951281756462068259575.2777", + "1 | Supports [4/8] : 6", + "1 | Supports [5/8] : 5DfJVYXYPxPyKtEbrqVbHQWLNzwuBL2UzSz8xV", + "1 | Supports [6/8] : WDemC3aLBv", + "1 | Supports [7/8] : 299832067389183693505171981222989.9122", + "1 | Supports [8/8] : 57", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "4 | Tip [2/2] : 3.456789", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1632, - "name": "Nft_Redeem_nft", - "blob": "31025449434b45522d31323334352d9cd4181471070b00d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Nft : Redeem nft", - "1 | Ticker : TICKER-12345", - "2 | Nft id : 794728190384053293", - "3 | Portfolio kind : Default", - "4 | Tip : POLYX 1234.56789" + "index": 1581, + "name": "Electionprovidermultiphase_Submit", + "blob": "3203047d400004c56a007136310204014f85330078000004a9123d14d064bc0d0301010004d66ff932c92f9d21b800d58a54002461030426b5ec00005d01550100dd865824fc7061b800046400e034456874a1fbf438bc19e30015020004fcd5ac4d18885d71c902d000fcfc7c61024102fd915102d8047eab3bcd55020000001547a8f59e14fd02f058c83d0280d5d700cd03048a5727fc28042903fd190000000000003c2d02001d6611d50000810185f30436bfdd02004044b9010051023d03ac003c00004025ca00000015010071030d030419d0700000fd6b0015022828d1ccc8f8003502ad0109010503c903180000006102c4042d5600b1be2d02f00025d868b8b9610000b440a10100005503000000d101b15e000061a00416f26e025400dd309c2800ed021967b841014d02b4c01c9000ed14f8bd40180000780d0130d400048d2d8c0dc3d5b9006d33ed3e991f00000000e8009574ac0089e94c74d50158314af0d9c1009101d000e80439931dc30028001903d156000da88103d164b902b101bd779ce0000c25010030bc00b17a5875010ce0d0cc00590298d9159e91ef1fb12b520cd8f5249452e419e9e2319342b205e209de28028969d12b74c3061cec62f03d37dfb644706ea6100027d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Electionprovidermultiphase : Submit", + "1 | Raw solution [1/43] : {\"solution\":{\"votes1\":[[4127,0]],\"vote", + "1 | Raw solution [2/43] : s2\":[[6833,[0,3484],140]],\"votes3\":[[5", + "1 | Raw solution [3/43] : 056,[[3297,0],[30,0]],0]],\"votes4\":[[1", + "1 | Raw solution [4/43] : 194,[[1295,52],[25,47],[195,64]],0]],\"", + "1 | Raw solution [5/43] : votes5\":[[213801973,[[3058,2151],[46,0", + "1 | Raw solution [6/43] : ],[8885,21],[0,9]],216]],\"votes6\":[[38", + "1 | Raw solution [7/43] : 78217,[[0,87],[85,0],[8631,22],[9,63],", + "1 | Raw solution [8/43] : [28,11800]],0]],\"votes7\":[[25,[[0,56],", + "1 | Raw solution [9/43] : [13,6673],[29,16104],[61,14],[47,14534", + "1 | Raw solution [10/43] : ],[0,133]],0]],\"votes8\":[[63,[[11061,1", + "1 | Raw solution [11/43] : 555],[34,7255],[178,52],[0,63],[63,31]", + "1 | Raw solution [12/43] : ,[152,144],[9343,148]],54]],\"votes9\":[", + "1 | Raw solution [13/43] : [860809951,[[149,0],[0,0],[4549,42],[1", + "1 | Raw solution [14/43] : 0173,5],[191,60],[22,50],[143,32],[138", + "1 | Raw solution [15/43] : 13,0]],243]],\"votes10\":[[1057609186,[[", + "1 | Raw solution [16/43] : 10,1],[202,1663],[0,0],[0,0],[0,0],[15", + "1 | Raw solution [17/43] : ,139],[0,6535],[13636,0],[0,96]],15585", + "1 | Raw solution [18/43] : ]],\"votes11\":[[12021709,[[0,16],[17,11", + "1 | Raw solution [19/43] : 0],[0,148],[207,43],[0,15],[0,0],[16,1", + "1 | Raw solution [20/43] : 2937],[0,0],[0,69],[0,220]],195]],\"vot", + "1 | Raw solution [21/43] : es12\":[[13318,[[28,0],[0,6911],[0,133]", + "1 | Raw solution [22/43] : ,[10,10],[13108,50],[62,0],[141,107],[", + "1 | Raw solution [23/43] : 66,193],[242,6],[0,0],[0,152]],49]],\"v", + "1 | Raw solution [24/43] : otes13\":[[5515,[[0,12204],[139,60],[0,", + "1 | Raw solution [25/43] : 13833],[26,46],[6254,0],[0,45],[16,104", + "1 | Raw solution [26/43] : ],[0,0],[213,0],[0,0],[116,6060],[0,0]", + "1 | Raw solution [27/43] : ],10264]],\"votes14\":[[10206341,[[21,0]", + "1 | Raw solution [28/43] : ,[3127,39],[10,0],[187,6598],[46,80],[", + "1 | Raw solution [29/43] : 147,45],[48,7],[36,0],[1339,62],[4143,", + "1 | Raw solution [30/43] : 6],[0,0],[30,67],[12,53]],0]],\"votes15", + "1 | Raw solution [31/43] : \":[[2915,[[35,12483],[11893,0],[3291,4", + "1 | Raw solution [32/43] : 027],[2022,0],[0,0],[0,58],[0,7461],[4", + "1 | Raw solution [33/43] : 3,0],[14946,19],[29,117],[22,4748],[60", + "1 | Raw solution [34/43] : ,12406],[0,100],[52,0]],58]],\"votes16\"", + "1 | Raw solution [35/43] : :[[9422,[[12487,0],[10,0],[198,5556],[", + "1 | Raw solution [36/43] : 0,10755],[224,6452],[174,108],[7663,39", + "1 | Raw solution [37/43] : ],[56,0],[3,73],[0,12],[47,0],[7852,22", + "1 | Raw solution [38/43] : ],[93,3],[56,52],[51,0]],150]]},\"score", + "1 | Raw solution [39/43] : \":{\"minimalStake\":\"0x529424f5d80c522bb", + "1 | Raw solution [40/43] : 11fef919e15d998\",\"sumStake\":\"0x6989022", + "1 | Raw solution [41/43] : 8de09e205b2429331e2e919e4\",\"sumStakeSq", + "1 | Raw solution [42/43] : uared\":\"0x6e7044b6df373df062ec1c06c374", + "1 | Raw solution [43/43] : 2bd1\"},\"round\":654315686}", + "2 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Nft : Redeem nft", - "1 | Ticker : TICKER-12345", - "2 | Nft id : 794728190384053293", - "3 | Portfolio kind : Default", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Electionprovidermultiphase : Submit", + "1 | Raw solution [1/43] : {\"solution\":{\"votes1\":[[4127,0]],\"vote", + "1 | Raw solution [2/43] : s2\":[[6833,[0,3484],140]],\"votes3\":[[5", + "1 | Raw solution [3/43] : 056,[[3297,0],[30,0]],0]],\"votes4\":[[1", + "1 | Raw solution [4/43] : 194,[[1295,52],[25,47],[195,64]],0]],\"", + "1 | Raw solution [5/43] : votes5\":[[213801973,[[3058,2151],[46,0", + "1 | Raw solution [6/43] : ],[8885,21],[0,9]],216]],\"votes6\":[[38", + "1 | Raw solution [7/43] : 78217,[[0,87],[85,0],[8631,22],[9,63],", + "1 | Raw solution [8/43] : [28,11800]],0]],\"votes7\":[[25,[[0,56],", + "1 | Raw solution [9/43] : [13,6673],[29,16104],[61,14],[47,14534", + "1 | Raw solution [10/43] : ],[0,133]],0]],\"votes8\":[[63,[[11061,1", + "1 | Raw solution [11/43] : 555],[34,7255],[178,52],[0,63],[63,31]", + "1 | Raw solution [12/43] : ,[152,144],[9343,148]],54]],\"votes9\":[", + "1 | Raw solution [13/43] : [860809951,[[149,0],[0,0],[4549,42],[1", + "1 | Raw solution [14/43] : 0173,5],[191,60],[22,50],[143,32],[138", + "1 | Raw solution [15/43] : 13,0]],243]],\"votes10\":[[1057609186,[[", + "1 | Raw solution [16/43] : 10,1],[202,1663],[0,0],[0,0],[0,0],[15", + "1 | Raw solution [17/43] : ,139],[0,6535],[13636,0],[0,96]],15585", + "1 | Raw solution [18/43] : ]],\"votes11\":[[12021709,[[0,16],[17,11", + "1 | Raw solution [19/43] : 0],[0,148],[207,43],[0,15],[0,0],[16,1", + "1 | Raw solution [20/43] : 2937],[0,0],[0,69],[0,220]],195]],\"vot", + "1 | Raw solution [21/43] : es12\":[[13318,[[28,0],[0,6911],[0,133]", + "1 | Raw solution [22/43] : ,[10,10],[13108,50],[62,0],[141,107],[", + "1 | Raw solution [23/43] : 66,193],[242,6],[0,0],[0,152]],49]],\"v", + "1 | Raw solution [24/43] : otes13\":[[5515,[[0,12204],[139,60],[0,", + "1 | Raw solution [25/43] : 13833],[26,46],[6254,0],[0,45],[16,104", + "1 | Raw solution [26/43] : ],[0,0],[213,0],[0,0],[116,6060],[0,0]", + "1 | Raw solution [27/43] : ],10264]],\"votes14\":[[10206341,[[21,0]", + "1 | Raw solution [28/43] : ,[3127,39],[10,0],[187,6598],[46,80],[", + "1 | Raw solution [29/43] : 147,45],[48,7],[36,0],[1339,62],[4143,", + "1 | Raw solution [30/43] : 6],[0,0],[30,67],[12,53]],0]],\"votes15", + "1 | Raw solution [31/43] : \":[[2915,[[35,12483],[11893,0],[3291,4", + "1 | Raw solution [32/43] : 027],[2022,0],[0,0],[0,58],[0,7461],[4", + "1 | Raw solution [33/43] : 3,0],[14946,19],[29,117],[22,4748],[60", + "1 | Raw solution [34/43] : ,12406],[0,100],[52,0]],58]],\"votes16\"", + "1 | Raw solution [35/43] : :[[9422,[[12487,0],[10,0],[198,5556],[", + "1 | Raw solution [36/43] : 0,10755],[224,6452],[174,108],[7663,39", + "1 | Raw solution [37/43] : ],[56,0],[3,73],[0,12],[47,0],[7852,22", + "1 | Raw solution [38/43] : ],[93,3],[56,52],[51,0]],150]]},\"score", + "1 | Raw solution [39/43] : \":{\"minimalStake\":\"0x529424f5d80c522bb", + "1 | Raw solution [40/43] : 11fef919e15d998\",\"sumStake\":\"0x6989022", + "1 | Raw solution [41/43] : 8de09e205b2429331e2e919e4\",\"sumStakeSq", + "1 | Raw solution [42/43] : uared\":\"0x6e7044b6df373df062ec1c06c374", + "1 | Raw solution [43/43] : 2bd1\"},\"round\":654315686}", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip : POLYX 55.555555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1633, - "name": "Nft_Redeem_nft", - "blob": "31025449434b45522d3132333435d7813ffa627eccdc00d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Nft : Redeem nft", - "1 | Ticker : TICKER-12345", - "2 | Nft id : 15910230547163480535", - "3 | Portfolio kind : Default", - "4 | Tip : POLYX 0.000987" + "index": 1582, + "name": "Electionprovidermultiphase_Submit", + "blob": "3203047d400004c56a007136310204014f85330078000004a9123d14d064bc0d0301010004d66ff932c92f9d21b800d58a54002461030426b5ec00005d01550100dd865824fc7061b800046400e034456874a1fbf438bc19e30015020004fcd5ac4d18885d71c902d000fcfc7c61024102fd915102d8047eab3bcd55020000001547a8f59e14fd02f058c83d0280d5d700cd03048a5727fc28042903fd190000000000003c2d02001d6611d50000810185f30436bfdd02004044b9010051023d03ac003c00004025ca00000015010071030d030419d0700000fd6b0015022828d1ccc8f8003502ad0109010503c903180000006102c4042d5600b1be2d02f00025d868b8b9610000b440a10100005503000000d101b15e000061a00416f26e025400dd309c2800ed021967b841014d02b4c01c9000ed14f8bd40180000780d0130d400048d2d8c0dc3d5b9006d33ed3e991f00000000e8009574ac0089e94c74d50158314af0d9c1009101d000e80439931dc30028001903d156000da88103d164b902b101bd779ce0000c25010030bc00b17a5875010ce0d0cc00590298d9159e91ef1fb12b520cd8f5249452e419e9e2319342b205e209de28028969d12b74c3061cec62f03d37dfb644706ea6100027d503ae1103000b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Electionprovidermultiphase : Submit", + "1 | Raw solution [1/43] : {\"solution\":{\"votes1\":[[4127,0]],\"vote", + "1 | Raw solution [2/43] : s2\":[[6833,[0,3484],140]],\"votes3\":[[5", + "1 | Raw solution [3/43] : 056,[[3297,0],[30,0]],0]],\"votes4\":[[1", + "1 | Raw solution [4/43] : 194,[[1295,52],[25,47],[195,64]],0]],\"", + "1 | Raw solution [5/43] : votes5\":[[213801973,[[3058,2151],[46,0", + "1 | Raw solution [6/43] : ],[8885,21],[0,9]],216]],\"votes6\":[[38", + "1 | Raw solution [7/43] : 78217,[[0,87],[85,0],[8631,22],[9,63],", + "1 | Raw solution [8/43] : [28,11800]],0]],\"votes7\":[[25,[[0,56],", + "1 | Raw solution [9/43] : [13,6673],[29,16104],[61,14],[47,14534", + "1 | Raw solution [10/43] : ],[0,133]],0]],\"votes8\":[[63,[[11061,1", + "1 | Raw solution [11/43] : 555],[34,7255],[178,52],[0,63],[63,31]", + "1 | Raw solution [12/43] : ,[152,144],[9343,148]],54]],\"votes9\":[", + "1 | Raw solution [13/43] : [860809951,[[149,0],[0,0],[4549,42],[1", + "1 | Raw solution [14/43] : 0173,5],[191,60],[22,50],[143,32],[138", + "1 | Raw solution [15/43] : 13,0]],243]],\"votes10\":[[1057609186,[[", + "1 | Raw solution [16/43] : 10,1],[202,1663],[0,0],[0,0],[0,0],[15", + "1 | Raw solution [17/43] : ,139],[0,6535],[13636,0],[0,96]],15585", + "1 | Raw solution [18/43] : ]],\"votes11\":[[12021709,[[0,16],[17,11", + "1 | Raw solution [19/43] : 0],[0,148],[207,43],[0,15],[0,0],[16,1", + "1 | Raw solution [20/43] : 2937],[0,0],[0,69],[0,220]],195]],\"vot", + "1 | Raw solution [21/43] : es12\":[[13318,[[28,0],[0,6911],[0,133]", + "1 | Raw solution [22/43] : ,[10,10],[13108,50],[62,0],[141,107],[", + "1 | Raw solution [23/43] : 66,193],[242,6],[0,0],[0,152]],49]],\"v", + "1 | Raw solution [24/43] : otes13\":[[5515,[[0,12204],[139,60],[0,", + "1 | Raw solution [25/43] : 13833],[26,46],[6254,0],[0,45],[16,104", + "1 | Raw solution [26/43] : ],[0,0],[213,0],[0,0],[116,6060],[0,0]", + "1 | Raw solution [27/43] : ],10264]],\"votes14\":[[10206341,[[21,0]", + "1 | Raw solution [28/43] : ,[3127,39],[10,0],[187,6598],[46,80],[", + "1 | Raw solution [29/43] : 147,45],[48,7],[36,0],[1339,62],[4143,", + "1 | Raw solution [30/43] : 6],[0,0],[30,67],[12,53]],0]],\"votes15", + "1 | Raw solution [31/43] : \":[[2915,[[35,12483],[11893,0],[3291,4", + "1 | Raw solution [32/43] : 027],[2022,0],[0,0],[0,58],[0,7461],[4", + "1 | Raw solution [33/43] : 3,0],[14946,19],[29,117],[22,4748],[60", + "1 | Raw solution [34/43] : ,12406],[0,100],[52,0]],58]],\"votes16\"", + "1 | Raw solution [35/43] : :[[9422,[[12487,0],[10,0],[198,5556],[", + "1 | Raw solution [36/43] : 0,10755],[224,6452],[174,108],[7663,39", + "1 | Raw solution [37/43] : ],[56,0],[3,73],[0,12],[47,0],[7852,22", + "1 | Raw solution [38/43] : ],[93,3],[56,52],[51,0]],150]]},\"score", + "1 | Raw solution [39/43] : \":{\"minimalStake\":\"0x529424f5d80c522bb", + "1 | Raw solution [40/43] : 11fef919e15d998\",\"sumStake\":\"0x6989022", + "1 | Raw solution [41/43] : 8de09e205b2429331e2e919e4\",\"sumStakeSq", + "1 | Raw solution [42/43] : uared\":\"0x6e7044b6df373df062ec1c06c374", + "1 | Raw solution [43/43] : 2bd1\"},\"round\":654315686}", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Nft : Redeem nft", - "1 | Ticker : TICKER-12345", - "2 | Nft id : 15910230547163480535", - "3 | Portfolio kind : Default", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Electionprovidermultiphase : Submit", + "1 | Raw solution [1/43] : {\"solution\":{\"votes1\":[[4127,0]],\"vote", + "1 | Raw solution [2/43] : s2\":[[6833,[0,3484],140]],\"votes3\":[[5", + "1 | Raw solution [3/43] : 056,[[3297,0],[30,0]],0]],\"votes4\":[[1", + "1 | Raw solution [4/43] : 194,[[1295,52],[25,47],[195,64]],0]],\"", + "1 | Raw solution [5/43] : votes5\":[[213801973,[[3058,2151],[46,0", + "1 | Raw solution [6/43] : ],[8885,21],[0,9]],216]],\"votes6\":[[38", + "1 | Raw solution [7/43] : 78217,[[0,87],[85,0],[8631,22],[9,63],", + "1 | Raw solution [8/43] : [28,11800]],0]],\"votes7\":[[25,[[0,56],", + "1 | Raw solution [9/43] : [13,6673],[29,16104],[61,14],[47,14534", + "1 | Raw solution [10/43] : ],[0,133]],0]],\"votes8\":[[63,[[11061,1", + "1 | Raw solution [11/43] : 555],[34,7255],[178,52],[0,63],[63,31]", + "1 | Raw solution [12/43] : ,[152,144],[9343,148]],54]],\"votes9\":[", + "1 | Raw solution [13/43] : [860809951,[[149,0],[0,0],[4549,42],[1", + "1 | Raw solution [14/43] : 0173,5],[191,60],[22,50],[143,32],[138", + "1 | Raw solution [15/43] : 13,0]],243]],\"votes10\":[[1057609186,[[", + "1 | Raw solution [16/43] : 10,1],[202,1663],[0,0],[0,0],[0,0],[15", + "1 | Raw solution [17/43] : ,139],[0,6535],[13636,0],[0,96]],15585", + "1 | Raw solution [18/43] : ]],\"votes11\":[[12021709,[[0,16],[17,11", + "1 | Raw solution [19/43] : 0],[0,148],[207,43],[0,15],[0,0],[16,1", + "1 | Raw solution [20/43] : 2937],[0,0],[0,69],[0,220]],195]],\"vot", + "1 | Raw solution [21/43] : es12\":[[13318,[[28,0],[0,6911],[0,133]", + "1 | Raw solution [22/43] : ,[10,10],[13108,50],[62,0],[141,107],[", + "1 | Raw solution [23/43] : 66,193],[242,6],[0,0],[0,152]],49]],\"v", + "1 | Raw solution [24/43] : otes13\":[[5515,[[0,12204],[139,60],[0,", + "1 | Raw solution [25/43] : 13833],[26,46],[6254,0],[0,45],[16,104", + "1 | Raw solution [26/43] : ],[0,0],[213,0],[0,0],[116,6060],[0,0]", + "1 | Raw solution [27/43] : ],10264]],\"votes14\":[[10206341,[[21,0]", + "1 | Raw solution [28/43] : ,[3127,39],[10,0],[187,6598],[46,80],[", + "1 | Raw solution [29/43] : 147,45],[48,7],[36,0],[1339,62],[4143,", + "1 | Raw solution [30/43] : 6],[0,0],[30,67],[12,53]],0]],\"votes15", + "1 | Raw solution [31/43] : \":[[2915,[[35,12483],[11893,0],[3291,4", + "1 | Raw solution [32/43] : 027],[2022,0],[0,0],[0,58],[0,7461],[4", + "1 | Raw solution [33/43] : 3,0],[14946,19],[29,117],[22,4748],[60", + "1 | Raw solution [34/43] : ,12406],[0,100],[52,0]],58]],\"votes16\"", + "1 | Raw solution [35/43] : :[[9422,[[12487,0],[10,0],[198,5556],[", + "1 | Raw solution [36/43] : 0,10755],[224,6452],[174,108],[7663,39", + "1 | Raw solution [37/43] : ],[56,0],[3,73],[0,12],[47,0],[7852,22", + "1 | Raw solution [38/43] : ],[93,3],[56,52],[51,0]],150]]},\"score", + "1 | Raw solution [39/43] : \":{\"minimalStake\":\"0x529424f5d80c522bb", + "1 | Raw solution [40/43] : 11fef919e15d998\",\"sumStake\":\"0x6989022", + "1 | Raw solution [41/43] : 8de09e205b2429331e2e919e4\",\"sumStakeSq", + "1 | Raw solution [42/43] : uared\":\"0x6e7044b6df373df062ec1c06c374", + "1 | Raw solution [43/43] : 2bd1\"},\"round\":654315686}", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1634, - "name": "Nft_Redeem_nft", - "blob": "31025449434b45522d3132333435d7813ffa627eccdc017783de5904926d17d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Nft : Redeem nft", - "1 | Ticker : TICKER-12345", - "2 | Nft id : 15910230547163480535", - "3 | Portfolio kind : 1688165982719083383", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "index": 1583, + "name": "Electionprovidermultiphase_Submit", + "blob": "3203047d400004c56a007136310204014f85330078000004a9123d14d064bc0d0301010004d66ff932c92f9d21b800d58a54002461030426b5ec00005d01550100dd865824fc7061b800046400e034456874a1fbf438bc19e30015020004fcd5ac4d18885d71c902d000fcfc7c61024102fd915102d8047eab3bcd55020000001547a8f59e14fd02f058c83d0280d5d700cd03048a5727fc28042903fd190000000000003c2d02001d6611d50000810185f30436bfdd02004044b9010051023d03ac003c00004025ca00000015010071030d030419d0700000fd6b0015022828d1ccc8f8003502ad0109010503c903180000006102c4042d5600b1be2d02f00025d868b8b9610000b440a10100005503000000d101b15e000061a00416f26e025400dd309c2800ed021967b841014d02b4c01c9000ed14f8bd40180000780d0130d400048d2d8c0dc3d5b9006d33ed3e991f00000000e8009574ac0089e94c74d50158314af0d9c1009101d000e80439931dc30028001903d156000da88103d164b902b101bd779ce0000c25010030bc00b17a5875010ce0d0cc00590298d9159e91ef1fb12b520cd8f5249452e419e9e2319342b205e209de28028969d12b74c3061cec62f03d37dfb644706ea6100027d50391010b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Electionprovidermultiphase : Submit", + "1 | Raw solution [1/43] : {\"solution\":{\"votes1\":[[4127,0]],\"vote", + "1 | Raw solution [2/43] : s2\":[[6833,[0,3484],140]],\"votes3\":[[5", + "1 | Raw solution [3/43] : 056,[[3297,0],[30,0]],0]],\"votes4\":[[1", + "1 | Raw solution [4/43] : 194,[[1295,52],[25,47],[195,64]],0]],\"", + "1 | Raw solution [5/43] : votes5\":[[213801973,[[3058,2151],[46,0", + "1 | Raw solution [6/43] : ],[8885,21],[0,9]],216]],\"votes6\":[[38", + "1 | Raw solution [7/43] : 78217,[[0,87],[85,0],[8631,22],[9,63],", + "1 | Raw solution [8/43] : [28,11800]],0]],\"votes7\":[[25,[[0,56],", + "1 | Raw solution [9/43] : [13,6673],[29,16104],[61,14],[47,14534", + "1 | Raw solution [10/43] : ],[0,133]],0]],\"votes8\":[[63,[[11061,1", + "1 | Raw solution [11/43] : 555],[34,7255],[178,52],[0,63],[63,31]", + "1 | Raw solution [12/43] : ,[152,144],[9343,148]],54]],\"votes9\":[", + "1 | Raw solution [13/43] : [860809951,[[149,0],[0,0],[4549,42],[1", + "1 | Raw solution [14/43] : 0173,5],[191,60],[22,50],[143,32],[138", + "1 | Raw solution [15/43] : 13,0]],243]],\"votes10\":[[1057609186,[[", + "1 | Raw solution [16/43] : 10,1],[202,1663],[0,0],[0,0],[0,0],[15", + "1 | Raw solution [17/43] : ,139],[0,6535],[13636,0],[0,96]],15585", + "1 | Raw solution [18/43] : ]],\"votes11\":[[12021709,[[0,16],[17,11", + "1 | Raw solution [19/43] : 0],[0,148],[207,43],[0,15],[0,0],[16,1", + "1 | Raw solution [20/43] : 2937],[0,0],[0,69],[0,220]],195]],\"vot", + "1 | Raw solution [21/43] : es12\":[[13318,[[28,0],[0,6911],[0,133]", + "1 | Raw solution [22/43] : ,[10,10],[13108,50],[62,0],[141,107],[", + "1 | Raw solution [23/43] : 66,193],[242,6],[0,0],[0,152]],49]],\"v", + "1 | Raw solution [24/43] : otes13\":[[5515,[[0,12204],[139,60],[0,", + "1 | Raw solution [25/43] : 13833],[26,46],[6254,0],[0,45],[16,104", + "1 | Raw solution [26/43] : ],[0,0],[213,0],[0,0],[116,6060],[0,0]", + "1 | Raw solution [27/43] : ],10264]],\"votes14\":[[10206341,[[21,0]", + "1 | Raw solution [28/43] : ,[3127,39],[10,0],[187,6598],[46,80],[", + "1 | Raw solution [29/43] : 147,45],[48,7],[36,0],[1339,62],[4143,", + "1 | Raw solution [30/43] : 6],[0,0],[30,67],[12,53]],0]],\"votes15", + "1 | Raw solution [31/43] : \":[[2915,[[35,12483],[11893,0],[3291,4", + "1 | Raw solution [32/43] : 027],[2022,0],[0,0],[0,58],[0,7461],[4", + "1 | Raw solution [33/43] : 3,0],[14946,19],[29,117],[22,4748],[60", + "1 | Raw solution [34/43] : ,12406],[0,100],[52,0]],58]],\"votes16\"", + "1 | Raw solution [35/43] : :[[9422,[[12487,0],[10,0],[198,5556],[", + "1 | Raw solution [36/43] : 0,10755],[224,6452],[174,108],[7663,39", + "1 | Raw solution [37/43] : ],[56,0],[3,73],[0,12],[47,0],[7852,22", + "1 | Raw solution [38/43] : ],[93,3],[56,52],[51,0]],150]]},\"score", + "1 | Raw solution [39/43] : \":{\"minimalStake\":\"0x529424f5d80c522bb", + "1 | Raw solution [40/43] : 11fef919e15d998\",\"sumStake\":\"0x6989022", + "1 | Raw solution [41/43] : 8de09e205b2429331e2e919e4\",\"sumStakeSq", + "1 | Raw solution [42/43] : uared\":\"0x6e7044b6df373df062ec1c06c374", + "1 | Raw solution [43/43] : 2bd1\"},\"round\":654315686}", + "2 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Nft : Redeem nft", - "1 | Ticker : TICKER-12345", - "2 | Nft id : 15910230547163480535", - "3 | Portfolio kind : 1688165982719083383", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Electionprovidermultiphase : Submit", + "1 | Raw solution [1/43] : {\"solution\":{\"votes1\":[[4127,0]],\"vote", + "1 | Raw solution [2/43] : s2\":[[6833,[0,3484],140]],\"votes3\":[[5", + "1 | Raw solution [3/43] : 056,[[3297,0],[30,0]],0]],\"votes4\":[[1", + "1 | Raw solution [4/43] : 194,[[1295,52],[25,47],[195,64]],0]],\"", + "1 | Raw solution [5/43] : votes5\":[[213801973,[[3058,2151],[46,0", + "1 | Raw solution [6/43] : ],[8885,21],[0,9]],216]],\"votes6\":[[38", + "1 | Raw solution [7/43] : 78217,[[0,87],[85,0],[8631,22],[9,63],", + "1 | Raw solution [8/43] : [28,11800]],0]],\"votes7\":[[25,[[0,56],", + "1 | Raw solution [9/43] : [13,6673],[29,16104],[61,14],[47,14534", + "1 | Raw solution [10/43] : ],[0,133]],0]],\"votes8\":[[63,[[11061,1", + "1 | Raw solution [11/43] : 555],[34,7255],[178,52],[0,63],[63,31]", + "1 | Raw solution [12/43] : ,[152,144],[9343,148]],54]],\"votes9\":[", + "1 | Raw solution [13/43] : [860809951,[[149,0],[0,0],[4549,42],[1", + "1 | Raw solution [14/43] : 0173,5],[191,60],[22,50],[143,32],[138", + "1 | Raw solution [15/43] : 13,0]],243]],\"votes10\":[[1057609186,[[", + "1 | Raw solution [16/43] : 10,1],[202,1663],[0,0],[0,0],[0,0],[15", + "1 | Raw solution [17/43] : ,139],[0,6535],[13636,0],[0,96]],15585", + "1 | Raw solution [18/43] : ]],\"votes11\":[[12021709,[[0,16],[17,11", + "1 | Raw solution [19/43] : 0],[0,148],[207,43],[0,15],[0,0],[16,1", + "1 | Raw solution [20/43] : 2937],[0,0],[0,69],[0,220]],195]],\"vot", + "1 | Raw solution [21/43] : es12\":[[13318,[[28,0],[0,6911],[0,133]", + "1 | Raw solution [22/43] : ,[10,10],[13108,50],[62,0],[141,107],[", + "1 | Raw solution [23/43] : 66,193],[242,6],[0,0],[0,152]],49]],\"v", + "1 | Raw solution [24/43] : otes13\":[[5515,[[0,12204],[139,60],[0,", + "1 | Raw solution [25/43] : 13833],[26,46],[6254,0],[0,45],[16,104", + "1 | Raw solution [26/43] : ],[0,0],[213,0],[0,0],[116,6060],[0,0]", + "1 | Raw solution [27/43] : ],10264]],\"votes14\":[[10206341,[[21,0]", + "1 | Raw solution [28/43] : ,[3127,39],[10,0],[187,6598],[46,80],[", + "1 | Raw solution [29/43] : 147,45],[48,7],[36,0],[1339,62],[4143,", + "1 | Raw solution [30/43] : 6],[0,0],[30,67],[12,53]],0]],\"votes15", + "1 | Raw solution [31/43] : \":[[2915,[[35,12483],[11893,0],[3291,4", + "1 | Raw solution [32/43] : 027],[2022,0],[0,0],[0,58],[0,7461],[4", + "1 | Raw solution [33/43] : 3,0],[14946,19],[29,117],[22,4748],[60", + "1 | Raw solution [34/43] : ,12406],[0,100],[52,0]],58]],\"votes16\"", + "1 | Raw solution [35/43] : :[[9422,[[12487,0],[10,0],[198,5556],[", + "1 | Raw solution [36/43] : 0,10755],[224,6452],[174,108],[7663,39", + "1 | Raw solution [37/43] : ],[56,0],[3,73],[0,12],[47,0],[7852,22", + "1 | Raw solution [38/43] : ],[93,3],[56,52],[51,0]],150]]},\"score", + "1 | Raw solution [39/43] : \":{\"minimalStake\":\"0x529424f5d80c522bb", + "1 | Raw solution [40/43] : 11fef919e15d998\",\"sumStake\":\"0x6989022", + "1 | Raw solution [41/43] : 8de09e205b2429331e2e919e4\",\"sumStakeSq", + "1 | Raw solution [42/43] : uared\":\"0x6e7044b6df373df062ec1c06c374", + "1 | Raw solution [43/43] : 2bd1\"},\"round\":654315686}", + "2 | Chain : Polymesh", + "3 | Nonce : 100", + "4 | Tip : POLYX 5552342.355555", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1635, - "name": "Nft_Redeem_nft", - "blob": "31025449434b45522d313233343559159451a17422cf017783de5904926d17d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Nft : Redeem nft", - "1 | Ticker : TICKER-12345", - "2 | Nft id : 14925620351266461017", - "3 | Portfolio kind : 1688165982719083383", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" + "index": 1584, + "name": "Electionprovidermultiphase_Submit", + "blob": "3203047d400004c56a007136310204014f85330078000004a9123d14d064bc0d0301010004d66ff932c92f9d21b800d58a54002461030426b5ec00005d01550100dd865824fc7061b800046400e034456874a1fbf438bc19e30015020004fcd5ac4d18885d71c902d000fcfc7c61024102fd915102d8047eab3bcd55020000001547a8f59e14fd02f058c83d0280d5d700cd03048a5727fc28042903fd190000000000003c2d02001d6611d50000810185f30436bfdd02004044b9010051023d03ac003c00004025ca00000015010071030d030419d0700000fd6b0015022828d1ccc8f8003502ad0109010503c903180000006102c4042d5600b1be2d02f00025d868b8b9610000b440a10100005503000000d101b15e000061a00416f26e025400dd309c2800ed021967b841014d02b4c01c9000ed14f8bd40180000780d0130d400048d2d8c0dc3d5b9006d33ed3e991f00000000e8009574ac0089e94c74d50158314af0d9c1009101d000e80439931dc30028001903d156000da88103d164b902b101bd779ce0000c25010030bc00b17a5875010ce0d0cc00590298d9159e91ef1fb12b520cd8f5249452e419e9e2319342b205e209de28028969d12b74c3061cec62f03d37dfb644706ea6100027d5030000c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Electionprovidermultiphase : Submit", + "1 | Raw solution [1/43] : {\"solution\":{\"votes1\":[[4127,0]],\"vote", + "1 | Raw solution [2/43] : s2\":[[6833,[0,3484],140]],\"votes3\":[[5", + "1 | Raw solution [3/43] : 056,[[3297,0],[30,0]],0]],\"votes4\":[[1", + "1 | Raw solution [4/43] : 194,[[1295,52],[25,47],[195,64]],0]],\"", + "1 | Raw solution [5/43] : votes5\":[[213801973,[[3058,2151],[46,0", + "1 | Raw solution [6/43] : ],[8885,21],[0,9]],216]],\"votes6\":[[38", + "1 | Raw solution [7/43] : 78217,[[0,87],[85,0],[8631,22],[9,63],", + "1 | Raw solution [8/43] : [28,11800]],0]],\"votes7\":[[25,[[0,56],", + "1 | Raw solution [9/43] : [13,6673],[29,16104],[61,14],[47,14534", + "1 | Raw solution [10/43] : ],[0,133]],0]],\"votes8\":[[63,[[11061,1", + "1 | Raw solution [11/43] : 555],[34,7255],[178,52],[0,63],[63,31]", + "1 | Raw solution [12/43] : ,[152,144],[9343,148]],54]],\"votes9\":[", + "1 | Raw solution [13/43] : [860809951,[[149,0],[0,0],[4549,42],[1", + "1 | Raw solution [14/43] : 0173,5],[191,60],[22,50],[143,32],[138", + "1 | Raw solution [15/43] : 13,0]],243]],\"votes10\":[[1057609186,[[", + "1 | Raw solution [16/43] : 10,1],[202,1663],[0,0],[0,0],[0,0],[15", + "1 | Raw solution [17/43] : ,139],[0,6535],[13636,0],[0,96]],15585", + "1 | Raw solution [18/43] : ]],\"votes11\":[[12021709,[[0,16],[17,11", + "1 | Raw solution [19/43] : 0],[0,148],[207,43],[0,15],[0,0],[16,1", + "1 | Raw solution [20/43] : 2937],[0,0],[0,69],[0,220]],195]],\"vot", + "1 | Raw solution [21/43] : es12\":[[13318,[[28,0],[0,6911],[0,133]", + "1 | Raw solution [22/43] : ,[10,10],[13108,50],[62,0],[141,107],[", + "1 | Raw solution [23/43] : 66,193],[242,6],[0,0],[0,152]],49]],\"v", + "1 | Raw solution [24/43] : otes13\":[[5515,[[0,12204],[139,60],[0,", + "1 | Raw solution [25/43] : 13833],[26,46],[6254,0],[0,45],[16,104", + "1 | Raw solution [26/43] : ],[0,0],[213,0],[0,0],[116,6060],[0,0]", + "1 | Raw solution [27/43] : ],10264]],\"votes14\":[[10206341,[[21,0]", + "1 | Raw solution [28/43] : ,[3127,39],[10,0],[187,6598],[46,80],[", + "1 | Raw solution [29/43] : 147,45],[48,7],[36,0],[1339,62],[4143,", + "1 | Raw solution [30/43] : 6],[0,0],[30,67],[12,53]],0]],\"votes15", + "1 | Raw solution [31/43] : \":[[2915,[[35,12483],[11893,0],[3291,4", + "1 | Raw solution [32/43] : 027],[2022,0],[0,0],[0,58],[0,7461],[4", + "1 | Raw solution [33/43] : 3,0],[14946,19],[29,117],[22,4748],[60", + "1 | Raw solution [34/43] : ,12406],[0,100],[52,0]],58]],\"votes16\"", + "1 | Raw solution [35/43] : :[[9422,[[12487,0],[10,0],[198,5556],[", + "1 | Raw solution [36/43] : 0,10755],[224,6452],[174,108],[7663,39", + "1 | Raw solution [37/43] : ],[56,0],[3,73],[0,12],[47,0],[7852,22", + "1 | Raw solution [38/43] : ],[93,3],[56,52],[51,0]],150]]},\"score", + "1 | Raw solution [39/43] : \":{\"minimalStake\":\"0x529424f5d80c522bb", + "1 | Raw solution [40/43] : 11fef919e15d998\",\"sumStake\":\"0x6989022", + "1 | Raw solution [41/43] : 8de09e205b2429331e2e919e4\",\"sumStakeSq", + "1 | Raw solution [42/43] : uared\":\"0x6e7044b6df373df062ec1c06c374", + "1 | Raw solution [43/43] : 2bd1\"},\"round\":654315686}" + ], + "output_expert": [ + "0 | Electionprovidermultiphase : Submit", + "1 | Raw solution [1/43] : {\"solution\":{\"votes1\":[[4127,0]],\"vote", + "1 | Raw solution [2/43] : s2\":[[6833,[0,3484],140]],\"votes3\":[[5", + "1 | Raw solution [3/43] : 056,[[3297,0],[30,0]],0]],\"votes4\":[[1", + "1 | Raw solution [4/43] : 194,[[1295,52],[25,47],[195,64]],0]],\"", + "1 | Raw solution [5/43] : votes5\":[[213801973,[[3058,2151],[46,0", + "1 | Raw solution [6/43] : ],[8885,21],[0,9]],216]],\"votes6\":[[38", + "1 | Raw solution [7/43] : 78217,[[0,87],[85,0],[8631,22],[9,63],", + "1 | Raw solution [8/43] : [28,11800]],0]],\"votes7\":[[25,[[0,56],", + "1 | Raw solution [9/43] : [13,6673],[29,16104],[61,14],[47,14534", + "1 | Raw solution [10/43] : ],[0,133]],0]],\"votes8\":[[63,[[11061,1", + "1 | Raw solution [11/43] : 555],[34,7255],[178,52],[0,63],[63,31]", + "1 | Raw solution [12/43] : ,[152,144],[9343,148]],54]],\"votes9\":[", + "1 | Raw solution [13/43] : [860809951,[[149,0],[0,0],[4549,42],[1", + "1 | Raw solution [14/43] : 0173,5],[191,60],[22,50],[143,32],[138", + "1 | Raw solution [15/43] : 13,0]],243]],\"votes10\":[[1057609186,[[", + "1 | Raw solution [16/43] : 10,1],[202,1663],[0,0],[0,0],[0,0],[15", + "1 | Raw solution [17/43] : ,139],[0,6535],[13636,0],[0,96]],15585", + "1 | Raw solution [18/43] : ]],\"votes11\":[[12021709,[[0,16],[17,11", + "1 | Raw solution [19/43] : 0],[0,148],[207,43],[0,15],[0,0],[16,1", + "1 | Raw solution [20/43] : 2937],[0,0],[0,69],[0,220]],195]],\"vot", + "1 | Raw solution [21/43] : es12\":[[13318,[[28,0],[0,6911],[0,133]", + "1 | Raw solution [22/43] : ,[10,10],[13108,50],[62,0],[141,107],[", + "1 | Raw solution [23/43] : 66,193],[242,6],[0,0],[0,152]],49]],\"v", + "1 | Raw solution [24/43] : otes13\":[[5515,[[0,12204],[139,60],[0,", + "1 | Raw solution [25/43] : 13833],[26,46],[6254,0],[0,45],[16,104", + "1 | Raw solution [26/43] : ],[0,0],[213,0],[0,0],[116,6060],[0,0]", + "1 | Raw solution [27/43] : ],10264]],\"votes14\":[[10206341,[[21,0]", + "1 | Raw solution [28/43] : ,[3127,39],[10,0],[187,6598],[46,80],[", + "1 | Raw solution [29/43] : 147,45],[48,7],[36,0],[1339,62],[4143,", + "1 | Raw solution [30/43] : 6],[0,0],[30,67],[12,53]],0]],\"votes15", + "1 | Raw solution [31/43] : \":[[2915,[[35,12483],[11893,0],[3291,4", + "1 | Raw solution [32/43] : 027],[2022,0],[0,0],[0,58],[0,7461],[4", + "1 | Raw solution [33/43] : 3,0],[14946,19],[29,117],[22,4748],[60", + "1 | Raw solution [34/43] : ,12406],[0,100],[52,0]],58]],\"votes16\"", + "1 | Raw solution [35/43] : :[[9422,[[12487,0],[10,0],[198,5556],[", + "1 | Raw solution [36/43] : 0,10755],[224,6452],[174,108],[7663,39", + "1 | Raw solution [37/43] : ],[56,0],[3,73],[0,12],[47,0],[7852,22", + "1 | Raw solution [38/43] : ],[93,3],[56,52],[51,0]],150]]},\"score", + "1 | Raw solution [39/43] : \":{\"minimalStake\":\"0x529424f5d80c522bb", + "1 | Raw solution [40/43] : 11fef919e15d998\",\"sumStake\":\"0x6989022", + "1 | Raw solution [41/43] : 8de09e205b2429331e2e919e4\",\"sumStakeSq", + "1 | Raw solution [42/43] : uared\":\"0x6e7044b6df373df062ec1c06c374", + "1 | Raw solution [43/43] : 2bd1\"},\"round\":654315686}", + "2 | Chain : Polymesh", + "3 | Nonce : 0", + "4 | Era Phase : 61", + "5 | Era Period : 64", + "6 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "6 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" + ] + }, + { + "index": 1585, + "name": "Electionprovidermultiphase_Submit", + "blob": "3203047d400004c56a007136310204014f85330078000004a9123d14d064bc0d0301010004d66ff932c92f9d21b800d58a54002461030426b5ec00005d01550100dd865824fc7061b800046400e034456874a1fbf438bc19e30015020004fcd5ac4d18885d71c902d000fcfc7c61024102fd915102d8047eab3bcd55020000001547a8f59e14fd02f058c83d0280d5d700cd03048a5727fc28042903fd190000000000003c2d02001d6611d50000810185f30436bfdd02004044b9010051023d03ac003c00004025ca00000015010071030d030419d0700000fd6b0015022828d1ccc8f8003502ad0109010503c903180000006102c4042d5600b1be2d02f00025d868b8b9610000b440a10100005503000000d101b15e000061a00416f26e025400dd309c2800ed021967b841014d02b4c01c9000ed14f8bd40180000780d0130d400048d2d8c0dc3d5b9006d33ed3e991f00000000e8009574ac0089e94c74d50158314af0d9c1009101d000e80439931dc30028001903d156000da88103d164b902b101bd779ce0000c25010030bc00b17a5875010ce0d0cc00590298d9159e91ef1fb12b520cd8f5249452e419e9e2319342b205e209de28028969d12b74c3061cec62f03d37dfb644706ea6100027d503ae1103006d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", + "output": [ + "0 | Electionprovidermultiphase : Submit", + "1 | Raw solution [1/43] : {\"solution\":{\"votes1\":[[4127,0]],\"vote", + "1 | Raw solution [2/43] : s2\":[[6833,[0,3484],140]],\"votes3\":[[5", + "1 | Raw solution [3/43] : 056,[[3297,0],[30,0]],0]],\"votes4\":[[1", + "1 | Raw solution [4/43] : 194,[[1295,52],[25,47],[195,64]],0]],\"", + "1 | Raw solution [5/43] : votes5\":[[213801973,[[3058,2151],[46,0", + "1 | Raw solution [6/43] : ],[8885,21],[0,9]],216]],\"votes6\":[[38", + "1 | Raw solution [7/43] : 78217,[[0,87],[85,0],[8631,22],[9,63],", + "1 | Raw solution [8/43] : [28,11800]],0]],\"votes7\":[[25,[[0,56],", + "1 | Raw solution [9/43] : [13,6673],[29,16104],[61,14],[47,14534", + "1 | Raw solution [10/43] : ],[0,133]],0]],\"votes8\":[[63,[[11061,1", + "1 | Raw solution [11/43] : 555],[34,7255],[178,52],[0,63],[63,31]", + "1 | Raw solution [12/43] : ,[152,144],[9343,148]],54]],\"votes9\":[", + "1 | Raw solution [13/43] : [860809951,[[149,0],[0,0],[4549,42],[1", + "1 | Raw solution [14/43] : 0173,5],[191,60],[22,50],[143,32],[138", + "1 | Raw solution [15/43] : 13,0]],243]],\"votes10\":[[1057609186,[[", + "1 | Raw solution [16/43] : 10,1],[202,1663],[0,0],[0,0],[0,0],[15", + "1 | Raw solution [17/43] : ,139],[0,6535],[13636,0],[0,96]],15585", + "1 | Raw solution [18/43] : ]],\"votes11\":[[12021709,[[0,16],[17,11", + "1 | Raw solution [19/43] : 0],[0,148],[207,43],[0,15],[0,0],[16,1", + "1 | Raw solution [20/43] : 2937],[0,0],[0,69],[0,220]],195]],\"vot", + "1 | Raw solution [21/43] : es12\":[[13318,[[28,0],[0,6911],[0,133]", + "1 | Raw solution [22/43] : ,[10,10],[13108,50],[62,0],[141,107],[", + "1 | Raw solution [23/43] : 66,193],[242,6],[0,0],[0,152]],49]],\"v", + "1 | Raw solution [24/43] : otes13\":[[5515,[[0,12204],[139,60],[0,", + "1 | Raw solution [25/43] : 13833],[26,46],[6254,0],[0,45],[16,104", + "1 | Raw solution [26/43] : ],[0,0],[213,0],[0,0],[116,6060],[0,0]", + "1 | Raw solution [27/43] : ],10264]],\"votes14\":[[10206341,[[21,0]", + "1 | Raw solution [28/43] : ,[3127,39],[10,0],[187,6598],[46,80],[", + "1 | Raw solution [29/43] : 147,45],[48,7],[36,0],[1339,62],[4143,", + "1 | Raw solution [30/43] : 6],[0,0],[30,67],[12,53]],0]],\"votes15", + "1 | Raw solution [31/43] : \":[[2915,[[35,12483],[11893,0],[3291,4", + "1 | Raw solution [32/43] : 027],[2022,0],[0,0],[0,58],[0,7461],[4", + "1 | Raw solution [33/43] : 3,0],[14946,19],[29,117],[22,4748],[60", + "1 | Raw solution [34/43] : ,12406],[0,100],[52,0]],58]],\"votes16\"", + "1 | Raw solution [35/43] : :[[9422,[[12487,0],[10,0],[198,5556],[", + "1 | Raw solution [36/43] : 0,10755],[224,6452],[174,108],[7663,39", + "1 | Raw solution [37/43] : ],[56,0],[3,73],[0,12],[47,0],[7852,22", + "1 | Raw solution [38/43] : ],[93,3],[56,52],[51,0]],150]]},\"score", + "1 | Raw solution [39/43] : \":{\"minimalStake\":\"0x529424f5d80c522bb", + "1 | Raw solution [40/43] : 11fef919e15d998\",\"sumStake\":\"0x6989022", + "1 | Raw solution [41/43] : 8de09e205b2429331e2e919e4\",\"sumStakeSq", + "1 | Raw solution [42/43] : uared\":\"0x6e7044b6df373df062ec1c06c374", + "1 | Raw solution [43/43] : 2bd1\"},\"round\":654315686}", + "2 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Nft : Redeem nft", - "1 | Ticker : TICKER-12345", - "2 | Nft id : 14925620351266461017", - "3 | Portfolio kind : 1688165982719083383", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Electionprovidermultiphase : Submit", + "1 | Raw solution [1/43] : {\"solution\":{\"votes1\":[[4127,0]],\"vote", + "1 | Raw solution [2/43] : s2\":[[6833,[0,3484],140]],\"votes3\":[[5", + "1 | Raw solution [3/43] : 056,[[3297,0],[30,0]],0]],\"votes4\":[[1", + "1 | Raw solution [4/43] : 194,[[1295,52],[25,47],[195,64]],0]],\"", + "1 | Raw solution [5/43] : votes5\":[[213801973,[[3058,2151],[46,0", + "1 | Raw solution [6/43] : ],[8885,21],[0,9]],216]],\"votes6\":[[38", + "1 | Raw solution [7/43] : 78217,[[0,87],[85,0],[8631,22],[9,63],", + "1 | Raw solution [8/43] : [28,11800]],0]],\"votes7\":[[25,[[0,56],", + "1 | Raw solution [9/43] : [13,6673],[29,16104],[61,14],[47,14534", + "1 | Raw solution [10/43] : ],[0,133]],0]],\"votes8\":[[63,[[11061,1", + "1 | Raw solution [11/43] : 555],[34,7255],[178,52],[0,63],[63,31]", + "1 | Raw solution [12/43] : ,[152,144],[9343,148]],54]],\"votes9\":[", + "1 | Raw solution [13/43] : [860809951,[[149,0],[0,0],[4549,42],[1", + "1 | Raw solution [14/43] : 0173,5],[191,60],[22,50],[143,32],[138", + "1 | Raw solution [15/43] : 13,0]],243]],\"votes10\":[[1057609186,[[", + "1 | Raw solution [16/43] : 10,1],[202,1663],[0,0],[0,0],[0,0],[15", + "1 | Raw solution [17/43] : ,139],[0,6535],[13636,0],[0,96]],15585", + "1 | Raw solution [18/43] : ]],\"votes11\":[[12021709,[[0,16],[17,11", + "1 | Raw solution [19/43] : 0],[0,148],[207,43],[0,15],[0,0],[16,1", + "1 | Raw solution [20/43] : 2937],[0,0],[0,69],[0,220]],195]],\"vot", + "1 | Raw solution [21/43] : es12\":[[13318,[[28,0],[0,6911],[0,133]", + "1 | Raw solution [22/43] : ,[10,10],[13108,50],[62,0],[141,107],[", + "1 | Raw solution [23/43] : 66,193],[242,6],[0,0],[0,152]],49]],\"v", + "1 | Raw solution [24/43] : otes13\":[[5515,[[0,12204],[139,60],[0,", + "1 | Raw solution [25/43] : 13833],[26,46],[6254,0],[0,45],[16,104", + "1 | Raw solution [26/43] : ],[0,0],[213,0],[0,0],[116,6060],[0,0]", + "1 | Raw solution [27/43] : ],10264]],\"votes14\":[[10206341,[[21,0]", + "1 | Raw solution [28/43] : ,[3127,39],[10,0],[187,6598],[46,80],[", + "1 | Raw solution [29/43] : 147,45],[48,7],[36,0],[1339,62],[4143,", + "1 | Raw solution [30/43] : 6],[0,0],[30,67],[12,53]],0]],\"votes15", + "1 | Raw solution [31/43] : \":[[2915,[[35,12483],[11893,0],[3291,4", + "1 | Raw solution [32/43] : 027],[2022,0],[0,0],[0,58],[0,7461],[4", + "1 | Raw solution [33/43] : 3,0],[14946,19],[29,117],[22,4748],[60", + "1 | Raw solution [34/43] : ,12406],[0,100],[52,0]],58]],\"votes16\"", + "1 | Raw solution [35/43] : :[[9422,[[12487,0],[10,0],[198,5556],[", + "1 | Raw solution [36/43] : 0,10755],[224,6452],[174,108],[7663,39", + "1 | Raw solution [37/43] : ],[56,0],[3,73],[0,12],[47,0],[7852,22", + "1 | Raw solution [38/43] : ],[93,3],[56,52],[51,0]],150]]},\"score", + "1 | Raw solution [39/43] : \":{\"minimalStake\":\"0x529424f5d80c522bb", + "1 | Raw solution [40/43] : 11fef919e15d998\",\"sumStake\":\"0x6989022", + "1 | Raw solution [41/43] : 8de09e205b2429331e2e919e4\",\"sumStakeSq", + "1 | Raw solution [42/43] : uared\":\"0x6e7044b6df373df062ec1c06c374", + "1 | Raw solution [43/43] : 2bd1\"},\"round\":654315686}", + "2 | Chain : Polymesh", + "3 | Nonce : 50283", + "4 | Tip : POLYX 0.000987", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1636, - "name": "Nft_Controller_transfer", - "blob": "31035449434b45522d31323334355449434b45522d3334353637043ff1ec30b6d8c88464af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e201000000000000d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1586, + "name": "Electionprovidermultiphase_Governance_fallback", + "blob": "320401f7010000019d1c0000d503040b63ce64c10c05c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Nft : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Nfts [1/2] : TICKER-34567", - "2 | Nfts [2/2] : 9568135685365100863", - "3 | Source portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "3 | Source portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "3 | Source portfolio [3/3] : 123456", - "4 | Callers portfolio kind : Default", - "5 | Tip : POLYX 55.555555" + "0 | Electionprovidermultiphase : Governance fallback", + "1 | Maybe max voters : 503", + "2 | Maybe max targets : 7325", + "3 | Tip : POLYX 5552342.355555" ], "output_expert": [ - "0 | Nft : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Nfts [1/2] : TICKER-34567", - "2 | Nfts [2/2] : 9568135685365100863", - "3 | Source portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "3 | Source portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "3 | Source portfolio [3/3] : 123456", - "4 | Callers portfolio kind : Default", - "5 | Chain : Polymesh", - "6 | Nonce : 1", - "7 | Tip : POLYX 55.555555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Electionprovidermultiphase : Governance fallback", + "1 | Maybe max voters : 503", + "2 | Maybe max targets : 7325", + "3 | Chain : Polymesh", + "4 | Nonce : 1", + "5 | Tip : POLYX 5552342.355555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1637, - "name": "Nft_Controller_transfer", - "blob": "31035449434b45522d31323334355449434b45522d3334353637043ff1ec30b6d8c88464af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e2010000000000017783de5904926d17d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1587, + "name": "Electionprovidermultiphase_Governance_fallback", + "blob": "320401343000000100000000d503ae1103008ed73e0dc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Nft : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Nfts [1/2] : TICKER-34567", - "2 | Nfts [2/2] : 9568135685365100863", - "3 | Source portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "3 | Source portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "3 | Source portfolio [3/3] : 123456", - "4 | Callers portfolio kind : 1688165982719083383" + "0 | Electionprovidermultiphase : Governance fallback", + "1 | Maybe max voters : 12340", + "2 | Maybe max targets : 0", + "3 | Tip : POLYX 55.555555" ], "output_expert": [ - "0 | Nft : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Nfts [1/2] : TICKER-34567", - "2 | Nfts [2/2] : 9568135685365100863", - "3 | Source portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "3 | Source portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "3 | Source portfolio [3/3] : 123456", - "4 | Callers portfolio kind : 1688165982719083383", - "5 | Chain : Polymesh", - "6 | Nonce : 2339", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Electionprovidermultiphase : Governance fallback", + "1 | Maybe max voters : 12340", + "2 | Maybe max targets : 0", + "3 | Chain : Polymesh", + "4 | Nonce : 50283", + "5 | Tip : POLYX 55.555555", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1638, - "name": "Nft_Controller_transfer", - "blob": "31035449434b45522d31323334355449434b45522d33343536370cf7c4946e84a6b0649ca11509c7412ffd82e97872357e27cf64af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e2010000000000017783de5904926d17d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1588, + "name": "Electionprovidermultiphase_Governance_fallback", + "blob": "320401f701000001f7010000d5038d246d0fc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Nft : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Nfts [1/4] : TICKER-34567", - "2 | Nfts [2/4] : 7255482087415006455", - "2 | Nfts [3/4] : 18243872938607878556", - "2 | Nfts [4/4] : 14927038257961691522", - "3 | Source portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "3 | Source portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "3 | Source portfolio [3/3] : 123456", - "4 | Callers portfolio kind : 1688165982719083383" + "0 | Electionprovidermultiphase : Governance fallback", + "1 | Maybe max voters : 503", + "2 | Maybe max targets : 503", + "3 | Tip : POLYX 0.000987" ], "output_expert": [ - "0 | Nft : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Nfts [1/4] : TICKER-34567", - "2 | Nfts [2/4] : 7255482087415006455", - "2 | Nfts [3/4] : 18243872938607878556", - "2 | Nfts [4/4] : 14927038257961691522", - "3 | Source portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "3 | Source portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "3 | Source portfolio [3/3] : 123456", - "4 | Callers portfolio kind : 1688165982719083383", - "5 | Chain : Polymesh", - "6 | Nonce : 50283", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Electionprovidermultiphase : Governance fallback", + "1 | Maybe max voters : 503", + "2 | Maybe max targets : 503", + "3 | Chain : Polymesh", + "4 | Nonce : 2339", + "5 | Tip : POLYX 0.000987", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1639, - "name": "Nft_Controller_transfer", - "blob": "31035449434b45522d31323334355449434b45522d3334353637088a67157dea2fc0dc450ac62da122d12264af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e201000000000001664083c01528efb0d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1589, + "name": "Electionprovidermultiphase_Governance_fallback", + "blob": "32040134300000019d1c0000d503910133158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Nft : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Nfts [1/3] : TICKER-34567", - "2 | Nfts [2/3] : 15906766568039999370", - "2 | Nfts [3/3] : 2508824543075109445", - "3 | Source portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "3 | Source portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "3 | Source portfolio [3/3] : 123456", - "4 | Callers portfolio kind : 12749453143998414950", - "5 | Tip : POLYX 55.555555" + "0 | Electionprovidermultiphase : Governance fallback", + "1 | Maybe max voters : 12340", + "2 | Maybe max targets : 7325", + "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "3 | Tip [2/2] : 3.456789" ], "output_expert": [ - "0 | Nft : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Nfts [1/3] : TICKER-34567", - "2 | Nfts [2/3] : 15906766568039999370", - "2 | Nfts [3/3] : 2508824543075109445", - "3 | Source portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "3 | Source portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "3 | Source portfolio [3/3] : 123456", - "4 | Callers portfolio kind : 12749453143998414950", - "5 | Chain : Polymesh", - "6 | Nonce : 2339", - "7 | Tip : POLYX 55.555555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Electionprovidermultiphase : Governance fallback", + "1 | Maybe max voters : 12340", + "2 | Maybe max targets : 7325", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", + "5 | Tip [2/2] : 3.456789", + "6 | Era Phase : 61", + "7 | Era Period : 64", + "8 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "8 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] }, { - "index": 1640, - "name": "Nft_Controller_transfer", - "blob": "31035449434b45522d31323334355449434b45522d3334353637043ff1ec30b6d8c88464af8b4113693786ba0dda491c97d06f1be682a57f7ac2d27e10de05675c10860140e201000000000001bd0d90b68b8ef739d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "index": 1590, + "name": "Electionprovidermultiphase_Governance_fallback", + "blob": "320401000000000100000000d503910100c0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a", "output": [ - "0 | Nft : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Nfts [1/2] : TICKER-34567", - "2 | Nfts [2/2] : 9568135685365100863", - "3 | Source portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "3 | Source portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "3 | Source portfolio [3/3] : 123456", - "4 | Callers portfolio kind : 4176963910123916733", - "5 | Tip : POLYX 55.555555" + "0 | Electionprovidermultiphase : Governance fallback", + "1 | Maybe max voters : 0", + "2 | Maybe max targets : 0" ], "output_expert": [ - "0 | Nft : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Nfts [1/2] : TICKER-34567", - "2 | Nfts [2/2] : 9568135685365100863", - "3 | Source portfolio [1/3] : 64af8b4113693786ba0dda491c97d06f1be682", - "3 | Source portfolio [2/3] : a57f7ac2d27e10de05675c1086", - "3 | Source portfolio [3/3] : 123456", - "4 | Callers portfolio kind : 4176963910123916733", - "5 | Chain : Polymesh", - "6 | Nonce : 1", - "7 | Tip : POLYX 55.555555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" + "0 | Electionprovidermultiphase : Governance fallback", + "1 | Maybe max voters : 0", + "2 | Maybe max targets : 0", + "3 | Chain : Polymesh", + "4 | Nonce : 100", + "5 | Era Phase : 61", + "6 | Era Period : 64", + "7 | Block [1/2] : 885d727362e25873fb2c5fcda890a91018f524", + "7 | Block [2/2] : 25b41ba30e0c1aaf1ab411dd0a" ] } ] \ No newline at end of file diff --git a/tests/testcases_previous.json b/tests/testcases_previous.json deleted file mode 100644 index d138273..0000000 --- a/tests/testcases_previous.json +++ /dev/null @@ -1,45282 +0,0 @@ -[ - { - "index": 1, - "name": "System_Remark", - "blob": "000001016339e6e0873351f702d0cbffbdc3b3550184247413e88a3b3f3d722c6eda9ce28d04b66368160da05041d2685be5d398fb7d68ec2dad0677f0356b7de14fbc9ed5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | System : Remark", - "1 | Remark [1/4] : 6339e6e0873351f702d0cbffbdc3b355018424", - "1 | Remark [2/4] : 7413e88a3b3f3d722c6eda9ce28d04b6636816", - "1 | Remark [3/4] : 0da05041d2685be5d398fb7d68ec2dad0677f0", - "1 | Remark [4/4] : 356b7de14fbc9e", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | System : Remark", - "1 | Remark [1/4] : 6339e6e0873351f702d0cbffbdc3b355018424", - "1 | Remark [2/4] : 7413e88a3b3f3d722c6eda9ce28d04b6636816", - "1 | Remark [3/4] : 0da05041d2685be5d398fb7d68ec2dad0677f0", - "1 | Remark [4/4] : 356b7de14fbc9e", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 2, - "name": "System_Remark", - "blob": "000001028e052f3965a1a5a99a4ae3618d4179334d3a27c51ac05f7c5bf21cca6aaa184dafa2964dafae333f953c37049f368eb0629e8d4ad14ada72fabbb3f70ce9b6b6d50f1ead62953e13c95a3601d05a11e84f036538ed8348c77c21162db0f25eb223d5f8c9ea35d38e9a470d9288bf574c8263c462f792b9f9b1924231e5363933d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | System : Remark", - "1 | Remark [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "1 | Remark [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "1 | Remark [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "1 | Remark [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "1 | Remark [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "1 | Remark [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "1 | Remark [7/7] : c462f792b9f9b1924231e5363933", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | System : Remark", - "1 | Remark [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "1 | Remark [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "1 | Remark [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "1 | Remark [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "1 | Remark [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "1 | Remark [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "1 | Remark [7/7] : c462f792b9f9b1924231e5363933", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 3, - "name": "System_Remark", - "blob": "000001028e052f3965a1a5a99a4ae3618d4179334d3a27c51ac05f7c5bf21cca6aaa184dafa2964dafae333f953c37049f368eb0629e8d4ad14ada72fabbb3f70ce9b6b6d50f1ead62953e13c95a3601d05a11e84f036538ed8348c77c21162db0f25eb223d5f8c9ea35d38e9a470d9288bf574c8263c462f792b9f9b1924231e5363933d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | System : Remark", - "1 | Remark [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "1 | Remark [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "1 | Remark [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "1 | Remark [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "1 | Remark [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "1 | Remark [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "1 | Remark [7/7] : c462f792b9f9b1924231e5363933", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | System : Remark", - "1 | Remark [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "1 | Remark [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "1 | Remark [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "1 | Remark [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "1 | Remark [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "1 | Remark [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "1 | Remark [7/7] : c462f792b9f9b1924231e5363933", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 4, - "name": "System_Remark", - "blob": "000080486862a8e32ce887f398acfe94d8db07d95ccb7a7d03f93240a5ac9aee51cda8d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | System : Remark", - "1 | Remark [1/2] : 486862a8e32ce887f398acfe94d8db07d95ccb", - "1 | Remark [2/2] : 7a7d03f93240a5ac9aee51cda8" - ], - "output_expert": [ - "0 | System : Remark", - "1 | Remark [1/2] : 486862a8e32ce887f398acfe94d8db07d95ccb", - "1 | Remark [2/2] : 7a7d03f93240a5ac9aee51cda8", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 5, - "name": "System_Remark", - "blob": "0000010147879e3330856791b0a30cbef57b186bc2bbda107087137c51fa6fbf11bb49badf8908c89199a44a6ee3d160503f45eadee081d0ba832118b82a4933ec5d0222d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | System : Remark", - "1 | Remark [1/4] : 47879e3330856791b0a30cbef57b186bc2bbda", - "1 | Remark [2/4] : 107087137c51fa6fbf11bb49badf8908c89199", - "1 | Remark [3/4] : a44a6ee3d160503f45eadee081d0ba832118b8", - "1 | Remark [4/4] : 2a4933ec5d0222", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | System : Remark", - "1 | Remark [1/4] : 47879e3330856791b0a30cbef57b186bc2bbda", - "1 | Remark [2/4] : 107087137c51fa6fbf11bb49badf8908c89199", - "1 | Remark [3/4] : a44a6ee3d160503f45eadee081d0ba832118b8", - "1 | Remark [4/4] : 2a4933ec5d0222", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 6, - "name": "System_Set_heap_pages", - "blob": "00016400000000000000d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | System : Set heap pages", - "1 | Pages : 100", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | System : Set heap pages", - "1 | Pages : 100", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 7, - "name": "System_Set_heap_pages", - "blob": "00016bc4000000000000d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | System : Set heap pages", - "1 | Pages : 50283", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | System : Set heap pages", - "1 | Pages : 50283", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 8, - "name": "System_Set_heap_pages", - "blob": "00010100000000000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | System : Set heap pages", - "1 | Pages : 1", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | System : Set heap pages", - "1 | Pages : 1", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 9, - "name": "System_Set_heap_pages", - "blob": "00016400000000000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | System : Set heap pages", - "1 | Pages : 100", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | System : Set heap pages", - "1 | Pages : 100", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 10, - "name": "System_Set_heap_pages", - "blob": "00010000000000000000d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | System : Set heap pages", - "1 | Pages : 0", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | System : Set heap pages", - "1 | Pages : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 11, - "name": "System_Set_code", - "blob": "000280486862a8e32ce887f398acfe94d8db07d95ccb7a7d03f93240a5ac9aee51cda8d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | System : Set code", - "1 | Code [1/2] : 486862a8e32ce887f398acfe94d8db07d95ccb", - "1 | Code [2/2] : 7a7d03f93240a5ac9aee51cda8" - ], - "output_expert": [ - "0 | System : Set code", - "1 | Code [1/2] : 486862a8e32ce887f398acfe94d8db07d95ccb", - "1 | Code [2/2] : 7a7d03f93240a5ac9aee51cda8", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 12, - "name": "System_Set_code", - "blob": "000201016339e6e0873351f702d0cbffbdc3b3550184247413e88a3b3f3d722c6eda9ce28d04b66368160da05041d2685be5d398fb7d68ec2dad0677f0356b7de14fbc9ed5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | System : Set code", - "1 | Code [1/4] : 6339e6e0873351f702d0cbffbdc3b355018424", - "1 | Code [2/4] : 7413e88a3b3f3d722c6eda9ce28d04b6636816", - "1 | Code [3/4] : 0da05041d2685be5d398fb7d68ec2dad0677f0", - "1 | Code [4/4] : 356b7de14fbc9e", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | System : Set code", - "1 | Code [1/4] : 6339e6e0873351f702d0cbffbdc3b355018424", - "1 | Code [2/4] : 7413e88a3b3f3d722c6eda9ce28d04b6636816", - "1 | Code [3/4] : 0da05041d2685be5d398fb7d68ec2dad0677f0", - "1 | Code [4/4] : 356b7de14fbc9e", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 13, - "name": "System_Set_code", - "blob": "000201028e052f3965a1a5a99a4ae3618d4179334d3a27c51ac05f7c5bf21cca6aaa184dafa2964dafae333f953c37049f368eb0629e8d4ad14ada72fabbb3f70ce9b6b6d50f1ead62953e13c95a3601d05a11e84f036538ed8348c77c21162db0f25eb223d5f8c9ea35d38e9a470d9288bf574c8263c462f792b9f9b1924231e5363933d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | System : Set code", - "1 | Code [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "1 | Code [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "1 | Code [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "1 | Code [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "1 | Code [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "1 | Code [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "1 | Code [7/7] : c462f792b9f9b1924231e5363933" - ], - "output_expert": [ - "0 | System : Set code", - "1 | Code [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "1 | Code [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "1 | Code [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "1 | Code [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "1 | Code [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "1 | Code [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "1 | Code [7/7] : c462f792b9f9b1924231e5363933", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 14, - "name": "System_Set_code", - "blob": "0002010147879e3330856791b0a30cbef57b186bc2bbda107087137c51fa6fbf11bb49badf8908c89199a44a6ee3d160503f45eadee081d0ba832118b82a4933ec5d0222d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | System : Set code", - "1 | Code [1/4] : 47879e3330856791b0a30cbef57b186bc2bbda", - "1 | Code [2/4] : 107087137c51fa6fbf11bb49badf8908c89199", - "1 | Code [3/4] : a44a6ee3d160503f45eadee081d0ba832118b8", - "1 | Code [4/4] : 2a4933ec5d0222", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | System : Set code", - "1 | Code [1/4] : 47879e3330856791b0a30cbef57b186bc2bbda", - "1 | Code [2/4] : 107087137c51fa6fbf11bb49badf8908c89199", - "1 | Code [3/4] : a44a6ee3d160503f45eadee081d0ba832118b8", - "1 | Code [4/4] : 2a4933ec5d0222", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 15, - "name": "System_Set_code", - "blob": "000201028e052f3965a1a5a99a4ae3618d4179334d3a27c51ac05f7c5bf21cca6aaa184dafa2964dafae333f953c37049f368eb0629e8d4ad14ada72fabbb3f70ce9b6b6d50f1ead62953e13c95a3601d05a11e84f036538ed8348c77c21162db0f25eb223d5f8c9ea35d38e9a470d9288bf574c8263c462f792b9f9b1924231e5363933d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | System : Set code", - "1 | Code [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "1 | Code [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "1 | Code [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "1 | Code [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "1 | Code [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "1 | Code [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "1 | Code [7/7] : c462f792b9f9b1924231e5363933", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | System : Set code", - "1 | Code [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "1 | Code [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "1 | Code [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "1 | Code [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "1 | Code [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "1 | Code [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "1 | Code [7/7] : c462f792b9f9b1924231e5363933", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 16, - "name": "System_Set_code_without_checks", - "blob": "0003100d0c1323d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | System : Set code without checks", - "1 | Code [1/4] : 13", - "1 | Code [2/4] : 12", - "1 | Code [3/4] : 19", - "1 | Code [4/4] : 35", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | System : Set code without checks", - "1 | Code [1/4] : 13", - "1 | Code [2/4] : 12", - "1 | Code [3/4] : 19", - "1 | Code [4/4] : 35", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 17, - "name": "System_Set_code_without_checks", - "blob": "000310200b200bd5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | System : Set code without checks", - "1 | Code [1/4] : 32", - "1 | Code [2/4] : 11", - "1 | Code [3/4] : 32", - "1 | Code [4/4] : 11", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | System : Set code without checks", - "1 | Code [1/4] : 32", - "1 | Code [2/4] : 11", - "1 | Code [3/4] : 32", - "1 | Code [4/4] : 11", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 18, - "name": "System_Set_code_without_checks", - "blob": "0003100d0c1323d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | System : Set code without checks", - "1 | Code [1/4] : 13", - "1 | Code [2/4] : 12", - "1 | Code [3/4] : 19", - "1 | Code [4/4] : 35" - ], - "output_expert": [ - "0 | System : Set code without checks", - "1 | Code [1/4] : 13", - "1 | Code [2/4] : 12", - "1 | Code [3/4] : 19", - "1 | Code [4/4] : 35", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 19, - "name": "System_Set_code_without_checks", - "blob": "0003100c293435d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | System : Set code without checks", - "1 | Code [1/4] : 12", - "1 | Code [2/4] : 41", - "1 | Code [3/4] : 52", - "1 | Code [4/4] : 53" - ], - "output_expert": [ - "0 | System : Set code without checks", - "1 | Code [1/4] : 12", - "1 | Code [2/4] : 41", - "1 | Code [3/4] : 52", - "1 | Code [4/4] : 53", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 20, - "name": "System_Set_code_without_checks", - "blob": "0003100e2a0c49d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | System : Set code without checks", - "1 | Code [1/4] : 14", - "1 | Code [2/4] : 42", - "1 | Code [3/4] : 12", - "1 | Code [4/4] : 73", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | System : Set code without checks", - "1 | Code [1/4] : 14", - "1 | Code [2/4] : 42", - "1 | Code [3/4] : 12", - "1 | Code [4/4] : 73", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 21, - "name": "System_Remark_with_event", - "blob": "000780486862a8e32ce887f398acfe94d8db07d95ccb7a7d03f93240a5ac9aee51cda8d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | System : Remark with event", - "1 | Remark [1/2] : 486862a8e32ce887f398acfe94d8db07d95ccb", - "1 | Remark [2/2] : 7a7d03f93240a5ac9aee51cda8", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | System : Remark with event", - "1 | Remark [1/2] : 486862a8e32ce887f398acfe94d8db07d95ccb", - "1 | Remark [2/2] : 7a7d03f93240a5ac9aee51cda8", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 22, - "name": "System_Remark_with_event", - "blob": "00070102368c239a6fcc7dc2a9d8fed983e117fcd1710782f908856693f511e26acf6d4613dcef6f0ee634a296ca02944c3a6343a1925a69b86589565853a61ac8195d03aa41f3671806b0290995b165a873474757b34f0ddb95cc9f6ddd3ad9f0898252a6cfe584ca84737098a009bed3aa2344725682ae6aab269f611299e265c01029d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | System : Remark with event", - "1 | Remark [1/7] : 368c239a6fcc7dc2a9d8fed983e117fcd17107", - "1 | Remark [2/7] : 82f908856693f511e26acf6d4613dcef6f0ee6", - "1 | Remark [3/7] : 34a296ca02944c3a6343a1925a69b865895658", - "1 | Remark [4/7] : 53a61ac8195d03aa41f3671806b0290995b165", - "1 | Remark [5/7] : a873474757b34f0ddb95cc9f6ddd3ad9f08982", - "1 | Remark [6/7] : 52a6cfe584ca84737098a009bed3aa23447256", - "1 | Remark [7/7] : 82ae6aab269f611299e265c01029", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | System : Remark with event", - "1 | Remark [1/7] : 368c239a6fcc7dc2a9d8fed983e117fcd17107", - "1 | Remark [2/7] : 82f908856693f511e26acf6d4613dcef6f0ee6", - "1 | Remark [3/7] : 34a296ca02944c3a6343a1925a69b865895658", - "1 | Remark [4/7] : 53a61ac8195d03aa41f3671806b0290995b165", - "1 | Remark [5/7] : a873474757b34f0ddb95cc9f6ddd3ad9f08982", - "1 | Remark [6/7] : 52a6cfe584ca84737098a009bed3aa23447256", - "1 | Remark [7/7] : 82ae6aab269f611299e265c01029", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 23, - "name": "System_Remark_with_event", - "blob": "0007010147879e3330856791b0a30cbef57b186bc2bbda107087137c51fa6fbf11bb49badf8908c89199a44a6ee3d160503f45eadee081d0ba832118b82a4933ec5d0222d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | System : Remark with event", - "1 | Remark [1/4] : 47879e3330856791b0a30cbef57b186bc2bbda", - "1 | Remark [2/4] : 107087137c51fa6fbf11bb49badf8908c89199", - "1 | Remark [3/4] : a44a6ee3d160503f45eadee081d0ba832118b8", - "1 | Remark [4/4] : 2a4933ec5d0222" - ], - "output_expert": [ - "0 | System : Remark with event", - "1 | Remark [1/4] : 47879e3330856791b0a30cbef57b186bc2bbda", - "1 | Remark [2/4] : 107087137c51fa6fbf11bb49badf8908c89199", - "1 | Remark [3/4] : a44a6ee3d160503f45eadee081d0ba832118b8", - "1 | Remark [4/4] : 2a4933ec5d0222", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 24, - "name": "System_Remark_with_event", - "blob": "00070101f23f5ec7810664c56409d9863fbdcb5ba5a7a9e822f795aef2be70d6bf944893dae55ea12273c6592ae45c4d5cafeb3d5f2ba2fb01ae0968728f877ce71a82d7d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | System : Remark with event", - "1 | Remark [1/4] : f23f5ec7810664c56409d9863fbdcb5ba5a7a9", - "1 | Remark [2/4] : e822f795aef2be70d6bf944893dae55ea12273", - "1 | Remark [3/4] : c6592ae45c4d5cafeb3d5f2ba2fb01ae096872", - "1 | Remark [4/4] : 8f877ce71a82d7" - ], - "output_expert": [ - "0 | System : Remark with event", - "1 | Remark [1/4] : f23f5ec7810664c56409d9863fbdcb5ba5a7a9", - "1 | Remark [2/4] : e822f795aef2be70d6bf944893dae55ea12273", - "1 | Remark [3/4] : c6592ae45c4d5cafeb3d5f2ba2fb01ae096872", - "1 | Remark [4/4] : 8f877ce71a82d7", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 25, - "name": "System_Remark_with_event", - "blob": "0007010147879e3330856791b0a30cbef57b186bc2bbda107087137c51fa6fbf11bb49badf8908c89199a44a6ee3d160503f45eadee081d0ba832118b82a4933ec5d0222d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | System : Remark with event", - "1 | Remark [1/4] : 47879e3330856791b0a30cbef57b186bc2bbda", - "1 | Remark [2/4] : 107087137c51fa6fbf11bb49badf8908c89199", - "1 | Remark [3/4] : a44a6ee3d160503f45eadee081d0ba832118b8", - "1 | Remark [4/4] : 2a4933ec5d0222", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | System : Remark with event", - "1 | Remark [1/4] : 47879e3330856791b0a30cbef57b186bc2bbda", - "1 | Remark [2/4] : 107087137c51fa6fbf11bb49badf8908c89199", - "1 | Remark [3/4] : a44a6ee3d160503f45eadee081d0ba832118b8", - "1 | Remark [4/4] : 2a4933ec5d0222", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 26, - "name": "Timestamp_Set", - "blob": "0200b178d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Timestamp : Set", - "1 | Now : 7724", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Timestamp : Set", - "1 | Now : 7724", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 27, - "name": "Timestamp_Set", - "blob": "0200b178d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Timestamp : Set", - "1 | Now : 7724", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Timestamp : Set", - "1 | Now : 7724", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 28, - "name": "Timestamp_Set", - "blob": "02008250d2bcd503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Timestamp : Set", - "1 | Now : 791974944", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Timestamp : Set", - "1 | Now : 791974944", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 29, - "name": "Timestamp_Set", - "blob": "0200b178d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Timestamp : Set", - "1 | Now : 7724" - ], - "output_expert": [ - "0 | Timestamp : Set", - "1 | Now : 7724", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 30, - "name": "Timestamp_Set", - "blob": "0200b178d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Timestamp : Set", - "1 | Now : 7724", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Timestamp : Set", - "1 | Now : 7724", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 31, - "name": "Indices_Claim", - "blob": "03009cd57870d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Indices : Claim", - "1 | Index : 1886967196" - ], - "output_expert": [ - "0 | Indices : Claim", - "1 | Index : 1886967196", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 32, - "name": "Indices_Claim", - "blob": "03009cd57870d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Indices : Claim", - "1 | Index : 1886967196", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Indices : Claim", - "1 | Index : 1886967196", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 33, - "name": "Indices_Claim", - "blob": "03009cd57870d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Indices : Claim", - "1 | Index : 1886967196" - ], - "output_expert": [ - "0 | Indices : Claim", - "1 | Index : 1886967196", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 34, - "name": "Indices_Claim", - "blob": "03009cd57870d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Indices : Claim", - "1 | Index : 1886967196", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Indices : Claim", - "1 | Index : 1886967196", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 35, - "name": "Indices_Claim", - "blob": "03009cd57870d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Indices : Claim", - "1 | Index : 1886967196", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Indices : Claim", - "1 | Index : 1886967196", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 36, - "name": "Indices_Transfer", - "blob": "0301048443ca1c1b22505eecee4ab1426f43fd317d745c9cd57870d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Indices : Transfer", - "1 | New [1/2] : 8443ca1c1b22505eecee4ab1426f43fd317d74", - "1 | New [2/2] : 5c", - "2 | Index : 1886967196", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Indices : Transfer", - "1 | New [1/2] : 8443ca1c1b22505eecee4ab1426f43fd317d74", - "1 | New [2/2] : 5c", - "2 | Index : 1886967196", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 37, - "name": "Indices_Transfer", - "blob": "03010280bbe7a19522829178085039f39696ed48cb1f7c87e3c78c7b5f7b0c64c14153d69cd57870d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Indices : Transfer", - "1 | New [1/2] : bbe7a19522829178085039f39696ed48cb1f7c", - "1 | New [2/2] : 87e3c78c7b5f7b0c64c14153d6", - "2 | Index : 1886967196", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Indices : Transfer", - "1 | New [1/2] : bbe7a19522829178085039f39696ed48cb1f7c", - "1 | New [2/2] : 87e3c78c7b5f7b0c64c14153d6", - "2 | Index : 1886967196", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 38, - "name": "Indices_Transfer", - "blob": "03010280bbe7a19522829178085039f39696ed48cb1f7c87e3c78c7b5f7b0c64c14153d69cd57870d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Indices : Transfer", - "1 | New [1/2] : bbe7a19522829178085039f39696ed48cb1f7c", - "1 | New [2/2] : 87e3c78c7b5f7b0c64c14153d6", - "2 | Index : 1886967196", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Indices : Transfer", - "1 | New [1/2] : bbe7a19522829178085039f39696ed48cb1f7c", - "1 | New [2/2] : 87e3c78c7b5f7b0c64c14153d6", - "2 | Index : 1886967196", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 39, - "name": "Indices_Transfer", - "blob": "030103d15da16dd51a24cf651f08ab363f6fe3141b9b46dc33ab95be43f967772a807d9cd57870d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Indices : Transfer", - "1 | New [1/2] : d15da16dd51a24cf651f08ab363f6fe3141b9b", - "1 | New [2/2] : 46dc33ab95be43f967772a807d", - "2 | Index : 1886967196", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Indices : Transfer", - "1 | New [1/2] : d15da16dd51a24cf651f08ab363f6fe3141b9b", - "1 | New [2/2] : 46dc33ab95be43f967772a807d", - "2 | Index : 1886967196", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 40, - "name": "Indices_Transfer", - "blob": "030103d15da16dd51a24cf651f08ab363f6fe3141b9b46dc33ab95be43f967772a807d9cd57870d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Indices : Transfer", - "1 | New [1/2] : d15da16dd51a24cf651f08ab363f6fe3141b9b", - "1 | New [2/2] : 46dc33ab95be43f967772a807d", - "2 | Index : 1886967196", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Indices : Transfer", - "1 | New [1/2] : d15da16dd51a24cf651f08ab363f6fe3141b9b", - "1 | New [2/2] : 46dc33ab95be43f967772a807d", - "2 | Index : 1886967196", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 41, - "name": "Indices_Free", - "blob": "03029cd57870d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Indices : Free", - "1 | Index : 1886967196", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Indices : Free", - "1 | Index : 1886967196", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 42, - "name": "Indices_Free", - "blob": "03029cd57870d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Indices : Free", - "1 | Index : 1886967196", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Indices : Free", - "1 | Index : 1886967196", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 43, - "name": "Indices_Free", - "blob": "03029cd57870d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Indices : Free", - "1 | Index : 1886967196", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Indices : Free", - "1 | Index : 1886967196", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 44, - "name": "Indices_Free", - "blob": "03029cd57870d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Indices : Free", - "1 | Index : 1886967196", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Indices : Free", - "1 | Index : 1886967196", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 45, - "name": "Indices_Free", - "blob": "03029cd57870d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Indices : Free", - "1 | Index : 1886967196" - ], - "output_expert": [ - "0 | Indices : Free", - "1 | Index : 1886967196", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 46, - "name": "Indices_Force_transfer", - "blob": "03030280bbe7a19522829178085039f39696ed48cb1f7c87e3c78c7b5f7b0c64c14153d69cd5787001d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Indices : Force transfer", - "1 | New [1/2] : bbe7a19522829178085039f39696ed48cb1f7c", - "1 | New [2/2] : 87e3c78c7b5f7b0c64c14153d6", - "2 | Index : 1886967196", - "3 | Freeze : True", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Indices : Force transfer", - "1 | New [1/2] : bbe7a19522829178085039f39696ed48cb1f7c", - "1 | New [2/2] : 87e3c78c7b5f7b0c64c14153d6", - "2 | Index : 1886967196", - "3 | Freeze : True", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 47, - "name": "Indices_Force_transfer", - "blob": "030303d15da16dd51a24cf651f08ab363f6fe3141b9b46dc33ab95be43f967772a807d9cd5787001d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Indices : Force transfer", - "1 | New [1/2] : d15da16dd51a24cf651f08ab363f6fe3141b9b", - "1 | New [2/2] : 46dc33ab95be43f967772a807d", - "2 | Index : 1886967196", - "3 | Freeze : True", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Indices : Force transfer", - "1 | New [1/2] : d15da16dd51a24cf651f08ab363f6fe3141b9b", - "1 | New [2/2] : 46dc33ab95be43f967772a807d", - "2 | Index : 1886967196", - "3 | Freeze : True", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 48, - "name": "Indices_Force_transfer", - "blob": "03030280bbe7a19522829178085039f39696ed48cb1f7c87e3c78c7b5f7b0c64c14153d69cd5787000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Indices : Force transfer", - "1 | New [1/2] : bbe7a19522829178085039f39696ed48cb1f7c", - "1 | New [2/2] : 87e3c78c7b5f7b0c64c14153d6", - "2 | Index : 1886967196", - "3 | Freeze : False", - "4 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Indices : Force transfer", - "1 | New [1/2] : bbe7a19522829178085039f39696ed48cb1f7c", - "1 | New [2/2] : 87e3c78c7b5f7b0c64c14153d6", - "2 | Index : 1886967196", - "3 | Freeze : False", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 49, - "name": "Indices_Force_transfer", - "blob": "030300b1837d2d9cf166722c8ae384ed0525e5226d169f85d164d61152d3a7b77ee1769cd5787001d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Indices : Force transfer", - "1 | New [1/2] : 2GTfdzXYD3mWWHFXcw1WJMvrrKWm9FoedY9xDA", - "1 | New [2/2] : LsguGU5VKA", - "2 | Index : 1886967196", - "3 | Freeze : True", - "4 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Indices : Force transfer", - "1 | New [1/2] : 2GTfdzXYD3mWWHFXcw1WJMvrrKWm9FoedY9xDA", - "1 | New [2/2] : LsguGU5VKA", - "2 | Index : 1886967196", - "3 | Freeze : True", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 50, - "name": "Indices_Force_transfer", - "blob": "030300b1837d2d9cf166722c8ae384ed0525e5226d169f85d164d61152d3a7b77ee1769cd5787001d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Indices : Force transfer", - "1 | New [1/2] : 2GTfdzXYD3mWWHFXcw1WJMvrrKWm9FoedY9xDA", - "1 | New [2/2] : LsguGU5VKA", - "2 | Index : 1886967196", - "3 | Freeze : True", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Indices : Force transfer", - "1 | New [1/2] : 2GTfdzXYD3mWWHFXcw1WJMvrrKWm9FoedY9xDA", - "1 | New [2/2] : LsguGU5VKA", - "2 | Index : 1886967196", - "3 | Freeze : True", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 51, - "name": "Indices_Freeze", - "blob": "03049cd57870d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Indices : Freeze", - "1 | Index : 1886967196", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Indices : Freeze", - "1 | Index : 1886967196", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 52, - "name": "Indices_Freeze", - "blob": "03049cd57870d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Indices : Freeze", - "1 | Index : 1886967196", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Indices : Freeze", - "1 | Index : 1886967196", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 53, - "name": "Indices_Freeze", - "blob": "03049cd57870d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Indices : Freeze", - "1 | Index : 1886967196" - ], - "output_expert": [ - "0 | Indices : Freeze", - "1 | Index : 1886967196", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 54, - "name": "Indices_Freeze", - "blob": "03049cd57870d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Indices : Freeze", - "1 | Index : 1886967196", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Indices : Freeze", - "1 | Index : 1886967196", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 55, - "name": "Indices_Freeze", - "blob": "03049cd57870d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Indices : Freeze", - "1 | Index : 1886967196", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Indices : Freeze", - "1 | Index : 1886967196", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 56, - "name": "Balances_Transfer", - "blob": "050000b106736d887c902505c1aa3fc5796eaae192b64c8534f4ea1241be8aa393040400d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Balances : Transfer", - "1 | Dest [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Dest [2/2] : vJWDXAcyNG", - "2 | Amount : POLYX 0.0", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Balances : Transfer", - "1 | Dest [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Dest [2/2] : vJWDXAcyNG", - "2 | Amount : POLYX 0.0", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 57, - "name": "Balances_Transfer", - "blob": "050000b106736d887c902505c1aa3fc5796eaae192b64c8534f4ea1241be8aa39304048ed73e0dd503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Balances : Transfer", - "1 | Dest [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Dest [2/2] : vJWDXAcyNG", - "2 | Amount : POLYX 55.555555" - ], - "output_expert": [ - "0 | Balances : Transfer", - "1 | Dest [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Dest [2/2] : vJWDXAcyNG", - "2 | Amount : POLYX 55.555555", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 58, - "name": "Balances_Transfer", - "blob": "050000b106736d887c902505c1aa3fc5796eaae192b64c8534f4ea1241be8aa39304048ed73e0dd5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Balances : Transfer", - "1 | Dest [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Dest [2/2] : vJWDXAcyNG", - "2 | Amount : POLYX 55.555555", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Balances : Transfer", - "1 | Dest [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Dest [2/2] : vJWDXAcyNG", - "2 | Amount : POLYX 55.555555", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 59, - "name": "Balances_Transfer", - "blob": "050000b106736d887c902505c1aa3fc5796eaae192b64c8534f4ea1241be8aa393040403d2029649d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Balances : Transfer", - "1 | Dest [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Dest [2/2] : vJWDXAcyNG", - "2 | Amount : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Balances : Transfer", - "1 | Dest [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Dest [2/2] : vJWDXAcyNG", - "2 | Amount : POLYX 1234.56789", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 60, - "name": "Balances_Transfer", - "blob": "050000b106736d887c902505c1aa3fc5796eaae192b64c8534f4ea1241be8aa393040433158139ae28a3dfaac5fe1560a5e9e05cd50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Balances : Transfer", - "1 | Dest [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Dest [2/2] : vJWDXAcyNG", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Balances : Transfer", - "1 | Dest [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Dest [2/2] : vJWDXAcyNG", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 61, - "name": "Balances_Transfer_with_memo", - "blob": "050100b106736d887c902505c1aa3fc5796eaae192b64c8534f4ea1241be8aa393040403d202964901bfc0a4e8f733a301acf85c30c9319a53556e73bd4c75f931c2e6b4b508b9272cd50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Balances : Transfer with memo", - "1 | Dest [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Dest [2/2] : vJWDXAcyNG", - "2 | Amount : POLYX 1234.56789", - "3 | Memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "3 | Memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Balances : Transfer with memo", - "1 | Dest [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Dest [2/2] : vJWDXAcyNG", - "2 | Amount : POLYX 1234.56789", - "3 | Memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "3 | Memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 62, - "name": "Balances_Transfer_with_memo", - "blob": "050100b106736d887c902505c1aa3fc5796eaae192b64c8534f4ea1241be8aa393040433158139ae28a3dfaac5fe1560a5e9e05c01bfc0a4e8f733a301acf85c30c9319a53556e73bd4c75f931c2e6b4b508b9272cd50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Balances : Transfer with memo", - "1 | Dest [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Dest [2/2] : vJWDXAcyNG", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789", - "3 | Memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "3 | Memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Balances : Transfer with memo", - "1 | Dest [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Dest [2/2] : vJWDXAcyNG", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789", - "3 | Memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "3 | Memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 63, - "name": "Balances_Transfer_with_memo", - "blob": "050100b106736d887c902505c1aa3fc5796eaae192b64c8534f4ea1241be8aa39304040001bfc0a4e8f733a301acf85c30c9319a53556e73bd4c75f931c2e6b4b508b9272cd503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Balances : Transfer with memo", - "1 | Dest [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Dest [2/2] : vJWDXAcyNG", - "2 | Amount : POLYX 0.0", - "3 | Memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "3 | Memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Balances : Transfer with memo", - "1 | Dest [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Dest [2/2] : vJWDXAcyNG", - "2 | Amount : POLYX 0.0", - "3 | Memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "3 | Memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 64, - "name": "Balances_Transfer_with_memo", - "blob": "050100b106736d887c902505c1aa3fc5796eaae192b64c8534f4ea1241be8aa39304048ed73e0d01bfc0a4e8f733a301acf85c30c9319a53556e73bd4c75f931c2e6b4b508b9272cd503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Balances : Transfer with memo", - "1 | Dest [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Dest [2/2] : vJWDXAcyNG", - "2 | Amount : POLYX 55.555555", - "3 | Memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "3 | Memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Balances : Transfer with memo", - "1 | Dest [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Dest [2/2] : vJWDXAcyNG", - "2 | Amount : POLYX 55.555555", - "3 | Memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "3 | Memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 65, - "name": "Balances_Transfer_with_memo", - "blob": "050100b106736d887c902505c1aa3fc5796eaae192b64c8534f4ea1241be8aa39304040b63ce64c10c0501bfc0a4e8f733a301acf85c30c9319a53556e73bd4c75f931c2e6b4b508b9272cd503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Balances : Transfer with memo", - "1 | Dest [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Dest [2/2] : vJWDXAcyNG", - "2 | Amount : POLYX 5552342.355555", - "3 | Memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "3 | Memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Balances : Transfer with memo", - "1 | Dest [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Dest [2/2] : vJWDXAcyNG", - "2 | Amount : POLYX 5552342.355555", - "3 | Memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "3 | Memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 66, - "name": "Balances_Deposit_block_reward_reserve_balance", - "blob": "05026d0fd503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Balances : Deposit block reward reserve balance", - "1 | Amount : POLYX 0.000987", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Balances : Deposit block reward reserve balance", - "1 | Amount : POLYX 0.000987", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 67, - "name": "Balances_Deposit_block_reward_reserve_balance", - "blob": "050233158139ae28a3dfaac5fe1560a5e9e05cd503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Balances : Deposit block reward reserve balance", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Balances : Deposit block reward reserve balance", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 68, - "name": "Balances_Deposit_block_reward_reserve_balance", - "blob": "05028ed73e0dd503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Balances : Deposit block reward reserve balance", - "1 | Amount : POLYX 55.555555", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Balances : Deposit block reward reserve balance", - "1 | Amount : POLYX 55.555555", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 69, - "name": "Balances_Deposit_block_reward_reserve_balance", - "blob": "050200d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Balances : Deposit block reward reserve balance", - "1 | Amount : POLYX 0.0", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Balances : Deposit block reward reserve balance", - "1 | Amount : POLYX 0.0", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 70, - "name": "Balances_Deposit_block_reward_reserve_balance", - "blob": "050233158139ae28a3dfaac5fe1560a5e9e05cd503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Balances : Deposit block reward reserve balance", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Balances : Deposit block reward reserve balance", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 71, - "name": "Balances_Set_balance", - "blob": "050300b106736d887c902505c1aa3fc5796eaae192b64c8534f4ea1241be8aa39304046d0f00d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Balances : Set balance", - "1 | Who [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Who [2/2] : vJWDXAcyNG", - "2 | New free : POLYX 0.000987", - "3 | New reserved : POLYX 0.0", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Balances : Set balance", - "1 | Who [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Who [2/2] : vJWDXAcyNG", - "2 | New free : POLYX 0.000987", - "3 | New reserved : POLYX 0.0", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 72, - "name": "Balances_Set_balance", - "blob": "050300b106736d887c902505c1aa3fc5796eaae192b64c8534f4ea1241be8aa393040433158139ae28a3dfaac5fe1560a5e9e05c6d0fd503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Balances : Set balance", - "1 | Who [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Who [2/2] : vJWDXAcyNG", - "2 | New free [1/2] : POLYX 12345678901234567890123456789012", - "2 | New free [2/2] : 3.456789", - "3 | New reserved : POLYX 0.000987", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Balances : Set balance", - "1 | Who [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Who [2/2] : vJWDXAcyNG", - "2 | New free [1/2] : POLYX 12345678901234567890123456789012", - "2 | New free [2/2] : 3.456789", - "3 | New reserved : POLYX 0.000987", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 73, - "name": "Balances_Set_balance", - "blob": "050300b106736d887c902505c1aa3fc5796eaae192b64c8534f4ea1241be8aa39304040b63ce64c10c0533158139ae28a3dfaac5fe1560a5e9e05cd503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Balances : Set balance", - "1 | Who [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Who [2/2] : vJWDXAcyNG", - "2 | New free : POLYX 5552342.355555", - "3 | New reserved [1/2] : POLYX 12345678901234567890123456789012", - "3 | New reserved [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Balances : Set balance", - "1 | Who [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Who [2/2] : vJWDXAcyNG", - "2 | New free : POLYX 5552342.355555", - "3 | New reserved [1/2] : POLYX 12345678901234567890123456789012", - "3 | New reserved [2/2] : 3.456789", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 74, - "name": "Balances_Set_balance", - "blob": "050300b106736d887c902505c1aa3fc5796eaae192b64c8534f4ea1241be8aa393040403d202964933158139ae28a3dfaac5fe1560a5e9e05cd50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Balances : Set balance", - "1 | Who [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Who [2/2] : vJWDXAcyNG", - "2 | New free : POLYX 1234.56789", - "3 | New reserved [1/2] : POLYX 12345678901234567890123456789012", - "3 | New reserved [2/2] : 3.456789", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Balances : Set balance", - "1 | Who [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Who [2/2] : vJWDXAcyNG", - "2 | New free : POLYX 1234.56789", - "3 | New reserved [1/2] : POLYX 12345678901234567890123456789012", - "3 | New reserved [2/2] : 3.456789", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 75, - "name": "Balances_Set_balance", - "blob": "050300b106736d887c902505c1aa3fc5796eaae192b64c8534f4ea1241be8aa39304048ed73e0d6d0fd5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Balances : Set balance", - "1 | Who [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Who [2/2] : vJWDXAcyNG", - "2 | New free : POLYX 55.555555", - "3 | New reserved : POLYX 0.000987", - "4 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Balances : Set balance", - "1 | Who [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Who [2/2] : vJWDXAcyNG", - "2 | New free : POLYX 55.555555", - "3 | New reserved : POLYX 0.000987", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 76, - "name": "Balances_Force_transfer", - "blob": "050400b106736d887c902505c1aa3fc5796eaae192b64c8534f4ea1241be8aa393040400b106736d887c902505c1aa3fc5796eaae192b64c8534f4ea1241be8aa39304040b63ce64c10c05d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Balances : Force transfer", - "1 | Source [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Source [2/2] : vJWDXAcyNG", - "2 | Dest [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "2 | Dest [2/2] : vJWDXAcyNG", - "3 | Amount : POLYX 5552342.355555", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Balances : Force transfer", - "1 | Source [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Source [2/2] : vJWDXAcyNG", - "2 | Dest [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "2 | Dest [2/2] : vJWDXAcyNG", - "3 | Amount : POLYX 5552342.355555", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 77, - "name": "Balances_Force_transfer", - "blob": "050400b106736d887c902505c1aa3fc5796eaae192b64c8534f4ea1241be8aa393040400b106736d887c902505c1aa3fc5796eaae192b64c8534f4ea1241be8aa39304048ed73e0dd5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Balances : Force transfer", - "1 | Source [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Source [2/2] : vJWDXAcyNG", - "2 | Dest [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "2 | Dest [2/2] : vJWDXAcyNG", - "3 | Amount : POLYX 55.555555", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Balances : Force transfer", - "1 | Source [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Source [2/2] : vJWDXAcyNG", - "2 | Dest [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "2 | Dest [2/2] : vJWDXAcyNG", - "3 | Amount : POLYX 55.555555", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 78, - "name": "Balances_Force_transfer", - "blob": "050400b106736d887c902505c1aa3fc5796eaae192b64c8534f4ea1241be8aa393040400b106736d887c902505c1aa3fc5796eaae192b64c8534f4ea1241be8aa393040403d2029649d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Balances : Force transfer", - "1 | Source [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Source [2/2] : vJWDXAcyNG", - "2 | Dest [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "2 | Dest [2/2] : vJWDXAcyNG", - "3 | Amount : POLYX 1234.56789", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Balances : Force transfer", - "1 | Source [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Source [2/2] : vJWDXAcyNG", - "2 | Dest [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "2 | Dest [2/2] : vJWDXAcyNG", - "3 | Amount : POLYX 1234.56789", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 79, - "name": "Balances_Force_transfer", - "blob": "050400b106736d887c902505c1aa3fc5796eaae192b64c8534f4ea1241be8aa393040400b106736d887c902505c1aa3fc5796eaae192b64c8534f4ea1241be8aa393040400d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Balances : Force transfer", - "1 | Source [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Source [2/2] : vJWDXAcyNG", - "2 | Dest [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "2 | Dest [2/2] : vJWDXAcyNG", - "3 | Amount : POLYX 0.0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Balances : Force transfer", - "1 | Source [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Source [2/2] : vJWDXAcyNG", - "2 | Dest [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "2 | Dest [2/2] : vJWDXAcyNG", - "3 | Amount : POLYX 0.0", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 80, - "name": "Balances_Force_transfer", - "blob": "050400b106736d887c902505c1aa3fc5796eaae192b64c8534f4ea1241be8aa393040400b106736d887c902505c1aa3fc5796eaae192b64c8534f4ea1241be8aa39304048ed73e0dd5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Balances : Force transfer", - "1 | Source [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Source [2/2] : vJWDXAcyNG", - "2 | Dest [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "2 | Dest [2/2] : vJWDXAcyNG", - "3 | Amount : POLYX 55.555555", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Balances : Force transfer", - "1 | Source [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "1 | Source [2/2] : vJWDXAcyNG", - "2 | Dest [1/2] : 2GT2VdsfWdVjBhmsqzTyfVUMf7uJzwdu7PnJXc", - "2 | Dest [2/2] : vJWDXAcyNG", - "3 | Amount : POLYX 55.555555", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 81, - "name": "Balances_Burn_account_balance", - "blob": "0505345fe7fc9c23bfb62334c8ca2c746feed503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Balances : Burn account balance", - "1 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "1 | Amount [2/2] : 0.371252" - ], - "output_expert": [ - "0 | Balances : Burn account balance", - "1 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "1 | Amount [2/2] : 0.371252", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 82, - "name": "Balances_Burn_account_balance", - "blob": "0505345fe7fc9c23bfb62334c8ca2c746feed503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Balances : Burn account balance", - "1 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "1 | Amount [2/2] : 0.371252", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Balances : Burn account balance", - "1 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "1 | Amount [2/2] : 0.371252", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 83, - "name": "Balances_Burn_account_balance", - "blob": "0505345fe7fc9c23bfb62334c8ca2c746feed503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Balances : Burn account balance", - "1 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "1 | Amount [2/2] : 0.371252" - ], - "output_expert": [ - "0 | Balances : Burn account balance", - "1 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "1 | Amount [2/2] : 0.371252", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 84, - "name": "Balances_Burn_account_balance", - "blob": "0505345fe7fc9c23bfb62334c8ca2c746feed503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Balances : Burn account balance", - "1 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "1 | Amount [2/2] : 0.371252", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Balances : Burn account balance", - "1 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "1 | Amount [2/2] : 0.371252", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 85, - "name": "Balances_Burn_account_balance", - "blob": "0505345fe7fc9c23bfb62334c8ca2c746feed50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Balances : Burn account balance", - "1 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "1 | Amount [2/2] : 0.371252", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Balances : Burn account balance", - "1 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "1 | Amount [2/2] : 0.371252", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 86, - "name": "Identity_Cdd_register_did", - "blob": "070042ed86a3b5fd55b0ec57c2112f981fbc2d91f4225759141ea0b255fd34639d7400d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Cdd register did", - "1 | Target account [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "1 | Target account [2/2] : kvir9Rw75p", - "2 | Secondary keys : ", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Identity : Cdd register did", - "1 | Target account [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "1 | Target account [2/2] : kvir9Rw75p", - "2 | Secondary keys : ", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 87, - "name": "Identity_Cdd_register_did", - "blob": "070042ed86a3b5fd55b0ec57c2112f981fbc2d91f4225759141ea0b255fd34639d740490f4bd71fa0df7f3f9942a6cb9415393181c5ab088dbfc938f425834e151647d01085449434b45522d31323836335449434b45522d313238373302042050414c4c45545f4101082c44697370617463684142432c446973706174636858595a010424d6c6a14cb5fbd12b40ac0c906718af554d0d46a1e52f5aef3245537b5a06650140e2010000000000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Cdd register did", - "1 | Target account [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "1 | Target account [2/2] : kvir9Rw75p", - "2 | Secondary keys [1/14] : 2FiyhcQvBSmjENTBuootRVE4GsiUZeZne9rLc5", - "2 | Secondary keys [2/14] : Vv24GGZd9N", - "2 | Secondary keys [3/14] : These", - "2 | Secondary keys [4/14] : TICKER-12863", - "2 | Secondary keys [5/14] : TICKER-12873", - "2 | Secondary keys [6/14] : Except", - "2 | Secondary keys [7/14] : PALLET_A", - "2 | Secondary keys [8/14] : These", - "2 | Secondary keys [9/14] : DispatchABC", - "2 | Secondary keys [10/14] : DispatchXYZ", - "2 | Secondary keys [11/14] : These", - "2 | Secondary keys [12/14] : 24d6c6a14cb5fbd12b40ac0c906718af554d0d", - "2 | Secondary keys [13/14] : 46a1e52f5aef3245537b5a0665", - "2 | Secondary keys [14/14] : 123456" - ], - "output_expert": [ - "0 | Identity : Cdd register did", - "1 | Target account [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "1 | Target account [2/2] : kvir9Rw75p", - "2 | Secondary keys [1/14] : 2FiyhcQvBSmjENTBuootRVE4GsiUZeZne9rLc5", - "2 | Secondary keys [2/14] : Vv24GGZd9N", - "2 | Secondary keys [3/14] : These", - "2 | Secondary keys [4/14] : TICKER-12863", - "2 | Secondary keys [5/14] : TICKER-12873", - "2 | Secondary keys [6/14] : Except", - "2 | Secondary keys [7/14] : PALLET_A", - "2 | Secondary keys [8/14] : These", - "2 | Secondary keys [9/14] : DispatchABC", - "2 | Secondary keys [10/14] : DispatchXYZ", - "2 | Secondary keys [11/14] : These", - "2 | Secondary keys [12/14] : 24d6c6a14cb5fbd12b40ac0c906718af554d0d", - "2 | Secondary keys [13/14] : 46a1e52f5aef3245537b5a0665", - "2 | Secondary keys [14/14] : 123456", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 88, - "name": "Identity_Cdd_register_did", - "blob": "0700b673c14adc4fdaaa84b868330314bb524eb97de82eb6ad5c24401af92af33f540490f4bd71fa0df7f3f9942a6cb9415393181c5ab088dbfc938f425834e151647d01085449434b45522d31323836335449434b45522d313238373302042050414c4c45545f4101082c44697370617463684142432c446973706174636858595a010424d6c6a14cb5fbd12b40ac0c906718af554d0d46a1e52f5aef3245537b5a06650140e2010000000000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Cdd register did", - "1 | Target account [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Target account [2/2] : 6xRJgVAa3i", - "2 | Secondary keys [1/14] : 2FiyhcQvBSmjENTBuootRVE4GsiUZeZne9rLc5", - "2 | Secondary keys [2/14] : Vv24GGZd9N", - "2 | Secondary keys [3/14] : These", - "2 | Secondary keys [4/14] : TICKER-12863", - "2 | Secondary keys [5/14] : TICKER-12873", - "2 | Secondary keys [6/14] : Except", - "2 | Secondary keys [7/14] : PALLET_A", - "2 | Secondary keys [8/14] : These", - "2 | Secondary keys [9/14] : DispatchABC", - "2 | Secondary keys [10/14] : DispatchXYZ", - "2 | Secondary keys [11/14] : These", - "2 | Secondary keys [12/14] : 24d6c6a14cb5fbd12b40ac0c906718af554d0d", - "2 | Secondary keys [13/14] : 46a1e52f5aef3245537b5a0665", - "2 | Secondary keys [14/14] : 123456" - ], - "output_expert": [ - "0 | Identity : Cdd register did", - "1 | Target account [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Target account [2/2] : 6xRJgVAa3i", - "2 | Secondary keys [1/14] : 2FiyhcQvBSmjENTBuootRVE4GsiUZeZne9rLc5", - "2 | Secondary keys [2/14] : Vv24GGZd9N", - "2 | Secondary keys [3/14] : These", - "2 | Secondary keys [4/14] : TICKER-12863", - "2 | Secondary keys [5/14] : TICKER-12873", - "2 | Secondary keys [6/14] : Except", - "2 | Secondary keys [7/14] : PALLET_A", - "2 | Secondary keys [8/14] : These", - "2 | Secondary keys [9/14] : DispatchABC", - "2 | Secondary keys [10/14] : DispatchXYZ", - "2 | Secondary keys [11/14] : These", - "2 | Secondary keys [12/14] : 24d6c6a14cb5fbd12b40ac0c906718af554d0d", - "2 | Secondary keys [13/14] : 46a1e52f5aef3245537b5a0665", - "2 | Secondary keys [14/14] : 123456", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 89, - "name": "Identity_Cdd_register_did", - "blob": "07001813b8c47c41f5279be46dc5272f7321cbfb8e6a91645a82458752c94de75b1c0490f4bd71fa0df7f3f9942a6cb9415393181c5ab088dbfc938f425834e151647d01085449434b45522d31323836335449434b45522d313238373302042050414c4c45545f4101082c44697370617463684142432c446973706174636858595a010424d6c6a14cb5fbd12b40ac0c906718af554d0d46a1e52f5aef3245537b5a06650140e2010000000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Cdd register did", - "1 | Target account [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | Target account [2/2] : PmkgsnFWXr", - "2 | Secondary keys [1/14] : 2FiyhcQvBSmjENTBuootRVE4GsiUZeZne9rLc5", - "2 | Secondary keys [2/14] : Vv24GGZd9N", - "2 | Secondary keys [3/14] : These", - "2 | Secondary keys [4/14] : TICKER-12863", - "2 | Secondary keys [5/14] : TICKER-12873", - "2 | Secondary keys [6/14] : Except", - "2 | Secondary keys [7/14] : PALLET_A", - "2 | Secondary keys [8/14] : These", - "2 | Secondary keys [9/14] : DispatchABC", - "2 | Secondary keys [10/14] : DispatchXYZ", - "2 | Secondary keys [11/14] : These", - "2 | Secondary keys [12/14] : 24d6c6a14cb5fbd12b40ac0c906718af554d0d", - "2 | Secondary keys [13/14] : 46a1e52f5aef3245537b5a0665", - "2 | Secondary keys [14/14] : 123456", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Identity : Cdd register did", - "1 | Target account [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | Target account [2/2] : PmkgsnFWXr", - "2 | Secondary keys [1/14] : 2FiyhcQvBSmjENTBuootRVE4GsiUZeZne9rLc5", - "2 | Secondary keys [2/14] : Vv24GGZd9N", - "2 | Secondary keys [3/14] : These", - "2 | Secondary keys [4/14] : TICKER-12863", - "2 | Secondary keys [5/14] : TICKER-12873", - "2 | Secondary keys [6/14] : Except", - "2 | Secondary keys [7/14] : PALLET_A", - "2 | Secondary keys [8/14] : These", - "2 | Secondary keys [9/14] : DispatchABC", - "2 | Secondary keys [10/14] : DispatchXYZ", - "2 | Secondary keys [11/14] : These", - "2 | Secondary keys [12/14] : 24d6c6a14cb5fbd12b40ac0c906718af554d0d", - "2 | Secondary keys [13/14] : 46a1e52f5aef3245537b5a0665", - "2 | Secondary keys [14/14] : 123456", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 90, - "name": "Identity_Cdd_register_did", - "blob": "070044437e7896c15f809cbc7156673d31ecf873060385385e9c27d5ae4abc05561500d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Cdd register did", - "1 | Target account [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | Target account [2/2] : yiDWE8dFzF", - "2 | Secondary keys : ", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Identity : Cdd register did", - "1 | Target account [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | Target account [2/2] : yiDWE8dFzF", - "2 | Secondary keys : ", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 91, - "name": "Identity_Invalidate_cdd_claims", - "blob": "070131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec0001000000000000010001000000000000d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Invalidate cdd claims", - "1 | Cdd [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Cdd [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Disable from : 256", - "3 | Expiry : 256", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Identity : Invalidate cdd claims", - "1 | Cdd [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Cdd [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Disable from : 256", - "3 | Expiry : 256", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 92, - "name": "Identity_Invalidate_cdd_claims", - "blob": "070131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec0001000000000000018000000000000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Invalidate cdd claims", - "1 | Cdd [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Cdd [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Disable from : 256", - "3 | Expiry : 128", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Identity : Invalidate cdd claims", - "1 | Cdd [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Cdd [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Disable from : 256", - "3 | Expiry : 128", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 93, - "name": "Identity_Invalidate_cdd_claims", - "blob": "070131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec0008000000000000018000000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Invalidate cdd claims", - "1 | Cdd [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Cdd [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Disable from : 2048", - "3 | Expiry : 128", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Identity : Invalidate cdd claims", - "1 | Cdd [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Cdd [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Disable from : 2048", - "3 | Expiry : 128", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 94, - "name": "Identity_Invalidate_cdd_claims", - "blob": "070131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec0008000000000000010008000000000000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Invalidate cdd claims", - "1 | Cdd [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Cdd [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Disable from : 2048", - "3 | Expiry : 2048", - "4 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Identity : Invalidate cdd claims", - "1 | Cdd [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Cdd [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Disable from : 2048", - "3 | Expiry : 2048", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 95, - "name": "Identity_Invalidate_cdd_claims", - "blob": "070131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec0008000000000000010001000000000000d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Invalidate cdd claims", - "1 | Cdd [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Cdd [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Disable from : 2048", - "3 | Expiry : 256", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Identity : Invalidate cdd claims", - "1 | Cdd [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Cdd [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Disable from : 2048", - "3 | Expiry : 256", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 96, - "name": "Identity_Accept_primary_key", - "blob": "0702640000000000000001d8c9760100000000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Accept primary key", - "1 | Rotation auth id : 100", - "2 | Optional cdd auth id : 24562136", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Identity : Accept primary key", - "1 | Rotation auth id : 100", - "2 | Optional cdd auth id : 24562136", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 97, - "name": "Identity_Accept_primary_key", - "blob": "07022309000000000000018813000000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Accept primary key", - "1 | Rotation auth id : 2339", - "2 | Optional cdd auth id : 5000", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Identity : Accept primary key", - "1 | Rotation auth id : 2339", - "2 | Optional cdd auth id : 5000", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 98, - "name": "Identity_Accept_primary_key", - "blob": "07026400000000000000011a00000000000000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Accept primary key", - "1 | Rotation auth id : 100", - "2 | Optional cdd auth id : 26", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Identity : Accept primary key", - "1 | Rotation auth id : 100", - "2 | Optional cdd auth id : 26", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 99, - "name": "Identity_Accept_primary_key", - "blob": "07026400000000000000011a00000000000000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Accept primary key", - "1 | Rotation auth id : 100", - "2 | Optional cdd auth id : 26", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Identity : Accept primary key", - "1 | Rotation auth id : 100", - "2 | Optional cdd auth id : 26", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 100, - "name": "Identity_Accept_primary_key", - "blob": "07022309000000000000018813000000000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Accept primary key", - "1 | Rotation auth id : 2339", - "2 | Optional cdd auth id : 5000", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Identity : Accept primary key", - "1 | Rotation auth id : 2339", - "2 | Optional cdd auth id : 5000", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 101, - "name": "Identity_Change_cdd_requirement_for_mk_rotation", - "blob": "070300d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Change cdd requirement for mk rotation", - "1 | Auth required : False", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Identity : Change cdd requirement for mk rotation", - "1 | Auth required : False", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 102, - "name": "Identity_Change_cdd_requirement_for_mk_rotation", - "blob": "070301d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Change cdd requirement for mk rotation", - "1 | Auth required : True", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Identity : Change cdd requirement for mk rotation", - "1 | Auth required : True", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 103, - "name": "Identity_Change_cdd_requirement_for_mk_rotation", - "blob": "070301d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Change cdd requirement for mk rotation", - "1 | Auth required : True", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Identity : Change cdd requirement for mk rotation", - "1 | Auth required : True", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 104, - "name": "Identity_Change_cdd_requirement_for_mk_rotation", - "blob": "070300d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Change cdd requirement for mk rotation", - "1 | Auth required : False", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Identity : Change cdd requirement for mk rotation", - "1 | Auth required : False", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 105, - "name": "Identity_Change_cdd_requirement_for_mk_rotation", - "blob": "070301d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Change cdd requirement for mk rotation", - "1 | Auth required : True", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Identity : Change cdd requirement for mk rotation", - "1 | Auth required : True", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 106, - "name": "Identity_Join_identity_as_key", - "blob": "07040000000000000000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Join identity as key", - "1 | Auth id : 0" - ], - "output_expert": [ - "0 | Identity : Join identity as key", - "1 | Auth id : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 107, - "name": "Identity_Join_identity_as_key", - "blob": "07042309000000000000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Join identity as key", - "1 | Auth id : 2339", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Identity : Join identity as key", - "1 | Auth id : 2339", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 108, - "name": "Identity_Join_identity_as_key", - "blob": "07040100000000000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Join identity as key", - "1 | Auth id : 1", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Identity : Join identity as key", - "1 | Auth id : 1", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 109, - "name": "Identity_Join_identity_as_key", - "blob": "07040000000000000000d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Join identity as key", - "1 | Auth id : 0", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Identity : Join identity as key", - "1 | Auth id : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 110, - "name": "Identity_Join_identity_as_key", - "blob": "07046400000000000000d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Join identity as key", - "1 | Auth id : 100", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Identity : Join identity as key", - "1 | Auth id : 100", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 111, - "name": "Identity_Leave_identity_as_key", - "blob": "0705d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Leave identity as key" - ], - "output_expert": [ - "0 | Identity : Leave identity as key", - "1 | Chain : Polymesh", - "2 | Nonce : 100", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "5 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 112, - "name": "Identity_Leave_identity_as_key", - "blob": "0705d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Leave identity as key", - "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "1 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Identity : Leave identity as key", - "1 | Chain : Polymesh", - "2 | Nonce : 2339", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 113, - "name": "Identity_Leave_identity_as_key", - "blob": "0705d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Leave identity as key", - "1 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Identity : Leave identity as key", - "1 | Chain : Polymesh", - "2 | Nonce : 2339", - "3 | Tip : POLYX 1234.56789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 114, - "name": "Identity_Leave_identity_as_key", - "blob": "0705d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Leave identity as key", - "1 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Identity : Leave identity as key", - "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip : POLYX 1234.56789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 115, - "name": "Identity_Leave_identity_as_key", - "blob": "0705d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Leave identity as key", - "1 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Identity : Leave identity as key", - "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip : POLYX 0.000987", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 116, - "name": "Identity_Add_claim", - "blob": "070631c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec045ad6f6556edc6c4748e58d454be768fe629b42c913d9464ac0ba6fe339a73b95018000000000000000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Add claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Claim [1/3] : CustomerDueDiligence", - "2 | Claim [2/3] : 5ad6f6556edc6c4748e58d454be768fe629b42", - "2 | Claim [3/3] : c913d9464ac0ba6fe339a73b95", - "3 | Expiry : 128", - "4 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Identity : Add claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Claim [1/3] : CustomerDueDiligence", - "2 | Claim [2/3] : 5ad6f6556edc6c4748e58d454be768fe629b42", - "2 | Claim [3/3] : c913d9464ac0ba6fe339a73b95", - "3 | Expiry : 128", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 117, - "name": "Identity_Add_claim", - "blob": "070631c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec045ad6f6556edc6c4748e58d454be768fe629b42c913d9464ac0ba6fe339a73b95010008000000000000d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Add claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Claim [1/3] : CustomerDueDiligence", - "2 | Claim [2/3] : 5ad6f6556edc6c4748e58d454be768fe629b42", - "2 | Claim [3/3] : c913d9464ac0ba6fe339a73b95", - "3 | Expiry : 2048", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Identity : Add claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Claim [1/3] : CustomerDueDiligence", - "2 | Claim [2/3] : 5ad6f6556edc6c4748e58d454be768fe629b42", - "2 | Claim [3/3] : c913d9464ac0ba6fe339a73b95", - "3 | Expiry : 2048", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 118, - "name": "Identity_Add_claim", - "blob": "070631c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec00015449434b45522d3334353637010008000000000000d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Add claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Claim [1/2] : Accredited", - "2 | Claim [2/2] : TICKER-34567", - "3 | Expiry : 2048" - ], - "output_expert": [ - "0 | Identity : Add claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Claim [1/2] : Accredited", - "2 | Claim [2/2] : TICKER-34567", - "3 | Expiry : 2048", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 119, - "name": "Identity_Add_claim", - "blob": "070631c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec03015449434b45522d3938373635010008000000000000d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Add claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Claim [1/2] : SellLockup", - "2 | Claim [2/2] : TICKER-98765", - "3 | Expiry : 2048" - ], - "output_expert": [ - "0 | Identity : Add claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Claim [1/2] : SellLockup", - "2 | Claim [2/2] : TICKER-98765", - "3 | Expiry : 2048", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 120, - "name": "Identity_Add_claim", - "blob": "070631c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec0600015449434b45522d3537323132018000000000000000d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Add claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Claim [1/3] : Jurisdiction", - "2 | Claim [2/3] : AF", - "2 | Claim [3/3] : TICKER-57212", - "3 | Expiry : 128", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Identity : Add claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Claim [1/3] : Jurisdiction", - "2 | Claim [2/3] : AF", - "2 | Claim [3/3] : TICKER-57212", - "3 | Expiry : 128", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 121, - "name": "Identity_Revoke_claim", - "blob": "070731c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec00015449434b45522d3334353637d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Revoke claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Claim [1/2] : Accredited", - "2 | Claim [2/2] : TICKER-34567", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Identity : Revoke claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Claim [1/2] : Accredited", - "2 | Claim [2/2] : TICKER-34567", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 122, - "name": "Identity_Revoke_claim", - "blob": "070731c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec045ad6f6556edc6c4748e58d454be768fe629b42c913d9464ac0ba6fe339a73b95d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Revoke claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Claim [1/3] : CustomerDueDiligence", - "2 | Claim [2/3] : 5ad6f6556edc6c4748e58d454be768fe629b42", - "2 | Claim [3/3] : c913d9464ac0ba6fe339a73b95" - ], - "output_expert": [ - "0 | Identity : Revoke claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Claim [1/3] : CustomerDueDiligence", - "2 | Claim [2/3] : 5ad6f6556edc6c4748e58d454be768fe629b42", - "2 | Claim [3/3] : c913d9464ac0ba6fe339a73b95", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 123, - "name": "Identity_Revoke_claim", - "blob": "070731c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec03015449434b45522d3938373635d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Revoke claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Claim [1/2] : SellLockup", - "2 | Claim [2/2] : TICKER-98765", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Identity : Revoke claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Claim [1/2] : SellLockup", - "2 | Claim [2/2] : TICKER-98765", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 124, - "name": "Identity_Revoke_claim", - "blob": "070731c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec00015449434b45522d3334353637d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Revoke claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Claim [1/2] : Accredited", - "2 | Claim [2/2] : TICKER-34567", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Identity : Revoke claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Claim [1/2] : Accredited", - "2 | Claim [2/2] : TICKER-34567", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 125, - "name": "Identity_Revoke_claim", - "blob": "070731c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec045ad6f6556edc6c4748e58d454be768fe629b42c913d9464ac0ba6fe339a73b95d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Revoke claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Claim [1/3] : CustomerDueDiligence", - "2 | Claim [2/3] : 5ad6f6556edc6c4748e58d454be768fe629b42", - "2 | Claim [3/3] : c913d9464ac0ba6fe339a73b95" - ], - "output_expert": [ - "0 | Identity : Revoke claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Claim [1/3] : CustomerDueDiligence", - "2 | Claim [2/3] : 5ad6f6556edc6c4748e58d454be768fe629b42", - "2 | Claim [3/3] : c913d9464ac0ba6fe339a73b95", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 126, - "name": "Identity_Freeze_secondary_keys", - "blob": "0708d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Freeze secondary keys", - "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "1 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Identity : Freeze secondary keys", - "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 127, - "name": "Identity_Freeze_secondary_keys", - "blob": "0708d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Freeze secondary keys", - "1 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Identity : Freeze secondary keys", - "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip : POLYX 5552342.355555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 128, - "name": "Identity_Freeze_secondary_keys", - "blob": "0708d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Freeze secondary keys", - "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "1 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Identity : Freeze secondary keys", - "1 | Chain : Polymesh", - "2 | Nonce : 100", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 129, - "name": "Identity_Freeze_secondary_keys", - "blob": "0708d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Freeze secondary keys", - "1 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Identity : Freeze secondary keys", - "1 | Chain : Polymesh", - "2 | Nonce : 100", - "3 | Tip : POLYX 0.000987", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 130, - "name": "Identity_Freeze_secondary_keys", - "blob": "0708d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Freeze secondary keys" - ], - "output_expert": [ - "0 | Identity : Freeze secondary keys", - "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "5 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 131, - "name": "Identity_Unfreeze_secondary_keys", - "blob": "0709d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Unfreeze secondary keys", - "1 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Identity : Unfreeze secondary keys", - "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Tip : POLYX 55.555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 132, - "name": "Identity_Unfreeze_secondary_keys", - "blob": "0709d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Unfreeze secondary keys", - "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "1 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Identity : Unfreeze secondary keys", - "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 133, - "name": "Identity_Unfreeze_secondary_keys", - "blob": "0709d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Unfreeze secondary keys", - "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "1 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Identity : Unfreeze secondary keys", - "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 134, - "name": "Identity_Unfreeze_secondary_keys", - "blob": "0709d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Unfreeze secondary keys", - "1 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Identity : Unfreeze secondary keys", - "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip : POLYX 55.555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 135, - "name": "Identity_Unfreeze_secondary_keys", - "blob": "0709d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Unfreeze secondary keys", - "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "1 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Identity : Unfreeze secondary keys", - "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 136, - "name": "Identity_Add_authorization", - "blob": "070a01aa43fe83c1c5c44bcf8aa95778c4139479db8fa2ca98bc80241cc595bcf4f42a025449434b45522d3132393833010008000000000000d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Add authorization", - "1 | Target [1/2] : 2GJASZYS9pvBWqQD4D81sfcNrYF6j4T8x5tvxr", - "1 | Target [2/2] : n2taDLssXn", - "2 | Data [1/2] : TransferTicker", - "2 | Data [2/2] : TICKER-12983", - "3 | Expiry : 2048" - ], - "output_expert": [ - "0 | Identity : Add authorization", - "1 | Target [1/2] : 2GJASZYS9pvBWqQD4D81sfcNrYF6j4T8x5tvxr", - "1 | Target [2/2] : n2taDLssXn", - "2 | Data [1/2] : TransferTicker", - "2 | Data [2/2] : TICKER-12983", - "3 | Expiry : 2048", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 137, - "name": "Identity_Add_authorization", - "blob": "070a00c159607bd9feabe4e89f3d8969fac07dda1dacf0a64ca5a3c8ed11d4ba6ad804075449434b45522d313239383300010001000000000000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Add authorization", - "1 | Target [1/2] : c159607bd9feabe4e89f3d8969fac07dda1dac", - "1 | Target [2/2] : f0a64ca5a3c8ed11d4ba6ad804", - "2 | Data [1/3] : BecomeAgent", - "2 | Data [2/3] : TICKER-12983", - "2 | Data [3/3] : Full", - "3 | Expiry : 256" - ], - "output_expert": [ - "0 | Identity : Add authorization", - "1 | Target [1/2] : c159607bd9feabe4e89f3d8969fac07dda1dac", - "1 | Target [2/2] : f0a64ca5a3c8ed11d4ba6ad804", - "2 | Data [1/3] : BecomeAgent", - "2 | Data [2/3] : TICKER-12983", - "2 | Data [3/3] : Full", - "3 | Expiry : 256", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 138, - "name": "Identity_Add_authorization", - "blob": "070a00c159607bd9feabe4e89f3d8969fac07dda1dacf0a64ca5a3c8ed11d4ba6ad804045449434b45522d3132393833018000000000000000d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Add authorization", - "1 | Target [1/2] : c159607bd9feabe4e89f3d8969fac07dda1dac", - "1 | Target [2/2] : f0a64ca5a3c8ed11d4ba6ad804", - "2 | Data [1/2] : TransferAssetOwnership", - "2 | Data [2/2] : TICKER-12983", - "3 | Expiry : 128", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Identity : Add authorization", - "1 | Target [1/2] : c159607bd9feabe4e89f3d8969fac07dda1dac", - "1 | Target [2/2] : f0a64ca5a3c8ed11d4ba6ad804", - "2 | Data [1/2] : TransferAssetOwnership", - "2 | Data [2/2] : TICKER-12983", - "3 | Expiry : 128", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 139, - "name": "Identity_Add_authorization", - "blob": "070a01aa43fe83c1c5c44bcf8aa95778c4139479db8fa2ca98bc80241cc595bcf4f42a045449434b45522d3132393833010001000000000000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Add authorization", - "1 | Target [1/2] : 2GJASZYS9pvBWqQD4D81sfcNrYF6j4T8x5tvxr", - "1 | Target [2/2] : n2taDLssXn", - "2 | Data [1/2] : TransferAssetOwnership", - "2 | Data [2/2] : TICKER-12983", - "3 | Expiry : 256", - "4 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Identity : Add authorization", - "1 | Target [1/2] : 2GJASZYS9pvBWqQD4D81sfcNrYF6j4T8x5tvxr", - "1 | Target [2/2] : n2taDLssXn", - "2 | Data [1/2] : TransferAssetOwnership", - "2 | Data [2/2] : TICKER-12983", - "3 | Expiry : 256", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 140, - "name": "Identity_Add_authorization", - "blob": "070a00c159607bd9feabe4e89f3d8969fac07dda1dacf0a64ca5a3c8ed11d4ba6ad80406389d434031c31d66ce42e33db396318458288c3d85fcf790df2d05e8aa45da570140e2010000000000010001000000000000d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Add authorization", - "1 | Target [1/2] : c159607bd9feabe4e89f3d8969fac07dda1dac", - "1 | Target [2/2] : f0a64ca5a3c8ed11d4ba6ad804", - "2 | Data [1/4] : PortfolioCustody", - "2 | Data [2/4] : 389d434031c31d66ce42e33db396318458288c", - "2 | Data [3/4] : 3d85fcf790df2d05e8aa45da57", - "2 | Data [4/4] : 123456", - "3 | Expiry : 256", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Identity : Add authorization", - "1 | Target [1/2] : c159607bd9feabe4e89f3d8969fac07dda1dac", - "1 | Target [2/2] : f0a64ca5a3c8ed11d4ba6ad804", - "2 | Data [1/4] : PortfolioCustody", - "2 | Data [2/4] : 389d434031c31d66ce42e33db396318458288c", - "2 | Data [3/4] : 3d85fcf790df2d05e8aa45da57", - "2 | Data [4/4] : 123456", - "3 | Expiry : 256", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 141, - "name": "Identity_Remove_authorization", - "blob": "070b01aa43fe83c1c5c44bcf8aa95778c4139479db8fa2ca98bc80241cc595bcf4f42a000000000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Remove authorization", - "1 | Target [1/2] : 2GJASZYS9pvBWqQD4D81sfcNrYF6j4T8x5tvxr", - "1 | Target [2/2] : n2taDLssXn", - "2 | Auth id : 0", - "3 | Auth issuer pays : False", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Identity : Remove authorization", - "1 | Target [1/2] : 2GJASZYS9pvBWqQD4D81sfcNrYF6j4T8x5tvxr", - "1 | Target [2/2] : n2taDLssXn", - "2 | Auth id : 0", - "3 | Auth issuer pays : False", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 142, - "name": "Identity_Remove_authorization", - "blob": "070b01aa43fe83c1c5c44bcf8aa95778c4139479db8fa2ca98bc80241cc595bcf4f42a6bc400000000000001d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Remove authorization", - "1 | Target [1/2] : 2GJASZYS9pvBWqQD4D81sfcNrYF6j4T8x5tvxr", - "1 | Target [2/2] : n2taDLssXn", - "2 | Auth id : 50283", - "3 | Auth issuer pays : True", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Identity : Remove authorization", - "1 | Target [1/2] : 2GJASZYS9pvBWqQD4D81sfcNrYF6j4T8x5tvxr", - "1 | Target [2/2] : n2taDLssXn", - "2 | Auth id : 50283", - "3 | Auth issuer pays : True", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 143, - "name": "Identity_Remove_authorization", - "blob": "070b00c159607bd9feabe4e89f3d8969fac07dda1dacf0a64ca5a3c8ed11d4ba6ad804640000000000000001d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Remove authorization", - "1 | Target [1/2] : c159607bd9feabe4e89f3d8969fac07dda1dac", - "1 | Target [2/2] : f0a64ca5a3c8ed11d4ba6ad804", - "2 | Auth id : 100", - "3 | Auth issuer pays : True", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Identity : Remove authorization", - "1 | Target [1/2] : c159607bd9feabe4e89f3d8969fac07dda1dac", - "1 | Target [2/2] : f0a64ca5a3c8ed11d4ba6ad804", - "2 | Auth id : 100", - "3 | Auth issuer pays : True", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 144, - "name": "Identity_Remove_authorization", - "blob": "070b01aa43fe83c1c5c44bcf8aa95778c4139479db8fa2ca98bc80241cc595bcf4f42a000000000000000001d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Remove authorization", - "1 | Target [1/2] : 2GJASZYS9pvBWqQD4D81sfcNrYF6j4T8x5tvxr", - "1 | Target [2/2] : n2taDLssXn", - "2 | Auth id : 0", - "3 | Auth issuer pays : True", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Identity : Remove authorization", - "1 | Target [1/2] : 2GJASZYS9pvBWqQD4D81sfcNrYF6j4T8x5tvxr", - "1 | Target [2/2] : n2taDLssXn", - "2 | Auth id : 0", - "3 | Auth issuer pays : True", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 145, - "name": "Identity_Remove_authorization", - "blob": "070b01aa43fe83c1c5c44bcf8aa95778c4139479db8fa2ca98bc80241cc595bcf4f42a230900000000000000d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Remove authorization", - "1 | Target [1/2] : 2GJASZYS9pvBWqQD4D81sfcNrYF6j4T8x5tvxr", - "1 | Target [2/2] : n2taDLssXn", - "2 | Auth id : 2339", - "3 | Auth issuer pays : False", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Identity : Remove authorization", - "1 | Target [1/2] : 2GJASZYS9pvBWqQD4D81sfcNrYF6j4T8x5tvxr", - "1 | Target [2/2] : n2taDLssXn", - "2 | Auth id : 2339", - "3 | Auth issuer pays : False", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 146, - "name": "Identity_Gc_add_cdd_claim", - "blob": "070c31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Gc add cdd claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec" - ], - "output_expert": [ - "0 | Identity : Gc add cdd claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 147, - "name": "Identity_Gc_add_cdd_claim", - "blob": "070c31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Gc add cdd claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Identity : Gc add cdd claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 148, - "name": "Identity_Gc_add_cdd_claim", - "blob": "070c31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Gc add cdd claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Identity : Gc add cdd claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 149, - "name": "Identity_Gc_add_cdd_claim", - "blob": "070c31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Gc add cdd claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Identity : Gc add cdd claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 150, - "name": "Identity_Gc_add_cdd_claim", - "blob": "070c31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Gc add cdd claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Identity : Gc add cdd claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 151, - "name": "Identity_Gc_revoke_cdd_claim", - "blob": "070d31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Gc revoke cdd claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Identity : Gc revoke cdd claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 152, - "name": "Identity_Gc_revoke_cdd_claim", - "blob": "070d31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Gc revoke cdd claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Identity : Gc revoke cdd claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 153, - "name": "Identity_Gc_revoke_cdd_claim", - "blob": "070d31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Gc revoke cdd claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Identity : Gc revoke cdd claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 154, - "name": "Identity_Gc_revoke_cdd_claim", - "blob": "070d31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Gc revoke cdd claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Identity : Gc revoke cdd claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 155, - "name": "Identity_Gc_revoke_cdd_claim", - "blob": "070d31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Gc revoke cdd claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Identity : Gc revoke cdd claim", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 156, - "name": "Identity_Revoke_claim_by_index", - "blob": "070e31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec0000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Revoke claim by index", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Claim type : Accredited", - "3 | Scope : None", - "4 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Identity : Revoke claim by index", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Claim type : Accredited", - "3 | Scope : None", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 157, - "name": "Identity_Revoke_claim_by_index", - "blob": "070e31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec0000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Revoke claim by index", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Claim type : Accredited", - "3 | Scope : None", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Identity : Revoke claim by index", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Claim type : Accredited", - "3 | Scope : None", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 158, - "name": "Identity_Revoke_claim_by_index", - "blob": "070e31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec0100d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Revoke claim by index", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Claim type : Affiliate", - "3 | Scope : None", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Identity : Revoke claim by index", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Claim type : Affiliate", - "3 | Scope : None", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 159, - "name": "Identity_Revoke_claim_by_index", - "blob": "070e31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec0000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Revoke claim by index", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Claim type : Accredited", - "3 | Scope : None" - ], - "output_expert": [ - "0 | Identity : Revoke claim by index", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Claim type : Accredited", - "3 | Scope : None", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 160, - "name": "Identity_Revoke_claim_by_index", - "blob": "070e31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec0200d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Revoke claim by index", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Claim type : BuyLockup", - "3 | Scope : None", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Identity : Revoke claim by index", - "1 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Claim type : BuyLockup", - "3 | Scope : None", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 161, - "name": "Identity_Rotate_primary_key_to_secondary", - "blob": "070f6bc4000000000000018813000000000000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Rotate primary key to secondary", - "1 | Auth id : 50283", - "2 | Optional cdd auth id : 5000" - ], - "output_expert": [ - "0 | Identity : Rotate primary key to secondary", - "1 | Auth id : 50283", - "2 | Optional cdd auth id : 5000", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 162, - "name": "Identity_Rotate_primary_key_to_secondary", - "blob": "070f6bc400000000000001d8c9760100000000d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Rotate primary key to secondary", - "1 | Auth id : 50283", - "2 | Optional cdd auth id : 24562136", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Identity : Rotate primary key to secondary", - "1 | Auth id : 50283", - "2 | Optional cdd auth id : 24562136", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 163, - "name": "Identity_Rotate_primary_key_to_secondary", - "blob": "070f0100000000000000018813000000000000d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Rotate primary key to secondary", - "1 | Auth id : 1", - "2 | Optional cdd auth id : 5000", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Identity : Rotate primary key to secondary", - "1 | Auth id : 1", - "2 | Optional cdd auth id : 5000", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 164, - "name": "Identity_Rotate_primary_key_to_secondary", - "blob": "070f0100000000000000018813000000000000d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Rotate primary key to secondary", - "1 | Auth id : 1", - "2 | Optional cdd auth id : 5000", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Identity : Rotate primary key to secondary", - "1 | Auth id : 1", - "2 | Optional cdd auth id : 5000", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 165, - "name": "Identity_Rotate_primary_key_to_secondary", - "blob": "070f000000000000000001d8c9760100000000d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Rotate primary key to secondary", - "1 | Auth id : 0", - "2 | Optional cdd auth id : 24562136", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Identity : Rotate primary key to secondary", - "1 | Auth id : 0", - "2 | Optional cdd auth id : 24562136", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 166, - "name": "Identity_Add_secondary_keys_with_authorization", - "blob": "07100414705ead9d094ba20c780c5c50582d69171647234f9e04ea384ef9d8ee1d96e401085449434b45522d31323836335449434b45522d313238373301042050414c4c45545f4101082c44697370617463684142432c446973706174636858595a0104c4016a2627c8f422be5fc64a3d7cf8a7b8aa5799154474084db654385d9b82980140e20100000000001eece8ca2c886d56346405cf71aa8f3b26ba50697c9ef46b84f6dd16a44e26a6b99bf039e1855e86bd6d942244a17e76dcf212d863d7025a777bfb0c92d2a3620008000000000000d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Add secondary keys with authorization", - "1 | Additional keys [1/18] : 2CuiSYEpvB3jNaZEnjyy8D9gL35a8K38UyA3YE", - "1 | Additional keys [2/18] : DS94VVQTuQ", - "1 | Additional keys [3/18] : These", - "1 | Additional keys [4/18] : TICKER-12863", - "1 | Additional keys [5/18] : TICKER-12873", - "1 | Additional keys [6/18] : These", - "1 | Additional keys [7/18] : PALLET_A", - "1 | Additional keys [8/18] : These", - "1 | Additional keys [9/18] : DispatchABC", - "1 | Additional keys [10/18] : DispatchXYZ", - "1 | Additional keys [11/18] : These", - "1 | Additional keys [12/18] : c4016a2627c8f422be5fc64a3d7cf8a7b8aa57", - "1 | Additional keys [13/18] : 99154474084db654385d9b8298", - "1 | Additional keys [14/18] : 123456", - "1 | Additional keys [15/18] : 1eece8ca2c886d56346405cf71aa8f3b26ba50", - "1 | Additional keys [16/18] : 697c9ef46b84f6dd16a44e26a6b99bf039e185", - "1 | Additional keys [17/18] : 5e86bd6d942244a17e76dcf212d863d7025a77", - "1 | Additional keys [18/18] : 7bfb0c92d2a362", - "2 | Expires at : 2048", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Identity : Add secondary keys with authorization", - "1 | Additional keys [1/18] : 2CuiSYEpvB3jNaZEnjyy8D9gL35a8K38UyA3YE", - "1 | Additional keys [2/18] : DS94VVQTuQ", - "1 | Additional keys [3/18] : These", - "1 | Additional keys [4/18] : TICKER-12863", - "1 | Additional keys [5/18] : TICKER-12873", - "1 | Additional keys [6/18] : These", - "1 | Additional keys [7/18] : PALLET_A", - "1 | Additional keys [8/18] : These", - "1 | Additional keys [9/18] : DispatchABC", - "1 | Additional keys [10/18] : DispatchXYZ", - "1 | Additional keys [11/18] : These", - "1 | Additional keys [12/18] : c4016a2627c8f422be5fc64a3d7cf8a7b8aa57", - "1 | Additional keys [13/18] : 99154474084db654385d9b8298", - "1 | Additional keys [14/18] : 123456", - "1 | Additional keys [15/18] : 1eece8ca2c886d56346405cf71aa8f3b26ba50", - "1 | Additional keys [16/18] : 697c9ef46b84f6dd16a44e26a6b99bf039e185", - "1 | Additional keys [17/18] : 5e86bd6d942244a17e76dcf212d863d7025a77", - "1 | Additional keys [18/18] : 7bfb0c92d2a362", - "2 | Expires at : 2048", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 167, - "name": "Identity_Add_secondary_keys_with_authorization", - "blob": "07100414705ead9d094ba20c780c5c50582d69171647234f9e04ea384ef9d8ee1d96e401085449434b45522d31323836335449434b45522d313238373301042050414c4c45545f4101082c44697370617463684142432c446973706174636858595a0104c4016a2627c8f422be5fc64a3d7cf8a7b8aa5799154474084db654385d9b82980140e20100000000001eece8ca2c886d56346405cf71aa8f3b26ba50697c9ef46b84f6dd16a44e26a6b99bf039e1855e86bd6d942244a17e76dcf212d863d7025a777bfb0c92d2a3628000000000000000d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Add secondary keys with authorization", - "1 | Additional keys [1/18] : 2CuiSYEpvB3jNaZEnjyy8D9gL35a8K38UyA3YE", - "1 | Additional keys [2/18] : DS94VVQTuQ", - "1 | Additional keys [3/18] : These", - "1 | Additional keys [4/18] : TICKER-12863", - "1 | Additional keys [5/18] : TICKER-12873", - "1 | Additional keys [6/18] : These", - "1 | Additional keys [7/18] : PALLET_A", - "1 | Additional keys [8/18] : These", - "1 | Additional keys [9/18] : DispatchABC", - "1 | Additional keys [10/18] : DispatchXYZ", - "1 | Additional keys [11/18] : These", - "1 | Additional keys [12/18] : c4016a2627c8f422be5fc64a3d7cf8a7b8aa57", - "1 | Additional keys [13/18] : 99154474084db654385d9b8298", - "1 | Additional keys [14/18] : 123456", - "1 | Additional keys [15/18] : 1eece8ca2c886d56346405cf71aa8f3b26ba50", - "1 | Additional keys [16/18] : 697c9ef46b84f6dd16a44e26a6b99bf039e185", - "1 | Additional keys [17/18] : 5e86bd6d942244a17e76dcf212d863d7025a77", - "1 | Additional keys [18/18] : 7bfb0c92d2a362", - "2 | Expires at : 128" - ], - "output_expert": [ - "0 | Identity : Add secondary keys with authorization", - "1 | Additional keys [1/18] : 2CuiSYEpvB3jNaZEnjyy8D9gL35a8K38UyA3YE", - "1 | Additional keys [2/18] : DS94VVQTuQ", - "1 | Additional keys [3/18] : These", - "1 | Additional keys [4/18] : TICKER-12863", - "1 | Additional keys [5/18] : TICKER-12873", - "1 | Additional keys [6/18] : These", - "1 | Additional keys [7/18] : PALLET_A", - "1 | Additional keys [8/18] : These", - "1 | Additional keys [9/18] : DispatchABC", - "1 | Additional keys [10/18] : DispatchXYZ", - "1 | Additional keys [11/18] : These", - "1 | Additional keys [12/18] : c4016a2627c8f422be5fc64a3d7cf8a7b8aa57", - "1 | Additional keys [13/18] : 99154474084db654385d9b8298", - "1 | Additional keys [14/18] : 123456", - "1 | Additional keys [15/18] : 1eece8ca2c886d56346405cf71aa8f3b26ba50", - "1 | Additional keys [16/18] : 697c9ef46b84f6dd16a44e26a6b99bf039e185", - "1 | Additional keys [17/18] : 5e86bd6d942244a17e76dcf212d863d7025a77", - "1 | Additional keys [18/18] : 7bfb0c92d2a362", - "2 | Expires at : 128", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 168, - "name": "Identity_Add_secondary_keys_with_authorization", - "blob": "07100414705ead9d094ba20c780c5c50582d69171647234f9e04ea384ef9d8ee1d96e401085449434b45522d31323836335449434b45522d313238373301042050414c4c45545f4101082c44697370617463684142432c446973706174636858595a0104c4016a2627c8f422be5fc64a3d7cf8a7b8aa5799154474084db654385d9b82980140e20100000000001eece8ca2c886d56346405cf71aa8f3b26ba50697c9ef46b84f6dd16a44e26a6b99bf039e1855e86bd6d942244a17e76dcf212d863d7025a777bfb0c92d2a3620001000000000000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Add secondary keys with authorization", - "1 | Additional keys [1/18] : 2CuiSYEpvB3jNaZEnjyy8D9gL35a8K38UyA3YE", - "1 | Additional keys [2/18] : DS94VVQTuQ", - "1 | Additional keys [3/18] : These", - "1 | Additional keys [4/18] : TICKER-12863", - "1 | Additional keys [5/18] : TICKER-12873", - "1 | Additional keys [6/18] : These", - "1 | Additional keys [7/18] : PALLET_A", - "1 | Additional keys [8/18] : These", - "1 | Additional keys [9/18] : DispatchABC", - "1 | Additional keys [10/18] : DispatchXYZ", - "1 | Additional keys [11/18] : These", - "1 | Additional keys [12/18] : c4016a2627c8f422be5fc64a3d7cf8a7b8aa57", - "1 | Additional keys [13/18] : 99154474084db654385d9b8298", - "1 | Additional keys [14/18] : 123456", - "1 | Additional keys [15/18] : 1eece8ca2c886d56346405cf71aa8f3b26ba50", - "1 | Additional keys [16/18] : 697c9ef46b84f6dd16a44e26a6b99bf039e185", - "1 | Additional keys [17/18] : 5e86bd6d942244a17e76dcf212d863d7025a77", - "1 | Additional keys [18/18] : 7bfb0c92d2a362", - "2 | Expires at : 256", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Identity : Add secondary keys with authorization", - "1 | Additional keys [1/18] : 2CuiSYEpvB3jNaZEnjyy8D9gL35a8K38UyA3YE", - "1 | Additional keys [2/18] : DS94VVQTuQ", - "1 | Additional keys [3/18] : These", - "1 | Additional keys [4/18] : TICKER-12863", - "1 | Additional keys [5/18] : TICKER-12873", - "1 | Additional keys [6/18] : These", - "1 | Additional keys [7/18] : PALLET_A", - "1 | Additional keys [8/18] : These", - "1 | Additional keys [9/18] : DispatchABC", - "1 | Additional keys [10/18] : DispatchXYZ", - "1 | Additional keys [11/18] : These", - "1 | Additional keys [12/18] : c4016a2627c8f422be5fc64a3d7cf8a7b8aa57", - "1 | Additional keys [13/18] : 99154474084db654385d9b8298", - "1 | Additional keys [14/18] : 123456", - "1 | Additional keys [15/18] : 1eece8ca2c886d56346405cf71aa8f3b26ba50", - "1 | Additional keys [16/18] : 697c9ef46b84f6dd16a44e26a6b99bf039e185", - "1 | Additional keys [17/18] : 5e86bd6d942244a17e76dcf212d863d7025a77", - "1 | Additional keys [18/18] : 7bfb0c92d2a362", - "2 | Expires at : 256", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 169, - "name": "Identity_Add_secondary_keys_with_authorization", - "blob": "07100414705ead9d094ba20c780c5c50582d69171647234f9e04ea384ef9d8ee1d96e401085449434b45522d31323836335449434b45522d313238373301042050414c4c45545f4101082c44697370617463684142432c446973706174636858595a0104c4016a2627c8f422be5fc64a3d7cf8a7b8aa5799154474084db654385d9b82980140e20100000000001eece8ca2c886d56346405cf71aa8f3b26ba50697c9ef46b84f6dd16a44e26a6b99bf039e1855e86bd6d942244a17e76dcf212d863d7025a777bfb0c92d2a3620008000000000000d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Add secondary keys with authorization", - "1 | Additional keys [1/18] : 2CuiSYEpvB3jNaZEnjyy8D9gL35a8K38UyA3YE", - "1 | Additional keys [2/18] : DS94VVQTuQ", - "1 | Additional keys [3/18] : These", - "1 | Additional keys [4/18] : TICKER-12863", - "1 | Additional keys [5/18] : TICKER-12873", - "1 | Additional keys [6/18] : These", - "1 | Additional keys [7/18] : PALLET_A", - "1 | Additional keys [8/18] : These", - "1 | Additional keys [9/18] : DispatchABC", - "1 | Additional keys [10/18] : DispatchXYZ", - "1 | Additional keys [11/18] : These", - "1 | Additional keys [12/18] : c4016a2627c8f422be5fc64a3d7cf8a7b8aa57", - "1 | Additional keys [13/18] : 99154474084db654385d9b8298", - "1 | Additional keys [14/18] : 123456", - "1 | Additional keys [15/18] : 1eece8ca2c886d56346405cf71aa8f3b26ba50", - "1 | Additional keys [16/18] : 697c9ef46b84f6dd16a44e26a6b99bf039e185", - "1 | Additional keys [17/18] : 5e86bd6d942244a17e76dcf212d863d7025a77", - "1 | Additional keys [18/18] : 7bfb0c92d2a362", - "2 | Expires at : 2048", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Identity : Add secondary keys with authorization", - "1 | Additional keys [1/18] : 2CuiSYEpvB3jNaZEnjyy8D9gL35a8K38UyA3YE", - "1 | Additional keys [2/18] : DS94VVQTuQ", - "1 | Additional keys [3/18] : These", - "1 | Additional keys [4/18] : TICKER-12863", - "1 | Additional keys [5/18] : TICKER-12873", - "1 | Additional keys [6/18] : These", - "1 | Additional keys [7/18] : PALLET_A", - "1 | Additional keys [8/18] : These", - "1 | Additional keys [9/18] : DispatchABC", - "1 | Additional keys [10/18] : DispatchXYZ", - "1 | Additional keys [11/18] : These", - "1 | Additional keys [12/18] : c4016a2627c8f422be5fc64a3d7cf8a7b8aa57", - "1 | Additional keys [13/18] : 99154474084db654385d9b8298", - "1 | Additional keys [14/18] : 123456", - "1 | Additional keys [15/18] : 1eece8ca2c886d56346405cf71aa8f3b26ba50", - "1 | Additional keys [16/18] : 697c9ef46b84f6dd16a44e26a6b99bf039e185", - "1 | Additional keys [17/18] : 5e86bd6d942244a17e76dcf212d863d7025a77", - "1 | Additional keys [18/18] : 7bfb0c92d2a362", - "2 | Expires at : 2048", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 170, - "name": "Identity_Add_secondary_keys_with_authorization", - "blob": "07100414705ead9d094ba20c780c5c50582d69171647234f9e04ea384ef9d8ee1d96e401085449434b45522d31323836335449434b45522d313238373301042050414c4c45545f4101082c44697370617463684142432c446973706174636858595a0104c4016a2627c8f422be5fc64a3d7cf8a7b8aa5799154474084db654385d9b82980140e20100000000001eece8ca2c886d56346405cf71aa8f3b26ba50697c9ef46b84f6dd16a44e26a6b99bf039e1855e86bd6d942244a17e76dcf212d863d7025a777bfb0c92d2a3628000000000000000d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Add secondary keys with authorization", - "1 | Additional keys [1/18] : 2CuiSYEpvB3jNaZEnjyy8D9gL35a8K38UyA3YE", - "1 | Additional keys [2/18] : DS94VVQTuQ", - "1 | Additional keys [3/18] : These", - "1 | Additional keys [4/18] : TICKER-12863", - "1 | Additional keys [5/18] : TICKER-12873", - "1 | Additional keys [6/18] : These", - "1 | Additional keys [7/18] : PALLET_A", - "1 | Additional keys [8/18] : These", - "1 | Additional keys [9/18] : DispatchABC", - "1 | Additional keys [10/18] : DispatchXYZ", - "1 | Additional keys [11/18] : These", - "1 | Additional keys [12/18] : c4016a2627c8f422be5fc64a3d7cf8a7b8aa57", - "1 | Additional keys [13/18] : 99154474084db654385d9b8298", - "1 | Additional keys [14/18] : 123456", - "1 | Additional keys [15/18] : 1eece8ca2c886d56346405cf71aa8f3b26ba50", - "1 | Additional keys [16/18] : 697c9ef46b84f6dd16a44e26a6b99bf039e185", - "1 | Additional keys [17/18] : 5e86bd6d942244a17e76dcf212d863d7025a77", - "1 | Additional keys [18/18] : 7bfb0c92d2a362", - "2 | Expires at : 128", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Identity : Add secondary keys with authorization", - "1 | Additional keys [1/18] : 2CuiSYEpvB3jNaZEnjyy8D9gL35a8K38UyA3YE", - "1 | Additional keys [2/18] : DS94VVQTuQ", - "1 | Additional keys [3/18] : These", - "1 | Additional keys [4/18] : TICKER-12863", - "1 | Additional keys [5/18] : TICKER-12873", - "1 | Additional keys [6/18] : These", - "1 | Additional keys [7/18] : PALLET_A", - "1 | Additional keys [8/18] : These", - "1 | Additional keys [9/18] : DispatchABC", - "1 | Additional keys [10/18] : DispatchXYZ", - "1 | Additional keys [11/18] : These", - "1 | Additional keys [12/18] : c4016a2627c8f422be5fc64a3d7cf8a7b8aa57", - "1 | Additional keys [13/18] : 99154474084db654385d9b8298", - "1 | Additional keys [14/18] : 123456", - "1 | Additional keys [15/18] : 1eece8ca2c886d56346405cf71aa8f3b26ba50", - "1 | Additional keys [16/18] : 697c9ef46b84f6dd16a44e26a6b99bf039e185", - "1 | Additional keys [17/18] : 5e86bd6d942244a17e76dcf212d863d7025a77", - "1 | Additional keys [18/18] : 7bfb0c92d2a362", - "2 | Expires at : 128", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 171, - "name": "Identity_Set_secondary_key_permissions", - "blob": "07116a8500b97a5889f4ecdf68f2a4b406fec17e564b6254cc641c43c18ca62cb21c01085449434b45522d31323836335449434b45522d313238373301042050414c4c45545f4101082c44697370617463684142432c446973706174636858595a0104ec3afa636af4d0af311f6b516f8cfabc37e3000e7a918e0ae166fca21b0ef2270140e2010000000000d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Set secondary key permissions", - "1 | Key [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Key [2/2] : hbeqgL2Ukv", - "2 | Perms [1/12] : These", - "2 | Perms [2/12] : TICKER-12863", - "2 | Perms [3/12] : TICKER-12873", - "2 | Perms [4/12] : These", - "2 | Perms [5/12] : PALLET_A", - "2 | Perms [6/12] : These", - "2 | Perms [7/12] : DispatchABC", - "2 | Perms [8/12] : DispatchXYZ", - "2 | Perms [9/12] : These", - "2 | Perms [10/12] : ec3afa636af4d0af311f6b516f8cfabc37e300", - "2 | Perms [11/12] : 0e7a918e0ae166fca21b0ef227", - "2 | Perms [12/12] : 123456", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Identity : Set secondary key permissions", - "1 | Key [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Key [2/2] : hbeqgL2Ukv", - "2 | Perms [1/12] : These", - "2 | Perms [2/12] : TICKER-12863", - "2 | Perms [3/12] : TICKER-12873", - "2 | Perms [4/12] : These", - "2 | Perms [5/12] : PALLET_A", - "2 | Perms [6/12] : These", - "2 | Perms [7/12] : DispatchABC", - "2 | Perms [8/12] : DispatchXYZ", - "2 | Perms [9/12] : These", - "2 | Perms [10/12] : ec3afa636af4d0af311f6b516f8cfabc37e300", - "2 | Perms [11/12] : 0e7a918e0ae166fca21b0ef227", - "2 | Perms [12/12] : 123456", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 172, - "name": "Identity_Set_secondary_key_permissions", - "blob": "071142ed86a3b5fd55b0ec57c2112f981fbc2d91f4225759141ea0b255fd34639d7401085449434b45522d31323836335449434b45522d313238373301042050414c4c45545f4101082c44697370617463684142432c446973706174636858595a0104ec3afa636af4d0af311f6b516f8cfabc37e3000e7a918e0ae166fca21b0ef2270140e2010000000000d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Set secondary key permissions", - "1 | Key [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "1 | Key [2/2] : kvir9Rw75p", - "2 | Perms [1/12] : These", - "2 | Perms [2/12] : TICKER-12863", - "2 | Perms [3/12] : TICKER-12873", - "2 | Perms [4/12] : These", - "2 | Perms [5/12] : PALLET_A", - "2 | Perms [6/12] : These", - "2 | Perms [7/12] : DispatchABC", - "2 | Perms [8/12] : DispatchXYZ", - "2 | Perms [9/12] : These", - "2 | Perms [10/12] : ec3afa636af4d0af311f6b516f8cfabc37e300", - "2 | Perms [11/12] : 0e7a918e0ae166fca21b0ef227", - "2 | Perms [12/12] : 123456" - ], - "output_expert": [ - "0 | Identity : Set secondary key permissions", - "1 | Key [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "1 | Key [2/2] : kvir9Rw75p", - "2 | Perms [1/12] : These", - "2 | Perms [2/12] : TICKER-12863", - "2 | Perms [3/12] : TICKER-12873", - "2 | Perms [4/12] : These", - "2 | Perms [5/12] : PALLET_A", - "2 | Perms [6/12] : These", - "2 | Perms [7/12] : DispatchABC", - "2 | Perms [8/12] : DispatchXYZ", - "2 | Perms [9/12] : These", - "2 | Perms [10/12] : ec3afa636af4d0af311f6b516f8cfabc37e300", - "2 | Perms [11/12] : 0e7a918e0ae166fca21b0ef227", - "2 | Perms [12/12] : 123456", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 173, - "name": "Identity_Set_secondary_key_permissions", - "blob": "071144437e7896c15f809cbc7156673d31ecf873060385385e9c27d5ae4abc05561501085449434b45522d31323836335449434b45522d313238373301042050414c4c45545f4101082c44697370617463684142432c446973706174636858595a0104ec3afa636af4d0af311f6b516f8cfabc37e3000e7a918e0ae166fca21b0ef2270140e2010000000000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Set secondary key permissions", - "1 | Key [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | Key [2/2] : yiDWE8dFzF", - "2 | Perms [1/12] : These", - "2 | Perms [2/12] : TICKER-12863", - "2 | Perms [3/12] : TICKER-12873", - "2 | Perms [4/12] : These", - "2 | Perms [5/12] : PALLET_A", - "2 | Perms [6/12] : These", - "2 | Perms [7/12] : DispatchABC", - "2 | Perms [8/12] : DispatchXYZ", - "2 | Perms [9/12] : These", - "2 | Perms [10/12] : ec3afa636af4d0af311f6b516f8cfabc37e300", - "2 | Perms [11/12] : 0e7a918e0ae166fca21b0ef227", - "2 | Perms [12/12] : 123456", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Identity : Set secondary key permissions", - "1 | Key [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | Key [2/2] : yiDWE8dFzF", - "2 | Perms [1/12] : These", - "2 | Perms [2/12] : TICKER-12863", - "2 | Perms [3/12] : TICKER-12873", - "2 | Perms [4/12] : These", - "2 | Perms [5/12] : PALLET_A", - "2 | Perms [6/12] : These", - "2 | Perms [7/12] : DispatchABC", - "2 | Perms [8/12] : DispatchXYZ", - "2 | Perms [9/12] : These", - "2 | Perms [10/12] : ec3afa636af4d0af311f6b516f8cfabc37e300", - "2 | Perms [11/12] : 0e7a918e0ae166fca21b0ef227", - "2 | Perms [12/12] : 123456", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 174, - "name": "Identity_Set_secondary_key_permissions", - "blob": "07115cf93ef43e7f44d10f78045182931ed20d916dc1680da77e6e1e60c2f827bc7901085449434b45522d31323836335449434b45522d313238373301042050414c4c45545f4101082c44697370617463684142432c446973706174636858595a0104ec3afa636af4d0af311f6b516f8cfabc37e3000e7a918e0ae166fca21b0ef2270140e2010000000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Set secondary key permissions", - "1 | Key [1/2] : 2EYpYprRA7x9tq23MPgSiZGQ7nyg2TkNyVDEw2", - "1 | Key [2/2] : PVSHuQtD81", - "2 | Perms [1/12] : These", - "2 | Perms [2/12] : TICKER-12863", - "2 | Perms [3/12] : TICKER-12873", - "2 | Perms [4/12] : These", - "2 | Perms [5/12] : PALLET_A", - "2 | Perms [6/12] : These", - "2 | Perms [7/12] : DispatchABC", - "2 | Perms [8/12] : DispatchXYZ", - "2 | Perms [9/12] : These", - "2 | Perms [10/12] : ec3afa636af4d0af311f6b516f8cfabc37e300", - "2 | Perms [11/12] : 0e7a918e0ae166fca21b0ef227", - "2 | Perms [12/12] : 123456", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Identity : Set secondary key permissions", - "1 | Key [1/2] : 2EYpYprRA7x9tq23MPgSiZGQ7nyg2TkNyVDEw2", - "1 | Key [2/2] : PVSHuQtD81", - "2 | Perms [1/12] : These", - "2 | Perms [2/12] : TICKER-12863", - "2 | Perms [3/12] : TICKER-12873", - "2 | Perms [4/12] : These", - "2 | Perms [5/12] : PALLET_A", - "2 | Perms [6/12] : These", - "2 | Perms [7/12] : DispatchABC", - "2 | Perms [8/12] : DispatchXYZ", - "2 | Perms [9/12] : These", - "2 | Perms [10/12] : ec3afa636af4d0af311f6b516f8cfabc37e300", - "2 | Perms [11/12] : 0e7a918e0ae166fca21b0ef227", - "2 | Perms [12/12] : 123456", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 175, - "name": "Identity_Set_secondary_key_permissions", - "blob": "0711e6b9eabd5f8491bd24bb8ff940cd591871b9fb05be188713f14b32f73923df6c01085449434b45522d31323836335449434b45522d313238373301042050414c4c45545f4101082c44697370617463684142432c446973706174636858595a0104ec3afa636af4d0af311f6b516f8cfabc37e3000e7a918e0ae166fca21b0ef2270140e2010000000000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Set secondary key permissions", - "1 | Key [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | Key [2/2] : 8Aw2bPcNj9", - "2 | Perms [1/12] : These", - "2 | Perms [2/12] : TICKER-12863", - "2 | Perms [3/12] : TICKER-12873", - "2 | Perms [4/12] : These", - "2 | Perms [5/12] : PALLET_A", - "2 | Perms [6/12] : These", - "2 | Perms [7/12] : DispatchABC", - "2 | Perms [8/12] : DispatchXYZ", - "2 | Perms [9/12] : These", - "2 | Perms [10/12] : ec3afa636af4d0af311f6b516f8cfabc37e300", - "2 | Perms [11/12] : 0e7a918e0ae166fca21b0ef227", - "2 | Perms [12/12] : 123456", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Identity : Set secondary key permissions", - "1 | Key [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | Key [2/2] : 8Aw2bPcNj9", - "2 | Perms [1/12] : These", - "2 | Perms [2/12] : TICKER-12863", - "2 | Perms [3/12] : TICKER-12873", - "2 | Perms [4/12] : These", - "2 | Perms [5/12] : PALLET_A", - "2 | Perms [6/12] : These", - "2 | Perms [7/12] : DispatchABC", - "2 | Perms [8/12] : DispatchXYZ", - "2 | Perms [9/12] : These", - "2 | Perms [10/12] : ec3afa636af4d0af311f6b516f8cfabc37e300", - "2 | Perms [11/12] : 0e7a918e0ae166fca21b0ef227", - "2 | Perms [12/12] : 123456", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 176, - "name": "Identity_Remove_secondary_keys", - "blob": "071204f08b83a6d53348ae7f0d95c17aede87f42f2f32cc5825d00d38c265d30597b2ed503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Remove secondary keys", - "1 | Keys to remove [1/2] : 2HtK3EddN3XakicsaDCAH8xVqHvvaLvjBc8H3D", - "1 | Keys to remove [2/2] : d53t89oAnj", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Identity : Remove secondary keys", - "1 | Keys to remove [1/2] : 2HtK3EddN3XakicsaDCAH8xVqHvvaLvjBc8H3D", - "1 | Keys to remove [2/2] : d53t89oAnj", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 177, - "name": "Identity_Remove_secondary_keys", - "blob": "071218649d76bd5cd114e157d77907f6b08216092a10a7c8e4f2e624281e76fca63b7690d1e72cb845e95f06a352497aceccc2ae353e0a4e880da83779ecb7af781b66d22c3b1766d31cf7af6eae2dabf096e8a3b6d3c4c0647ee44270c0adfa341077f2d2e5824780249fcb826b183a0323fa1525d3d10ef2cb23cc7b9695ce078e5cb69c33c994d33e7542745a97c1488e5e4a482ed55d889acfda481059d6468854641b5f730dbdcfbd359d2f1a657701eb098e9701dbf6b236331f86f13aee1e42d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Remove secondary keys", - "1 | Keys to remove [1/12] : 2Eiqfg9f4Xi9FjzN8unSGp8tcnUrNwpEqBRm88", - "1 | Keys to remove [2/12] : t6J78mthdt", - "1 | Keys to remove [3/12] : 2FioMPDpPaj1NCSb9YRfhYy5eD8KoGto2vjw9u", - "1 | Keys to remove [4/12] : vkWwGx9WpP", - "1 | Keys to remove [5/12] : 2HCVJDmoFiQ7L4B98mEx6QpDn9qsbo8wStb93A", - "1 | Keys to remove [6/12] : XXRVj1E75F", - "1 | Keys to remove [7/12] : 2HwJLgHL4gxwfEn5MfwXhiWsKkKijs9MTqRNgy", - "1 | Keys to remove [8/12] : ipKTk1DLew", - "1 | Keys to remove [9/12] : 2GaMDgNyb6mSSgF6Gwhi3tQcUindX6uShD31A2", - "1 | Keys to remove [10/12] : iPpAEkHsxx", - "1 | Keys to remove [11/12] : 2EiB2G4NxM8E33tqeuvLbvxusUe9EmchDcixff", - "1 | Keys to remove [12/12] : YQRBhcwNoQ" - ], - "output_expert": [ - "0 | Identity : Remove secondary keys", - "1 | Keys to remove [1/12] : 2Eiqfg9f4Xi9FjzN8unSGp8tcnUrNwpEqBRm88", - "1 | Keys to remove [2/12] : t6J78mthdt", - "1 | Keys to remove [3/12] : 2FioMPDpPaj1NCSb9YRfhYy5eD8KoGto2vjw9u", - "1 | Keys to remove [4/12] : vkWwGx9WpP", - "1 | Keys to remove [5/12] : 2HCVJDmoFiQ7L4B98mEx6QpDn9qsbo8wStb93A", - "1 | Keys to remove [6/12] : XXRVj1E75F", - "1 | Keys to remove [7/12] : 2HwJLgHL4gxwfEn5MfwXhiWsKkKijs9MTqRNgy", - "1 | Keys to remove [8/12] : ipKTk1DLew", - "1 | Keys to remove [9/12] : 2GaMDgNyb6mSSgF6Gwhi3tQcUindX6uShD31A2", - "1 | Keys to remove [10/12] : iPpAEkHsxx", - "1 | Keys to remove [11/12] : 2EiB2G4NxM8E33tqeuvLbvxusUe9EmchDcixff", - "1 | Keys to remove [12/12] : YQRBhcwNoQ", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 178, - "name": "Identity_Remove_secondary_keys", - "blob": "0712186a5b5e6093822e84f18f3b97c387403b4e0c7adda2cb385fd79cbf9241b72e66746a227b177fc0b3473ce44cb9cd8d58668a949928838871cbb734edd075f83f86d5f512eb3ac237b7bc7e9697c64b036a54b51771c89c6c5273722598a8c91fe6d1ab46541fc6bdcfdd277270cc08c280dbb7fda2751f1f7fa30d17dd45f41e8c1a036c20c13bce5d86216a9bf31e6a490a6d694b34c3d77f8f22bb0daeef4d3c6201bb86068ce7c9f4fe4ac431eb36a01688f97c709be6fd14037e47b81c50d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Remove secondary keys", - "1 | Keys to remove [1/12] : 2ErNKYedfvhiMXYYya4ib8eJ2kXn66DxsP4fuc", - "1 | Keys to remove [2/12] : xP8Gv12sAG", - "1 | Keys to remove [3/12] : 2F5ZBjRz8ynZP6SNbtRESkXa3A2ES2D2bHoNYm", - "1 | Keys to remove [4/12] : 7fW5LKg1hK", - "1 | Keys to remove [5/12] : 2FVi5TuPGsphRajEkJx2cQGooArZy9ufb25B7Z", - "1 | Keys to remove [6/12] : b6hq583qwu", - "1 | Keys to remove [7/12] : 2HfZQCdj4JJRuWMbxFQreBRwW1cz368CFXR3P3", - "1 | Keys to remove [8/12] : vbFZVwUiiQ", - "1 | Keys to remove [9/12] : 2FccXvsbSY1qbSNBALpMNaB5ByJTbZuJra5i3n", - "1 | Keys to remove [10/12] : KBajHVPjwc", - "1 | Keys to remove [11/12] : 2Dp66AMF68n3ygaXMee26UeB9WRBFAmBYKomDV", - "1 | Keys to remove [12/12] : QENutiJiVJ" - ], - "output_expert": [ - "0 | Identity : Remove secondary keys", - "1 | Keys to remove [1/12] : 2ErNKYedfvhiMXYYya4ib8eJ2kXn66DxsP4fuc", - "1 | Keys to remove [2/12] : xP8Gv12sAG", - "1 | Keys to remove [3/12] : 2F5ZBjRz8ynZP6SNbtRESkXa3A2ES2D2bHoNYm", - "1 | Keys to remove [4/12] : 7fW5LKg1hK", - "1 | Keys to remove [5/12] : 2FVi5TuPGsphRajEkJx2cQGooArZy9ufb25B7Z", - "1 | Keys to remove [6/12] : b6hq583qwu", - "1 | Keys to remove [7/12] : 2HfZQCdj4JJRuWMbxFQreBRwW1cz368CFXR3P3", - "1 | Keys to remove [8/12] : vbFZVwUiiQ", - "1 | Keys to remove [9/12] : 2FccXvsbSY1qbSNBALpMNaB5ByJTbZuJra5i3n", - "1 | Keys to remove [10/12] : KBajHVPjwc", - "1 | Keys to remove [11/12] : 2Dp66AMF68n3ygaXMee26UeB9WRBFAmBYKomDV", - "1 | Keys to remove [12/12] : QENutiJiVJ", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 179, - "name": "Identity_Remove_secondary_keys", - "blob": "07121cd8a98ec1754def3fe27883f46c1d5e2d44b7a6e3356442e484d8b9adc2de83515a7b70e775d9ec2e2cbaf6bde18355dcb566950b99f1d336e47c58547cde3f00be84f84c7f433b8698f888ffd9bb1fa469adfc2512ddd72ee1fca1eec49d977126cc124e4fe7e03f78af6e1aae5d230460e80716553cc571a77361c6ab07383e543724430cc713a3d963ef588657eb5933516e8f3dfb4d381fd1c1646640985646d23cfaa492501fe5441b6ebdc71c8a42c4842937832a43e9956257a1bb581912ed1f1f411d64f62c7c37d3c27fd982800a1cb3ec3648e2498e8cb010473a6fd503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Remove secondary keys", - "1 | Keys to remove [1/14] : 2HLzpDTeVuWvNMRmdXAfZVvUHykP9Vm4fuqGy8", - "1 | Keys to remove [2/14] : eZRjVvTN2J", - "1 | Keys to remove [3/14] : 2EVZ5hm347oGHzHHBwXJgF3Xdra45L2uCLRQy9", - "1 | Keys to remove [4/14] : U6TX2V9yKk", - "1 | Keys to remove [5/14] : 2GkihcYpKKcu7rtxnh95pW9rYb4RMSsJEh1xPS", - "1 | Keys to remove [6/14] : yKiZQrH4Gb", - "1 | Keys to remove [7/14] : 2DKnYWmW9SoLRwqJGArvBXAvspEEbA9AptFk4u", - "1 | Keys to remove [8/14] : oGdFnCHWKh", - "1 | Keys to remove [9/14] : 2EMLWGYAFLdzq37dfi99sw8t7BBCK4zivmrTaH", - "1 | Keys to remove [10/14] : 8jwXtDHMgh", - "1 | Keys to remove [11/14] : 2E3mudwSEpUQCw2PyiTfjh5qN4UhHsyEqTan9G", - "1 | Keys to remove [12/14] : Nw29iFnhGN", - "1 | Keys to remove [13/14] : 2CsjQQZoijLvpu8SAWTUhUyvQVzYfQbEsrLNBi", - "1 | Keys to remove [14/14] : gXReuAwHsN", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Identity : Remove secondary keys", - "1 | Keys to remove [1/14] : 2HLzpDTeVuWvNMRmdXAfZVvUHykP9Vm4fuqGy8", - "1 | Keys to remove [2/14] : eZRjVvTN2J", - "1 | Keys to remove [3/14] : 2EVZ5hm347oGHzHHBwXJgF3Xdra45L2uCLRQy9", - "1 | Keys to remove [4/14] : U6TX2V9yKk", - "1 | Keys to remove [5/14] : 2GkihcYpKKcu7rtxnh95pW9rYb4RMSsJEh1xPS", - "1 | Keys to remove [6/14] : yKiZQrH4Gb", - "1 | Keys to remove [7/14] : 2DKnYWmW9SoLRwqJGArvBXAvspEEbA9AptFk4u", - "1 | Keys to remove [8/14] : oGdFnCHWKh", - "1 | Keys to remove [9/14] : 2EMLWGYAFLdzq37dfi99sw8t7BBCK4zivmrTaH", - "1 | Keys to remove [10/14] : 8jwXtDHMgh", - "1 | Keys to remove [11/14] : 2E3mudwSEpUQCw2PyiTfjh5qN4UhHsyEqTan9G", - "1 | Keys to remove [12/14] : Nw29iFnhGN", - "1 | Keys to remove [13/14] : 2CsjQQZoijLvpu8SAWTUhUyvQVzYfQbEsrLNBi", - "1 | Keys to remove [14/14] : gXReuAwHsN", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 180, - "name": "Identity_Remove_secondary_keys", - "blob": "07121cd8a98ec1754def3fe27883f46c1d5e2d44b7a6e3356442e484d8b9adc2de83515a7b70e775d9ec2e2cbaf6bde18355dcb566950b99f1d336e47c58547cde3f00be84f84c7f433b8698f888ffd9bb1fa469adfc2512ddd72ee1fca1eec49d977126cc124e4fe7e03f78af6e1aae5d230460e80716553cc571a77361c6ab07383e543724430cc713a3d963ef588657eb5933516e8f3dfb4d381fd1c1646640985646d23cfaa492501fe5441b6ebdc71c8a42c4842937832a43e9956257a1bb581912ed1f1f411d64f62c7c37d3c27fd982800a1cb3ec3648e2498e8cb010473a6fd5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Remove secondary keys", - "1 | Keys to remove [1/14] : 2HLzpDTeVuWvNMRmdXAfZVvUHykP9Vm4fuqGy8", - "1 | Keys to remove [2/14] : eZRjVvTN2J", - "1 | Keys to remove [3/14] : 2EVZ5hm347oGHzHHBwXJgF3Xdra45L2uCLRQy9", - "1 | Keys to remove [4/14] : U6TX2V9yKk", - "1 | Keys to remove [5/14] : 2GkihcYpKKcu7rtxnh95pW9rYb4RMSsJEh1xPS", - "1 | Keys to remove [6/14] : yKiZQrH4Gb", - "1 | Keys to remove [7/14] : 2DKnYWmW9SoLRwqJGArvBXAvspEEbA9AptFk4u", - "1 | Keys to remove [8/14] : oGdFnCHWKh", - "1 | Keys to remove [9/14] : 2EMLWGYAFLdzq37dfi99sw8t7BBCK4zivmrTaH", - "1 | Keys to remove [10/14] : 8jwXtDHMgh", - "1 | Keys to remove [11/14] : 2E3mudwSEpUQCw2PyiTfjh5qN4UhHsyEqTan9G", - "1 | Keys to remove [12/14] : Nw29iFnhGN", - "1 | Keys to remove [13/14] : 2CsjQQZoijLvpu8SAWTUhUyvQVzYfQbEsrLNBi", - "1 | Keys to remove [14/14] : gXReuAwHsN", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Identity : Remove secondary keys", - "1 | Keys to remove [1/14] : 2HLzpDTeVuWvNMRmdXAfZVvUHykP9Vm4fuqGy8", - "1 | Keys to remove [2/14] : eZRjVvTN2J", - "1 | Keys to remove [3/14] : 2EVZ5hm347oGHzHHBwXJgF3Xdra45L2uCLRQy9", - "1 | Keys to remove [4/14] : U6TX2V9yKk", - "1 | Keys to remove [5/14] : 2GkihcYpKKcu7rtxnh95pW9rYb4RMSsJEh1xPS", - "1 | Keys to remove [6/14] : yKiZQrH4Gb", - "1 | Keys to remove [7/14] : 2DKnYWmW9SoLRwqJGArvBXAvspEEbA9AptFk4u", - "1 | Keys to remove [8/14] : oGdFnCHWKh", - "1 | Keys to remove [9/14] : 2EMLWGYAFLdzq37dfi99sw8t7BBCK4zivmrTaH", - "1 | Keys to remove [10/14] : 8jwXtDHMgh", - "1 | Keys to remove [11/14] : 2E3mudwSEpUQCw2PyiTfjh5qN4UhHsyEqTan9G", - "1 | Keys to remove [12/14] : Nw29iFnhGN", - "1 | Keys to remove [13/14] : 2CsjQQZoijLvpu8SAWTUhUyvQVzYfQbEsrLNBi", - "1 | Keys to remove [14/14] : gXReuAwHsN", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 181, - "name": "Identity_Register_custom_claim_type", - "blob": "0713100d0c1323d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Register custom claim type", - "1 | Ty [1/4] : 13", - "1 | Ty [2/4] : 12", - "1 | Ty [3/4] : 19", - "1 | Ty [4/4] : 35", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Identity : Register custom claim type", - "1 | Ty [1/4] : 13", - "1 | Ty [2/4] : 12", - "1 | Ty [3/4] : 19", - "1 | Ty [4/4] : 35", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 182, - "name": "Identity_Register_custom_claim_type", - "blob": "0713100e2a0c49d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Register custom claim type", - "1 | Ty [1/4] : 14", - "1 | Ty [2/4] : 42", - "1 | Ty [3/4] : 12", - "1 | Ty [4/4] : 73" - ], - "output_expert": [ - "0 | Identity : Register custom claim type", - "1 | Ty [1/4] : 14", - "1 | Ty [2/4] : 42", - "1 | Ty [3/4] : 12", - "1 | Ty [4/4] : 73", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 183, - "name": "Identity_Register_custom_claim_type", - "blob": "071310200b200bd5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Register custom claim type", - "1 | Ty [1/4] : 32", - "1 | Ty [2/4] : 11", - "1 | Ty [3/4] : 32", - "1 | Ty [4/4] : 11", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Identity : Register custom claim type", - "1 | Ty [1/4] : 32", - "1 | Ty [2/4] : 11", - "1 | Ty [3/4] : 32", - "1 | Ty [4/4] : 11", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 184, - "name": "Identity_Register_custom_claim_type", - "blob": "0713100d0c1323d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Register custom claim type", - "1 | Ty [1/4] : 13", - "1 | Ty [2/4] : 12", - "1 | Ty [3/4] : 19", - "1 | Ty [4/4] : 35", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Identity : Register custom claim type", - "1 | Ty [1/4] : 13", - "1 | Ty [2/4] : 12", - "1 | Ty [3/4] : 19", - "1 | Ty [4/4] : 35", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 185, - "name": "Identity_Register_custom_claim_type", - "blob": "0713100c293435d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Register custom claim type", - "1 | Ty [1/4] : 12", - "1 | Ty [2/4] : 41", - "1 | Ty [3/4] : 52", - "1 | Ty [4/4] : 53" - ], - "output_expert": [ - "0 | Identity : Register custom claim type", - "1 | Ty [1/4] : 12", - "1 | Ty [2/4] : 41", - "1 | Ty [3/4] : 52", - "1 | Ty [4/4] : 53", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 186, - "name": "Identity_Cdd_register_did_with_cdd", - "blob": "07146a8500b97a5889f4ecdf68f2a4b406fec17e564b6254cc641c43c18ca62cb21c00010001000000000000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Cdd register did with cdd", - "1 | Target account [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Target account [2/2] : hbeqgL2Ukv", - "2 | Secondary keys : ", - "3 | Expiry : 256", - "4 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Identity : Cdd register did with cdd", - "1 | Target account [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Target account [2/2] : hbeqgL2Ukv", - "2 | Secondary keys : ", - "3 | Expiry : 256", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 187, - "name": "Identity_Cdd_register_did_with_cdd", - "blob": "0714e6b9eabd5f8491bd24bb8ff940cd591871b9fb05be188713f14b32f73923df6c00010008000000000000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Cdd register did with cdd", - "1 | Target account [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | Target account [2/2] : 8Aw2bPcNj9", - "2 | Secondary keys : ", - "3 | Expiry : 2048" - ], - "output_expert": [ - "0 | Identity : Cdd register did with cdd", - "1 | Target account [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | Target account [2/2] : 8Aw2bPcNj9", - "2 | Secondary keys : ", - "3 | Expiry : 2048", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 188, - "name": "Identity_Cdd_register_did_with_cdd", - "blob": "0714b673c14adc4fdaaa84b868330314bb524eb97de82eb6ad5c24401af92af33f5400010008000000000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Cdd register did with cdd", - "1 | Target account [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Target account [2/2] : 6xRJgVAa3i", - "2 | Secondary keys : ", - "3 | Expiry : 2048", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Identity : Cdd register did with cdd", - "1 | Target account [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Target account [2/2] : 6xRJgVAa3i", - "2 | Secondary keys : ", - "3 | Expiry : 2048", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 189, - "name": "Identity_Cdd_register_did_with_cdd", - "blob": "0714e6b9eabd5f8491bd24bb8ff940cd591871b9fb05be188713f14b32f73923df6c00010008000000000000d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Cdd register did with cdd", - "1 | Target account [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | Target account [2/2] : 8Aw2bPcNj9", - "2 | Secondary keys : ", - "3 | Expiry : 2048" - ], - "output_expert": [ - "0 | Identity : Cdd register did with cdd", - "1 | Target account [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | Target account [2/2] : 8Aw2bPcNj9", - "2 | Secondary keys : ", - "3 | Expiry : 2048", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 190, - "name": "Identity_Cdd_register_did_with_cdd", - "blob": "071442ed86a3b5fd55b0ec57c2112f981fbc2d91f4225759141ea0b255fd34639d740490f4bd71fa0df7f3f9942a6cb9415393181c5ab088dbfc938f425834e151647d01085449434b45522d31323836335449434b45522d313238373302042050414c4c45545f4101082c44697370617463684142432c446973706174636858595a010424d6c6a14cb5fbd12b40ac0c906718af554d0d46a1e52f5aef3245537b5a06650140e2010000000000010001000000000000d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Cdd register did with cdd", - "1 | Target account [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "1 | Target account [2/2] : kvir9Rw75p", - "2 | Secondary keys [1/14] : 2FiyhcQvBSmjENTBuootRVE4GsiUZeZne9rLc5", - "2 | Secondary keys [2/14] : Vv24GGZd9N", - "2 | Secondary keys [3/14] : These", - "2 | Secondary keys [4/14] : TICKER-12863", - "2 | Secondary keys [5/14] : TICKER-12873", - "2 | Secondary keys [6/14] : Except", - "2 | Secondary keys [7/14] : PALLET_A", - "2 | Secondary keys [8/14] : These", - "2 | Secondary keys [9/14] : DispatchABC", - "2 | Secondary keys [10/14] : DispatchXYZ", - "2 | Secondary keys [11/14] : These", - "2 | Secondary keys [12/14] : 24d6c6a14cb5fbd12b40ac0c906718af554d0d", - "2 | Secondary keys [13/14] : 46a1e52f5aef3245537b5a0665", - "2 | Secondary keys [14/14] : 123456", - "3 | Expiry : 256", - "4 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Identity : Cdd register did with cdd", - "1 | Target account [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "1 | Target account [2/2] : kvir9Rw75p", - "2 | Secondary keys [1/14] : 2FiyhcQvBSmjENTBuootRVE4GsiUZeZne9rLc5", - "2 | Secondary keys [2/14] : Vv24GGZd9N", - "2 | Secondary keys [3/14] : These", - "2 | Secondary keys [4/14] : TICKER-12863", - "2 | Secondary keys [5/14] : TICKER-12873", - "2 | Secondary keys [6/14] : Except", - "2 | Secondary keys [7/14] : PALLET_A", - "2 | Secondary keys [8/14] : These", - "2 | Secondary keys [9/14] : DispatchABC", - "2 | Secondary keys [10/14] : DispatchXYZ", - "2 | Secondary keys [11/14] : These", - "2 | Secondary keys [12/14] : 24d6c6a14cb5fbd12b40ac0c906718af554d0d", - "2 | Secondary keys [13/14] : 46a1e52f5aef3245537b5a0665", - "2 | Secondary keys [14/14] : 123456", - "3 | Expiry : 256", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 191, - "name": "Identity_Create_child_identity", - "blob": "07156a8500b97a5889f4ecdf68f2a4b406fec17e564b6254cc641c43c18ca62cb21cd503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Create child identity", - "1 | Secondary key [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Secondary key [2/2] : hbeqgL2Ukv", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Identity : Create child identity", - "1 | Secondary key [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Secondary key [2/2] : hbeqgL2Ukv", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 192, - "name": "Identity_Create_child_identity", - "blob": "07153e687768a50d36e597c2eb73c8161ef62ba3c55f6aa5ca420e76dcd08b219d26d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Create child identity", - "1 | Secondary key [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Secondary key [2/2] : kKMKAMQcg5" - ], - "output_expert": [ - "0 | Identity : Create child identity", - "1 | Secondary key [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Secondary key [2/2] : kKMKAMQcg5", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 193, - "name": "Identity_Create_child_identity", - "blob": "0715e6b9eabd5f8491bd24bb8ff940cd591871b9fb05be188713f14b32f73923df6cd503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Create child identity", - "1 | Secondary key [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | Secondary key [2/2] : 8Aw2bPcNj9", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Identity : Create child identity", - "1 | Secondary key [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | Secondary key [2/2] : 8Aw2bPcNj9", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 194, - "name": "Identity_Create_child_identity", - "blob": "071542ed86a3b5fd55b0ec57c2112f981fbc2d91f4225759141ea0b255fd34639d74d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Create child identity", - "1 | Secondary key [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "1 | Secondary key [2/2] : kvir9Rw75p", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Identity : Create child identity", - "1 | Secondary key [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "1 | Secondary key [2/2] : kvir9Rw75p", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 195, - "name": "Identity_Create_child_identity", - "blob": "0715b673c14adc4fdaaa84b868330314bb524eb97de82eb6ad5c24401af92af33f54d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Create child identity", - "1 | Secondary key [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Secondary key [2/2] : 6xRJgVAa3i", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Identity : Create child identity", - "1 | Secondary key [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Secondary key [2/2] : 6xRJgVAa3i", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 196, - "name": "Identity_Create_child_identities", - "blob": "071608f0666ac31d5443420ae4d6a94d98bccd782a4361907f8269a7f3da0c83d440366d8164256553bb120a35a03411a2ccf4352f0fc5edb74bd4814756a2d25153d44b8112e7b1ba5416e576303deb5e16f6c28e794dddfbe7d3538a539c227e0d6266bc2695bd7a3ada13dddaa9a838f55c548aea6fb12247908da75d563917e44cf663eefd245ef63dc38d8a0224f469254a3125beabdbeda741448bfce2bdfd3b2493fd3d4cc2f80cdd04c795eb62865fec560659b472e1f96efef72a7af7646c0001000000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Create child identities", - "1 | Child keys [1/12] : 2Ht824kjZcXkgfa7R1976NjN2keFsFyRruaQiS", - "1 | Child keys [2/12] : o6QwptaFci", - "1 | Child keys [3/12] : 6d8164256553bb120a35a03411a2ccf4352f0f", - "1 | Child keys [4/12] : c5edb74bd4814756a2d25153d44b8112e7b1ba", - "1 | Child keys [5/12] : 5416e576303deb5e16f6c28e794dddfbe7d353", - "1 | Child keys [6/12] : 8a539c227e0d62", - "1 | Child keys [7/12] : 2EmcsxFFR3oviLFnfEMR3VoSmGMDozoGCupsiB", - "1 | Child keys [8/12] : ttu4qTLcgY", - "1 | Child keys [9/12] : f663eefd245ef63dc38d8a0224f469254a3125", - "1 | Child keys [10/12] : beabdbeda741448bfce2bdfd3b2493fd3d4cc2", - "1 | Child keys [11/12] : f80cdd04c795eb62865fec560659b472e1f96e", - "1 | Child keys [12/12] : fef72a7af7646c", - "2 | Expires at : 256", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Identity : Create child identities", - "1 | Child keys [1/12] : 2Ht824kjZcXkgfa7R1976NjN2keFsFyRruaQiS", - "1 | Child keys [2/12] : o6QwptaFci", - "1 | Child keys [3/12] : 6d8164256553bb120a35a03411a2ccf4352f0f", - "1 | Child keys [4/12] : c5edb74bd4814756a2d25153d44b8112e7b1ba", - "1 | Child keys [5/12] : 5416e576303deb5e16f6c28e794dddfbe7d353", - "1 | Child keys [6/12] : 8a539c227e0d62", - "1 | Child keys [7/12] : 2EmcsxFFR3oviLFnfEMR3VoSmGMDozoGCupsiB", - "1 | Child keys [8/12] : ttu4qTLcgY", - "1 | Child keys [9/12] : f663eefd245ef63dc38d8a0224f469254a3125", - "1 | Child keys [10/12] : beabdbeda741448bfce2bdfd3b2493fd3d4cc2", - "1 | Child keys [11/12] : f80cdd04c795eb62865fec560659b472e1f96e", - "1 | Child keys [12/12] : fef72a7af7646c", - "2 | Expires at : 256", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 197, - "name": "Identity_Create_child_identities", - "blob": "07160c6a324b4305f1a6cf48413f9317d131dd5a4d48b3138dc3d8e2602cc8a934127210ebcda9dd86c77af446200e2599d4ae65ff8ac07299e5a2ef5963ffe78358ac7b9fb3442de97f2e8b8b8bbec14ab63da6163a4639b7f74e0d4084ed228872c57acf7f29ef2c1c056b06235699422305cefc75a251cdc5c248ddf3dc5dc5ded8672752093f5c4dde38cdd74c12c369aedc00e43905846b93ef5652f88dec7fada994c2f234cebd43fbd2d4341f2c0bd4778a1df2cb4173377d4408752017182958f7c8e41fb65d85372c5ba97e1ed1f2a9e48e4e4ae2f9ec6067311eb4a1542afdb60630133f1f236797867e0cb84fbc0da6cb267e77998c7b1387eb2f6c8838c3f13c33f9884190ae9c93c3ecf65d8953731e9764faa891d796d7f3b29dfc4c0001000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Create child identities", - "1 | Child keys [1/18] : 2ErA7r3Z6wbUX8faN6HivQ3cvNf6fKo46Lf13B", - "1 | Child keys [2/18] : 9Az1prN2VK", - "1 | Child keys [3/18] : 10ebcda9dd86c77af446200e2599d4ae65ff8a", - "1 | Child keys [4/18] : c07299e5a2ef5963ffe78358ac7b9fb3442de9", - "1 | Child keys [5/18] : 7f2e8b8b8bbec14ab63da6163a4639b7f74e0d", - "1 | Child keys [6/18] : 4084ed228872c5", - "1 | Child keys [7/18] : 2FDwapiqnT1ieMDCNWRqJ3KRMGbepWwGsJP39Y", - "1 | Child keys [8/18] : mdWeffhKoJ", - "1 | Child keys [9/18] : 672752093f5c4dde38cdd74c12c369aedc00e4", - "1 | Child keys [10/18] : 3905846b93ef5652f88dec7fada994c2f234ce", - "1 | Child keys [11/18] : bd43fbd2d4341f2c0bd4778a1df2cb4173377d", - "1 | Child keys [12/18] : 44087520171829", - "1 | Child keys [13/18] : 2ETZvYLAD9WtsDZBu84Shd9a3QfQmA7WNZqc8n", - "1 | Child keys [14/18] : bnBHvVVnMK", - "1 | Child keys [15/18] : fdb60630133f1f236797867e0cb84fbc0da6cb", - "1 | Child keys [16/18] : 267e77998c7b1387eb2f6c8838c3f13c33f988", - "1 | Child keys [17/18] : 4190ae9c93c3ecf65d8953731e9764faa891d7", - "1 | Child keys [18/18] : 96d7f3b29dfc4c", - "2 | Expires at : 256", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Identity : Create child identities", - "1 | Child keys [1/18] : 2ErA7r3Z6wbUX8faN6HivQ3cvNf6fKo46Lf13B", - "1 | Child keys [2/18] : 9Az1prN2VK", - "1 | Child keys [3/18] : 10ebcda9dd86c77af446200e2599d4ae65ff8a", - "1 | Child keys [4/18] : c07299e5a2ef5963ffe78358ac7b9fb3442de9", - "1 | Child keys [5/18] : 7f2e8b8b8bbec14ab63da6163a4639b7f74e0d", - "1 | Child keys [6/18] : 4084ed228872c5", - "1 | Child keys [7/18] : 2FDwapiqnT1ieMDCNWRqJ3KRMGbepWwGsJP39Y", - "1 | Child keys [8/18] : mdWeffhKoJ", - "1 | Child keys [9/18] : 672752093f5c4dde38cdd74c12c369aedc00e4", - "1 | Child keys [10/18] : 3905846b93ef5652f88dec7fada994c2f234ce", - "1 | Child keys [11/18] : bd43fbd2d4341f2c0bd4778a1df2cb4173377d", - "1 | Child keys [12/18] : 44087520171829", - "1 | Child keys [13/18] : 2ETZvYLAD9WtsDZBu84Shd9a3QfQmA7WNZqc8n", - "1 | Child keys [14/18] : bnBHvVVnMK", - "1 | Child keys [15/18] : fdb60630133f1f236797867e0cb84fbc0da6cb", - "1 | Child keys [16/18] : 267e77998c7b1387eb2f6c8838c3f13c33f988", - "1 | Child keys [17/18] : 4190ae9c93c3ecf65d8953731e9764faa891d7", - "1 | Child keys [18/18] : 96d7f3b29dfc4c", - "2 | Expires at : 256", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 198, - "name": "Identity_Create_child_identities", - "blob": "0716000001000000000000d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Create child identities", - "1 | Child keys : ", - "2 | Expires at : 256", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Identity : Create child identities", - "1 | Child keys : ", - "2 | Expires at : 256", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 199, - "name": "Identity_Create_child_identities", - "blob": "0716043569eff23e4e0da1b383486ef0d7e8badc6fa47efbb552ae7ced3f9b2bfb969c496dc91c39c86c8b961f2e5b652778c1d82df3a08369293b420efb6150c4ab017b63f55a284c39750cf501b82f4ec4038c914d698b3787438f3a70ceb88b29310001000000000000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Create child identities", - "1 | Child keys [1/6] : 2Dex7Ms6q5GWRsUJ4BkcE9j8XShjKjJ7PH3obF", - "1 | Child keys [2/6] : rZr34exEGo", - "1 | Child keys [3/6] : 496dc91c39c86c8b961f2e5b652778c1d82df3", - "1 | Child keys [4/6] : a08369293b420efb6150c4ab017b63f55a284c", - "1 | Child keys [5/6] : 39750cf501b82f4ec4038c914d698b3787438f", - "1 | Child keys [6/6] : 3a70ceb88b2931", - "2 | Expires at : 256", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Identity : Create child identities", - "1 | Child keys [1/6] : 2Dex7Ms6q5GWRsUJ4BkcE9j8XShjKjJ7PH3obF", - "1 | Child keys [2/6] : rZr34exEGo", - "1 | Child keys [3/6] : 496dc91c39c86c8b961f2e5b652778c1d82df3", - "1 | Child keys [4/6] : a08369293b420efb6150c4ab017b63f55a284c", - "1 | Child keys [5/6] : 39750cf501b82f4ec4038c914d698b3787438f", - "1 | Child keys [6/6] : 3a70ceb88b2931", - "2 | Expires at : 256", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 200, - "name": "Identity_Create_child_identities", - "blob": "0716008000000000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Create child identities", - "1 | Child keys : ", - "2 | Expires at : 128", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Identity : Create child identities", - "1 | Child keys : ", - "2 | Expires at : 128", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 201, - "name": "Identity_Unlink_child_identity", - "blob": "071731c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Unlink child identity", - "1 | Child did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Child did [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Identity : Unlink child identity", - "1 | Child did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Child did [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 202, - "name": "Identity_Unlink_child_identity", - "blob": "071731c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Unlink child identity", - "1 | Child did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Child did [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Identity : Unlink child identity", - "1 | Child did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Child did [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 203, - "name": "Identity_Unlink_child_identity", - "blob": "071731c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Unlink child identity", - "1 | Child did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Child did [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Identity : Unlink child identity", - "1 | Child did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Child did [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 204, - "name": "Identity_Unlink_child_identity", - "blob": "071731c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Unlink child identity", - "1 | Child did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Child did [2/2] : 258ab3f4314e37a4eb089601ec" - ], - "output_expert": [ - "0 | Identity : Unlink child identity", - "1 | Child did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Child did [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 205, - "name": "Identity_Unlink_child_identity", - "blob": "071731c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Identity : Unlink child identity", - "1 | Child did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Child did [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Identity : Unlink child identity", - "1 | Child did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Child did [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 206, - "name": "Cddserviceproviders_Set_active_members_limit", - "blob": "08002a000000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Cddserviceproviders : Set active members limit", - "1 | Limit : 42", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Cddserviceproviders : Set active members limit", - "1 | Limit : 42", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 207, - "name": "Cddserviceproviders_Set_active_members_limit", - "blob": "08000c000000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Cddserviceproviders : Set active members limit", - "1 | Limit : 12", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Cddserviceproviders : Set active members limit", - "1 | Limit : 12", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 208, - "name": "Cddserviceproviders_Set_active_members_limit", - "blob": "08000c000000d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Cddserviceproviders : Set active members limit", - "1 | Limit : 12" - ], - "output_expert": [ - "0 | Cddserviceproviders : Set active members limit", - "1 | Limit : 12", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 209, - "name": "Cddserviceproviders_Set_active_members_limit", - "blob": "08000f000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Cddserviceproviders : Set active members limit", - "1 | Limit : 15", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Cddserviceproviders : Set active members limit", - "1 | Limit : 15", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 210, - "name": "Cddserviceproviders_Set_active_members_limit", - "blob": "08000c000000d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Cddserviceproviders : Set active members limit", - "1 | Limit : 12", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Cddserviceproviders : Set active members limit", - "1 | Limit : 12", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 211, - "name": "Cddserviceproviders_Disable_member", - "blob": "080131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec010008000000000000010008000000000000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Cddserviceproviders : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 2048", - "3 | At : 2048" - ], - "output_expert": [ - "0 | Cddserviceproviders : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 2048", - "3 | At : 2048", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 212, - "name": "Cddserviceproviders_Disable_member", - "blob": "080131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec018000000000000000010008000000000000d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Cddserviceproviders : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 128", - "3 | At : 2048", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Cddserviceproviders : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 128", - "3 | At : 2048", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 213, - "name": "Cddserviceproviders_Disable_member", - "blob": "080131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec018000000000000000018000000000000000d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Cddserviceproviders : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 128", - "3 | At : 128", - "4 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Cddserviceproviders : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 128", - "3 | At : 128", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 214, - "name": "Cddserviceproviders_Disable_member", - "blob": "080131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec010001000000000000010001000000000000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Cddserviceproviders : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 256", - "3 | At : 256", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Cddserviceproviders : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 256", - "3 | At : 256", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 215, - "name": "Cddserviceproviders_Disable_member", - "blob": "080131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec010008000000000000018000000000000000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Cddserviceproviders : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 2048", - "3 | At : 128" - ], - "output_expert": [ - "0 | Cddserviceproviders : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 2048", - "3 | At : 128", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 216, - "name": "Cddserviceproviders_Add_member", - "blob": "080231c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Cddserviceproviders : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Cddserviceproviders : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 217, - "name": "Cddserviceproviders_Add_member", - "blob": "080231c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Cddserviceproviders : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Cddserviceproviders : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 218, - "name": "Cddserviceproviders_Add_member", - "blob": "080231c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Cddserviceproviders : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Cddserviceproviders : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 219, - "name": "Cddserviceproviders_Add_member", - "blob": "080231c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Cddserviceproviders : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Cddserviceproviders : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 220, - "name": "Cddserviceproviders_Add_member", - "blob": "080231c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Cddserviceproviders : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Cddserviceproviders : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 221, - "name": "Cddserviceproviders_Remove_member", - "blob": "080331c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Cddserviceproviders : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Cddserviceproviders : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 222, - "name": "Cddserviceproviders_Remove_member", - "blob": "080331c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Cddserviceproviders : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Cddserviceproviders : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 223, - "name": "Cddserviceproviders_Remove_member", - "blob": "080331c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Cddserviceproviders : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Cddserviceproviders : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 224, - "name": "Cddserviceproviders_Remove_member", - "blob": "080331c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Cddserviceproviders : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Cddserviceproviders : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 225, - "name": "Cddserviceproviders_Remove_member", - "blob": "080331c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Cddserviceproviders : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Cddserviceproviders : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 226, - "name": "Cddserviceproviders_Swap_member", - "blob": "080431c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Cddserviceproviders : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Cddserviceproviders : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 227, - "name": "Cddserviceproviders_Swap_member", - "blob": "080431c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Cddserviceproviders : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Cddserviceproviders : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 228, - "name": "Cddserviceproviders_Swap_member", - "blob": "080431c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Cddserviceproviders : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Cddserviceproviders : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 229, - "name": "Cddserviceproviders_Swap_member", - "blob": "080431c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Cddserviceproviders : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Cddserviceproviders : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 230, - "name": "Cddserviceproviders_Swap_member", - "blob": "080431c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Cddserviceproviders : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Cddserviceproviders : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 231, - "name": "Cddserviceproviders_Reset_members", - "blob": "080504129c4e63ed28bdecce1fb856624cf5984bd020f7aef0f09c3325d9a7ba87e599d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Cddserviceproviders : Reset members", - "1 | Members [1/2] : 129c4e63ed28bdecce1fb856624cf5984bd020", - "1 | Members [2/2] : f7aef0f09c3325d9a7ba87e599", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Cddserviceproviders : Reset members", - "1 | Members [1/2] : 129c4e63ed28bdecce1fb856624cf5984bd020", - "1 | Members [2/2] : f7aef0f09c3325d9a7ba87e599", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 232, - "name": "Cddserviceproviders_Reset_members", - "blob": "080504129c4e63ed28bdecce1fb856624cf5984bd020f7aef0f09c3325d9a7ba87e599d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Cddserviceproviders : Reset members", - "1 | Members [1/2] : 129c4e63ed28bdecce1fb856624cf5984bd020", - "1 | Members [2/2] : f7aef0f09c3325d9a7ba87e599", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Cddserviceproviders : Reset members", - "1 | Members [1/2] : 129c4e63ed28bdecce1fb856624cf5984bd020", - "1 | Members [2/2] : f7aef0f09c3325d9a7ba87e599", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 233, - "name": "Cddserviceproviders_Reset_members", - "blob": "080500d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Cddserviceproviders : Reset members", - "1 | Members : ", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Cddserviceproviders : Reset members", - "1 | Members : ", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 234, - "name": "Cddserviceproviders_Reset_members", - "blob": "080504129c4e63ed28bdecce1fb856624cf5984bd020f7aef0f09c3325d9a7ba87e599d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Cddserviceproviders : Reset members", - "1 | Members [1/2] : 129c4e63ed28bdecce1fb856624cf5984bd020", - "1 | Members [2/2] : f7aef0f09c3325d9a7ba87e599", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Cddserviceproviders : Reset members", - "1 | Members [1/2] : 129c4e63ed28bdecce1fb856624cf5984bd020", - "1 | Members [2/2] : f7aef0f09c3325d9a7ba87e599", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 235, - "name": "Cddserviceproviders_Reset_members", - "blob": "08050c0d7078452aae308d36314304c23bac28dd7038266e9f6b86dad890f374f6b3d7096f2a8025fe32c45f5bf7c6b37f916a05c3348983e174ff68b9190f423511df41a1ab09629f361c5b830f8520048262acb45468a38d6ce3ea20626580cec568d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Cddserviceproviders : Reset members", - "1 | Members [1/6] : 0d7078452aae308d36314304c23bac28dd7038", - "1 | Members [2/6] : 266e9f6b86dad890f374f6b3d7", - "1 | Members [3/6] : 096f2a8025fe32c45f5bf7c6b37f916a05c334", - "1 | Members [4/6] : 8983e174ff68b9190f423511df", - "1 | Members [5/6] : 41a1ab09629f361c5b830f8520048262acb454", - "1 | Members [6/6] : 68a38d6ce3ea20626580cec568", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Cddserviceproviders : Reset members", - "1 | Members [1/6] : 0d7078452aae308d36314304c23bac28dd7038", - "1 | Members [2/6] : 266e9f6b86dad890f374f6b3d7", - "1 | Members [3/6] : 096f2a8025fe32c45f5bf7c6b37f916a05c334", - "1 | Members [4/6] : 8983e174ff68b9190f423511df", - "1 | Members [5/6] : 41a1ab09629f361c5b830f8520048262acb454", - "1 | Members [6/6] : 68a38d6ce3ea20626580cec568", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 236, - "name": "Cddserviceproviders_Abdicate_membership", - "blob": "0806d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Cddserviceproviders : Abdicate membership", - "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "1 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Cddserviceproviders : Abdicate membership", - "1 | Chain : Polymesh", - "2 | Nonce : 2339", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 237, - "name": "Cddserviceproviders_Abdicate_membership", - "blob": "0806d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Cddserviceproviders : Abdicate membership", - "1 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Cddserviceproviders : Abdicate membership", - "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip : POLYX 1234.56789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 238, - "name": "Cddserviceproviders_Abdicate_membership", - "blob": "0806d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Cddserviceproviders : Abdicate membership", - "1 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Cddserviceproviders : Abdicate membership", - "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip : POLYX 1234.56789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 239, - "name": "Cddserviceproviders_Abdicate_membership", - "blob": "0806d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Cddserviceproviders : Abdicate membership", - "1 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Cddserviceproviders : Abdicate membership", - "1 | Chain : Polymesh", - "2 | Nonce : 2339", - "3 | Tip : POLYX 5552342.355555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 240, - "name": "Cddserviceproviders_Abdicate_membership", - "blob": "0806d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Cddserviceproviders : Abdicate membership", - "1 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Cddserviceproviders : Abdicate membership", - "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip : POLYX 1234.56789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 241, - "name": "Polymeshcommittee_Set_vote_threshold", - "blob": "09009d1c000034300000d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcommittee : Set vote threshold", - "1 | N : 7325", - "2 | D : 12340" - ], - "output_expert": [ - "0 | Polymeshcommittee : Set vote threshold", - "1 | N : 7325", - "2 | D : 12340", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 242, - "name": "Polymeshcommittee_Set_vote_threshold", - "blob": "09003430000000000000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcommittee : Set vote threshold", - "1 | N : 12340", - "2 | D : 0", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Polymeshcommittee : Set vote threshold", - "1 | N : 12340", - "2 | D : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 243, - "name": "Polymeshcommittee_Set_vote_threshold", - "blob": "0900f7010000f7010000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcommittee : Set vote threshold", - "1 | N : 503", - "2 | D : 503", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Polymeshcommittee : Set vote threshold", - "1 | N : 503", - "2 | D : 503", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 244, - "name": "Polymeshcommittee_Set_vote_threshold", - "blob": "09000000000034300000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcommittee : Set vote threshold", - "1 | N : 0", - "2 | D : 12340", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Polymeshcommittee : Set vote threshold", - "1 | N : 0", - "2 | D : 12340", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 245, - "name": "Polymeshcommittee_Set_vote_threshold", - "blob": "09009d1c000000000000d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcommittee : Set vote threshold", - "1 | N : 7325", - "2 | D : 0", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Polymeshcommittee : Set vote threshold", - "1 | N : 7325", - "2 | D : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 246, - "name": "Polymeshcommittee_Set_release_coordinator", - "blob": "090131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcommittee : Set release coordinator", - "1 | Id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Polymeshcommittee : Set release coordinator", - "1 | Id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 247, - "name": "Polymeshcommittee_Set_release_coordinator", - "blob": "090131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcommittee : Set release coordinator", - "1 | Id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Polymeshcommittee : Set release coordinator", - "1 | Id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 248, - "name": "Polymeshcommittee_Set_release_coordinator", - "blob": "090131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcommittee : Set release coordinator", - "1 | Id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Polymeshcommittee : Set release coordinator", - "1 | Id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 249, - "name": "Polymeshcommittee_Set_release_coordinator", - "blob": "090131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcommittee : Set release coordinator", - "1 | Id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Polymeshcommittee : Set release coordinator", - "1 | Id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 250, - "name": "Polymeshcommittee_Set_release_coordinator", - "blob": "090131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcommittee : Set release coordinator", - "1 | Id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Polymeshcommittee : Set release coordinator", - "1 | Id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 251, - "name": "Polymeshcommittee_Set_expires_after", - "blob": "090200a1860100d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcommittee : Set expires after", - "1 | Expiry : 100001", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Polymeshcommittee : Set expires after", - "1 | Expiry : 100001", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 252, - "name": "Polymeshcommittee_Set_expires_after", - "blob": "090201d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcommittee : Set expires after", - "1 | Expiry : None", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Polymeshcommittee : Set expires after", - "1 | Expiry : None", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 253, - "name": "Polymeshcommittee_Set_expires_after", - "blob": "090200a1860100d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcommittee : Set expires after", - "1 | Expiry : 100001", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Polymeshcommittee : Set expires after", - "1 | Expiry : 100001", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 254, - "name": "Polymeshcommittee_Set_expires_after", - "blob": "090201d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcommittee : Set expires after", - "1 | Expiry : None", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Polymeshcommittee : Set expires after", - "1 | Expiry : None", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 255, - "name": "Polymeshcommittee_Set_expires_after", - "blob": "090200a1860100d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcommittee : Set expires after", - "1 | Expiry : 100001" - ], - "output_expert": [ - "0 | Polymeshcommittee : Set expires after", - "1 | Expiry : 100001", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 256, - "name": "Polymeshcommittee_Vote_or_propose", - "blob": "0903010000083434d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcommittee : Vote or propose", - "1 | Approve : True", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Polymeshcommittee : Vote or propose", - "1 | Approve : True", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 257, - "name": "Polymeshcommittee_Vote_or_propose", - "blob": "0903000000083434d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcommittee : Vote or propose", - "1 | Approve : False", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Polymeshcommittee : Vote or propose", - "1 | Approve : False", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 258, - "name": "Polymeshcommittee_Vote_or_propose", - "blob": "0903000000083434d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcommittee : Vote or propose", - "1 | Approve : False", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434" - ], - "output_expert": [ - "0 | Polymeshcommittee : Vote or propose", - "1 | Approve : False", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 259, - "name": "Polymeshcommittee_Vote_or_propose", - "blob": "0903000000083434d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcommittee : Vote or propose", - "1 | Approve : False", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Polymeshcommittee : Vote or propose", - "1 | Approve : False", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 260, - "name": "Polymeshcommittee_Vote_or_propose", - "blob": "0903000000083434d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcommittee : Vote or propose", - "1 | Approve : False", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Polymeshcommittee : Vote or propose", - "1 | Approve : False", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 261, - "name": "Polymeshcommittee_Vote", - "blob": "09046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063db03000001d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 987", - "3 | Approve : True", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Polymeshcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 987", - "3 | Approve : True", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 262, - "name": "Polymeshcommittee_Vote", - "blob": "09046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40630000000001d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 0", - "3 | Approve : True" - ], - "output_expert": [ - "0 | Polymeshcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 0", - "3 | Approve : True", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 263, - "name": "Polymeshcommittee_Vote", - "blob": "09046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40634930000001d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 12361", - "3 | Approve : True", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Polymeshcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 12361", - "3 | Approve : True", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 264, - "name": "Polymeshcommittee_Vote", - "blob": "09046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063db03000001d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 987", - "3 | Approve : True" - ], - "output_expert": [ - "0 | Polymeshcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 987", - "3 | Approve : True", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 265, - "name": "Polymeshcommittee_Vote", - "blob": "09046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063f3e0010000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 123123", - "3 | Approve : False", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Polymeshcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 123123", - "3 | Approve : False", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 266, - "name": "Committeemembership_Set_active_members_limit", - "blob": "0a0007000000d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Committeemembership : Set active members limit", - "1 | Limit : 7" - ], - "output_expert": [ - "0 | Committeemembership : Set active members limit", - "1 | Limit : 7", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 267, - "name": "Committeemembership_Set_active_members_limit", - "blob": "0a000f000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Committeemembership : Set active members limit", - "1 | Limit : 15", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Committeemembership : Set active members limit", - "1 | Limit : 15", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 268, - "name": "Committeemembership_Set_active_members_limit", - "blob": "0a0000000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Committeemembership : Set active members limit", - "1 | Limit : 0", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Committeemembership : Set active members limit", - "1 | Limit : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 269, - "name": "Committeemembership_Set_active_members_limit", - "blob": "0a002a000000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Committeemembership : Set active members limit", - "1 | Limit : 42", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Committeemembership : Set active members limit", - "1 | Limit : 42", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 270, - "name": "Committeemembership_Set_active_members_limit", - "blob": "0a000c000000d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Committeemembership : Set active members limit", - "1 | Limit : 12", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Committeemembership : Set active members limit", - "1 | Limit : 12", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 271, - "name": "Committeemembership_Disable_member", - "blob": "0a0131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec010008000000000000010001000000000000d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Committeemembership : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 2048", - "3 | At : 256", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Committeemembership : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 2048", - "3 | At : 256", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 272, - "name": "Committeemembership_Disable_member", - "blob": "0a0131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec010008000000000000010008000000000000d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Committeemembership : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 2048", - "3 | At : 2048", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Committeemembership : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 2048", - "3 | At : 2048", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 273, - "name": "Committeemembership_Disable_member", - "blob": "0a0131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec010008000000000000018000000000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Committeemembership : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 2048", - "3 | At : 128", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Committeemembership : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 2048", - "3 | At : 128", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 274, - "name": "Committeemembership_Disable_member", - "blob": "0a0131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec018000000000000000010001000000000000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Committeemembership : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 128", - "3 | At : 256", - "4 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Committeemembership : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 128", - "3 | At : 256", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 275, - "name": "Committeemembership_Disable_member", - "blob": "0a0131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec010008000000000000010001000000000000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Committeemembership : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 2048", - "3 | At : 256", - "4 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Committeemembership : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 2048", - "3 | At : 256", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 276, - "name": "Committeemembership_Add_member", - "blob": "0a0231c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Committeemembership : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Committeemembership : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 277, - "name": "Committeemembership_Add_member", - "blob": "0a0231c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Committeemembership : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Committeemembership : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 278, - "name": "Committeemembership_Add_member", - "blob": "0a0231c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Committeemembership : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec" - ], - "output_expert": [ - "0 | Committeemembership : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 279, - "name": "Committeemembership_Add_member", - "blob": "0a0231c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Committeemembership : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Committeemembership : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 280, - "name": "Committeemembership_Add_member", - "blob": "0a0231c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Committeemembership : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Committeemembership : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 281, - "name": "Committeemembership_Remove_member", - "blob": "0a0331c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Committeemembership : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec" - ], - "output_expert": [ - "0 | Committeemembership : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 282, - "name": "Committeemembership_Remove_member", - "blob": "0a0331c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Committeemembership : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec" - ], - "output_expert": [ - "0 | Committeemembership : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 283, - "name": "Committeemembership_Remove_member", - "blob": "0a0331c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Committeemembership : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Committeemembership : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 284, - "name": "Committeemembership_Remove_member", - "blob": "0a0331c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Committeemembership : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Committeemembership : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 285, - "name": "Committeemembership_Remove_member", - "blob": "0a0331c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Committeemembership : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Committeemembership : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 286, - "name": "Committeemembership_Swap_member", - "blob": "0a0431c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Committeemembership : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Committeemembership : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 287, - "name": "Committeemembership_Swap_member", - "blob": "0a0431c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Committeemembership : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Committeemembership : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 288, - "name": "Committeemembership_Swap_member", - "blob": "0a0431c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Committeemembership : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Committeemembership : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 289, - "name": "Committeemembership_Swap_member", - "blob": "0a0431c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Committeemembership : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Committeemembership : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 290, - "name": "Committeemembership_Swap_member", - "blob": "0a0431c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Committeemembership : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Committeemembership : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 291, - "name": "Committeemembership_Reset_members", - "blob": "0a0504129c4e63ed28bdecce1fb856624cf5984bd020f7aef0f09c3325d9a7ba87e599d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Committeemembership : Reset members", - "1 | Members [1/2] : 129c4e63ed28bdecce1fb856624cf5984bd020", - "1 | Members [2/2] : f7aef0f09c3325d9a7ba87e599", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Committeemembership : Reset members", - "1 | Members [1/2] : 129c4e63ed28bdecce1fb856624cf5984bd020", - "1 | Members [2/2] : f7aef0f09c3325d9a7ba87e599", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 292, - "name": "Committeemembership_Reset_members", - "blob": "0a0500d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Committeemembership : Reset members", - "1 | Members : ", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Committeemembership : Reset members", - "1 | Members : ", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 293, - "name": "Committeemembership_Reset_members", - "blob": "0a0504129c4e63ed28bdecce1fb856624cf5984bd020f7aef0f09c3325d9a7ba87e599d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Committeemembership : Reset members", - "1 | Members [1/2] : 129c4e63ed28bdecce1fb856624cf5984bd020", - "1 | Members [2/2] : f7aef0f09c3325d9a7ba87e599", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Committeemembership : Reset members", - "1 | Members [1/2] : 129c4e63ed28bdecce1fb856624cf5984bd020", - "1 | Members [2/2] : f7aef0f09c3325d9a7ba87e599", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 294, - "name": "Committeemembership_Reset_members", - "blob": "0a0504129c4e63ed28bdecce1fb856624cf5984bd020f7aef0f09c3325d9a7ba87e599d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Committeemembership : Reset members", - "1 | Members [1/2] : 129c4e63ed28bdecce1fb856624cf5984bd020", - "1 | Members [2/2] : f7aef0f09c3325d9a7ba87e599", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Committeemembership : Reset members", - "1 | Members [1/2] : 129c4e63ed28bdecce1fb856624cf5984bd020", - "1 | Members [2/2] : f7aef0f09c3325d9a7ba87e599", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 295, - "name": "Committeemembership_Reset_members", - "blob": "0a050c0d7078452aae308d36314304c23bac28dd7038266e9f6b86dad890f374f6b3d7096f2a8025fe32c45f5bf7c6b37f916a05c3348983e174ff68b9190f423511df41a1ab09629f361c5b830f8520048262acb45468a38d6ce3ea20626580cec568d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Committeemembership : Reset members", - "1 | Members [1/6] : 0d7078452aae308d36314304c23bac28dd7038", - "1 | Members [2/6] : 266e9f6b86dad890f374f6b3d7", - "1 | Members [3/6] : 096f2a8025fe32c45f5bf7c6b37f916a05c334", - "1 | Members [4/6] : 8983e174ff68b9190f423511df", - "1 | Members [5/6] : 41a1ab09629f361c5b830f8520048262acb454", - "1 | Members [6/6] : 68a38d6ce3ea20626580cec568", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Committeemembership : Reset members", - "1 | Members [1/6] : 0d7078452aae308d36314304c23bac28dd7038", - "1 | Members [2/6] : 266e9f6b86dad890f374f6b3d7", - "1 | Members [3/6] : 096f2a8025fe32c45f5bf7c6b37f916a05c334", - "1 | Members [4/6] : 8983e174ff68b9190f423511df", - "1 | Members [5/6] : 41a1ab09629f361c5b830f8520048262acb454", - "1 | Members [6/6] : 68a38d6ce3ea20626580cec568", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 296, - "name": "Committeemembership_Abdicate_membership", - "blob": "0a06d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Committeemembership : Abdicate membership", - "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "1 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Committeemembership : Abdicate membership", - "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 297, - "name": "Committeemembership_Abdicate_membership", - "blob": "0a06d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Committeemembership : Abdicate membership" - ], - "output_expert": [ - "0 | Committeemembership : Abdicate membership", - "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "5 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 298, - "name": "Committeemembership_Abdicate_membership", - "blob": "0a06d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Committeemembership : Abdicate membership", - "1 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Committeemembership : Abdicate membership", - "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Tip : POLYX 55.555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 299, - "name": "Committeemembership_Abdicate_membership", - "blob": "0a06d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Committeemembership : Abdicate membership", - "1 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Committeemembership : Abdicate membership", - "1 | Chain : Polymesh", - "2 | Nonce : 100", - "3 | Tip : POLYX 55.555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 300, - "name": "Committeemembership_Abdicate_membership", - "blob": "0a06d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Committeemembership : Abdicate membership", - "1 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Committeemembership : Abdicate membership", - "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip : POLYX 5552342.355555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 301, - "name": "Technicalcommittee_Set_vote_threshold", - "blob": "0b0034300000f7010000d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommittee : Set vote threshold", - "1 | N : 12340", - "2 | D : 503", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Technicalcommittee : Set vote threshold", - "1 | N : 12340", - "2 | D : 503", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 302, - "name": "Technicalcommittee_Set_vote_threshold", - "blob": "0b00d304000034300000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommittee : Set vote threshold", - "1 | N : 1235", - "2 | D : 12340", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Technicalcommittee : Set vote threshold", - "1 | N : 1235", - "2 | D : 12340", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 303, - "name": "Technicalcommittee_Set_vote_threshold", - "blob": "0b0000000000f7010000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommittee : Set vote threshold", - "1 | N : 0", - "2 | D : 503", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Technicalcommittee : Set vote threshold", - "1 | N : 0", - "2 | D : 503", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 304, - "name": "Technicalcommittee_Set_vote_threshold", - "blob": "0b00f701000000000000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommittee : Set vote threshold", - "1 | N : 503", - "2 | D : 0", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Technicalcommittee : Set vote threshold", - "1 | N : 503", - "2 | D : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 305, - "name": "Technicalcommittee_Set_vote_threshold", - "blob": "0b00d3040000f7010000d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommittee : Set vote threshold", - "1 | N : 1235", - "2 | D : 503", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Technicalcommittee : Set vote threshold", - "1 | N : 1235", - "2 | D : 503", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 306, - "name": "Technicalcommittee_Set_release_coordinator", - "blob": "0b0131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommittee : Set release coordinator", - "1 | Id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Technicalcommittee : Set release coordinator", - "1 | Id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 307, - "name": "Technicalcommittee_Set_release_coordinator", - "blob": "0b0131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommittee : Set release coordinator", - "1 | Id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Technicalcommittee : Set release coordinator", - "1 | Id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 308, - "name": "Technicalcommittee_Set_release_coordinator", - "blob": "0b0131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommittee : Set release coordinator", - "1 | Id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Technicalcommittee : Set release coordinator", - "1 | Id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 309, - "name": "Technicalcommittee_Set_release_coordinator", - "blob": "0b0131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommittee : Set release coordinator", - "1 | Id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Technicalcommittee : Set release coordinator", - "1 | Id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 310, - "name": "Technicalcommittee_Set_release_coordinator", - "blob": "0b0131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommittee : Set release coordinator", - "1 | Id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Technicalcommittee : Set release coordinator", - "1 | Id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 311, - "name": "Technicalcommittee_Set_expires_after", - "blob": "0b0200a1860100d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommittee : Set expires after", - "1 | Expiry : 100001", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Technicalcommittee : Set expires after", - "1 | Expiry : 100001", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 312, - "name": "Technicalcommittee_Set_expires_after", - "blob": "0b0201d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommittee : Set expires after", - "1 | Expiry : None", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Technicalcommittee : Set expires after", - "1 | Expiry : None", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 313, - "name": "Technicalcommittee_Set_expires_after", - "blob": "0b0200a1860100d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommittee : Set expires after", - "1 | Expiry : 100001", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Technicalcommittee : Set expires after", - "1 | Expiry : 100001", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 314, - "name": "Technicalcommittee_Set_expires_after", - "blob": "0b0201d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommittee : Set expires after", - "1 | Expiry : None", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Technicalcommittee : Set expires after", - "1 | Expiry : None", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 315, - "name": "Technicalcommittee_Set_expires_after", - "blob": "0b0200a1860100d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommittee : Set expires after", - "1 | Expiry : 100001", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Technicalcommittee : Set expires after", - "1 | Expiry : 100001", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 316, - "name": "Technicalcommittee_Vote_or_propose", - "blob": "0b03000000083434d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommittee : Vote or propose", - "1 | Approve : False", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Technicalcommittee : Vote or propose", - "1 | Approve : False", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 317, - "name": "Technicalcommittee_Vote_or_propose", - "blob": "0b03000000083434d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommittee : Vote or propose", - "1 | Approve : False", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Technicalcommittee : Vote or propose", - "1 | Approve : False", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 318, - "name": "Technicalcommittee_Vote_or_propose", - "blob": "0b03000000083434d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommittee : Vote or propose", - "1 | Approve : False", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Technicalcommittee : Vote or propose", - "1 | Approve : False", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 319, - "name": "Technicalcommittee_Vote_or_propose", - "blob": "0b03000000083434d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommittee : Vote or propose", - "1 | Approve : False", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434" - ], - "output_expert": [ - "0 | Technicalcommittee : Vote or propose", - "1 | Approve : False", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 320, - "name": "Technicalcommittee_Vote_or_propose", - "blob": "0b03000000083434d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommittee : Vote or propose", - "1 | Approve : False", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Technicalcommittee : Vote or propose", - "1 | Approve : False", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 321, - "name": "Technicalcommittee_Vote", - "blob": "0b046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40630000000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 0", - "3 | Approve : False", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Technicalcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 0", - "3 | Approve : False", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 322, - "name": "Technicalcommittee_Vote", - "blob": "0b046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40634930000000d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 12361", - "3 | Approve : False", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Technicalcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 12361", - "3 | Approve : False", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 323, - "name": "Technicalcommittee_Vote", - "blob": "0b046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40634930000000d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 12361", - "3 | Approve : False", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Technicalcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 12361", - "3 | Approve : False", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 324, - "name": "Technicalcommittee_Vote", - "blob": "0b046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40630000000001d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 0", - "3 | Approve : True", - "4 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Technicalcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 0", - "3 | Approve : True", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 325, - "name": "Technicalcommittee_Vote", - "blob": "0b046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063f3e0010000d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 123123", - "3 | Approve : False", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Technicalcommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 123123", - "3 | Approve : False", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 326, - "name": "Technicalcommitteemembership_Set_active_members_limit", - "blob": "0c0009000000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommitteemembership : Set active members limit", - "1 | Limit : 9", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Technicalcommitteemembership : Set active members limit", - "1 | Limit : 9", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 327, - "name": "Technicalcommitteemembership_Set_active_members_limit", - "blob": "0c002a000000d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommitteemembership : Set active members limit", - "1 | Limit : 42", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Technicalcommitteemembership : Set active members limit", - "1 | Limit : 42", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 328, - "name": "Technicalcommitteemembership_Set_active_members_limit", - "blob": "0c000f000000d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommitteemembership : Set active members limit", - "1 | Limit : 15", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Technicalcommitteemembership : Set active members limit", - "1 | Limit : 15", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 329, - "name": "Technicalcommitteemembership_Set_active_members_limit", - "blob": "0c0004000000d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommitteemembership : Set active members limit", - "1 | Limit : 4", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Technicalcommitteemembership : Set active members limit", - "1 | Limit : 4", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 330, - "name": "Technicalcommitteemembership_Set_active_members_limit", - "blob": "0c002a000000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommitteemembership : Set active members limit", - "1 | Limit : 42", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Technicalcommitteemembership : Set active members limit", - "1 | Limit : 42", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 331, - "name": "Technicalcommitteemembership_Disable_member", - "blob": "0c0131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec010008000000000000010008000000000000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommitteemembership : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 2048", - "3 | At : 2048", - "4 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Technicalcommitteemembership : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 2048", - "3 | At : 2048", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 332, - "name": "Technicalcommitteemembership_Disable_member", - "blob": "0c0131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec010008000000000000010008000000000000d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommitteemembership : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 2048", - "3 | At : 2048" - ], - "output_expert": [ - "0 | Technicalcommitteemembership : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 2048", - "3 | At : 2048", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 333, - "name": "Technicalcommitteemembership_Disable_member", - "blob": "0c0131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec010008000000000000010008000000000000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommitteemembership : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 2048", - "3 | At : 2048", - "4 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Technicalcommitteemembership : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 2048", - "3 | At : 2048", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 334, - "name": "Technicalcommitteemembership_Disable_member", - "blob": "0c0131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec010001000000000000010008000000000000d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommitteemembership : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 256", - "3 | At : 2048", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Technicalcommitteemembership : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 256", - "3 | At : 2048", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 335, - "name": "Technicalcommitteemembership_Disable_member", - "blob": "0c0131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec010001000000000000010008000000000000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommitteemembership : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 256", - "3 | At : 2048", - "4 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Technicalcommitteemembership : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 256", - "3 | At : 2048", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 336, - "name": "Technicalcommitteemembership_Add_member", - "blob": "0c0231c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommitteemembership : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Technicalcommitteemembership : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 337, - "name": "Technicalcommitteemembership_Add_member", - "blob": "0c0231c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommitteemembership : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Technicalcommitteemembership : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 338, - "name": "Technicalcommitteemembership_Add_member", - "blob": "0c0231c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommitteemembership : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Technicalcommitteemembership : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 339, - "name": "Technicalcommitteemembership_Add_member", - "blob": "0c0231c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommitteemembership : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Technicalcommitteemembership : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 340, - "name": "Technicalcommitteemembership_Add_member", - "blob": "0c0231c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommitteemembership : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec" - ], - "output_expert": [ - "0 | Technicalcommitteemembership : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 341, - "name": "Technicalcommitteemembership_Remove_member", - "blob": "0c0331c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommitteemembership : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Technicalcommitteemembership : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 342, - "name": "Technicalcommitteemembership_Remove_member", - "blob": "0c0331c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommitteemembership : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Technicalcommitteemembership : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 343, - "name": "Technicalcommitteemembership_Remove_member", - "blob": "0c0331c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommitteemembership : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec" - ], - "output_expert": [ - "0 | Technicalcommitteemembership : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 344, - "name": "Technicalcommitteemembership_Remove_member", - "blob": "0c0331c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommitteemembership : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Technicalcommitteemembership : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 345, - "name": "Technicalcommitteemembership_Remove_member", - "blob": "0c0331c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommitteemembership : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Technicalcommitteemembership : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 346, - "name": "Technicalcommitteemembership_Swap_member", - "blob": "0c0431c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommitteemembership : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Technicalcommitteemembership : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 347, - "name": "Technicalcommitteemembership_Swap_member", - "blob": "0c0431c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommitteemembership : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Technicalcommitteemembership : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 348, - "name": "Technicalcommitteemembership_Swap_member", - "blob": "0c0431c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommitteemembership : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Technicalcommitteemembership : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 349, - "name": "Technicalcommitteemembership_Swap_member", - "blob": "0c0431c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommitteemembership : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Technicalcommitteemembership : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 350, - "name": "Technicalcommitteemembership_Swap_member", - "blob": "0c0431c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommitteemembership : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Technicalcommitteemembership : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 351, - "name": "Technicalcommitteemembership_Reset_members", - "blob": "0c0508e330caf13ddd428c45cd3c7fc0715de40db917bfe46e94e8f54da7011ef223337bd40bdbc92a9b0225bce97e9c3646118f705b7fdfd990ab7c191db1f3f94be1d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommitteemembership : Reset members", - "1 | Members [1/4] : e330caf13ddd428c45cd3c7fc0715de40db917", - "1 | Members [2/4] : bfe46e94e8f54da7011ef22333", - "1 | Members [3/4] : 7bd40bdbc92a9b0225bce97e9c3646118f705b", - "1 | Members [4/4] : 7fdfd990ab7c191db1f3f94be1", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Technicalcommitteemembership : Reset members", - "1 | Members [1/4] : e330caf13ddd428c45cd3c7fc0715de40db917", - "1 | Members [2/4] : bfe46e94e8f54da7011ef22333", - "1 | Members [3/4] : 7bd40bdbc92a9b0225bce97e9c3646118f705b", - "1 | Members [4/4] : 7fdfd990ab7c191db1f3f94be1", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 352, - "name": "Technicalcommitteemembership_Reset_members", - "blob": "0c0500d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommitteemembership : Reset members", - "1 | Members : ", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Technicalcommitteemembership : Reset members", - "1 | Members : ", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 353, - "name": "Technicalcommitteemembership_Reset_members", - "blob": "0c050c0d7078452aae308d36314304c23bac28dd7038266e9f6b86dad890f374f6b3d7096f2a8025fe32c45f5bf7c6b37f916a05c3348983e174ff68b9190f423511df41a1ab09629f361c5b830f8520048262acb45468a38d6ce3ea20626580cec568d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommitteemembership : Reset members", - "1 | Members [1/6] : 0d7078452aae308d36314304c23bac28dd7038", - "1 | Members [2/6] : 266e9f6b86dad890f374f6b3d7", - "1 | Members [3/6] : 096f2a8025fe32c45f5bf7c6b37f916a05c334", - "1 | Members [4/6] : 8983e174ff68b9190f423511df", - "1 | Members [5/6] : 41a1ab09629f361c5b830f8520048262acb454", - "1 | Members [6/6] : 68a38d6ce3ea20626580cec568", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Technicalcommitteemembership : Reset members", - "1 | Members [1/6] : 0d7078452aae308d36314304c23bac28dd7038", - "1 | Members [2/6] : 266e9f6b86dad890f374f6b3d7", - "1 | Members [3/6] : 096f2a8025fe32c45f5bf7c6b37f916a05c334", - "1 | Members [4/6] : 8983e174ff68b9190f423511df", - "1 | Members [5/6] : 41a1ab09629f361c5b830f8520048262acb454", - "1 | Members [6/6] : 68a38d6ce3ea20626580cec568", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 354, - "name": "Technicalcommitteemembership_Reset_members", - "blob": "0c0508e330caf13ddd428c45cd3c7fc0715de40db917bfe46e94e8f54da7011ef223337bd40bdbc92a9b0225bce97e9c3646118f705b7fdfd990ab7c191db1f3f94be1d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommitteemembership : Reset members", - "1 | Members [1/4] : e330caf13ddd428c45cd3c7fc0715de40db917", - "1 | Members [2/4] : bfe46e94e8f54da7011ef22333", - "1 | Members [3/4] : 7bd40bdbc92a9b0225bce97e9c3646118f705b", - "1 | Members [4/4] : 7fdfd990ab7c191db1f3f94be1" - ], - "output_expert": [ - "0 | Technicalcommitteemembership : Reset members", - "1 | Members [1/4] : e330caf13ddd428c45cd3c7fc0715de40db917", - "1 | Members [2/4] : bfe46e94e8f54da7011ef22333", - "1 | Members [3/4] : 7bd40bdbc92a9b0225bce97e9c3646118f705b", - "1 | Members [4/4] : 7fdfd990ab7c191db1f3f94be1", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 355, - "name": "Technicalcommitteemembership_Reset_members", - "blob": "0c0508e330caf13ddd428c45cd3c7fc0715de40db917bfe46e94e8f54da7011ef223337bd40bdbc92a9b0225bce97e9c3646118f705b7fdfd990ab7c191db1f3f94be1d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommitteemembership : Reset members", - "1 | Members [1/4] : e330caf13ddd428c45cd3c7fc0715de40db917", - "1 | Members [2/4] : bfe46e94e8f54da7011ef22333", - "1 | Members [3/4] : 7bd40bdbc92a9b0225bce97e9c3646118f705b", - "1 | Members [4/4] : 7fdfd990ab7c191db1f3f94be1", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Technicalcommitteemembership : Reset members", - "1 | Members [1/4] : e330caf13ddd428c45cd3c7fc0715de40db917", - "1 | Members [2/4] : bfe46e94e8f54da7011ef22333", - "1 | Members [3/4] : 7bd40bdbc92a9b0225bce97e9c3646118f705b", - "1 | Members [4/4] : 7fdfd990ab7c191db1f3f94be1", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 356, - "name": "Technicalcommitteemembership_Abdicate_membership", - "blob": "0c06d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommitteemembership : Abdicate membership" - ], - "output_expert": [ - "0 | Technicalcommitteemembership : Abdicate membership", - "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "5 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 357, - "name": "Technicalcommitteemembership_Abdicate_membership", - "blob": "0c06d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommitteemembership : Abdicate membership", - "1 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Technicalcommitteemembership : Abdicate membership", - "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip : POLYX 0.000987", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 358, - "name": "Technicalcommitteemembership_Abdicate_membership", - "blob": "0c06d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommitteemembership : Abdicate membership", - "1 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Technicalcommitteemembership : Abdicate membership", - "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip : POLYX 5552342.355555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 359, - "name": "Technicalcommitteemembership_Abdicate_membership", - "blob": "0c06d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommitteemembership : Abdicate membership", - "1 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Technicalcommitteemembership : Abdicate membership", - "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip : POLYX 55.555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 360, - "name": "Technicalcommitteemembership_Abdicate_membership", - "blob": "0c06d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Technicalcommitteemembership : Abdicate membership", - "1 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Technicalcommitteemembership : Abdicate membership", - "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip : POLYX 0.000987", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 361, - "name": "Upgradecommittee_Set_vote_threshold", - "blob": "0d0034300000d3040000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommittee : Set vote threshold", - "1 | N : 12340", - "2 | D : 1235", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Upgradecommittee : Set vote threshold", - "1 | N : 12340", - "2 | D : 1235", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 362, - "name": "Upgradecommittee_Set_vote_threshold", - "blob": "0d009d1c000034300000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommittee : Set vote threshold", - "1 | N : 7325", - "2 | D : 12340", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Upgradecommittee : Set vote threshold", - "1 | N : 7325", - "2 | D : 12340", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 363, - "name": "Upgradecommittee_Set_vote_threshold", - "blob": "0d003430000000000000d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommittee : Set vote threshold", - "1 | N : 12340", - "2 | D : 0", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Upgradecommittee : Set vote threshold", - "1 | N : 12340", - "2 | D : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 364, - "name": "Upgradecommittee_Set_vote_threshold", - "blob": "0d00343000009d1c0000d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommittee : Set vote threshold", - "1 | N : 12340", - "2 | D : 7325", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Upgradecommittee : Set vote threshold", - "1 | N : 12340", - "2 | D : 7325", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 365, - "name": "Upgradecommittee_Set_vote_threshold", - "blob": "0d003430000034300000d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommittee : Set vote threshold", - "1 | N : 12340", - "2 | D : 12340", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Upgradecommittee : Set vote threshold", - "1 | N : 12340", - "2 | D : 12340", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 366, - "name": "Upgradecommittee_Set_release_coordinator", - "blob": "0d0131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommittee : Set release coordinator", - "1 | Id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Id [2/2] : 258ab3f4314e37a4eb089601ec" - ], - "output_expert": [ - "0 | Upgradecommittee : Set release coordinator", - "1 | Id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 367, - "name": "Upgradecommittee_Set_release_coordinator", - "blob": "0d0131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommittee : Set release coordinator", - "1 | Id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Id [2/2] : 258ab3f4314e37a4eb089601ec" - ], - "output_expert": [ - "0 | Upgradecommittee : Set release coordinator", - "1 | Id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 368, - "name": "Upgradecommittee_Set_release_coordinator", - "blob": "0d0131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommittee : Set release coordinator", - "1 | Id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Upgradecommittee : Set release coordinator", - "1 | Id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 369, - "name": "Upgradecommittee_Set_release_coordinator", - "blob": "0d0131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommittee : Set release coordinator", - "1 | Id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Upgradecommittee : Set release coordinator", - "1 | Id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 370, - "name": "Upgradecommittee_Set_release_coordinator", - "blob": "0d0131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommittee : Set release coordinator", - "1 | Id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Upgradecommittee : Set release coordinator", - "1 | Id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 371, - "name": "Upgradecommittee_Set_expires_after", - "blob": "0d0201d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommittee : Set expires after", - "1 | Expiry : None" - ], - "output_expert": [ - "0 | Upgradecommittee : Set expires after", - "1 | Expiry : None", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 372, - "name": "Upgradecommittee_Set_expires_after", - "blob": "0d0200a1860100d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommittee : Set expires after", - "1 | Expiry : 100001", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Upgradecommittee : Set expires after", - "1 | Expiry : 100001", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 373, - "name": "Upgradecommittee_Set_expires_after", - "blob": "0d0200a1860100d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommittee : Set expires after", - "1 | Expiry : 100001", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Upgradecommittee : Set expires after", - "1 | Expiry : 100001", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 374, - "name": "Upgradecommittee_Set_expires_after", - "blob": "0d0201d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommittee : Set expires after", - "1 | Expiry : None", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Upgradecommittee : Set expires after", - "1 | Expiry : None", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 375, - "name": "Upgradecommittee_Set_expires_after", - "blob": "0d0200a1860100d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommittee : Set expires after", - "1 | Expiry : 100001" - ], - "output_expert": [ - "0 | Upgradecommittee : Set expires after", - "1 | Expiry : 100001", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 376, - "name": "Upgradecommittee_Vote_or_propose", - "blob": "0d03010000083434d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommittee : Vote or propose", - "1 | Approve : True", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Upgradecommittee : Vote or propose", - "1 | Approve : True", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 377, - "name": "Upgradecommittee_Vote_or_propose", - "blob": "0d03010000083434d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommittee : Vote or propose", - "1 | Approve : True", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434" - ], - "output_expert": [ - "0 | Upgradecommittee : Vote or propose", - "1 | Approve : True", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 378, - "name": "Upgradecommittee_Vote_or_propose", - "blob": "0d03010000083434d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommittee : Vote or propose", - "1 | Approve : True", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Upgradecommittee : Vote or propose", - "1 | Approve : True", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 379, - "name": "Upgradecommittee_Vote_or_propose", - "blob": "0d03010000083434d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommittee : Vote or propose", - "1 | Approve : True", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Upgradecommittee : Vote or propose", - "1 | Approve : True", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 380, - "name": "Upgradecommittee_Vote_or_propose", - "blob": "0d03000000083434d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommittee : Vote or propose", - "1 | Approve : False", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Upgradecommittee : Vote or propose", - "1 | Approve : False", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 381, - "name": "Upgradecommittee_Vote", - "blob": "0d046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40634930000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 12361", - "3 | Approve : False", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Upgradecommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 12361", - "3 | Approve : False", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 382, - "name": "Upgradecommittee_Vote", - "blob": "0d046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063f3e0010001d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 123123", - "3 | Approve : True", - "4 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Upgradecommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 123123", - "3 | Approve : True", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 383, - "name": "Upgradecommittee_Vote", - "blob": "0d046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40630000000001d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 0", - "3 | Approve : True", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Upgradecommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 0", - "3 | Approve : True", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 384, - "name": "Upgradecommittee_Vote", - "blob": "0d046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063f3e0010000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 123123", - "3 | Approve : False", - "4 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Upgradecommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 123123", - "3 | Approve : False", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 385, - "name": "Upgradecommittee_Vote", - "blob": "0d046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063f3e0010000d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 123123", - "3 | Approve : False", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Upgradecommittee : Vote", - "1 | Proposal [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Proposal [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Index : 123123", - "3 | Approve : False", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 386, - "name": "Upgradecommitteemembership_Set_active_members_limit", - "blob": "0e0009000000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommitteemembership : Set active members limit", - "1 | Limit : 9", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Upgradecommitteemembership : Set active members limit", - "1 | Limit : 9", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 387, - "name": "Upgradecommitteemembership_Set_active_members_limit", - "blob": "0e002a000000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommitteemembership : Set active members limit", - "1 | Limit : 42", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Upgradecommitteemembership : Set active members limit", - "1 | Limit : 42", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 388, - "name": "Upgradecommitteemembership_Set_active_members_limit", - "blob": "0e000c000000d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommitteemembership : Set active members limit", - "1 | Limit : 12", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Upgradecommitteemembership : Set active members limit", - "1 | Limit : 12", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 389, - "name": "Upgradecommitteemembership_Set_active_members_limit", - "blob": "0e000f000000d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommitteemembership : Set active members limit", - "1 | Limit : 15", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Upgradecommitteemembership : Set active members limit", - "1 | Limit : 15", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 390, - "name": "Upgradecommitteemembership_Set_active_members_limit", - "blob": "0e000f000000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommitteemembership : Set active members limit", - "1 | Limit : 15", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Upgradecommitteemembership : Set active members limit", - "1 | Limit : 15", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 391, - "name": "Upgradecommitteemembership_Disable_member", - "blob": "0e0131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec010008000000000000010008000000000000d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommitteemembership : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 2048", - "3 | At : 2048", - "4 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Upgradecommitteemembership : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 2048", - "3 | At : 2048", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 392, - "name": "Upgradecommitteemembership_Disable_member", - "blob": "0e0131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec010001000000000000018000000000000000d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommitteemembership : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 256", - "3 | At : 128", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Upgradecommitteemembership : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 256", - "3 | At : 128", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 393, - "name": "Upgradecommitteemembership_Disable_member", - "blob": "0e0131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec010008000000000000010008000000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommitteemembership : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 2048", - "3 | At : 2048", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Upgradecommitteemembership : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 2048", - "3 | At : 2048", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 394, - "name": "Upgradecommitteemembership_Disable_member", - "blob": "0e0131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec010008000000000000010001000000000000d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommitteemembership : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 2048", - "3 | At : 256", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Upgradecommitteemembership : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 2048", - "3 | At : 256", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 395, - "name": "Upgradecommitteemembership_Disable_member", - "blob": "0e0131c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec010001000000000000018000000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommitteemembership : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 256", - "3 | At : 128", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Upgradecommitteemembership : Disable member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Expiry : 256", - "3 | At : 128", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 396, - "name": "Upgradecommitteemembership_Add_member", - "blob": "0e0231c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommitteemembership : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Upgradecommitteemembership : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 397, - "name": "Upgradecommitteemembership_Add_member", - "blob": "0e0231c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommitteemembership : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Upgradecommitteemembership : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 398, - "name": "Upgradecommitteemembership_Add_member", - "blob": "0e0231c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommitteemembership : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Upgradecommitteemembership : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 399, - "name": "Upgradecommitteemembership_Add_member", - "blob": "0e0231c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommitteemembership : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Upgradecommitteemembership : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 400, - "name": "Upgradecommitteemembership_Add_member", - "blob": "0e0231c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommitteemembership : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Upgradecommitteemembership : Add member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 401, - "name": "Upgradecommitteemembership_Remove_member", - "blob": "0e0331c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommitteemembership : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Upgradecommitteemembership : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 402, - "name": "Upgradecommitteemembership_Remove_member", - "blob": "0e0331c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommitteemembership : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Upgradecommitteemembership : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 403, - "name": "Upgradecommitteemembership_Remove_member", - "blob": "0e0331c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommitteemembership : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Upgradecommitteemembership : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 404, - "name": "Upgradecommitteemembership_Remove_member", - "blob": "0e0331c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommitteemembership : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec" - ], - "output_expert": [ - "0 | Upgradecommitteemembership : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 405, - "name": "Upgradecommitteemembership_Remove_member", - "blob": "0e0331c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommitteemembership : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Upgradecommitteemembership : Remove member", - "1 | Who [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Who [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 406, - "name": "Upgradecommitteemembership_Swap_member", - "blob": "0e0431c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommitteemembership : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Upgradecommitteemembership : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 407, - "name": "Upgradecommitteemembership_Swap_member", - "blob": "0e0431c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommitteemembership : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Upgradecommitteemembership : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 408, - "name": "Upgradecommitteemembership_Swap_member", - "blob": "0e0431c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommitteemembership : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Upgradecommitteemembership : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 409, - "name": "Upgradecommitteemembership_Swap_member", - "blob": "0e0431c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommitteemembership : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Upgradecommitteemembership : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 410, - "name": "Upgradecommitteemembership_Swap_member", - "blob": "0e0431c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommitteemembership : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Upgradecommitteemembership : Swap member", - "1 | Remove [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Remove [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Add [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Add [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 411, - "name": "Upgradecommitteemembership_Reset_members", - "blob": "0e0508e330caf13ddd428c45cd3c7fc0715de40db917bfe46e94e8f54da7011ef223337bd40bdbc92a9b0225bce97e9c3646118f705b7fdfd990ab7c191db1f3f94be1d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommitteemembership : Reset members", - "1 | Members [1/4] : e330caf13ddd428c45cd3c7fc0715de40db917", - "1 | Members [2/4] : bfe46e94e8f54da7011ef22333", - "1 | Members [3/4] : 7bd40bdbc92a9b0225bce97e9c3646118f705b", - "1 | Members [4/4] : 7fdfd990ab7c191db1f3f94be1", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Upgradecommitteemembership : Reset members", - "1 | Members [1/4] : e330caf13ddd428c45cd3c7fc0715de40db917", - "1 | Members [2/4] : bfe46e94e8f54da7011ef22333", - "1 | Members [3/4] : 7bd40bdbc92a9b0225bce97e9c3646118f705b", - "1 | Members [4/4] : 7fdfd990ab7c191db1f3f94be1", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 412, - "name": "Upgradecommitteemembership_Reset_members", - "blob": "0e0508e330caf13ddd428c45cd3c7fc0715de40db917bfe46e94e8f54da7011ef223337bd40bdbc92a9b0225bce97e9c3646118f705b7fdfd990ab7c191db1f3f94be1d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommitteemembership : Reset members", - "1 | Members [1/4] : e330caf13ddd428c45cd3c7fc0715de40db917", - "1 | Members [2/4] : bfe46e94e8f54da7011ef22333", - "1 | Members [3/4] : 7bd40bdbc92a9b0225bce97e9c3646118f705b", - "1 | Members [4/4] : 7fdfd990ab7c191db1f3f94be1", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Upgradecommitteemembership : Reset members", - "1 | Members [1/4] : e330caf13ddd428c45cd3c7fc0715de40db917", - "1 | Members [2/4] : bfe46e94e8f54da7011ef22333", - "1 | Members [3/4] : 7bd40bdbc92a9b0225bce97e9c3646118f705b", - "1 | Members [4/4] : 7fdfd990ab7c191db1f3f94be1", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 413, - "name": "Upgradecommitteemembership_Reset_members", - "blob": "0e0508e330caf13ddd428c45cd3c7fc0715de40db917bfe46e94e8f54da7011ef223337bd40bdbc92a9b0225bce97e9c3646118f705b7fdfd990ab7c191db1f3f94be1d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommitteemembership : Reset members", - "1 | Members [1/4] : e330caf13ddd428c45cd3c7fc0715de40db917", - "1 | Members [2/4] : bfe46e94e8f54da7011ef22333", - "1 | Members [3/4] : 7bd40bdbc92a9b0225bce97e9c3646118f705b", - "1 | Members [4/4] : 7fdfd990ab7c191db1f3f94be1", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Upgradecommitteemembership : Reset members", - "1 | Members [1/4] : e330caf13ddd428c45cd3c7fc0715de40db917", - "1 | Members [2/4] : bfe46e94e8f54da7011ef22333", - "1 | Members [3/4] : 7bd40bdbc92a9b0225bce97e9c3646118f705b", - "1 | Members [4/4] : 7fdfd990ab7c191db1f3f94be1", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 414, - "name": "Upgradecommitteemembership_Reset_members", - "blob": "0e0504129c4e63ed28bdecce1fb856624cf5984bd020f7aef0f09c3325d9a7ba87e599d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommitteemembership : Reset members", - "1 | Members [1/2] : 129c4e63ed28bdecce1fb856624cf5984bd020", - "1 | Members [2/2] : f7aef0f09c3325d9a7ba87e599" - ], - "output_expert": [ - "0 | Upgradecommitteemembership : Reset members", - "1 | Members [1/2] : 129c4e63ed28bdecce1fb856624cf5984bd020", - "1 | Members [2/2] : f7aef0f09c3325d9a7ba87e599", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 415, - "name": "Upgradecommitteemembership_Reset_members", - "blob": "0e050c0d7078452aae308d36314304c23bac28dd7038266e9f6b86dad890f374f6b3d7096f2a8025fe32c45f5bf7c6b37f916a05c3348983e174ff68b9190f423511df41a1ab09629f361c5b830f8520048262acb45468a38d6ce3ea20626580cec568d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommitteemembership : Reset members", - "1 | Members [1/6] : 0d7078452aae308d36314304c23bac28dd7038", - "1 | Members [2/6] : 266e9f6b86dad890f374f6b3d7", - "1 | Members [3/6] : 096f2a8025fe32c45f5bf7c6b37f916a05c334", - "1 | Members [4/6] : 8983e174ff68b9190f423511df", - "1 | Members [5/6] : 41a1ab09629f361c5b830f8520048262acb454", - "1 | Members [6/6] : 68a38d6ce3ea20626580cec568", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Upgradecommitteemembership : Reset members", - "1 | Members [1/6] : 0d7078452aae308d36314304c23bac28dd7038", - "1 | Members [2/6] : 266e9f6b86dad890f374f6b3d7", - "1 | Members [3/6] : 096f2a8025fe32c45f5bf7c6b37f916a05c334", - "1 | Members [4/6] : 8983e174ff68b9190f423511df", - "1 | Members [5/6] : 41a1ab09629f361c5b830f8520048262acb454", - "1 | Members [6/6] : 68a38d6ce3ea20626580cec568", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 416, - "name": "Upgradecommitteemembership_Abdicate_membership", - "blob": "0e06d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommitteemembership : Abdicate membership", - "1 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Upgradecommitteemembership : Abdicate membership", - "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Tip : POLYX 0.000987", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 417, - "name": "Upgradecommitteemembership_Abdicate_membership", - "blob": "0e06d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommitteemembership : Abdicate membership", - "1 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Upgradecommitteemembership : Abdicate membership", - "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Tip : POLYX 0.000987", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 418, - "name": "Upgradecommitteemembership_Abdicate_membership", - "blob": "0e06d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommitteemembership : Abdicate membership", - "1 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Upgradecommitteemembership : Abdicate membership", - "1 | Chain : Polymesh", - "2 | Nonce : 2339", - "3 | Tip : POLYX 5552342.355555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 419, - "name": "Upgradecommitteemembership_Abdicate_membership", - "blob": "0e06d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommitteemembership : Abdicate membership" - ], - "output_expert": [ - "0 | Upgradecommitteemembership : Abdicate membership", - "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "5 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 420, - "name": "Upgradecommitteemembership_Abdicate_membership", - "blob": "0e06d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Upgradecommitteemembership : Abdicate membership", - "1 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Upgradecommitteemembership : Abdicate membership", - "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Tip : POLYX 1234.56789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 421, - "name": "Multisig_Create_multisig", - "blob": "0f0008004935562846ebf05ad1832cbbf59d2d8fbbf1ea0313172aabbf72923e9dcce90a01280e3072842c6510253368c03e83373b93d86d8426ba819a6e15c293a68e6a706bc4000000000000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Create multisig", - "1 | Signers [1/4] : 4935562846ebf05ad1832cbbf59d2d8fbbf1ea", - "1 | Signers [2/4] : 0313172aabbf72923e9dcce90a", - "1 | Signers [3/4] : 2DMSEUR6UjPqFgqaHbDbZ7VRW3gEGPX8tYuSBG", - "1 | Signers [4/4] : HNoGML3GuD", - "2 | Sigs required : 50283", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Multisig : Create multisig", - "1 | Signers [1/4] : 4935562846ebf05ad1832cbbf59d2d8fbbf1ea", - "1 | Signers [2/4] : 0313172aabbf72923e9dcce90a", - "1 | Signers [3/4] : 2DMSEUR6UjPqFgqaHbDbZ7VRW3gEGPX8tYuSBG", - "1 | Signers [4/4] : HNoGML3GuD", - "2 | Sigs required : 50283", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 422, - "name": "Multisig_Create_multisig", - "blob": "0f0008004935562846ebf05ad1832cbbf59d2d8fbbf1ea0313172aabbf72923e9dcce90a01280e3072842c6510253368c03e83373b93d86d8426ba819a6e15c293a68e6a702309000000000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Create multisig", - "1 | Signers [1/4] : 4935562846ebf05ad1832cbbf59d2d8fbbf1ea", - "1 | Signers [2/4] : 0313172aabbf72923e9dcce90a", - "1 | Signers [3/4] : 2DMSEUR6UjPqFgqaHbDbZ7VRW3gEGPX8tYuSBG", - "1 | Signers [4/4] : HNoGML3GuD", - "2 | Sigs required : 2339", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Multisig : Create multisig", - "1 | Signers [1/4] : 4935562846ebf05ad1832cbbf59d2d8fbbf1ea", - "1 | Signers [2/4] : 0313172aabbf72923e9dcce90a", - "1 | Signers [3/4] : 2DMSEUR6UjPqFgqaHbDbZ7VRW3gEGPX8tYuSBG", - "1 | Signers [4/4] : HNoGML3GuD", - "2 | Sigs required : 2339", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 423, - "name": "Multisig_Create_multisig", - "blob": "0f0008004935562846ebf05ad1832cbbf59d2d8fbbf1ea0313172aabbf72923e9dcce90a01280e3072842c6510253368c03e83373b93d86d8426ba819a6e15c293a68e6a700100000000000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Create multisig", - "1 | Signers [1/4] : 4935562846ebf05ad1832cbbf59d2d8fbbf1ea", - "1 | Signers [2/4] : 0313172aabbf72923e9dcce90a", - "1 | Signers [3/4] : 2DMSEUR6UjPqFgqaHbDbZ7VRW3gEGPX8tYuSBG", - "1 | Signers [4/4] : HNoGML3GuD", - "2 | Sigs required : 1", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Multisig : Create multisig", - "1 | Signers [1/4] : 4935562846ebf05ad1832cbbf59d2d8fbbf1ea", - "1 | Signers [2/4] : 0313172aabbf72923e9dcce90a", - "1 | Signers [3/4] : 2DMSEUR6UjPqFgqaHbDbZ7VRW3gEGPX8tYuSBG", - "1 | Signers [4/4] : HNoGML3GuD", - "2 | Sigs required : 1", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 424, - "name": "Multisig_Create_multisig", - "blob": "0f0008004935562846ebf05ad1832cbbf59d2d8fbbf1ea0313172aabbf72923e9dcce90a01280e3072842c6510253368c03e83373b93d86d8426ba819a6e15c293a68e6a706400000000000000d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Create multisig", - "1 | Signers [1/4] : 4935562846ebf05ad1832cbbf59d2d8fbbf1ea", - "1 | Signers [2/4] : 0313172aabbf72923e9dcce90a", - "1 | Signers [3/4] : 2DMSEUR6UjPqFgqaHbDbZ7VRW3gEGPX8tYuSBG", - "1 | Signers [4/4] : HNoGML3GuD", - "2 | Sigs required : 100", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Multisig : Create multisig", - "1 | Signers [1/4] : 4935562846ebf05ad1832cbbf59d2d8fbbf1ea", - "1 | Signers [2/4] : 0313172aabbf72923e9dcce90a", - "1 | Signers [3/4] : 2DMSEUR6UjPqFgqaHbDbZ7VRW3gEGPX8tYuSBG", - "1 | Signers [4/4] : HNoGML3GuD", - "2 | Sigs required : 100", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 425, - "name": "Multisig_Create_multisig", - "blob": "0f0008004935562846ebf05ad1832cbbf59d2d8fbbf1ea0313172aabbf72923e9dcce90a01280e3072842c6510253368c03e83373b93d86d8426ba819a6e15c293a68e6a706bc4000000000000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Create multisig", - "1 | Signers [1/4] : 4935562846ebf05ad1832cbbf59d2d8fbbf1ea", - "1 | Signers [2/4] : 0313172aabbf72923e9dcce90a", - "1 | Signers [3/4] : 2DMSEUR6UjPqFgqaHbDbZ7VRW3gEGPX8tYuSBG", - "1 | Signers [4/4] : HNoGML3GuD", - "2 | Sigs required : 50283", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Multisig : Create multisig", - "1 | Signers [1/4] : 4935562846ebf05ad1832cbbf59d2d8fbbf1ea", - "1 | Signers [2/4] : 0313172aabbf72923e9dcce90a", - "1 | Signers [3/4] : 2DMSEUR6UjPqFgqaHbDbZ7VRW3gEGPX8tYuSBG", - "1 | Signers [4/4] : HNoGML3GuD", - "2 | Sigs required : 50283", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 426, - "name": "Multisig_Create_or_approve_proposal_as_identity", - "blob": "0f016a8500b97a5889f4ecdf68f2a4b406fec17e564b6254cc641c43c18ca62cb21c000008343401000100000000000001d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Create or approve proposal as identity", - "1 | Multisig [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Multisig [2/2] : hbeqgL2Ukv", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : True", - "5 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Multisig : Create or approve proposal as identity", - "1 | Multisig [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Multisig [2/2] : hbeqgL2Ukv", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : True", - "5 | Chain : Polymesh", - "6 | Nonce : 1", - "7 | Tip : POLYX 1234.56789", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 427, - "name": "Multisig_Create_or_approve_proposal_as_identity", - "blob": "0f01b673c14adc4fdaaa84b868330314bb524eb97de82eb6ad5c24401af92af33f54000008343401000100000000000001d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Create or approve proposal as identity", - "1 | Multisig [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Multisig [2/2] : 6xRJgVAa3i", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : True" - ], - "output_expert": [ - "0 | Multisig : Create or approve proposal as identity", - "1 | Multisig [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Multisig [2/2] : 6xRJgVAa3i", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : True", - "5 | Chain : Polymesh", - "6 | Nonce : 100", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 428, - "name": "Multisig_Create_or_approve_proposal_as_identity", - "blob": "0f013e687768a50d36e597c2eb73c8161ef62ba3c55f6aa5ca420e76dcd08b219d26000008343401000800000000000000d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Create or approve proposal as identity", - "1 | Multisig [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Multisig [2/2] : kKMKAMQcg5", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 2048", - "4 | Auto close : False" - ], - "output_expert": [ - "0 | Multisig : Create or approve proposal as identity", - "1 | Multisig [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Multisig [2/2] : kKMKAMQcg5", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 2048", - "4 | Auto close : False", - "5 | Chain : Polymesh", - "6 | Nonce : 1", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 429, - "name": "Multisig_Create_or_approve_proposal_as_identity", - "blob": "0f01b673c14adc4fdaaa84b868330314bb524eb97de82eb6ad5c24401af92af33f54000008343401800000000000000001d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Create or approve proposal as identity", - "1 | Multisig [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Multisig [2/2] : 6xRJgVAa3i", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 128", - "4 | Auto close : True", - "5 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Multisig : Create or approve proposal as identity", - "1 | Multisig [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Multisig [2/2] : 6xRJgVAa3i", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 128", - "4 | Auto close : True", - "5 | Chain : Polymesh", - "6 | Nonce : 1", - "7 | Tip : POLYX 5552342.355555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 430, - "name": "Multisig_Create_or_approve_proposal_as_identity", - "blob": "0f015cf93ef43e7f44d10f78045182931ed20d916dc1680da77e6e1e60c2f827bc79000008343401800000000000000000d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Create or approve proposal as identity", - "1 | Multisig [1/2] : 2EYpYprRA7x9tq23MPgSiZGQ7nyg2TkNyVDEw2", - "1 | Multisig [2/2] : PVSHuQtD81", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 128", - "4 | Auto close : False" - ], - "output_expert": [ - "0 | Multisig : Create or approve proposal as identity", - "1 | Multisig [1/2] : 2EYpYprRA7x9tq23MPgSiZGQ7nyg2TkNyVDEw2", - "1 | Multisig [2/2] : PVSHuQtD81", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 128", - "4 | Auto close : False", - "5 | Chain : Polymesh", - "6 | Nonce : 1", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 431, - "name": "Multisig_Create_or_approve_proposal_as_key", - "blob": "0f0242ed86a3b5fd55b0ec57c2112f981fbc2d91f4225759141ea0b255fd34639d74000008343401800000000000000000d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Create or approve proposal as key", - "1 | Multisig [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "1 | Multisig [2/2] : kvir9Rw75p", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 128", - "4 | Auto close : False", - "5 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Multisig : Create or approve proposal as key", - "1 | Multisig [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "1 | Multisig [2/2] : kvir9Rw75p", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 128", - "4 | Auto close : False", - "5 | Chain : Polymesh", - "6 | Nonce : 2339", - "7 | Tip : POLYX 5552342.355555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 432, - "name": "Multisig_Create_or_approve_proposal_as_key", - "blob": "0f023e687768a50d36e597c2eb73c8161ef62ba3c55f6aa5ca420e76dcd08b219d26000008343401000800000000000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Create or approve proposal as key", - "1 | Multisig [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Multisig [2/2] : kKMKAMQcg5", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 2048", - "4 | Auto close : False", - "5 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Multisig : Create or approve proposal as key", - "1 | Multisig [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Multisig [2/2] : kKMKAMQcg5", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 2048", - "4 | Auto close : False", - "5 | Chain : Polymesh", - "6 | Nonce : 0", - "7 | Tip : POLYX 5552342.355555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 433, - "name": "Multisig_Create_or_approve_proposal_as_key", - "blob": "0f026a8500b97a5889f4ecdf68f2a4b406fec17e564b6254cc641c43c18ca62cb21c000008343401800000000000000001d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Create or approve proposal as key", - "1 | Multisig [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Multisig [2/2] : hbeqgL2Ukv", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 128", - "4 | Auto close : True", - "5 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Multisig : Create or approve proposal as key", - "1 | Multisig [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Multisig [2/2] : hbeqgL2Ukv", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 128", - "4 | Auto close : True", - "5 | Chain : Polymesh", - "6 | Nonce : 2339", - "7 | Tip : POLYX 0.000987", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 434, - "name": "Multisig_Create_or_approve_proposal_as_key", - "blob": "0f026a8500b97a5889f4ecdf68f2a4b406fec17e564b6254cc641c43c18ca62cb21c000008343401000100000000000000d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Create or approve proposal as key", - "1 | Multisig [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Multisig [2/2] : hbeqgL2Ukv", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : False", - "5 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Multisig : Create or approve proposal as key", - "1 | Multisig [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Multisig [2/2] : hbeqgL2Ukv", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : False", - "5 | Chain : Polymesh", - "6 | Nonce : 50283", - "7 | Tip : POLYX 5552342.355555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 435, - "name": "Multisig_Create_or_approve_proposal_as_key", - "blob": "0f023e687768a50d36e597c2eb73c8161ef62ba3c55f6aa5ca420e76dcd08b219d26000008343401000100000000000000d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Create or approve proposal as key", - "1 | Multisig [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Multisig [2/2] : kKMKAMQcg5", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : False", - "5 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Multisig : Create or approve proposal as key", - "1 | Multisig [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Multisig [2/2] : kKMKAMQcg5", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : False", - "5 | Chain : Polymesh", - "6 | Nonce : 0", - "7 | Tip : POLYX 55.555555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 436, - "name": "Multisig_Create_proposal_as_identity", - "blob": "0f033e687768a50d36e597c2eb73c8161ef62ba3c55f6aa5ca420e76dcd08b219d26000008343401000800000000000001d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Create proposal as identity", - "1 | Multisig [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Multisig [2/2] : kKMKAMQcg5", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 2048", - "4 | Auto close : True", - "5 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Multisig : Create proposal as identity", - "1 | Multisig [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Multisig [2/2] : kKMKAMQcg5", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 2048", - "4 | Auto close : True", - "5 | Chain : Polymesh", - "6 | Nonce : 100", - "7 | Tip : POLYX 55.555555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 437, - "name": "Multisig_Create_proposal_as_identity", - "blob": "0f0344437e7896c15f809cbc7156673d31ecf873060385385e9c27d5ae4abc055615000008343401000800000000000001d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Create proposal as identity", - "1 | Multisig [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | Multisig [2/2] : yiDWE8dFzF", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 2048", - "4 | Auto close : True", - "5 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Multisig : Create proposal as identity", - "1 | Multisig [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | Multisig [2/2] : yiDWE8dFzF", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 2048", - "4 | Auto close : True", - "5 | Chain : Polymesh", - "6 | Nonce : 0", - "7 | Tip : POLYX 5552342.355555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 438, - "name": "Multisig_Create_proposal_as_identity", - "blob": "0f035cf93ef43e7f44d10f78045182931ed20d916dc1680da77e6e1e60c2f827bc79000008343401000100000000000001d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Create proposal as identity", - "1 | Multisig [1/2] : 2EYpYprRA7x9tq23MPgSiZGQ7nyg2TkNyVDEw2", - "1 | Multisig [2/2] : PVSHuQtD81", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : True", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Multisig : Create proposal as identity", - "1 | Multisig [1/2] : 2EYpYprRA7x9tq23MPgSiZGQ7nyg2TkNyVDEw2", - "1 | Multisig [2/2] : PVSHuQtD81", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : True", - "5 | Chain : Polymesh", - "6 | Nonce : 2339", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 439, - "name": "Multisig_Create_proposal_as_identity", - "blob": "0f036a8500b97a5889f4ecdf68f2a4b406fec17e564b6254cc641c43c18ca62cb21c000008343401800000000000000001d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Create proposal as identity", - "1 | Multisig [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Multisig [2/2] : hbeqgL2Ukv", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 128", - "4 | Auto close : True", - "5 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Multisig : Create proposal as identity", - "1 | Multisig [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Multisig [2/2] : hbeqgL2Ukv", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 128", - "4 | Auto close : True", - "5 | Chain : Polymesh", - "6 | Nonce : 2339", - "7 | Tip : POLYX 55.555555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 440, - "name": "Multisig_Create_proposal_as_identity", - "blob": "0f03e6b9eabd5f8491bd24bb8ff940cd591871b9fb05be188713f14b32f73923df6c000008343401800000000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Create proposal as identity", - "1 | Multisig [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | Multisig [2/2] : 8Aw2bPcNj9", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 128", - "4 | Auto close : False", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Multisig : Create proposal as identity", - "1 | Multisig [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | Multisig [2/2] : 8Aw2bPcNj9", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 128", - "4 | Auto close : False", - "5 | Chain : Polymesh", - "6 | Nonce : 0", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 441, - "name": "Multisig_Create_proposal_as_key", - "blob": "0f043e687768a50d36e597c2eb73c8161ef62ba3c55f6aa5ca420e76dcd08b219d26000008343401000100000000000000d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Create proposal as key", - "1 | Multisig [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Multisig [2/2] : kKMKAMQcg5", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : False", - "5 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Multisig : Create proposal as key", - "1 | Multisig [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Multisig [2/2] : kKMKAMQcg5", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : False", - "5 | Chain : Polymesh", - "6 | Nonce : 50283", - "7 | Tip : POLYX 55.555555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 442, - "name": "Multisig_Create_proposal_as_key", - "blob": "0f04e6b9eabd5f8491bd24bb8ff940cd591871b9fb05be188713f14b32f73923df6c000008343401800000000000000001d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Create proposal as key", - "1 | Multisig [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | Multisig [2/2] : 8Aw2bPcNj9", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 128", - "4 | Auto close : True", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Multisig : Create proposal as key", - "1 | Multisig [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | Multisig [2/2] : 8Aw2bPcNj9", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 128", - "4 | Auto close : True", - "5 | Chain : Polymesh", - "6 | Nonce : 100", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 443, - "name": "Multisig_Create_proposal_as_key", - "blob": "0f046a8500b97a5889f4ecdf68f2a4b406fec17e564b6254cc641c43c18ca62cb21c000008343401000100000000000000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Create proposal as key", - "1 | Multisig [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Multisig [2/2] : hbeqgL2Ukv", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : False" - ], - "output_expert": [ - "0 | Multisig : Create proposal as key", - "1 | Multisig [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Multisig [2/2] : hbeqgL2Ukv", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : False", - "5 | Chain : Polymesh", - "6 | Nonce : 50283", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 444, - "name": "Multisig_Create_proposal_as_key", - "blob": "0f04e6b9eabd5f8491bd24bb8ff940cd591871b9fb05be188713f14b32f73923df6c000008343401000100000000000001d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Create proposal as key", - "1 | Multisig [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | Multisig [2/2] : 8Aw2bPcNj9", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : True", - "5 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Multisig : Create proposal as key", - "1 | Multisig [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | Multisig [2/2] : 8Aw2bPcNj9", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : True", - "5 | Chain : Polymesh", - "6 | Nonce : 100", - "7 | Tip : POLYX 0.000987", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 445, - "name": "Multisig_Create_proposal_as_key", - "blob": "0f046a8500b97a5889f4ecdf68f2a4b406fec17e564b6254cc641c43c18ca62cb21c000008343401000100000000000001d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Create proposal as key", - "1 | Multisig [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Multisig [2/2] : hbeqgL2Ukv", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : True", - "5 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Multisig : Create proposal as key", - "1 | Multisig [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Multisig [2/2] : hbeqgL2Ukv", - "2 | Proposal [1/2] : Remark", - "2 | Proposal [2/2] : 3434", - "3 | Expiry : 256", - "4 | Auto close : True", - "5 | Chain : Polymesh", - "6 | Nonce : 50283", - "7 | Tip : POLYX 5552342.355555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 446, - "name": "Multisig_Approve_as_identity", - "blob": "0f05b673c14adc4fdaaa84b868330314bb524eb97de82eb6ad5c24401af92af33f540000000000000000d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Approve as identity", - "1 | Multisig [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Multisig [2/2] : 6xRJgVAa3i", - "2 | Proposal id : 0", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Multisig : Approve as identity", - "1 | Multisig [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Multisig [2/2] : 6xRJgVAa3i", - "2 | Proposal id : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 447, - "name": "Multisig_Approve_as_identity", - "blob": "0f05e6b9eabd5f8491bd24bb8ff940cd591871b9fb05be188713f14b32f73923df6c6400000000000000d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Approve as identity", - "1 | Multisig [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | Multisig [2/2] : 8Aw2bPcNj9", - "2 | Proposal id : 100", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Multisig : Approve as identity", - "1 | Multisig [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | Multisig [2/2] : 8Aw2bPcNj9", - "2 | Proposal id : 100", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 448, - "name": "Multisig_Approve_as_identity", - "blob": "0f056a8500b97a5889f4ecdf68f2a4b406fec17e564b6254cc641c43c18ca62cb21c2309000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Approve as identity", - "1 | Multisig [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Multisig [2/2] : hbeqgL2Ukv", - "2 | Proposal id : 2339", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Multisig : Approve as identity", - "1 | Multisig [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Multisig [2/2] : hbeqgL2Ukv", - "2 | Proposal id : 2339", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 449, - "name": "Multisig_Approve_as_identity", - "blob": "0f0544437e7896c15f809cbc7156673d31ecf873060385385e9c27d5ae4abc0556156400000000000000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Approve as identity", - "1 | Multisig [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | Multisig [2/2] : yiDWE8dFzF", - "2 | Proposal id : 100" - ], - "output_expert": [ - "0 | Multisig : Approve as identity", - "1 | Multisig [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | Multisig [2/2] : yiDWE8dFzF", - "2 | Proposal id : 100", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 450, - "name": "Multisig_Approve_as_identity", - "blob": "0f05b673c14adc4fdaaa84b868330314bb524eb97de82eb6ad5c24401af92af33f540000000000000000d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Approve as identity", - "1 | Multisig [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Multisig [2/2] : 6xRJgVAa3i", - "2 | Proposal id : 0", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Multisig : Approve as identity", - "1 | Multisig [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Multisig [2/2] : 6xRJgVAa3i", - "2 | Proposal id : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 451, - "name": "Multisig_Approve_as_key", - "blob": "0f061813b8c47c41f5279be46dc5272f7321cbfb8e6a91645a82458752c94de75b1c6400000000000000d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Approve as key", - "1 | Multisig [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | Multisig [2/2] : PmkgsnFWXr", - "2 | Proposal id : 100", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Multisig : Approve as key", - "1 | Multisig [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | Multisig [2/2] : PmkgsnFWXr", - "2 | Proposal id : 100", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 452, - "name": "Multisig_Approve_as_key", - "blob": "0f065cf93ef43e7f44d10f78045182931ed20d916dc1680da77e6e1e60c2f827bc796400000000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Approve as key", - "1 | Multisig [1/2] : 2EYpYprRA7x9tq23MPgSiZGQ7nyg2TkNyVDEw2", - "1 | Multisig [2/2] : PVSHuQtD81", - "2 | Proposal id : 100", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Multisig : Approve as key", - "1 | Multisig [1/2] : 2EYpYprRA7x9tq23MPgSiZGQ7nyg2TkNyVDEw2", - "1 | Multisig [2/2] : PVSHuQtD81", - "2 | Proposal id : 100", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 453, - "name": "Multisig_Approve_as_key", - "blob": "0f061813b8c47c41f5279be46dc5272f7321cbfb8e6a91645a82458752c94de75b1c2309000000000000d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Approve as key", - "1 | Multisig [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | Multisig [2/2] : PmkgsnFWXr", - "2 | Proposal id : 2339", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Multisig : Approve as key", - "1 | Multisig [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | Multisig [2/2] : PmkgsnFWXr", - "2 | Proposal id : 2339", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 454, - "name": "Multisig_Approve_as_key", - "blob": "0f06b673c14adc4fdaaa84b868330314bb524eb97de82eb6ad5c24401af92af33f540000000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Approve as key", - "1 | Multisig [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Multisig [2/2] : 6xRJgVAa3i", - "2 | Proposal id : 0", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Multisig : Approve as key", - "1 | Multisig [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Multisig [2/2] : 6xRJgVAa3i", - "2 | Proposal id : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 455, - "name": "Multisig_Approve_as_key", - "blob": "0f06e6b9eabd5f8491bd24bb8ff940cd591871b9fb05be188713f14b32f73923df6c2309000000000000d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Approve as key", - "1 | Multisig [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | Multisig [2/2] : 8Aw2bPcNj9", - "2 | Proposal id : 2339", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Multisig : Approve as key", - "1 | Multisig [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | Multisig [2/2] : 8Aw2bPcNj9", - "2 | Proposal id : 2339", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 456, - "name": "Multisig_Reject_as_identity", - "blob": "0f071813b8c47c41f5279be46dc5272f7321cbfb8e6a91645a82458752c94de75b1c6bc4000000000000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Reject as identity", - "1 | Multisig [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | Multisig [2/2] : PmkgsnFWXr", - "2 | Proposal id : 50283" - ], - "output_expert": [ - "0 | Multisig : Reject as identity", - "1 | Multisig [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | Multisig [2/2] : PmkgsnFWXr", - "2 | Proposal id : 50283", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 457, - "name": "Multisig_Reject_as_identity", - "blob": "0f07e6b9eabd5f8491bd24bb8ff940cd591871b9fb05be188713f14b32f73923df6c6bc4000000000000d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Reject as identity", - "1 | Multisig [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | Multisig [2/2] : 8Aw2bPcNj9", - "2 | Proposal id : 50283", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Multisig : Reject as identity", - "1 | Multisig [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | Multisig [2/2] : 8Aw2bPcNj9", - "2 | Proposal id : 50283", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 458, - "name": "Multisig_Reject_as_identity", - "blob": "0f071813b8c47c41f5279be46dc5272f7321cbfb8e6a91645a82458752c94de75b1c2309000000000000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Reject as identity", - "1 | Multisig [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | Multisig [2/2] : PmkgsnFWXr", - "2 | Proposal id : 2339", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Multisig : Reject as identity", - "1 | Multisig [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | Multisig [2/2] : PmkgsnFWXr", - "2 | Proposal id : 2339", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 459, - "name": "Multisig_Reject_as_identity", - "blob": "0f073e687768a50d36e597c2eb73c8161ef62ba3c55f6aa5ca420e76dcd08b219d260100000000000000d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Reject as identity", - "1 | Multisig [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Multisig [2/2] : kKMKAMQcg5", - "2 | Proposal id : 1", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Multisig : Reject as identity", - "1 | Multisig [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Multisig [2/2] : kKMKAMQcg5", - "2 | Proposal id : 1", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 460, - "name": "Multisig_Reject_as_identity", - "blob": "0f07b673c14adc4fdaaa84b868330314bb524eb97de82eb6ad5c24401af92af33f542309000000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Reject as identity", - "1 | Multisig [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Multisig [2/2] : 6xRJgVAa3i", - "2 | Proposal id : 2339", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Multisig : Reject as identity", - "1 | Multisig [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Multisig [2/2] : 6xRJgVAa3i", - "2 | Proposal id : 2339", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 461, - "name": "Multisig_Reject_as_key", - "blob": "0f083e687768a50d36e597c2eb73c8161ef62ba3c55f6aa5ca420e76dcd08b219d260100000000000000d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Reject as key", - "1 | Multisig [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Multisig [2/2] : kKMKAMQcg5", - "2 | Proposal id : 1", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Multisig : Reject as key", - "1 | Multisig [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Multisig [2/2] : kKMKAMQcg5", - "2 | Proposal id : 1", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 462, - "name": "Multisig_Reject_as_key", - "blob": "0f085cf93ef43e7f44d10f78045182931ed20d916dc1680da77e6e1e60c2f827bc796400000000000000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Reject as key", - "1 | Multisig [1/2] : 2EYpYprRA7x9tq23MPgSiZGQ7nyg2TkNyVDEw2", - "1 | Multisig [2/2] : PVSHuQtD81", - "2 | Proposal id : 100", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Multisig : Reject as key", - "1 | Multisig [1/2] : 2EYpYprRA7x9tq23MPgSiZGQ7nyg2TkNyVDEw2", - "1 | Multisig [2/2] : PVSHuQtD81", - "2 | Proposal id : 100", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 463, - "name": "Multisig_Reject_as_key", - "blob": "0f086a8500b97a5889f4ecdf68f2a4b406fec17e564b6254cc641c43c18ca62cb21c6400000000000000d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Reject as key", - "1 | Multisig [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Multisig [2/2] : hbeqgL2Ukv", - "2 | Proposal id : 100" - ], - "output_expert": [ - "0 | Multisig : Reject as key", - "1 | Multisig [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Multisig [2/2] : hbeqgL2Ukv", - "2 | Proposal id : 100", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 464, - "name": "Multisig_Reject_as_key", - "blob": "0f0842ed86a3b5fd55b0ec57c2112f981fbc2d91f4225759141ea0b255fd34639d746400000000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Reject as key", - "1 | Multisig [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "1 | Multisig [2/2] : kvir9Rw75p", - "2 | Proposal id : 100", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Multisig : Reject as key", - "1 | Multisig [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "1 | Multisig [2/2] : kvir9Rw75p", - "2 | Proposal id : 100", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 465, - "name": "Multisig_Reject_as_key", - "blob": "0f085cf93ef43e7f44d10f78045182931ed20d916dc1680da77e6e1e60c2f827bc790100000000000000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Reject as key", - "1 | Multisig [1/2] : 2EYpYprRA7x9tq23MPgSiZGQ7nyg2TkNyVDEw2", - "1 | Multisig [2/2] : PVSHuQtD81", - "2 | Proposal id : 1", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Multisig : Reject as key", - "1 | Multisig [1/2] : 2EYpYprRA7x9tq23MPgSiZGQ7nyg2TkNyVDEw2", - "1 | Multisig [2/2] : PVSHuQtD81", - "2 | Proposal id : 1", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 466, - "name": "Multisig_Accept_multisig_signer_as_identity", - "blob": "0f096400000000000000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Accept multisig signer as identity", - "1 | Auth id : 100", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Multisig : Accept multisig signer as identity", - "1 | Auth id : 100", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 467, - "name": "Multisig_Accept_multisig_signer_as_identity", - "blob": "0f090000000000000000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Accept multisig signer as identity", - "1 | Auth id : 0", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Multisig : Accept multisig signer as identity", - "1 | Auth id : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 468, - "name": "Multisig_Accept_multisig_signer_as_identity", - "blob": "0f090100000000000000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Accept multisig signer as identity", - "1 | Auth id : 1", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Multisig : Accept multisig signer as identity", - "1 | Auth id : 1", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 469, - "name": "Multisig_Accept_multisig_signer_as_identity", - "blob": "0f096bc4000000000000d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Accept multisig signer as identity", - "1 | Auth id : 50283" - ], - "output_expert": [ - "0 | Multisig : Accept multisig signer as identity", - "1 | Auth id : 50283", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 470, - "name": "Multisig_Accept_multisig_signer_as_identity", - "blob": "0f096400000000000000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Accept multisig signer as identity", - "1 | Auth id : 100", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Multisig : Accept multisig signer as identity", - "1 | Auth id : 100", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 471, - "name": "Multisig_Accept_multisig_signer_as_key", - "blob": "0f0a0100000000000000d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Accept multisig signer as key", - "1 | Auth id : 1", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Multisig : Accept multisig signer as key", - "1 | Auth id : 1", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 472, - "name": "Multisig_Accept_multisig_signer_as_key", - "blob": "0f0a6bc4000000000000d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Accept multisig signer as key", - "1 | Auth id : 50283", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Multisig : Accept multisig signer as key", - "1 | Auth id : 50283", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 473, - "name": "Multisig_Accept_multisig_signer_as_key", - "blob": "0f0a6bc4000000000000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Accept multisig signer as key", - "1 | Auth id : 50283", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Multisig : Accept multisig signer as key", - "1 | Auth id : 50283", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 474, - "name": "Multisig_Accept_multisig_signer_as_key", - "blob": "0f0a6bc4000000000000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Accept multisig signer as key", - "1 | Auth id : 50283", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Multisig : Accept multisig signer as key", - "1 | Auth id : 50283", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 475, - "name": "Multisig_Accept_multisig_signer_as_key", - "blob": "0f0a2309000000000000d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Accept multisig signer as key", - "1 | Auth id : 2339", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Multisig : Accept multisig signer as key", - "1 | Auth id : 2339", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 476, - "name": "Multisig_Add_multisig_signer", - "blob": "0f0b00c159607bd9feabe4e89f3d8969fac07dda1dacf0a64ca5a3c8ed11d4ba6ad804d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Add multisig signer", - "1 | Signer [1/2] : c159607bd9feabe4e89f3d8969fac07dda1dac", - "1 | Signer [2/2] : f0a64ca5a3c8ed11d4ba6ad804", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Multisig : Add multisig signer", - "1 | Signer [1/2] : c159607bd9feabe4e89f3d8969fac07dda1dac", - "1 | Signer [2/2] : f0a64ca5a3c8ed11d4ba6ad804", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 477, - "name": "Multisig_Add_multisig_signer", - "blob": "0f0b00c159607bd9feabe4e89f3d8969fac07dda1dacf0a64ca5a3c8ed11d4ba6ad804d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Add multisig signer", - "1 | Signer [1/2] : c159607bd9feabe4e89f3d8969fac07dda1dac", - "1 | Signer [2/2] : f0a64ca5a3c8ed11d4ba6ad804", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Multisig : Add multisig signer", - "1 | Signer [1/2] : c159607bd9feabe4e89f3d8969fac07dda1dac", - "1 | Signer [2/2] : f0a64ca5a3c8ed11d4ba6ad804", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 478, - "name": "Multisig_Add_multisig_signer", - "blob": "0f0b01aa43fe83c1c5c44bcf8aa95778c4139479db8fa2ca98bc80241cc595bcf4f42ad50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Add multisig signer", - "1 | Signer [1/2] : 2GJASZYS9pvBWqQD4D81sfcNrYF6j4T8x5tvxr", - "1 | Signer [2/2] : n2taDLssXn" - ], - "output_expert": [ - "0 | Multisig : Add multisig signer", - "1 | Signer [1/2] : 2GJASZYS9pvBWqQD4D81sfcNrYF6j4T8x5tvxr", - "1 | Signer [2/2] : n2taDLssXn", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 479, - "name": "Multisig_Add_multisig_signer", - "blob": "0f0b00c159607bd9feabe4e89f3d8969fac07dda1dacf0a64ca5a3c8ed11d4ba6ad804d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Add multisig signer", - "1 | Signer [1/2] : c159607bd9feabe4e89f3d8969fac07dda1dac", - "1 | Signer [2/2] : f0a64ca5a3c8ed11d4ba6ad804" - ], - "output_expert": [ - "0 | Multisig : Add multisig signer", - "1 | Signer [1/2] : c159607bd9feabe4e89f3d8969fac07dda1dac", - "1 | Signer [2/2] : f0a64ca5a3c8ed11d4ba6ad804", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 480, - "name": "Multisig_Add_multisig_signer", - "blob": "0f0b00c159607bd9feabe4e89f3d8969fac07dda1dacf0a64ca5a3c8ed11d4ba6ad804d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Add multisig signer", - "1 | Signer [1/2] : c159607bd9feabe4e89f3d8969fac07dda1dac", - "1 | Signer [2/2] : f0a64ca5a3c8ed11d4ba6ad804", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Multisig : Add multisig signer", - "1 | Signer [1/2] : c159607bd9feabe4e89f3d8969fac07dda1dac", - "1 | Signer [2/2] : f0a64ca5a3c8ed11d4ba6ad804", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 481, - "name": "Multisig_Remove_multisig_signer", - "blob": "0f0c00c159607bd9feabe4e89f3d8969fac07dda1dacf0a64ca5a3c8ed11d4ba6ad804d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Remove multisig signer", - "1 | Signer [1/2] : c159607bd9feabe4e89f3d8969fac07dda1dac", - "1 | Signer [2/2] : f0a64ca5a3c8ed11d4ba6ad804" - ], - "output_expert": [ - "0 | Multisig : Remove multisig signer", - "1 | Signer [1/2] : c159607bd9feabe4e89f3d8969fac07dda1dac", - "1 | Signer [2/2] : f0a64ca5a3c8ed11d4ba6ad804", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 482, - "name": "Multisig_Remove_multisig_signer", - "blob": "0f0c01aa43fe83c1c5c44bcf8aa95778c4139479db8fa2ca98bc80241cc595bcf4f42ad503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Remove multisig signer", - "1 | Signer [1/2] : 2GJASZYS9pvBWqQD4D81sfcNrYF6j4T8x5tvxr", - "1 | Signer [2/2] : n2taDLssXn", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Multisig : Remove multisig signer", - "1 | Signer [1/2] : 2GJASZYS9pvBWqQD4D81sfcNrYF6j4T8x5tvxr", - "1 | Signer [2/2] : n2taDLssXn", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 483, - "name": "Multisig_Remove_multisig_signer", - "blob": "0f0c01aa43fe83c1c5c44bcf8aa95778c4139479db8fa2ca98bc80241cc595bcf4f42ad50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Remove multisig signer", - "1 | Signer [1/2] : 2GJASZYS9pvBWqQD4D81sfcNrYF6j4T8x5tvxr", - "1 | Signer [2/2] : n2taDLssXn", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Multisig : Remove multisig signer", - "1 | Signer [1/2] : 2GJASZYS9pvBWqQD4D81sfcNrYF6j4T8x5tvxr", - "1 | Signer [2/2] : n2taDLssXn", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 484, - "name": "Multisig_Remove_multisig_signer", - "blob": "0f0c01aa43fe83c1c5c44bcf8aa95778c4139479db8fa2ca98bc80241cc595bcf4f42ad50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Remove multisig signer", - "1 | Signer [1/2] : 2GJASZYS9pvBWqQD4D81sfcNrYF6j4T8x5tvxr", - "1 | Signer [2/2] : n2taDLssXn" - ], - "output_expert": [ - "0 | Multisig : Remove multisig signer", - "1 | Signer [1/2] : 2GJASZYS9pvBWqQD4D81sfcNrYF6j4T8x5tvxr", - "1 | Signer [2/2] : n2taDLssXn", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 485, - "name": "Multisig_Remove_multisig_signer", - "blob": "0f0c00c159607bd9feabe4e89f3d8969fac07dda1dacf0a64ca5a3c8ed11d4ba6ad804d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Remove multisig signer", - "1 | Signer [1/2] : c159607bd9feabe4e89f3d8969fac07dda1dac", - "1 | Signer [2/2] : f0a64ca5a3c8ed11d4ba6ad804", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Multisig : Remove multisig signer", - "1 | Signer [1/2] : c159607bd9feabe4e89f3d8969fac07dda1dac", - "1 | Signer [2/2] : f0a64ca5a3c8ed11d4ba6ad804", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 486, - "name": "Multisig_Add_multisig_signers_via_creator", - "blob": "0f0d6a8500b97a5889f4ecdf68f2a4b406fec17e564b6254cc641c43c18ca62cb21c08004935562846ebf05ad1832cbbf59d2d8fbbf1ea0313172aabbf72923e9dcce90a01280e3072842c6510253368c03e83373b93d86d8426ba819a6e15c293a68e6a70d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Add multisig signers via creator", - "1 | Multisig [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Multisig [2/2] : hbeqgL2Ukv", - "2 | Signers [1/4] : 4935562846ebf05ad1832cbbf59d2d8fbbf1ea", - "2 | Signers [2/4] : 0313172aabbf72923e9dcce90a", - "2 | Signers [3/4] : 2DMSEUR6UjPqFgqaHbDbZ7VRW3gEGPX8tYuSBG", - "2 | Signers [4/4] : HNoGML3GuD", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Multisig : Add multisig signers via creator", - "1 | Multisig [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Multisig [2/2] : hbeqgL2Ukv", - "2 | Signers [1/4] : 4935562846ebf05ad1832cbbf59d2d8fbbf1ea", - "2 | Signers [2/4] : 0313172aabbf72923e9dcce90a", - "2 | Signers [3/4] : 2DMSEUR6UjPqFgqaHbDbZ7VRW3gEGPX8tYuSBG", - "2 | Signers [4/4] : HNoGML3GuD", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 487, - "name": "Multisig_Add_multisig_signers_via_creator", - "blob": "0f0de6b9eabd5f8491bd24bb8ff940cd591871b9fb05be188713f14b32f73923df6c08004935562846ebf05ad1832cbbf59d2d8fbbf1ea0313172aabbf72923e9dcce90a01280e3072842c6510253368c03e83373b93d86d8426ba819a6e15c293a68e6a70d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Add multisig signers via creator", - "1 | Multisig [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | Multisig [2/2] : 8Aw2bPcNj9", - "2 | Signers [1/4] : 4935562846ebf05ad1832cbbf59d2d8fbbf1ea", - "2 | Signers [2/4] : 0313172aabbf72923e9dcce90a", - "2 | Signers [3/4] : 2DMSEUR6UjPqFgqaHbDbZ7VRW3gEGPX8tYuSBG", - "2 | Signers [4/4] : HNoGML3GuD", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Multisig : Add multisig signers via creator", - "1 | Multisig [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | Multisig [2/2] : 8Aw2bPcNj9", - "2 | Signers [1/4] : 4935562846ebf05ad1832cbbf59d2d8fbbf1ea", - "2 | Signers [2/4] : 0313172aabbf72923e9dcce90a", - "2 | Signers [3/4] : 2DMSEUR6UjPqFgqaHbDbZ7VRW3gEGPX8tYuSBG", - "2 | Signers [4/4] : HNoGML3GuD", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 488, - "name": "Multisig_Add_multisig_signers_via_creator", - "blob": "0f0d42ed86a3b5fd55b0ec57c2112f981fbc2d91f4225759141ea0b255fd34639d7408004935562846ebf05ad1832cbbf59d2d8fbbf1ea0313172aabbf72923e9dcce90a01280e3072842c6510253368c03e83373b93d86d8426ba819a6e15c293a68e6a70d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Add multisig signers via creator", - "1 | Multisig [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "1 | Multisig [2/2] : kvir9Rw75p", - "2 | Signers [1/4] : 4935562846ebf05ad1832cbbf59d2d8fbbf1ea", - "2 | Signers [2/4] : 0313172aabbf72923e9dcce90a", - "2 | Signers [3/4] : 2DMSEUR6UjPqFgqaHbDbZ7VRW3gEGPX8tYuSBG", - "2 | Signers [4/4] : HNoGML3GuD", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Multisig : Add multisig signers via creator", - "1 | Multisig [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "1 | Multisig [2/2] : kvir9Rw75p", - "2 | Signers [1/4] : 4935562846ebf05ad1832cbbf59d2d8fbbf1ea", - "2 | Signers [2/4] : 0313172aabbf72923e9dcce90a", - "2 | Signers [3/4] : 2DMSEUR6UjPqFgqaHbDbZ7VRW3gEGPX8tYuSBG", - "2 | Signers [4/4] : HNoGML3GuD", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 489, - "name": "Multisig_Add_multisig_signers_via_creator", - "blob": "0f0d44437e7896c15f809cbc7156673d31ecf873060385385e9c27d5ae4abc05561508004935562846ebf05ad1832cbbf59d2d8fbbf1ea0313172aabbf72923e9dcce90a01280e3072842c6510253368c03e83373b93d86d8426ba819a6e15c293a68e6a70d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Add multisig signers via creator", - "1 | Multisig [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | Multisig [2/2] : yiDWE8dFzF", - "2 | Signers [1/4] : 4935562846ebf05ad1832cbbf59d2d8fbbf1ea", - "2 | Signers [2/4] : 0313172aabbf72923e9dcce90a", - "2 | Signers [3/4] : 2DMSEUR6UjPqFgqaHbDbZ7VRW3gEGPX8tYuSBG", - "2 | Signers [4/4] : HNoGML3GuD" - ], - "output_expert": [ - "0 | Multisig : Add multisig signers via creator", - "1 | Multisig [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | Multisig [2/2] : yiDWE8dFzF", - "2 | Signers [1/4] : 4935562846ebf05ad1832cbbf59d2d8fbbf1ea", - "2 | Signers [2/4] : 0313172aabbf72923e9dcce90a", - "2 | Signers [3/4] : 2DMSEUR6UjPqFgqaHbDbZ7VRW3gEGPX8tYuSBG", - "2 | Signers [4/4] : HNoGML3GuD", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 490, - "name": "Multisig_Add_multisig_signers_via_creator", - "blob": "0f0d44437e7896c15f809cbc7156673d31ecf873060385385e9c27d5ae4abc05561508004935562846ebf05ad1832cbbf59d2d8fbbf1ea0313172aabbf72923e9dcce90a01280e3072842c6510253368c03e83373b93d86d8426ba819a6e15c293a68e6a70d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Add multisig signers via creator", - "1 | Multisig [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | Multisig [2/2] : yiDWE8dFzF", - "2 | Signers [1/4] : 4935562846ebf05ad1832cbbf59d2d8fbbf1ea", - "2 | Signers [2/4] : 0313172aabbf72923e9dcce90a", - "2 | Signers [3/4] : 2DMSEUR6UjPqFgqaHbDbZ7VRW3gEGPX8tYuSBG", - "2 | Signers [4/4] : HNoGML3GuD", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Multisig : Add multisig signers via creator", - "1 | Multisig [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | Multisig [2/2] : yiDWE8dFzF", - "2 | Signers [1/4] : 4935562846ebf05ad1832cbbf59d2d8fbbf1ea", - "2 | Signers [2/4] : 0313172aabbf72923e9dcce90a", - "2 | Signers [3/4] : 2DMSEUR6UjPqFgqaHbDbZ7VRW3gEGPX8tYuSBG", - "2 | Signers [4/4] : HNoGML3GuD", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 491, - "name": "Multisig_Remove_multisig_signers_via_creator", - "blob": "0f0e42ed86a3b5fd55b0ec57c2112f981fbc2d91f4225759141ea0b255fd34639d7408004935562846ebf05ad1832cbbf59d2d8fbbf1ea0313172aabbf72923e9dcce90a01280e3072842c6510253368c03e83373b93d86d8426ba819a6e15c293a68e6a70d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Remove multisig signers via creator", - "1 | Multisig [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "1 | Multisig [2/2] : kvir9Rw75p", - "2 | Signers [1/4] : 4935562846ebf05ad1832cbbf59d2d8fbbf1ea", - "2 | Signers [2/4] : 0313172aabbf72923e9dcce90a", - "2 | Signers [3/4] : 2DMSEUR6UjPqFgqaHbDbZ7VRW3gEGPX8tYuSBG", - "2 | Signers [4/4] : HNoGML3GuD", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Multisig : Remove multisig signers via creator", - "1 | Multisig [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "1 | Multisig [2/2] : kvir9Rw75p", - "2 | Signers [1/4] : 4935562846ebf05ad1832cbbf59d2d8fbbf1ea", - "2 | Signers [2/4] : 0313172aabbf72923e9dcce90a", - "2 | Signers [3/4] : 2DMSEUR6UjPqFgqaHbDbZ7VRW3gEGPX8tYuSBG", - "2 | Signers [4/4] : HNoGML3GuD", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 492, - "name": "Multisig_Remove_multisig_signers_via_creator", - "blob": "0f0e1813b8c47c41f5279be46dc5272f7321cbfb8e6a91645a82458752c94de75b1c08004935562846ebf05ad1832cbbf59d2d8fbbf1ea0313172aabbf72923e9dcce90a01280e3072842c6510253368c03e83373b93d86d8426ba819a6e15c293a68e6a70d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Remove multisig signers via creator", - "1 | Multisig [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | Multisig [2/2] : PmkgsnFWXr", - "2 | Signers [1/4] : 4935562846ebf05ad1832cbbf59d2d8fbbf1ea", - "2 | Signers [2/4] : 0313172aabbf72923e9dcce90a", - "2 | Signers [3/4] : 2DMSEUR6UjPqFgqaHbDbZ7VRW3gEGPX8tYuSBG", - "2 | Signers [4/4] : HNoGML3GuD", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Multisig : Remove multisig signers via creator", - "1 | Multisig [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | Multisig [2/2] : PmkgsnFWXr", - "2 | Signers [1/4] : 4935562846ebf05ad1832cbbf59d2d8fbbf1ea", - "2 | Signers [2/4] : 0313172aabbf72923e9dcce90a", - "2 | Signers [3/4] : 2DMSEUR6UjPqFgqaHbDbZ7VRW3gEGPX8tYuSBG", - "2 | Signers [4/4] : HNoGML3GuD", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 493, - "name": "Multisig_Remove_multisig_signers_via_creator", - "blob": "0f0e1813b8c47c41f5279be46dc5272f7321cbfb8e6a91645a82458752c94de75b1c08004935562846ebf05ad1832cbbf59d2d8fbbf1ea0313172aabbf72923e9dcce90a01280e3072842c6510253368c03e83373b93d86d8426ba819a6e15c293a68e6a70d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Remove multisig signers via creator", - "1 | Multisig [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | Multisig [2/2] : PmkgsnFWXr", - "2 | Signers [1/4] : 4935562846ebf05ad1832cbbf59d2d8fbbf1ea", - "2 | Signers [2/4] : 0313172aabbf72923e9dcce90a", - "2 | Signers [3/4] : 2DMSEUR6UjPqFgqaHbDbZ7VRW3gEGPX8tYuSBG", - "2 | Signers [4/4] : HNoGML3GuD", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Multisig : Remove multisig signers via creator", - "1 | Multisig [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | Multisig [2/2] : PmkgsnFWXr", - "2 | Signers [1/4] : 4935562846ebf05ad1832cbbf59d2d8fbbf1ea", - "2 | Signers [2/4] : 0313172aabbf72923e9dcce90a", - "2 | Signers [3/4] : 2DMSEUR6UjPqFgqaHbDbZ7VRW3gEGPX8tYuSBG", - "2 | Signers [4/4] : HNoGML3GuD", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 494, - "name": "Multisig_Remove_multisig_signers_via_creator", - "blob": "0f0e3e687768a50d36e597c2eb73c8161ef62ba3c55f6aa5ca420e76dcd08b219d2608004935562846ebf05ad1832cbbf59d2d8fbbf1ea0313172aabbf72923e9dcce90a01280e3072842c6510253368c03e83373b93d86d8426ba819a6e15c293a68e6a70d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Remove multisig signers via creator", - "1 | Multisig [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Multisig [2/2] : kKMKAMQcg5", - "2 | Signers [1/4] : 4935562846ebf05ad1832cbbf59d2d8fbbf1ea", - "2 | Signers [2/4] : 0313172aabbf72923e9dcce90a", - "2 | Signers [3/4] : 2DMSEUR6UjPqFgqaHbDbZ7VRW3gEGPX8tYuSBG", - "2 | Signers [4/4] : HNoGML3GuD" - ], - "output_expert": [ - "0 | Multisig : Remove multisig signers via creator", - "1 | Multisig [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Multisig [2/2] : kKMKAMQcg5", - "2 | Signers [1/4] : 4935562846ebf05ad1832cbbf59d2d8fbbf1ea", - "2 | Signers [2/4] : 0313172aabbf72923e9dcce90a", - "2 | Signers [3/4] : 2DMSEUR6UjPqFgqaHbDbZ7VRW3gEGPX8tYuSBG", - "2 | Signers [4/4] : HNoGML3GuD", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 495, - "name": "Multisig_Remove_multisig_signers_via_creator", - "blob": "0f0e44437e7896c15f809cbc7156673d31ecf873060385385e9c27d5ae4abc05561508004935562846ebf05ad1832cbbf59d2d8fbbf1ea0313172aabbf72923e9dcce90a01280e3072842c6510253368c03e83373b93d86d8426ba819a6e15c293a68e6a70d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Remove multisig signers via creator", - "1 | Multisig [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | Multisig [2/2] : yiDWE8dFzF", - "2 | Signers [1/4] : 4935562846ebf05ad1832cbbf59d2d8fbbf1ea", - "2 | Signers [2/4] : 0313172aabbf72923e9dcce90a", - "2 | Signers [3/4] : 2DMSEUR6UjPqFgqaHbDbZ7VRW3gEGPX8tYuSBG", - "2 | Signers [4/4] : HNoGML3GuD" - ], - "output_expert": [ - "0 | Multisig : Remove multisig signers via creator", - "1 | Multisig [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | Multisig [2/2] : yiDWE8dFzF", - "2 | Signers [1/4] : 4935562846ebf05ad1832cbbf59d2d8fbbf1ea", - "2 | Signers [2/4] : 0313172aabbf72923e9dcce90a", - "2 | Signers [3/4] : 2DMSEUR6UjPqFgqaHbDbZ7VRW3gEGPX8tYuSBG", - "2 | Signers [4/4] : HNoGML3GuD", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 496, - "name": "Multisig_Change_sigs_required", - "blob": "0f0f6bc4000000000000d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Change sigs required", - "1 | Sigs required : 50283" - ], - "output_expert": [ - "0 | Multisig : Change sigs required", - "1 | Sigs required : 50283", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 497, - "name": "Multisig_Change_sigs_required", - "blob": "0f0f2309000000000000d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Change sigs required", - "1 | Sigs required : 2339", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Multisig : Change sigs required", - "1 | Sigs required : 2339", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 498, - "name": "Multisig_Change_sigs_required", - "blob": "0f0f0000000000000000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Change sigs required", - "1 | Sigs required : 0", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Multisig : Change sigs required", - "1 | Sigs required : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 499, - "name": "Multisig_Change_sigs_required", - "blob": "0f0f2309000000000000d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Change sigs required", - "1 | Sigs required : 2339" - ], - "output_expert": [ - "0 | Multisig : Change sigs required", - "1 | Sigs required : 2339", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 500, - "name": "Multisig_Change_sigs_required", - "blob": "0f0f2309000000000000d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Change sigs required", - "1 | Sigs required : 2339", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Multisig : Change sigs required", - "1 | Sigs required : 2339", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 501, - "name": "Multisig_Make_multisig_secondary", - "blob": "0f105cf93ef43e7f44d10f78045182931ed20d916dc1680da77e6e1e60c2f827bc79d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Make multisig secondary", - "1 | Multisig [1/2] : 2EYpYprRA7x9tq23MPgSiZGQ7nyg2TkNyVDEw2", - "1 | Multisig [2/2] : PVSHuQtD81", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Multisig : Make multisig secondary", - "1 | Multisig [1/2] : 2EYpYprRA7x9tq23MPgSiZGQ7nyg2TkNyVDEw2", - "1 | Multisig [2/2] : PVSHuQtD81", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 502, - "name": "Multisig_Make_multisig_secondary", - "blob": "0f105cf93ef43e7f44d10f78045182931ed20d916dc1680da77e6e1e60c2f827bc79d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Make multisig secondary", - "1 | Multisig [1/2] : 2EYpYprRA7x9tq23MPgSiZGQ7nyg2TkNyVDEw2", - "1 | Multisig [2/2] : PVSHuQtD81", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Multisig : Make multisig secondary", - "1 | Multisig [1/2] : 2EYpYprRA7x9tq23MPgSiZGQ7nyg2TkNyVDEw2", - "1 | Multisig [2/2] : PVSHuQtD81", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 503, - "name": "Multisig_Make_multisig_secondary", - "blob": "0f106a8500b97a5889f4ecdf68f2a4b406fec17e564b6254cc641c43c18ca62cb21cd5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Make multisig secondary", - "1 | Multisig [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Multisig [2/2] : hbeqgL2Ukv", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Multisig : Make multisig secondary", - "1 | Multisig [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Multisig [2/2] : hbeqgL2Ukv", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 504, - "name": "Multisig_Make_multisig_secondary", - "blob": "0f10b673c14adc4fdaaa84b868330314bb524eb97de82eb6ad5c24401af92af33f54d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Make multisig secondary", - "1 | Multisig [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Multisig [2/2] : 6xRJgVAa3i" - ], - "output_expert": [ - "0 | Multisig : Make multisig secondary", - "1 | Multisig [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Multisig [2/2] : 6xRJgVAa3i", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 505, - "name": "Multisig_Make_multisig_secondary", - "blob": "0f1044437e7896c15f809cbc7156673d31ecf873060385385e9c27d5ae4abc055615d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Make multisig secondary", - "1 | Multisig [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | Multisig [2/2] : yiDWE8dFzF", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Multisig : Make multisig secondary", - "1 | Multisig [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | Multisig [2/2] : yiDWE8dFzF", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 506, - "name": "Multisig_Make_multisig_primary", - "blob": "0f1144437e7896c15f809cbc7156673d31ecf873060385385e9c27d5ae4abc055615018813000000000000d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Make multisig primary", - "1 | Multisig [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | Multisig [2/2] : yiDWE8dFzF", - "2 | Optional cdd auth id : 5000", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Multisig : Make multisig primary", - "1 | Multisig [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | Multisig [2/2] : yiDWE8dFzF", - "2 | Optional cdd auth id : 5000", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 507, - "name": "Multisig_Make_multisig_primary", - "blob": "0f111813b8c47c41f5279be46dc5272f7321cbfb8e6a91645a82458752c94de75b1c018813000000000000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Make multisig primary", - "1 | Multisig [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | Multisig [2/2] : PmkgsnFWXr", - "2 | Optional cdd auth id : 5000", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Multisig : Make multisig primary", - "1 | Multisig [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | Multisig [2/2] : PmkgsnFWXr", - "2 | Optional cdd auth id : 5000", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 508, - "name": "Multisig_Make_multisig_primary", - "blob": "0f1144437e7896c15f809cbc7156673d31ecf873060385385e9c27d5ae4abc055615018813000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Make multisig primary", - "1 | Multisig [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | Multisig [2/2] : yiDWE8dFzF", - "2 | Optional cdd auth id : 5000", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Multisig : Make multisig primary", - "1 | Multisig [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | Multisig [2/2] : yiDWE8dFzF", - "2 | Optional cdd auth id : 5000", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 509, - "name": "Multisig_Make_multisig_primary", - "blob": "0f1144437e7896c15f809cbc7156673d31ecf873060385385e9c27d5ae4abc05561501d8c9760100000000d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Make multisig primary", - "1 | Multisig [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | Multisig [2/2] : yiDWE8dFzF", - "2 | Optional cdd auth id : 24562136", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Multisig : Make multisig primary", - "1 | Multisig [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | Multisig [2/2] : yiDWE8dFzF", - "2 | Optional cdd auth id : 24562136", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 510, - "name": "Multisig_Make_multisig_primary", - "blob": "0f115cf93ef43e7f44d10f78045182931ed20d916dc1680da77e6e1e60c2f827bc79018813000000000000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Make multisig primary", - "1 | Multisig [1/2] : 2EYpYprRA7x9tq23MPgSiZGQ7nyg2TkNyVDEw2", - "1 | Multisig [2/2] : PVSHuQtD81", - "2 | Optional cdd auth id : 5000" - ], - "output_expert": [ - "0 | Multisig : Make multisig primary", - "1 | Multisig [1/2] : 2EYpYprRA7x9tq23MPgSiZGQ7nyg2TkNyVDEw2", - "1 | Multisig [2/2] : PVSHuQtD81", - "2 | Optional cdd auth id : 5000", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 511, - "name": "Multisig_Execute_scheduled_proposal", - "blob": "0f1244437e7896c15f809cbc7156673d31ecf873060385385e9c27d5ae4abc055615640000000000000031c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec1359aca23b925c6f9e131da1208579bd4c0ed5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Execute scheduled proposal", - "1 | Multisig [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | Multisig [2/2] : yiDWE8dFzF", - "2 | Proposal id : 100", - "3 | Multisig did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "3 | Multisig did [2/2] : 258ab3f4314e37a4eb089601ec", - "4 | Proposal weight [1/2] : 11416445363542994009", - "4 | Proposal weight [2/2] : 1030406744383201565", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Multisig : Execute scheduled proposal", - "1 | Multisig [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | Multisig [2/2] : yiDWE8dFzF", - "2 | Proposal id : 100", - "3 | Multisig did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "3 | Multisig did [2/2] : 258ab3f4314e37a4eb089601ec", - "4 | Proposal weight [1/2] : 11416445363542994009", - "4 | Proposal weight [2/2] : 1030406744383201565", - "5 | Chain : Polymesh", - "6 | Nonce : 2339", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 512, - "name": "Multisig_Execute_scheduled_proposal", - "blob": "0f126a8500b97a5889f4ecdf68f2a4b406fec17e564b6254cc641c43c18ca62cb21c6bc400000000000031c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec0ba8c717031abc2a403eb3d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Execute scheduled proposal", - "1 | Multisig [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Multisig [2/2] : hbeqgL2Ukv", - "2 | Proposal id : 50283", - "3 | Multisig did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "3 | Multisig did [2/2] : 258ab3f4314e37a4eb089601ec", - "4 | Proposal weight [1/2] : 206819907061672", - "4 | Proposal weight [2/2] : 751800330", - "5 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Multisig : Execute scheduled proposal", - "1 | Multisig [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Multisig [2/2] : hbeqgL2Ukv", - "2 | Proposal id : 50283", - "3 | Multisig did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "3 | Multisig did [2/2] : 258ab3f4314e37a4eb089601ec", - "4 | Proposal weight [1/2] : 206819907061672", - "4 | Proposal weight [2/2] : 751800330", - "5 | Chain : Polymesh", - "6 | Nonce : 100", - "7 | Tip : POLYX 1234.56789", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 513, - "name": "Multisig_Execute_scheduled_proposal", - "blob": "0f1244437e7896c15f809cbc7156673d31ecf873060385385e9c27d5ae4abc055615640000000000000031c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec0ba8c717031abc2a403eb3d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Execute scheduled proposal", - "1 | Multisig [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | Multisig [2/2] : yiDWE8dFzF", - "2 | Proposal id : 100", - "3 | Multisig did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "3 | Multisig did [2/2] : 258ab3f4314e37a4eb089601ec", - "4 | Proposal weight [1/2] : 206819907061672", - "4 | Proposal weight [2/2] : 751800330", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Multisig : Execute scheduled proposal", - "1 | Multisig [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | Multisig [2/2] : yiDWE8dFzF", - "2 | Proposal id : 100", - "3 | Multisig did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "3 | Multisig did [2/2] : 258ab3f4314e37a4eb089601ec", - "4 | Proposal weight [1/2] : 206819907061672", - "4 | Proposal weight [2/2] : 751800330", - "5 | Chain : Polymesh", - "6 | Nonce : 100", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 514, - "name": "Multisig_Execute_scheduled_proposal", - "blob": "0f126a8500b97a5889f4ecdf68f2a4b406fec17e564b6254cc641c43c18ca62cb21c6bc400000000000031c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec0ba8c717031abc2a403eb3d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Execute scheduled proposal", - "1 | Multisig [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Multisig [2/2] : hbeqgL2Ukv", - "2 | Proposal id : 50283", - "3 | Multisig did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "3 | Multisig did [2/2] : 258ab3f4314e37a4eb089601ec", - "4 | Proposal weight [1/2] : 206819907061672", - "4 | Proposal weight [2/2] : 751800330", - "5 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Multisig : Execute scheduled proposal", - "1 | Multisig [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Multisig [2/2] : hbeqgL2Ukv", - "2 | Proposal id : 50283", - "3 | Multisig did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "3 | Multisig did [2/2] : 258ab3f4314e37a4eb089601ec", - "4 | Proposal weight [1/2] : 206819907061672", - "4 | Proposal weight [2/2] : 751800330", - "5 | Chain : Polymesh", - "6 | Nonce : 50283", - "7 | Tip : POLYX 55.555555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 515, - "name": "Multisig_Execute_scheduled_proposal", - "blob": "0f126a8500b97a5889f4ecdf68f2a4b406fec17e564b6254cc641c43c18ca62cb21c6bc400000000000031c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec0ba8c717031abc2a403eb3d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Execute scheduled proposal", - "1 | Multisig [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Multisig [2/2] : hbeqgL2Ukv", - "2 | Proposal id : 50283", - "3 | Multisig did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "3 | Multisig did [2/2] : 258ab3f4314e37a4eb089601ec", - "4 | Proposal weight [1/2] : 206819907061672", - "4 | Proposal weight [2/2] : 751800330", - "5 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Multisig : Execute scheduled proposal", - "1 | Multisig [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Multisig [2/2] : hbeqgL2Ukv", - "2 | Proposal id : 50283", - "3 | Multisig did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "3 | Multisig did [2/2] : 258ab3f4314e37a4eb089601ec", - "4 | Proposal weight [1/2] : 206819907061672", - "4 | Proposal weight [2/2] : 751800330", - "5 | Chain : Polymesh", - "6 | Nonce : 50283", - "7 | Tip : POLYX 5552342.355555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 516, - "name": "Multisig_Change_sigs_required_via_creator", - "blob": "0f13e6b9eabd5f8491bd24bb8ff940cd591871b9fb05be188713f14b32f73923df6c0100000000000000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Change sigs required via creator", - "1 | Multisig account [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | Multisig account [2/2] : 8Aw2bPcNj9", - "2 | Signatures required : 1", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Multisig : Change sigs required via creator", - "1 | Multisig account [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | Multisig account [2/2] : 8Aw2bPcNj9", - "2 | Signatures required : 1", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 517, - "name": "Multisig_Change_sigs_required_via_creator", - "blob": "0f135cf93ef43e7f44d10f78045182931ed20d916dc1680da77e6e1e60c2f827bc790000000000000000d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Change sigs required via creator", - "1 | Multisig account [1/2] : 2EYpYprRA7x9tq23MPgSiZGQ7nyg2TkNyVDEw2", - "1 | Multisig account [2/2] : PVSHuQtD81", - "2 | Signatures required : 0", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Multisig : Change sigs required via creator", - "1 | Multisig account [1/2] : 2EYpYprRA7x9tq23MPgSiZGQ7nyg2TkNyVDEw2", - "1 | Multisig account [2/2] : PVSHuQtD81", - "2 | Signatures required : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 518, - "name": "Multisig_Change_sigs_required_via_creator", - "blob": "0f136a8500b97a5889f4ecdf68f2a4b406fec17e564b6254cc641c43c18ca62cb21c6400000000000000d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Change sigs required via creator", - "1 | Multisig account [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Multisig account [2/2] : hbeqgL2Ukv", - "2 | Signatures required : 100", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Multisig : Change sigs required via creator", - "1 | Multisig account [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Multisig account [2/2] : hbeqgL2Ukv", - "2 | Signatures required : 100", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 519, - "name": "Multisig_Change_sigs_required_via_creator", - "blob": "0f133e687768a50d36e597c2eb73c8161ef62ba3c55f6aa5ca420e76dcd08b219d266bc4000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Change sigs required via creator", - "1 | Multisig account [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Multisig account [2/2] : kKMKAMQcg5", - "2 | Signatures required : 50283", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Multisig : Change sigs required via creator", - "1 | Multisig account [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Multisig account [2/2] : kKMKAMQcg5", - "2 | Signatures required : 50283", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 520, - "name": "Multisig_Change_sigs_required_via_creator", - "blob": "0f13e6b9eabd5f8491bd24bb8ff940cd591871b9fb05be188713f14b32f73923df6c0100000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Change sigs required via creator", - "1 | Multisig account [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | Multisig account [2/2] : 8Aw2bPcNj9", - "2 | Signatures required : 1", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Multisig : Change sigs required via creator", - "1 | Multisig account [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | Multisig account [2/2] : 8Aw2bPcNj9", - "2 | Signatures required : 1", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 521, - "name": "Multisig_Remove_creator_controls", - "blob": "0f141813b8c47c41f5279be46dc5272f7321cbfb8e6a91645a82458752c94de75b1cd503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Remove creator controls", - "1 | Multisig account [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | Multisig account [2/2] : PmkgsnFWXr", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Multisig : Remove creator controls", - "1 | Multisig account [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | Multisig account [2/2] : PmkgsnFWXr", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 522, - "name": "Multisig_Remove_creator_controls", - "blob": "0f14b673c14adc4fdaaa84b868330314bb524eb97de82eb6ad5c24401af92af33f54d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Remove creator controls", - "1 | Multisig account [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Multisig account [2/2] : 6xRJgVAa3i", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Multisig : Remove creator controls", - "1 | Multisig account [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Multisig account [2/2] : 6xRJgVAa3i", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 523, - "name": "Multisig_Remove_creator_controls", - "blob": "0f14b673c14adc4fdaaa84b868330314bb524eb97de82eb6ad5c24401af92af33f54d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Remove creator controls", - "1 | Multisig account [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Multisig account [2/2] : 6xRJgVAa3i", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Multisig : Remove creator controls", - "1 | Multisig account [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Multisig account [2/2] : 6xRJgVAa3i", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 524, - "name": "Multisig_Remove_creator_controls", - "blob": "0f141813b8c47c41f5279be46dc5272f7321cbfb8e6a91645a82458752c94de75b1cd503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Remove creator controls", - "1 | Multisig account [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | Multisig account [2/2] : PmkgsnFWXr" - ], - "output_expert": [ - "0 | Multisig : Remove creator controls", - "1 | Multisig account [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | Multisig account [2/2] : PmkgsnFWXr", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 525, - "name": "Multisig_Remove_creator_controls", - "blob": "0f146a8500b97a5889f4ecdf68f2a4b406fec17e564b6254cc641c43c18ca62cb21cd503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Multisig : Remove creator controls", - "1 | Multisig account [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Multisig account [2/2] : hbeqgL2Ukv", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Multisig : Remove creator controls", - "1 | Multisig account [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Multisig account [2/2] : hbeqgL2Ukv", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 526, - "name": "Bridge_Change_controller", - "blob": "10001813b8c47c41f5279be46dc5272f7321cbfb8e6a91645a82458752c94de75b1cd503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Change controller", - "1 | Controller [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | Controller [2/2] : PmkgsnFWXr", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Bridge : Change controller", - "1 | Controller [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | Controller [2/2] : PmkgsnFWXr", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 527, - "name": "Bridge_Change_controller", - "blob": "10006a8500b97a5889f4ecdf68f2a4b406fec17e564b6254cc641c43c18ca62cb21cd503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Change controller", - "1 | Controller [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Controller [2/2] : hbeqgL2Ukv" - ], - "output_expert": [ - "0 | Bridge : Change controller", - "1 | Controller [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Controller [2/2] : hbeqgL2Ukv", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 528, - "name": "Bridge_Change_controller", - "blob": "100044437e7896c15f809cbc7156673d31ecf873060385385e9c27d5ae4abc055615d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Change controller", - "1 | Controller [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | Controller [2/2] : yiDWE8dFzF", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Bridge : Change controller", - "1 | Controller [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | Controller [2/2] : yiDWE8dFzF", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 529, - "name": "Bridge_Change_controller", - "blob": "10001813b8c47c41f5279be46dc5272f7321cbfb8e6a91645a82458752c94de75b1cd503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Change controller", - "1 | Controller [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | Controller [2/2] : PmkgsnFWXr", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Bridge : Change controller", - "1 | Controller [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | Controller [2/2] : PmkgsnFWXr", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 530, - "name": "Bridge_Change_controller", - "blob": "10001813b8c47c41f5279be46dc5272f7321cbfb8e6a91645a82458752c94de75b1cd503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Change controller", - "1 | Controller [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | Controller [2/2] : PmkgsnFWXr", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Bridge : Change controller", - "1 | Controller [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | Controller [2/2] : PmkgsnFWXr", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 531, - "name": "Bridge_Change_admin", - "blob": "1001e6b9eabd5f8491bd24bb8ff940cd591871b9fb05be188713f14b32f73923df6cd50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Change admin", - "1 | Admin [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | Admin [2/2] : 8Aw2bPcNj9" - ], - "output_expert": [ - "0 | Bridge : Change admin", - "1 | Admin [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | Admin [2/2] : 8Aw2bPcNj9", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 532, - "name": "Bridge_Change_admin", - "blob": "10011813b8c47c41f5279be46dc5272f7321cbfb8e6a91645a82458752c94de75b1cd5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Change admin", - "1 | Admin [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | Admin [2/2] : PmkgsnFWXr", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Bridge : Change admin", - "1 | Admin [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | Admin [2/2] : PmkgsnFWXr", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 533, - "name": "Bridge_Change_admin", - "blob": "10013e687768a50d36e597c2eb73c8161ef62ba3c55f6aa5ca420e76dcd08b219d26d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Change admin", - "1 | Admin [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Admin [2/2] : kKMKAMQcg5", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Bridge : Change admin", - "1 | Admin [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Admin [2/2] : kKMKAMQcg5", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 534, - "name": "Bridge_Change_admin", - "blob": "1001b673c14adc4fdaaa84b868330314bb524eb97de82eb6ad5c24401af92af33f54d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Change admin", - "1 | Admin [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Admin [2/2] : 6xRJgVAa3i", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Bridge : Change admin", - "1 | Admin [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Admin [2/2] : 6xRJgVAa3i", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 535, - "name": "Bridge_Change_admin", - "blob": "10013e687768a50d36e597c2eb73c8161ef62ba3c55f6aa5ca420e76dcd08b219d26d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Change admin", - "1 | Admin [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Admin [2/2] : kKMKAMQcg5", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Bridge : Change admin", - "1 | Admin [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Admin [2/2] : kKMKAMQcg5", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 536, - "name": "Bridge_Change_timelock", - "blob": "1002b3e30100d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Change timelock", - "1 | Timelock : 123827", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Bridge : Change timelock", - "1 | Timelock : 123827", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 537, - "name": "Bridge_Change_timelock", - "blob": "10027b000000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Change timelock", - "1 | Timelock : 123", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Bridge : Change timelock", - "1 | Timelock : 123", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 538, - "name": "Bridge_Change_timelock", - "blob": "1002ff030000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Change timelock", - "1 | Timelock : 1023" - ], - "output_expert": [ - "0 | Bridge : Change timelock", - "1 | Timelock : 1023", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 539, - "name": "Bridge_Change_timelock", - "blob": "100200000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Change timelock", - "1 | Timelock : 0", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Bridge : Change timelock", - "1 | Timelock : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 540, - "name": "Bridge_Change_timelock", - "blob": "1002ff030000d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Change timelock", - "1 | Timelock : 1023", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Bridge : Change timelock", - "1 | Timelock : 1023", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 541, - "name": "Bridge_Freeze", - "blob": "1003d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Freeze", - "1 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Bridge : Freeze", - "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip : POLYX 55.555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 542, - "name": "Bridge_Freeze", - "blob": "1003d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Freeze", - "1 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Bridge : Freeze", - "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip : POLYX 0.000987", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 543, - "name": "Bridge_Freeze", - "blob": "1003d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Freeze" - ], - "output_expert": [ - "0 | Bridge : Freeze", - "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "5 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 544, - "name": "Bridge_Freeze", - "blob": "1003d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Freeze" - ], - "output_expert": [ - "0 | Bridge : Freeze", - "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "5 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 545, - "name": "Bridge_Freeze", - "blob": "1003d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Freeze", - "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "1 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Bridge : Freeze", - "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 546, - "name": "Bridge_Unfreeze", - "blob": "1004d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Unfreeze", - "1 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Bridge : Unfreeze", - "1 | Chain : Polymesh", - "2 | Nonce : 100", - "3 | Tip : POLYX 55.555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 547, - "name": "Bridge_Unfreeze", - "blob": "1004d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Unfreeze", - "1 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Bridge : Unfreeze", - "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip : POLYX 1234.56789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 548, - "name": "Bridge_Unfreeze", - "blob": "1004d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Unfreeze" - ], - "output_expert": [ - "0 | Bridge : Unfreeze", - "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "5 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 549, - "name": "Bridge_Unfreeze", - "blob": "1004d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Unfreeze", - "1 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Bridge : Unfreeze", - "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip : POLYX 1234.56789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 550, - "name": "Bridge_Unfreeze", - "blob": "1004d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Unfreeze", - "1 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Bridge : Unfreeze", - "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip : POLYX 55.555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 551, - "name": "Bridge_Change_bridge_limit", - "blob": "1005345fe7fc9c23bfb62334c8ca2c746fee7b000000d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Change bridge limit", - "1 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "1 | Amount [2/2] : 0.371252", - "2 | Duration : 123", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Bridge : Change bridge limit", - "1 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "1 | Amount [2/2] : 0.371252", - "2 | Duration : 123", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 552, - "name": "Bridge_Change_bridge_limit", - "blob": "1005345fe7fc9c23bfb62334c8ca2c746fee01000000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Change bridge limit", - "1 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "1 | Amount [2/2] : 0.371252", - "2 | Duration : 1", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Bridge : Change bridge limit", - "1 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "1 | Amount [2/2] : 0.371252", - "2 | Duration : 1", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 553, - "name": "Bridge_Change_bridge_limit", - "blob": "1005345fe7fc9c23bfb62334c8ca2c746fee7b000000d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Change bridge limit", - "1 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "1 | Amount [2/2] : 0.371252", - "2 | Duration : 123", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Bridge : Change bridge limit", - "1 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "1 | Amount [2/2] : 0.371252", - "2 | Duration : 123", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 554, - "name": "Bridge_Change_bridge_limit", - "blob": "1005345fe7fc9c23bfb62334c8ca2c746feeb3e30100d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Change bridge limit", - "1 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "1 | Amount [2/2] : 0.371252", - "2 | Duration : 123827", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Bridge : Change bridge limit", - "1 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "1 | Amount [2/2] : 0.371252", - "2 | Duration : 123827", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 555, - "name": "Bridge_Change_bridge_limit", - "blob": "1005345fe7fc9c23bfb62334c8ca2c746fee00000000d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Change bridge limit", - "1 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "1 | Amount [2/2] : 0.371252", - "2 | Duration : 0", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Bridge : Change bridge limit", - "1 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "1 | Amount [2/2] : 0.371252", - "2 | Duration : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 556, - "name": "Bridge_Change_bridge_exempted", - "blob": "1006086313685b8238877f995b91618183ec197f869103727d32e072557342cfb7d6540070def95123730904ffaecf0172ca2326ab8eea75212f4cc63ddaa24f72bb2f1701d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Change bridge exempted", - "1 | Exempted [1/6] : 6313685b8238877f995b91618183ec197f8691", - "1 | Exempted [2/6] : 03727d32e072557342cfb7d654", - "1 | Exempted [3/6] : False", - "1 | Exempted [4/6] : 70def95123730904ffaecf0172ca2326ab8eea", - "1 | Exempted [5/6] : 75212f4cc63ddaa24f72bb2f17", - "1 | Exempted [6/6] : True" - ], - "output_expert": [ - "0 | Bridge : Change bridge exempted", - "1 | Exempted [1/6] : 6313685b8238877f995b91618183ec197f8691", - "1 | Exempted [2/6] : 03727d32e072557342cfb7d654", - "1 | Exempted [3/6] : False", - "1 | Exempted [4/6] : 70def95123730904ffaecf0172ca2326ab8eea", - "1 | Exempted [5/6] : 75212f4cc63ddaa24f72bb2f17", - "1 | Exempted [6/6] : True", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 557, - "name": "Bridge_Change_bridge_exempted", - "blob": "100600d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Change bridge exempted", - "1 | Exempted : ", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Bridge : Change bridge exempted", - "1 | Exempted : ", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 558, - "name": "Bridge_Change_bridge_exempted", - "blob": "1006086313685b8238877f995b91618183ec197f869103727d32e072557342cfb7d6540070def95123730904ffaecf0172ca2326ab8eea75212f4cc63ddaa24f72bb2f1701d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Change bridge exempted", - "1 | Exempted [1/6] : 6313685b8238877f995b91618183ec197f8691", - "1 | Exempted [2/6] : 03727d32e072557342cfb7d654", - "1 | Exempted [3/6] : False", - "1 | Exempted [4/6] : 70def95123730904ffaecf0172ca2326ab8eea", - "1 | Exempted [5/6] : 75212f4cc63ddaa24f72bb2f17", - "1 | Exempted [6/6] : True", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Bridge : Change bridge exempted", - "1 | Exempted [1/6] : 6313685b8238877f995b91618183ec197f8691", - "1 | Exempted [2/6] : 03727d32e072557342cfb7d654", - "1 | Exempted [3/6] : False", - "1 | Exempted [4/6] : 70def95123730904ffaecf0172ca2326ab8eea", - "1 | Exempted [5/6] : 75212f4cc63ddaa24f72bb2f17", - "1 | Exempted [6/6] : True", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 559, - "name": "Bridge_Change_bridge_exempted", - "blob": "100600d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Change bridge exempted", - "1 | Exempted : ", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Bridge : Change bridge exempted", - "1 | Exempted : ", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 560, - "name": "Bridge_Change_bridge_exempted", - "blob": "1006086313685b8238877f995b91618183ec197f869103727d32e072557342cfb7d6540070def95123730904ffaecf0172ca2326ab8eea75212f4cc63ddaa24f72bb2f1701d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Change bridge exempted", - "1 | Exempted [1/6] : 6313685b8238877f995b91618183ec197f8691", - "1 | Exempted [2/6] : 03727d32e072557342cfb7d654", - "1 | Exempted [3/6] : False", - "1 | Exempted [4/6] : 70def95123730904ffaecf0172ca2326ab8eea", - "1 | Exempted [5/6] : 75212f4cc63ddaa24f72bb2f17", - "1 | Exempted [6/6] : True", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Bridge : Change bridge exempted", - "1 | Exempted [1/6] : 6313685b8238877f995b91618183ec197f8691", - "1 | Exempted [2/6] : 03727d32e072557342cfb7d654", - "1 | Exempted [3/6] : False", - "1 | Exempted [4/6] : 70def95123730904ffaecf0172ca2326ab8eea", - "1 | Exempted [5/6] : 75212f4cc63ddaa24f72bb2f17", - "1 | Exempted [6/6] : True", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 561, - "name": "Bridge_Force_handle_bridge_tx", - "blob": "10078fe20100d42097d937ab74afa4770ee97d381dc076f29c879ba670f635666d3e733cbefa0000000000000000000000000000000023e19f3c05d1d3c94ad41c92d680a5ac8fe0c3a5acdb4bdddf03077cb3e5b4a5d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Force handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Bridge : Force handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 562, - "name": "Bridge_Force_handle_bridge_tx", - "blob": "10078fe20100d42097d937ab74afa4770ee97d381dc076f29c879ba670f635666d3e733cbefa0000000000000000000000000000000023e19f3c05d1d3c94ad41c92d680a5ac8fe0c3a5acdb4bdddf03077cb3e5b4a5d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Force handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Bridge : Force handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 563, - "name": "Bridge_Force_handle_bridge_tx", - "blob": "10078fe20100d42097d937ab74afa4770ee97d381dc076f29c879ba670f635666d3e733cbefa0000000000000000000000000000000023e19f3c05d1d3c94ad41c92d680a5ac8fe0c3a5acdb4bdddf03077cb3e5b4a5d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Force handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Bridge : Force handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 564, - "name": "Bridge_Force_handle_bridge_tx", - "blob": "10078fe20100d42097d937ab74afa4770ee97d381dc076f29c879ba670f635666d3e733cbefa0000000000000000000000000000000023e19f3c05d1d3c94ad41c92d680a5ac8fe0c3a5acdb4bdddf03077cb3e5b4a5d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Force handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Bridge : Force handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 565, - "name": "Bridge_Force_handle_bridge_tx", - "blob": "10078fe20100d42097d937ab74afa4770ee97d381dc076f29c879ba670f635666d3e733cbefa0000000000000000000000000000000023e19f3c05d1d3c94ad41c92d680a5ac8fe0c3a5acdb4bdddf03077cb3e5b4a5d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Force handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5" - ], - "output_expert": [ - "0 | Bridge : Force handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 566, - "name": "Bridge_Batch_propose_bridge_tx", - "blob": "100800d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Batch propose bridge tx", - "1 | Bridge txs : ", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Bridge : Batch propose bridge tx", - "1 | Bridge txs : ", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 567, - "name": "Bridge_Batch_propose_bridge_tx", - "blob": "1008088fe201000ec636e87fb6b138c6051d2b8749e33345d35680d9aac7754527df1b2310c2f0000000000000000000000000000000002a579d8bcc3c4e0673ba210618261494d60418863656b441ccb8f1169d7a26f38fe20100eff81ee2de3a142b4c0daf932219c3e54f8b5068a6fc958c6fc9ce9fe37c70540000000000000000000000000000000016fa28bfab1b04bfe626366cc099b6e05618365fe14d2a2f9e7831bf8a9d2899d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Batch propose bridge tx", - "1 | Bridge txs [1/12] : 123535", - "1 | Bridge txs [2/12] : 2CnHewjBtyQqAdQf5WnXG1k3WqvpQBLiJBWALW", - "1 | Bridge txs [3/12] : ZP4Sw1CU8b", - "1 | Bridge txs [4/12] : POLYX 0.0", - "1 | Bridge txs [5/12] : 2a579d8bcc3c4e0673ba210618261494d60418", - "1 | Bridge txs [6/12] : 863656b441ccb8f1169d7a26f3", - "1 | Bridge txs [7/12] : 123535", - "1 | Bridge txs [8/12] : 2HsZFhj4eHdzWy1v756WNdZ6D4m67QitGqd8AQ", - "1 | Bridge txs [9/12] : cKuE4KxXRH", - "1 | Bridge txs [10/12] : POLYX 0.0", - "1 | Bridge txs [11/12] : 16fa28bfab1b04bfe626366cc099b6e0561836", - "1 | Bridge txs [12/12] : 5fe14d2a2f9e7831bf8a9d2899" - ], - "output_expert": [ - "0 | Bridge : Batch propose bridge tx", - "1 | Bridge txs [1/12] : 123535", - "1 | Bridge txs [2/12] : 2CnHewjBtyQqAdQf5WnXG1k3WqvpQBLiJBWALW", - "1 | Bridge txs [3/12] : ZP4Sw1CU8b", - "1 | Bridge txs [4/12] : POLYX 0.0", - "1 | Bridge txs [5/12] : 2a579d8bcc3c4e0673ba210618261494d60418", - "1 | Bridge txs [6/12] : 863656b441ccb8f1169d7a26f3", - "1 | Bridge txs [7/12] : 123535", - "1 | Bridge txs [8/12] : 2HsZFhj4eHdzWy1v756WNdZ6D4m67QitGqd8AQ", - "1 | Bridge txs [9/12] : cKuE4KxXRH", - "1 | Bridge txs [10/12] : POLYX 0.0", - "1 | Bridge txs [11/12] : 16fa28bfab1b04bfe626366cc099b6e0561836", - "1 | Bridge txs [12/12] : 5fe14d2a2f9e7831bf8a9d2899", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 568, - "name": "Bridge_Batch_propose_bridge_tx", - "blob": "100800d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Batch propose bridge tx", - "1 | Bridge txs : ", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Bridge : Batch propose bridge tx", - "1 | Bridge txs : ", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 569, - "name": "Bridge_Batch_propose_bridge_tx", - "blob": "100800d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Batch propose bridge tx", - "1 | Bridge txs : ", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Bridge : Batch propose bridge tx", - "1 | Bridge txs : ", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 570, - "name": "Bridge_Batch_propose_bridge_tx", - "blob": "100800d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Batch propose bridge tx", - "1 | Bridge txs : ", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Bridge : Batch propose bridge tx", - "1 | Bridge txs : ", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 571, - "name": "Bridge_Propose_bridge_tx", - "blob": "10098fe20100d42097d937ab74afa4770ee97d381dc076f29c879ba670f635666d3e733cbefa0000000000000000000000000000000023e19f3c05d1d3c94ad41c92d680a5ac8fe0c3a5acdb4bdddf03077cb3e5b4a5d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Propose bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Bridge : Propose bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 572, - "name": "Bridge_Propose_bridge_tx", - "blob": "10098fe20100d42097d937ab74afa4770ee97d381dc076f29c879ba670f635666d3e733cbefa0000000000000000000000000000000023e19f3c05d1d3c94ad41c92d680a5ac8fe0c3a5acdb4bdddf03077cb3e5b4a5d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Propose bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Bridge : Propose bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 573, - "name": "Bridge_Propose_bridge_tx", - "blob": "10098fe20100d42097d937ab74afa4770ee97d381dc076f29c879ba670f635666d3e733cbefa0000000000000000000000000000000023e19f3c05d1d3c94ad41c92d680a5ac8fe0c3a5acdb4bdddf03077cb3e5b4a5d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Propose bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5" - ], - "output_expert": [ - "0 | Bridge : Propose bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 574, - "name": "Bridge_Propose_bridge_tx", - "blob": "10098fe20100d42097d937ab74afa4770ee97d381dc076f29c879ba670f635666d3e733cbefa0000000000000000000000000000000023e19f3c05d1d3c94ad41c92d680a5ac8fe0c3a5acdb4bdddf03077cb3e5b4a5d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Propose bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Bridge : Propose bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 575, - "name": "Bridge_Propose_bridge_tx", - "blob": "10098fe20100d42097d937ab74afa4770ee97d381dc076f29c879ba670f635666d3e733cbefa0000000000000000000000000000000023e19f3c05d1d3c94ad41c92d680a5ac8fe0c3a5acdb4bdddf03077cb3e5b4a5d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Propose bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Bridge : Propose bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 576, - "name": "Bridge_Handle_bridge_tx", - "blob": "100a8fe20100d42097d937ab74afa4770ee97d381dc076f29c879ba670f635666d3e733cbefa0000000000000000000000000000000023e19f3c05d1d3c94ad41c92d680a5ac8fe0c3a5acdb4bdddf03077cb3e5b4a5d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Bridge : Handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 577, - "name": "Bridge_Handle_bridge_tx", - "blob": "100a8fe20100d42097d937ab74afa4770ee97d381dc076f29c879ba670f635666d3e733cbefa0000000000000000000000000000000023e19f3c05d1d3c94ad41c92d680a5ac8fe0c3a5acdb4bdddf03077cb3e5b4a5d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Bridge : Handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 578, - "name": "Bridge_Handle_bridge_tx", - "blob": "100a8fe20100d42097d937ab74afa4770ee97d381dc076f29c879ba670f635666d3e733cbefa0000000000000000000000000000000023e19f3c05d1d3c94ad41c92d680a5ac8fe0c3a5acdb4bdddf03077cb3e5b4a5d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5" - ], - "output_expert": [ - "0 | Bridge : Handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 579, - "name": "Bridge_Handle_bridge_tx", - "blob": "100a8fe20100d42097d937ab74afa4770ee97d381dc076f29c879ba670f635666d3e733cbefa0000000000000000000000000000000023e19f3c05d1d3c94ad41c92d680a5ac8fe0c3a5acdb4bdddf03077cb3e5b4a5d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5" - ], - "output_expert": [ - "0 | Bridge : Handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 580, - "name": "Bridge_Handle_bridge_tx", - "blob": "100a8fe20100d42097d937ab74afa4770ee97d381dc076f29c879ba670f635666d3e733cbefa0000000000000000000000000000000023e19f3c05d1d3c94ad41c92d680a5ac8fe0c3a5acdb4bdddf03077cb3e5b4a5d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5" - ], - "output_expert": [ - "0 | Bridge : Handle bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 581, - "name": "Bridge_Freeze_txs", - "blob": "100b088fe201000ec636e87fb6b138c6051d2b8749e33345d35680d9aac7754527df1b2310c2f0000000000000000000000000000000002a579d8bcc3c4e0673ba210618261494d60418863656b441ccb8f1169d7a26f38fe20100eff81ee2de3a142b4c0daf932219c3e54f8b5068a6fc958c6fc9ce9fe37c70540000000000000000000000000000000016fa28bfab1b04bfe626366cc099b6e05618365fe14d2a2f9e7831bf8a9d2899d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Freeze txs", - "1 | Bridge txs [1/12] : 123535", - "1 | Bridge txs [2/12] : 2CnHewjBtyQqAdQf5WnXG1k3WqvpQBLiJBWALW", - "1 | Bridge txs [3/12] : ZP4Sw1CU8b", - "1 | Bridge txs [4/12] : POLYX 0.0", - "1 | Bridge txs [5/12] : 2a579d8bcc3c4e0673ba210618261494d60418", - "1 | Bridge txs [6/12] : 863656b441ccb8f1169d7a26f3", - "1 | Bridge txs [7/12] : 123535", - "1 | Bridge txs [8/12] : 2HsZFhj4eHdzWy1v756WNdZ6D4m67QitGqd8AQ", - "1 | Bridge txs [9/12] : cKuE4KxXRH", - "1 | Bridge txs [10/12] : POLYX 0.0", - "1 | Bridge txs [11/12] : 16fa28bfab1b04bfe626366cc099b6e0561836", - "1 | Bridge txs [12/12] : 5fe14d2a2f9e7831bf8a9d2899" - ], - "output_expert": [ - "0 | Bridge : Freeze txs", - "1 | Bridge txs [1/12] : 123535", - "1 | Bridge txs [2/12] : 2CnHewjBtyQqAdQf5WnXG1k3WqvpQBLiJBWALW", - "1 | Bridge txs [3/12] : ZP4Sw1CU8b", - "1 | Bridge txs [4/12] : POLYX 0.0", - "1 | Bridge txs [5/12] : 2a579d8bcc3c4e0673ba210618261494d60418", - "1 | Bridge txs [6/12] : 863656b441ccb8f1169d7a26f3", - "1 | Bridge txs [7/12] : 123535", - "1 | Bridge txs [8/12] : 2HsZFhj4eHdzWy1v756WNdZ6D4m67QitGqd8AQ", - "1 | Bridge txs [9/12] : cKuE4KxXRH", - "1 | Bridge txs [10/12] : POLYX 0.0", - "1 | Bridge txs [11/12] : 16fa28bfab1b04bfe626366cc099b6e0561836", - "1 | Bridge txs [12/12] : 5fe14d2a2f9e7831bf8a9d2899", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 582, - "name": "Bridge_Freeze_txs", - "blob": "100b088fe201000ec636e87fb6b138c6051d2b8749e33345d35680d9aac7754527df1b2310c2f0000000000000000000000000000000002a579d8bcc3c4e0673ba210618261494d60418863656b441ccb8f1169d7a26f38fe20100eff81ee2de3a142b4c0daf932219c3e54f8b5068a6fc958c6fc9ce9fe37c70540000000000000000000000000000000016fa28bfab1b04bfe626366cc099b6e05618365fe14d2a2f9e7831bf8a9d2899d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Freeze txs", - "1 | Bridge txs [1/12] : 123535", - "1 | Bridge txs [2/12] : 2CnHewjBtyQqAdQf5WnXG1k3WqvpQBLiJBWALW", - "1 | Bridge txs [3/12] : ZP4Sw1CU8b", - "1 | Bridge txs [4/12] : POLYX 0.0", - "1 | Bridge txs [5/12] : 2a579d8bcc3c4e0673ba210618261494d60418", - "1 | Bridge txs [6/12] : 863656b441ccb8f1169d7a26f3", - "1 | Bridge txs [7/12] : 123535", - "1 | Bridge txs [8/12] : 2HsZFhj4eHdzWy1v756WNdZ6D4m67QitGqd8AQ", - "1 | Bridge txs [9/12] : cKuE4KxXRH", - "1 | Bridge txs [10/12] : POLYX 0.0", - "1 | Bridge txs [11/12] : 16fa28bfab1b04bfe626366cc099b6e0561836", - "1 | Bridge txs [12/12] : 5fe14d2a2f9e7831bf8a9d2899", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Bridge : Freeze txs", - "1 | Bridge txs [1/12] : 123535", - "1 | Bridge txs [2/12] : 2CnHewjBtyQqAdQf5WnXG1k3WqvpQBLiJBWALW", - "1 | Bridge txs [3/12] : ZP4Sw1CU8b", - "1 | Bridge txs [4/12] : POLYX 0.0", - "1 | Bridge txs [5/12] : 2a579d8bcc3c4e0673ba210618261494d60418", - "1 | Bridge txs [6/12] : 863656b441ccb8f1169d7a26f3", - "1 | Bridge txs [7/12] : 123535", - "1 | Bridge txs [8/12] : 2HsZFhj4eHdzWy1v756WNdZ6D4m67QitGqd8AQ", - "1 | Bridge txs [9/12] : cKuE4KxXRH", - "1 | Bridge txs [10/12] : POLYX 0.0", - "1 | Bridge txs [11/12] : 16fa28bfab1b04bfe626366cc099b6e0561836", - "1 | Bridge txs [12/12] : 5fe14d2a2f9e7831bf8a9d2899", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 583, - "name": "Bridge_Freeze_txs", - "blob": "100b088fe201000ec636e87fb6b138c6051d2b8749e33345d35680d9aac7754527df1b2310c2f0000000000000000000000000000000002a579d8bcc3c4e0673ba210618261494d60418863656b441ccb8f1169d7a26f38fe20100eff81ee2de3a142b4c0daf932219c3e54f8b5068a6fc958c6fc9ce9fe37c70540000000000000000000000000000000016fa28bfab1b04bfe626366cc099b6e05618365fe14d2a2f9e7831bf8a9d2899d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Freeze txs", - "1 | Bridge txs [1/12] : 123535", - "1 | Bridge txs [2/12] : 2CnHewjBtyQqAdQf5WnXG1k3WqvpQBLiJBWALW", - "1 | Bridge txs [3/12] : ZP4Sw1CU8b", - "1 | Bridge txs [4/12] : POLYX 0.0", - "1 | Bridge txs [5/12] : 2a579d8bcc3c4e0673ba210618261494d60418", - "1 | Bridge txs [6/12] : 863656b441ccb8f1169d7a26f3", - "1 | Bridge txs [7/12] : 123535", - "1 | Bridge txs [8/12] : 2HsZFhj4eHdzWy1v756WNdZ6D4m67QitGqd8AQ", - "1 | Bridge txs [9/12] : cKuE4KxXRH", - "1 | Bridge txs [10/12] : POLYX 0.0", - "1 | Bridge txs [11/12] : 16fa28bfab1b04bfe626366cc099b6e0561836", - "1 | Bridge txs [12/12] : 5fe14d2a2f9e7831bf8a9d2899" - ], - "output_expert": [ - "0 | Bridge : Freeze txs", - "1 | Bridge txs [1/12] : 123535", - "1 | Bridge txs [2/12] : 2CnHewjBtyQqAdQf5WnXG1k3WqvpQBLiJBWALW", - "1 | Bridge txs [3/12] : ZP4Sw1CU8b", - "1 | Bridge txs [4/12] : POLYX 0.0", - "1 | Bridge txs [5/12] : 2a579d8bcc3c4e0673ba210618261494d60418", - "1 | Bridge txs [6/12] : 863656b441ccb8f1169d7a26f3", - "1 | Bridge txs [7/12] : 123535", - "1 | Bridge txs [8/12] : 2HsZFhj4eHdzWy1v756WNdZ6D4m67QitGqd8AQ", - "1 | Bridge txs [9/12] : cKuE4KxXRH", - "1 | Bridge txs [10/12] : POLYX 0.0", - "1 | Bridge txs [11/12] : 16fa28bfab1b04bfe626366cc099b6e0561836", - "1 | Bridge txs [12/12] : 5fe14d2a2f9e7831bf8a9d2899", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 584, - "name": "Bridge_Freeze_txs", - "blob": "100b00d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Freeze txs", - "1 | Bridge txs : ", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Bridge : Freeze txs", - "1 | Bridge txs : ", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 585, - "name": "Bridge_Freeze_txs", - "blob": "100b00d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Freeze txs", - "1 | Bridge txs : ", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Bridge : Freeze txs", - "1 | Bridge txs : ", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 586, - "name": "Bridge_Unfreeze_txs", - "blob": "100c088fe201000ec636e87fb6b138c6051d2b8749e33345d35680d9aac7754527df1b2310c2f0000000000000000000000000000000002a579d8bcc3c4e0673ba210618261494d60418863656b441ccb8f1169d7a26f38fe20100eff81ee2de3a142b4c0daf932219c3e54f8b5068a6fc958c6fc9ce9fe37c70540000000000000000000000000000000016fa28bfab1b04bfe626366cc099b6e05618365fe14d2a2f9e7831bf8a9d2899d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Unfreeze txs", - "1 | Bridge txs [1/12] : 123535", - "1 | Bridge txs [2/12] : 2CnHewjBtyQqAdQf5WnXG1k3WqvpQBLiJBWALW", - "1 | Bridge txs [3/12] : ZP4Sw1CU8b", - "1 | Bridge txs [4/12] : POLYX 0.0", - "1 | Bridge txs [5/12] : 2a579d8bcc3c4e0673ba210618261494d60418", - "1 | Bridge txs [6/12] : 863656b441ccb8f1169d7a26f3", - "1 | Bridge txs [7/12] : 123535", - "1 | Bridge txs [8/12] : 2HsZFhj4eHdzWy1v756WNdZ6D4m67QitGqd8AQ", - "1 | Bridge txs [9/12] : cKuE4KxXRH", - "1 | Bridge txs [10/12] : POLYX 0.0", - "1 | Bridge txs [11/12] : 16fa28bfab1b04bfe626366cc099b6e0561836", - "1 | Bridge txs [12/12] : 5fe14d2a2f9e7831bf8a9d2899" - ], - "output_expert": [ - "0 | Bridge : Unfreeze txs", - "1 | Bridge txs [1/12] : 123535", - "1 | Bridge txs [2/12] : 2CnHewjBtyQqAdQf5WnXG1k3WqvpQBLiJBWALW", - "1 | Bridge txs [3/12] : ZP4Sw1CU8b", - "1 | Bridge txs [4/12] : POLYX 0.0", - "1 | Bridge txs [5/12] : 2a579d8bcc3c4e0673ba210618261494d60418", - "1 | Bridge txs [6/12] : 863656b441ccb8f1169d7a26f3", - "1 | Bridge txs [7/12] : 123535", - "1 | Bridge txs [8/12] : 2HsZFhj4eHdzWy1v756WNdZ6D4m67QitGqd8AQ", - "1 | Bridge txs [9/12] : cKuE4KxXRH", - "1 | Bridge txs [10/12] : POLYX 0.0", - "1 | Bridge txs [11/12] : 16fa28bfab1b04bfe626366cc099b6e0561836", - "1 | Bridge txs [12/12] : 5fe14d2a2f9e7831bf8a9d2899", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 587, - "name": "Bridge_Unfreeze_txs", - "blob": "100c088fe201000ec636e87fb6b138c6051d2b8749e33345d35680d9aac7754527df1b2310c2f0000000000000000000000000000000002a579d8bcc3c4e0673ba210618261494d60418863656b441ccb8f1169d7a26f38fe20100eff81ee2de3a142b4c0daf932219c3e54f8b5068a6fc958c6fc9ce9fe37c70540000000000000000000000000000000016fa28bfab1b04bfe626366cc099b6e05618365fe14d2a2f9e7831bf8a9d2899d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Unfreeze txs", - "1 | Bridge txs [1/12] : 123535", - "1 | Bridge txs [2/12] : 2CnHewjBtyQqAdQf5WnXG1k3WqvpQBLiJBWALW", - "1 | Bridge txs [3/12] : ZP4Sw1CU8b", - "1 | Bridge txs [4/12] : POLYX 0.0", - "1 | Bridge txs [5/12] : 2a579d8bcc3c4e0673ba210618261494d60418", - "1 | Bridge txs [6/12] : 863656b441ccb8f1169d7a26f3", - "1 | Bridge txs [7/12] : 123535", - "1 | Bridge txs [8/12] : 2HsZFhj4eHdzWy1v756WNdZ6D4m67QitGqd8AQ", - "1 | Bridge txs [9/12] : cKuE4KxXRH", - "1 | Bridge txs [10/12] : POLYX 0.0", - "1 | Bridge txs [11/12] : 16fa28bfab1b04bfe626366cc099b6e0561836", - "1 | Bridge txs [12/12] : 5fe14d2a2f9e7831bf8a9d2899", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Bridge : Unfreeze txs", - "1 | Bridge txs [1/12] : 123535", - "1 | Bridge txs [2/12] : 2CnHewjBtyQqAdQf5WnXG1k3WqvpQBLiJBWALW", - "1 | Bridge txs [3/12] : ZP4Sw1CU8b", - "1 | Bridge txs [4/12] : POLYX 0.0", - "1 | Bridge txs [5/12] : 2a579d8bcc3c4e0673ba210618261494d60418", - "1 | Bridge txs [6/12] : 863656b441ccb8f1169d7a26f3", - "1 | Bridge txs [7/12] : 123535", - "1 | Bridge txs [8/12] : 2HsZFhj4eHdzWy1v756WNdZ6D4m67QitGqd8AQ", - "1 | Bridge txs [9/12] : cKuE4KxXRH", - "1 | Bridge txs [10/12] : POLYX 0.0", - "1 | Bridge txs [11/12] : 16fa28bfab1b04bfe626366cc099b6e0561836", - "1 | Bridge txs [12/12] : 5fe14d2a2f9e7831bf8a9d2899", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 588, - "name": "Bridge_Unfreeze_txs", - "blob": "100c00d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Unfreeze txs", - "1 | Bridge txs : ", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Bridge : Unfreeze txs", - "1 | Bridge txs : ", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 589, - "name": "Bridge_Unfreeze_txs", - "blob": "100c088fe201000ec636e87fb6b138c6051d2b8749e33345d35680d9aac7754527df1b2310c2f0000000000000000000000000000000002a579d8bcc3c4e0673ba210618261494d60418863656b441ccb8f1169d7a26f38fe20100eff81ee2de3a142b4c0daf932219c3e54f8b5068a6fc958c6fc9ce9fe37c70540000000000000000000000000000000016fa28bfab1b04bfe626366cc099b6e05618365fe14d2a2f9e7831bf8a9d2899d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Unfreeze txs", - "1 | Bridge txs [1/12] : 123535", - "1 | Bridge txs [2/12] : 2CnHewjBtyQqAdQf5WnXG1k3WqvpQBLiJBWALW", - "1 | Bridge txs [3/12] : ZP4Sw1CU8b", - "1 | Bridge txs [4/12] : POLYX 0.0", - "1 | Bridge txs [5/12] : 2a579d8bcc3c4e0673ba210618261494d60418", - "1 | Bridge txs [6/12] : 863656b441ccb8f1169d7a26f3", - "1 | Bridge txs [7/12] : 123535", - "1 | Bridge txs [8/12] : 2HsZFhj4eHdzWy1v756WNdZ6D4m67QitGqd8AQ", - "1 | Bridge txs [9/12] : cKuE4KxXRH", - "1 | Bridge txs [10/12] : POLYX 0.0", - "1 | Bridge txs [11/12] : 16fa28bfab1b04bfe626366cc099b6e0561836", - "1 | Bridge txs [12/12] : 5fe14d2a2f9e7831bf8a9d2899" - ], - "output_expert": [ - "0 | Bridge : Unfreeze txs", - "1 | Bridge txs [1/12] : 123535", - "1 | Bridge txs [2/12] : 2CnHewjBtyQqAdQf5WnXG1k3WqvpQBLiJBWALW", - "1 | Bridge txs [3/12] : ZP4Sw1CU8b", - "1 | Bridge txs [4/12] : POLYX 0.0", - "1 | Bridge txs [5/12] : 2a579d8bcc3c4e0673ba210618261494d60418", - "1 | Bridge txs [6/12] : 863656b441ccb8f1169d7a26f3", - "1 | Bridge txs [7/12] : 123535", - "1 | Bridge txs [8/12] : 2HsZFhj4eHdzWy1v756WNdZ6D4m67QitGqd8AQ", - "1 | Bridge txs [9/12] : cKuE4KxXRH", - "1 | Bridge txs [10/12] : POLYX 0.0", - "1 | Bridge txs [11/12] : 16fa28bfab1b04bfe626366cc099b6e0561836", - "1 | Bridge txs [12/12] : 5fe14d2a2f9e7831bf8a9d2899", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 590, - "name": "Bridge_Unfreeze_txs", - "blob": "100c088fe201000ec636e87fb6b138c6051d2b8749e33345d35680d9aac7754527df1b2310c2f0000000000000000000000000000000002a579d8bcc3c4e0673ba210618261494d60418863656b441ccb8f1169d7a26f38fe20100eff81ee2de3a142b4c0daf932219c3e54f8b5068a6fc958c6fc9ce9fe37c70540000000000000000000000000000000016fa28bfab1b04bfe626366cc099b6e05618365fe14d2a2f9e7831bf8a9d2899d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Unfreeze txs", - "1 | Bridge txs [1/12] : 123535", - "1 | Bridge txs [2/12] : 2CnHewjBtyQqAdQf5WnXG1k3WqvpQBLiJBWALW", - "1 | Bridge txs [3/12] : ZP4Sw1CU8b", - "1 | Bridge txs [4/12] : POLYX 0.0", - "1 | Bridge txs [5/12] : 2a579d8bcc3c4e0673ba210618261494d60418", - "1 | Bridge txs [6/12] : 863656b441ccb8f1169d7a26f3", - "1 | Bridge txs [7/12] : 123535", - "1 | Bridge txs [8/12] : 2HsZFhj4eHdzWy1v756WNdZ6D4m67QitGqd8AQ", - "1 | Bridge txs [9/12] : cKuE4KxXRH", - "1 | Bridge txs [10/12] : POLYX 0.0", - "1 | Bridge txs [11/12] : 16fa28bfab1b04bfe626366cc099b6e0561836", - "1 | Bridge txs [12/12] : 5fe14d2a2f9e7831bf8a9d2899", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Bridge : Unfreeze txs", - "1 | Bridge txs [1/12] : 123535", - "1 | Bridge txs [2/12] : 2CnHewjBtyQqAdQf5WnXG1k3WqvpQBLiJBWALW", - "1 | Bridge txs [3/12] : ZP4Sw1CU8b", - "1 | Bridge txs [4/12] : POLYX 0.0", - "1 | Bridge txs [5/12] : 2a579d8bcc3c4e0673ba210618261494d60418", - "1 | Bridge txs [6/12] : 863656b441ccb8f1169d7a26f3", - "1 | Bridge txs [7/12] : 123535", - "1 | Bridge txs [8/12] : 2HsZFhj4eHdzWy1v756WNdZ6D4m67QitGqd8AQ", - "1 | Bridge txs [9/12] : cKuE4KxXRH", - "1 | Bridge txs [10/12] : POLYX 0.0", - "1 | Bridge txs [11/12] : 16fa28bfab1b04bfe626366cc099b6e0561836", - "1 | Bridge txs [12/12] : 5fe14d2a2f9e7831bf8a9d2899", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 591, - "name": "Bridge_Handle_scheduled_bridge_tx", - "blob": "100d8fe20100d42097d937ab74afa4770ee97d381dc076f29c879ba670f635666d3e733cbefa0000000000000000000000000000000023e19f3c05d1d3c94ad41c92d680a5ac8fe0c3a5acdb4bdddf03077cb3e5b4a5d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Handle scheduled bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Bridge : Handle scheduled bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 592, - "name": "Bridge_Handle_scheduled_bridge_tx", - "blob": "100d8fe20100d42097d937ab74afa4770ee97d381dc076f29c879ba670f635666d3e733cbefa0000000000000000000000000000000023e19f3c05d1d3c94ad41c92d680a5ac8fe0c3a5acdb4bdddf03077cb3e5b4a5d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Handle scheduled bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Bridge : Handle scheduled bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 593, - "name": "Bridge_Handle_scheduled_bridge_tx", - "blob": "100d8fe20100d42097d937ab74afa4770ee97d381dc076f29c879ba670f635666d3e733cbefa0000000000000000000000000000000023e19f3c05d1d3c94ad41c92d680a5ac8fe0c3a5acdb4bdddf03077cb3e5b4a5d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Handle scheduled bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Bridge : Handle scheduled bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 594, - "name": "Bridge_Handle_scheduled_bridge_tx", - "blob": "100d8fe20100d42097d937ab74afa4770ee97d381dc076f29c879ba670f635666d3e733cbefa0000000000000000000000000000000023e19f3c05d1d3c94ad41c92d680a5ac8fe0c3a5acdb4bdddf03077cb3e5b4a5d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Handle scheduled bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Bridge : Handle scheduled bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 595, - "name": "Bridge_Handle_scheduled_bridge_tx", - "blob": "100d8fe20100d42097d937ab74afa4770ee97d381dc076f29c879ba670f635666d3e733cbefa0000000000000000000000000000000023e19f3c05d1d3c94ad41c92d680a5ac8fe0c3a5acdb4bdddf03077cb3e5b4a5d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Handle scheduled bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Bridge : Handle scheduled bridge tx", - "1 | Bridge tx [1/6] : 123535", - "1 | Bridge tx [2/6] : 2HF3wGE2na9RbzajKWzHes9CL3sJPepamwbDBX", - "1 | Bridge tx [3/6] : zdeczLtc7X", - "1 | Bridge tx [4/6] : POLYX 0.0", - "1 | Bridge tx [5/6] : 23e19f3c05d1d3c94ad41c92d680a5ac8fe0c3", - "1 | Bridge tx [6/6] : a5acdb4bdddf03077cb3e5b4a5", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 596, - "name": "Bridge_Add_freeze_admin", - "blob": "100ee6b9eabd5f8491bd24bb8ff940cd591871b9fb05be188713f14b32f73923df6cd503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Add freeze admin", - "1 | Freeze admin [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | Freeze admin [2/2] : 8Aw2bPcNj9", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Bridge : Add freeze admin", - "1 | Freeze admin [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | Freeze admin [2/2] : 8Aw2bPcNj9", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 597, - "name": "Bridge_Add_freeze_admin", - "blob": "100e6a8500b97a5889f4ecdf68f2a4b406fec17e564b6254cc641c43c18ca62cb21cd503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Add freeze admin", - "1 | Freeze admin [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Freeze admin [2/2] : hbeqgL2Ukv", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Bridge : Add freeze admin", - "1 | Freeze admin [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Freeze admin [2/2] : hbeqgL2Ukv", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 598, - "name": "Bridge_Add_freeze_admin", - "blob": "100e3e687768a50d36e597c2eb73c8161ef62ba3c55f6aa5ca420e76dcd08b219d26d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Add freeze admin", - "1 | Freeze admin [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Freeze admin [2/2] : kKMKAMQcg5", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Bridge : Add freeze admin", - "1 | Freeze admin [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Freeze admin [2/2] : kKMKAMQcg5", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 599, - "name": "Bridge_Add_freeze_admin", - "blob": "100e3e687768a50d36e597c2eb73c8161ef62ba3c55f6aa5ca420e76dcd08b219d26d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Add freeze admin", - "1 | Freeze admin [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Freeze admin [2/2] : kKMKAMQcg5", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Bridge : Add freeze admin", - "1 | Freeze admin [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Freeze admin [2/2] : kKMKAMQcg5", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 600, - "name": "Bridge_Add_freeze_admin", - "blob": "100eb673c14adc4fdaaa84b868330314bb524eb97de82eb6ad5c24401af92af33f54d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Add freeze admin", - "1 | Freeze admin [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Freeze admin [2/2] : 6xRJgVAa3i", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Bridge : Add freeze admin", - "1 | Freeze admin [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Freeze admin [2/2] : 6xRJgVAa3i", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 601, - "name": "Bridge_Remove_freeze_admin", - "blob": "100f3e687768a50d36e597c2eb73c8161ef62ba3c55f6aa5ca420e76dcd08b219d26d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Remove freeze admin", - "1 | Freeze admin [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Freeze admin [2/2] : kKMKAMQcg5", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Bridge : Remove freeze admin", - "1 | Freeze admin [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Freeze admin [2/2] : kKMKAMQcg5", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 602, - "name": "Bridge_Remove_freeze_admin", - "blob": "100f42ed86a3b5fd55b0ec57c2112f981fbc2d91f4225759141ea0b255fd34639d74d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Remove freeze admin", - "1 | Freeze admin [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "1 | Freeze admin [2/2] : kvir9Rw75p" - ], - "output_expert": [ - "0 | Bridge : Remove freeze admin", - "1 | Freeze admin [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "1 | Freeze admin [2/2] : kvir9Rw75p", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 603, - "name": "Bridge_Remove_freeze_admin", - "blob": "100f3e687768a50d36e597c2eb73c8161ef62ba3c55f6aa5ca420e76dcd08b219d26d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Remove freeze admin", - "1 | Freeze admin [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Freeze admin [2/2] : kKMKAMQcg5", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Bridge : Remove freeze admin", - "1 | Freeze admin [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Freeze admin [2/2] : kKMKAMQcg5", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 604, - "name": "Bridge_Remove_freeze_admin", - "blob": "100f3e687768a50d36e597c2eb73c8161ef62ba3c55f6aa5ca420e76dcd08b219d26d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Remove freeze admin", - "1 | Freeze admin [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Freeze admin [2/2] : kKMKAMQcg5", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Bridge : Remove freeze admin", - "1 | Freeze admin [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Freeze admin [2/2] : kKMKAMQcg5", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 605, - "name": "Bridge_Remove_freeze_admin", - "blob": "100fe6b9eabd5f8491bd24bb8ff940cd591871b9fb05be188713f14b32f73923df6cd50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Remove freeze admin", - "1 | Freeze admin [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | Freeze admin [2/2] : 8Aw2bPcNj9", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Bridge : Remove freeze admin", - "1 | Freeze admin [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | Freeze admin [2/2] : 8Aw2bPcNj9", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 606, - "name": "Bridge_Remove_txs", - "blob": "1010088fe201000ec636e87fb6b138c6051d2b8749e33345d35680d9aac7754527df1b2310c2f0000000000000000000000000000000002a579d8bcc3c4e0673ba210618261494d60418863656b441ccb8f1169d7a26f38fe20100eff81ee2de3a142b4c0daf932219c3e54f8b5068a6fc958c6fc9ce9fe37c70540000000000000000000000000000000016fa28bfab1b04bfe626366cc099b6e05618365fe14d2a2f9e7831bf8a9d2899d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Remove txs", - "1 | Bridge txs [1/12] : 123535", - "1 | Bridge txs [2/12] : 2CnHewjBtyQqAdQf5WnXG1k3WqvpQBLiJBWALW", - "1 | Bridge txs [3/12] : ZP4Sw1CU8b", - "1 | Bridge txs [4/12] : POLYX 0.0", - "1 | Bridge txs [5/12] : 2a579d8bcc3c4e0673ba210618261494d60418", - "1 | Bridge txs [6/12] : 863656b441ccb8f1169d7a26f3", - "1 | Bridge txs [7/12] : 123535", - "1 | Bridge txs [8/12] : 2HsZFhj4eHdzWy1v756WNdZ6D4m67QitGqd8AQ", - "1 | Bridge txs [9/12] : cKuE4KxXRH", - "1 | Bridge txs [10/12] : POLYX 0.0", - "1 | Bridge txs [11/12] : 16fa28bfab1b04bfe626366cc099b6e0561836", - "1 | Bridge txs [12/12] : 5fe14d2a2f9e7831bf8a9d2899", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Bridge : Remove txs", - "1 | Bridge txs [1/12] : 123535", - "1 | Bridge txs [2/12] : 2CnHewjBtyQqAdQf5WnXG1k3WqvpQBLiJBWALW", - "1 | Bridge txs [3/12] : ZP4Sw1CU8b", - "1 | Bridge txs [4/12] : POLYX 0.0", - "1 | Bridge txs [5/12] : 2a579d8bcc3c4e0673ba210618261494d60418", - "1 | Bridge txs [6/12] : 863656b441ccb8f1169d7a26f3", - "1 | Bridge txs [7/12] : 123535", - "1 | Bridge txs [8/12] : 2HsZFhj4eHdzWy1v756WNdZ6D4m67QitGqd8AQ", - "1 | Bridge txs [9/12] : cKuE4KxXRH", - "1 | Bridge txs [10/12] : POLYX 0.0", - "1 | Bridge txs [11/12] : 16fa28bfab1b04bfe626366cc099b6e0561836", - "1 | Bridge txs [12/12] : 5fe14d2a2f9e7831bf8a9d2899", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 607, - "name": "Bridge_Remove_txs", - "blob": "101000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Remove txs", - "1 | Bridge txs : ", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Bridge : Remove txs", - "1 | Bridge txs : ", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 608, - "name": "Bridge_Remove_txs", - "blob": "101000d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Remove txs", - "1 | Bridge txs : ", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Bridge : Remove txs", - "1 | Bridge txs : ", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 609, - "name": "Bridge_Remove_txs", - "blob": "101000d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Remove txs", - "1 | Bridge txs : ", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Bridge : Remove txs", - "1 | Bridge txs : ", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 610, - "name": "Bridge_Remove_txs", - "blob": "101000d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Bridge : Remove txs", - "1 | Bridge txs : " - ], - "output_expert": [ - "0 | Bridge : Remove txs", - "1 | Bridge txs : ", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 611, - "name": "Staking_Bond", - "blob": "110003d15da16dd51a24cf651f08ab363f6fe3141b9b46dc33ab95be43f967772a807d8ed73e0d02d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Bond", - "1 | Controller [1/2] : d15da16dd51a24cf651f08ab363f6fe3141b9b", - "1 | Controller [2/2] : 46dc33ab95be43f967772a807d", - "2 | Amount : POLYX 55.555555", - "3 | Payee : Controller" - ], - "output_expert": [ - "0 | Staking : Bond", - "1 | Controller [1/2] : d15da16dd51a24cf651f08ab363f6fe3141b9b", - "1 | Controller [2/2] : 46dc33ab95be43f967772a807d", - "2 | Amount : POLYX 55.555555", - "3 | Payee : Controller", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 612, - "name": "Staking_Bond", - "blob": "110003d15da16dd51a24cf651f08ab363f6fe3141b9b46dc33ab95be43f967772a807d03d202964903ec7c7c617b946f931384783d67b16f16fb0b19eb08f77264ed76485e302e8a25d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Bond", - "1 | Controller [1/2] : d15da16dd51a24cf651f08ab363f6fe3141b9b", - "1 | Controller [2/2] : 46dc33ab95be43f967772a807d", - "2 | Amount : POLYX 1234.56789", - "3 | Payee [1/2] : 2HnzPCAMmtPKL2uqphwJCubf1ksowbiW5YswmD", - "3 | Payee [2/2] : 8LS9PMS7kB" - ], - "output_expert": [ - "0 | Staking : Bond", - "1 | Controller [1/2] : d15da16dd51a24cf651f08ab363f6fe3141b9b", - "1 | Controller [2/2] : 46dc33ab95be43f967772a807d", - "2 | Amount : POLYX 1234.56789", - "3 | Payee [1/2] : 2HnzPCAMmtPKL2uqphwJCubf1ksowbiW5YswmD", - "3 | Payee [2/2] : 8LS9PMS7kB", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 613, - "name": "Staking_Bond", - "blob": "11000280bbe7a19522829178085039f39696ed48cb1f7c87e3c78c7b5f7b0c64c14153d633158139ae28a3dfaac5fe1560a5e9e05c00d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Bond", - "1 | Controller [1/2] : bbe7a19522829178085039f39696ed48cb1f7c", - "1 | Controller [2/2] : 87e3c78c7b5f7b0c64c14153d6", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789", - "3 | Payee : Staked", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Staking : Bond", - "1 | Controller [1/2] : bbe7a19522829178085039f39696ed48cb1f7c", - "1 | Controller [2/2] : 87e3c78c7b5f7b0c64c14153d6", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789", - "3 | Payee : Staked", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 614, - "name": "Staking_Bond", - "blob": "1100048443ca1c1b22505eecee4ab1426f43fd317d745c0000d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Bond", - "1 | Controller [1/2] : 8443ca1c1b22505eecee4ab1426f43fd317d74", - "1 | Controller [2/2] : 5c", - "2 | Amount : POLYX 0.0", - "3 | Payee : Staked", - "4 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Staking : Bond", - "1 | Controller [1/2] : 8443ca1c1b22505eecee4ab1426f43fd317d74", - "1 | Controller [2/2] : 5c", - "2 | Amount : POLYX 0.0", - "3 | Payee : Staked", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 615, - "name": "Staking_Bond", - "blob": "110003d15da16dd51a24cf651f08ab363f6fe3141b9b46dc33ab95be43f967772a807d8ed73e0d02d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Bond", - "1 | Controller [1/2] : d15da16dd51a24cf651f08ab363f6fe3141b9b", - "1 | Controller [2/2] : 46dc33ab95be43f967772a807d", - "2 | Amount : POLYX 55.555555", - "3 | Payee : Controller", - "4 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Staking : Bond", - "1 | Controller [1/2] : d15da16dd51a24cf651f08ab363f6fe3141b9b", - "1 | Controller [2/2] : 46dc33ab95be43f967772a807d", - "2 | Amount : POLYX 55.555555", - "3 | Payee : Controller", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 616, - "name": "Staking_Bond_extra", - "blob": "110133158139ae28a3dfaac5fe1560a5e9e05cd5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Bond extra", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Staking : Bond extra", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 617, - "name": "Staking_Bond_extra", - "blob": "110100d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Bond extra", - "1 | Amount : POLYX 0.0", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Staking : Bond extra", - "1 | Amount : POLYX 0.0", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 618, - "name": "Staking_Bond_extra", - "blob": "110103d2029649d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Bond extra", - "1 | Amount : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Staking : Bond extra", - "1 | Amount : POLYX 1234.56789", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 619, - "name": "Staking_Bond_extra", - "blob": "11010b63ce64c10c05d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Bond extra", - "1 | Amount : POLYX 5552342.355555", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Staking : Bond extra", - "1 | Amount : POLYX 5552342.355555", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 620, - "name": "Staking_Bond_extra", - "blob": "110133158139ae28a3dfaac5fe1560a5e9e05cd5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Bond extra", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Staking : Bond extra", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 621, - "name": "Staking_Unbond", - "blob": "110203d2029649d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Unbond", - "1 | Amount : POLYX 1234.56789", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Staking : Unbond", - "1 | Amount : POLYX 1234.56789", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 622, - "name": "Staking_Unbond", - "blob": "110200d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Unbond", - "1 | Amount : POLYX 0.0", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Staking : Unbond", - "1 | Amount : POLYX 0.0", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 623, - "name": "Staking_Unbond", - "blob": "110203d2029649d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Unbond", - "1 | Amount : POLYX 1234.56789", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Staking : Unbond", - "1 | Amount : POLYX 1234.56789", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 624, - "name": "Staking_Unbond", - "blob": "110200d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Unbond", - "1 | Amount : POLYX 0.0", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Staking : Unbond", - "1 | Amount : POLYX 0.0", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 625, - "name": "Staking_Unbond", - "blob": "11028ed73e0dd503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Unbond", - "1 | Amount : POLYX 55.555555", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Staking : Unbond", - "1 | Amount : POLYX 55.555555", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 626, - "name": "Staking_Withdraw_Unbonded", - "blob": "1103f7010000d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Withdraw Unbonded", - "1 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Staking : Withdraw Unbonded", - "1 | Num slashing spans : 503", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 627, - "name": "Staking_Withdraw_Unbonded", - "blob": "11039d1c0000d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Withdraw Unbonded", - "1 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Staking : Withdraw Unbonded", - "1 | Num slashing spans : 7325", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 628, - "name": "Staking_Withdraw_Unbonded", - "blob": "1103d3040000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Withdraw Unbonded", - "1 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Staking : Withdraw Unbonded", - "1 | Num slashing spans : 1235", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 629, - "name": "Staking_Withdraw_Unbonded", - "blob": "11039d1c0000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Withdraw Unbonded" - ], - "output_expert": [ - "0 | Staking : Withdraw Unbonded", - "1 | Num slashing spans : 7325", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 630, - "name": "Staking_Withdraw_Unbonded", - "blob": "110300000000d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Withdraw Unbonded", - "1 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Staking : Withdraw Unbonded", - "1 | Num slashing spans : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 631, - "name": "Staking_Validate", - "blob": "1104ce038dab00d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Validate", - "1 | Prefs : 71.9536371%", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Staking : Validate", - "1 | Prefs : 71.9536371%", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 632, - "name": "Staking_Validate", - "blob": "1104e000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Validate", - "1 | Prefs : 0.0000056%", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Staking : Validate", - "1 | Prefs : 0.0000056%", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 633, - "name": "Staking_Validate", - "blob": "1104ce038dab00d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Validate", - "1 | Prefs : 71.9536371%", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Staking : Validate", - "1 | Prefs : 71.9536371%", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 634, - "name": "Staking_Validate", - "blob": "1104ce038dab00d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Validate", - "1 | Prefs : 71.9536371%", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Staking : Validate", - "1 | Prefs : 71.9536371%", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 635, - "name": "Staking_Validate", - "blob": "1104ba0eba0300d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Validate", - "1 | Prefs : 1.5631278%", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Staking : Validate", - "1 | Prefs : 1.5631278%", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 636, - "name": "Staking_Nominate", - "blob": "1105100001b8cced20bebac0f943d93c2dd9c80739b9924bb1dc59114e9e265ee51fe33c0280cf884663041a6c573d19b518b8d558e36102bc4ac052a66d2eb7f10519df5ba8036cf46a9886caf62b23332426f87442001fc1a9c42f2ea18a28e28ca84aecbd7d04facb9ed85e41aa82492f49671fa63777ba17dbe6d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Nominate", - "1 | Targets [1/8] : 2CVB3iooV29y9U7k4vGzjztyJFrJKgSfZciD6Y", - "1 | Targets [2/8] : jmjnbUAvEY", - "1 | Targets [3/8] : cf884663041a6c573d19b518b8d558e36102bc", - "1 | Targets [4/8] : 4ac052a66d2eb7f10519df5ba8", - "1 | Targets [5/8] : 6cf46a9886caf62b23332426f87442001fc1a9", - "1 | Targets [6/8] : c42f2ea18a28e28ca84aecbd7d", - "1 | Targets [7/8] : facb9ed85e41aa82492f49671fa63777ba17db", - "1 | Targets [8/8] : e6", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Staking : Nominate", - "1 | Targets [1/8] : 2CVB3iooV29y9U7k4vGzjztyJFrJKgSfZciD6Y", - "1 | Targets [2/8] : jmjnbUAvEY", - "1 | Targets [3/8] : cf884663041a6c573d19b518b8d558e36102bc", - "1 | Targets [4/8] : 4ac052a66d2eb7f10519df5ba8", - "1 | Targets [5/8] : 6cf46a9886caf62b23332426f87442001fc1a9", - "1 | Targets [6/8] : c42f2ea18a28e28ca84aecbd7d", - "1 | Targets [7/8] : facb9ed85e41aa82492f49671fa63777ba17db", - "1 | Targets [8/8] : e6", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 637, - "name": "Staking_Nominate", - "blob": "1105100001b8cced20bebac0f943d93c2dd9c80739b9924bb1dc59114e9e265ee51fe33c0280cf884663041a6c573d19b518b8d558e36102bc4ac052a66d2eb7f10519df5ba8036cf46a9886caf62b23332426f87442001fc1a9c42f2ea18a28e28ca84aecbd7d04facb9ed85e41aa82492f49671fa63777ba17dbe6d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Nominate", - "1 | Targets [1/8] : 2CVB3iooV29y9U7k4vGzjztyJFrJKgSfZciD6Y", - "1 | Targets [2/8] : jmjnbUAvEY", - "1 | Targets [3/8] : cf884663041a6c573d19b518b8d558e36102bc", - "1 | Targets [4/8] : 4ac052a66d2eb7f10519df5ba8", - "1 | Targets [5/8] : 6cf46a9886caf62b23332426f87442001fc1a9", - "1 | Targets [6/8] : c42f2ea18a28e28ca84aecbd7d", - "1 | Targets [7/8] : facb9ed85e41aa82492f49671fa63777ba17db", - "1 | Targets [8/8] : e6", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Staking : Nominate", - "1 | Targets [1/8] : 2CVB3iooV29y9U7k4vGzjztyJFrJKgSfZciD6Y", - "1 | Targets [2/8] : jmjnbUAvEY", - "1 | Targets [3/8] : cf884663041a6c573d19b518b8d558e36102bc", - "1 | Targets [4/8] : 4ac052a66d2eb7f10519df5ba8", - "1 | Targets [5/8] : 6cf46a9886caf62b23332426f87442001fc1a9", - "1 | Targets [6/8] : c42f2ea18a28e28ca84aecbd7d", - "1 | Targets [7/8] : facb9ed85e41aa82492f49671fa63777ba17db", - "1 | Targets [8/8] : e6", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 638, - "name": "Staking_Nominate", - "blob": "1105100001b8cced20bebac0f943d93c2dd9c80739b9924bb1dc59114e9e265ee51fe33c0280cf884663041a6c573d19b518b8d558e36102bc4ac052a66d2eb7f10519df5ba8036cf46a9886caf62b23332426f87442001fc1a9c42f2ea18a28e28ca84aecbd7d04facb9ed85e41aa82492f49671fa63777ba17dbe6d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Nominate", - "1 | Targets [1/8] : 2CVB3iooV29y9U7k4vGzjztyJFrJKgSfZciD6Y", - "1 | Targets [2/8] : jmjnbUAvEY", - "1 | Targets [3/8] : cf884663041a6c573d19b518b8d558e36102bc", - "1 | Targets [4/8] : 4ac052a66d2eb7f10519df5ba8", - "1 | Targets [5/8] : 6cf46a9886caf62b23332426f87442001fc1a9", - "1 | Targets [6/8] : c42f2ea18a28e28ca84aecbd7d", - "1 | Targets [7/8] : facb9ed85e41aa82492f49671fa63777ba17db", - "1 | Targets [8/8] : e6", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Staking : Nominate", - "1 | Targets [1/8] : 2CVB3iooV29y9U7k4vGzjztyJFrJKgSfZciD6Y", - "1 | Targets [2/8] : jmjnbUAvEY", - "1 | Targets [3/8] : cf884663041a6c573d19b518b8d558e36102bc", - "1 | Targets [4/8] : 4ac052a66d2eb7f10519df5ba8", - "1 | Targets [5/8] : 6cf46a9886caf62b23332426f87442001fc1a9", - "1 | Targets [6/8] : c42f2ea18a28e28ca84aecbd7d", - "1 | Targets [7/8] : facb9ed85e41aa82492f49671fa63777ba17db", - "1 | Targets [8/8] : e6", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 639, - "name": "Staking_Nominate", - "blob": "1105100001b8cced20bebac0f943d93c2dd9c80739b9924bb1dc59114e9e265ee51fe33c0280cf884663041a6c573d19b518b8d558e36102bc4ac052a66d2eb7f10519df5ba8036cf46a9886caf62b23332426f87442001fc1a9c42f2ea18a28e28ca84aecbd7d04facb9ed85e41aa82492f49671fa63777ba17dbe6d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Nominate", - "1 | Targets [1/8] : 2CVB3iooV29y9U7k4vGzjztyJFrJKgSfZciD6Y", - "1 | Targets [2/8] : jmjnbUAvEY", - "1 | Targets [3/8] : cf884663041a6c573d19b518b8d558e36102bc", - "1 | Targets [4/8] : 4ac052a66d2eb7f10519df5ba8", - "1 | Targets [5/8] : 6cf46a9886caf62b23332426f87442001fc1a9", - "1 | Targets [6/8] : c42f2ea18a28e28ca84aecbd7d", - "1 | Targets [7/8] : facb9ed85e41aa82492f49671fa63777ba17db", - "1 | Targets [8/8] : e6", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Staking : Nominate", - "1 | Targets [1/8] : 2CVB3iooV29y9U7k4vGzjztyJFrJKgSfZciD6Y", - "1 | Targets [2/8] : jmjnbUAvEY", - "1 | Targets [3/8] : cf884663041a6c573d19b518b8d558e36102bc", - "1 | Targets [4/8] : 4ac052a66d2eb7f10519df5ba8", - "1 | Targets [5/8] : 6cf46a9886caf62b23332426f87442001fc1a9", - "1 | Targets [6/8] : c42f2ea18a28e28ca84aecbd7d", - "1 | Targets [7/8] : facb9ed85e41aa82492f49671fa63777ba17db", - "1 | Targets [8/8] : e6", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 640, - "name": "Staking_Nominate", - "blob": "1105100001b8cced20bebac0f943d93c2dd9c80739b9924bb1dc59114e9e265ee51fe33c0280cf884663041a6c573d19b518b8d558e36102bc4ac052a66d2eb7f10519df5ba8036cf46a9886caf62b23332426f87442001fc1a9c42f2ea18a28e28ca84aecbd7d04facb9ed85e41aa82492f49671fa63777ba17dbe6d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Nominate", - "1 | Targets [1/8] : 2CVB3iooV29y9U7k4vGzjztyJFrJKgSfZciD6Y", - "1 | Targets [2/8] : jmjnbUAvEY", - "1 | Targets [3/8] : cf884663041a6c573d19b518b8d558e36102bc", - "1 | Targets [4/8] : 4ac052a66d2eb7f10519df5ba8", - "1 | Targets [5/8] : 6cf46a9886caf62b23332426f87442001fc1a9", - "1 | Targets [6/8] : c42f2ea18a28e28ca84aecbd7d", - "1 | Targets [7/8] : facb9ed85e41aa82492f49671fa63777ba17db", - "1 | Targets [8/8] : e6", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Staking : Nominate", - "1 | Targets [1/8] : 2CVB3iooV29y9U7k4vGzjztyJFrJKgSfZciD6Y", - "1 | Targets [2/8] : jmjnbUAvEY", - "1 | Targets [3/8] : cf884663041a6c573d19b518b8d558e36102bc", - "1 | Targets [4/8] : 4ac052a66d2eb7f10519df5ba8", - "1 | Targets [5/8] : 6cf46a9886caf62b23332426f87442001fc1a9", - "1 | Targets [6/8] : c42f2ea18a28e28ca84aecbd7d", - "1 | Targets [7/8] : facb9ed85e41aa82492f49671fa63777ba17db", - "1 | Targets [8/8] : e6", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 641, - "name": "Staking_Chill", - "blob": "1106d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Chill", - "1 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Staking : Chill", - "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip : POLYX 5552342.355555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 642, - "name": "Staking_Chill", - "blob": "1106d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Chill", - "1 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Staking : Chill", - "1 | Chain : Polymesh", - "2 | Nonce : 2339", - "3 | Tip : POLYX 0.000987", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 643, - "name": "Staking_Chill", - "blob": "1106d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Chill" - ], - "output_expert": [ - "0 | Staking : Chill", - "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "5 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 644, - "name": "Staking_Chill", - "blob": "1106d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Chill", - "1 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Staking : Chill", - "1 | Chain : Polymesh", - "2 | Nonce : 2339", - "3 | Tip : POLYX 1234.56789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 645, - "name": "Staking_Chill", - "blob": "1106d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Chill", - "1 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Staking : Chill", - "1 | Chain : Polymesh", - "2 | Nonce : 100", - "3 | Tip : POLYX 0.000987", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 646, - "name": "Staking_Set_payee", - "blob": "110702d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Set payee", - "1 | Payee : Controller", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Staking : Set payee", - "1 | Payee : Controller", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 647, - "name": "Staking_Set_payee", - "blob": "110700d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Set payee", - "1 | Payee : Staked", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Staking : Set payee", - "1 | Payee : Staked", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 648, - "name": "Staking_Set_payee", - "blob": "110701d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Set payee", - "1 | Payee : Stash", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Staking : Set payee", - "1 | Payee : Stash", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 649, - "name": "Staking_Set_payee", - "blob": "110701d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Set payee", - "1 | Payee : Stash", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Staking : Set payee", - "1 | Payee : Stash", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 650, - "name": "Staking_Set_payee", - "blob": "110703ec7c7c617b946f931384783d67b16f16fb0b19eb08f77264ed76485e302e8a25d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Set payee", - "1 | Payee [1/2] : 2HnzPCAMmtPKL2uqphwJCubf1ksowbiW5YswmD", - "1 | Payee [2/2] : 8LS9PMS7kB", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Staking : Set payee", - "1 | Payee [1/2] : 2HnzPCAMmtPKL2uqphwJCubf1ksowbiW5YswmD", - "1 | Payee [2/2] : 8LS9PMS7kB", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 651, - "name": "Staking_Set_controller", - "blob": "1108048443ca1c1b22505eecee4ab1426f43fd317d745cd503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Set controller", - "1 | Controller [1/2] : 8443ca1c1b22505eecee4ab1426f43fd317d74", - "1 | Controller [2/2] : 5c", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Staking : Set controller", - "1 | Controller [1/2] : 8443ca1c1b22505eecee4ab1426f43fd317d74", - "1 | Controller [2/2] : 5c", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 652, - "name": "Staking_Set_controller", - "blob": "11080280bbe7a19522829178085039f39696ed48cb1f7c87e3c78c7b5f7b0c64c14153d6d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Set controller", - "1 | Controller [1/2] : bbe7a19522829178085039f39696ed48cb1f7c", - "1 | Controller [2/2] : 87e3c78c7b5f7b0c64c14153d6", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Staking : Set controller", - "1 | Controller [1/2] : bbe7a19522829178085039f39696ed48cb1f7c", - "1 | Controller [2/2] : 87e3c78c7b5f7b0c64c14153d6", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 653, - "name": "Staking_Set_controller", - "blob": "110800b1837d2d9cf166722c8ae384ed0525e5226d169f85d164d61152d3a7b77ee176d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Set controller", - "1 | Controller [1/2] : 2GTfdzXYD3mWWHFXcw1WJMvrrKWm9FoedY9xDA", - "1 | Controller [2/2] : LsguGU5VKA" - ], - "output_expert": [ - "0 | Staking : Set controller", - "1 | Controller [1/2] : 2GTfdzXYD3mWWHFXcw1WJMvrrKWm9FoedY9xDA", - "1 | Controller [2/2] : LsguGU5VKA", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 654, - "name": "Staking_Set_controller", - "blob": "110800b1837d2d9cf166722c8ae384ed0525e5226d169f85d164d61152d3a7b77ee176d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Set controller", - "1 | Controller [1/2] : 2GTfdzXYD3mWWHFXcw1WJMvrrKWm9FoedY9xDA", - "1 | Controller [2/2] : LsguGU5VKA", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Staking : Set controller", - "1 | Controller [1/2] : 2GTfdzXYD3mWWHFXcw1WJMvrrKWm9FoedY9xDA", - "1 | Controller [2/2] : LsguGU5VKA", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 655, - "name": "Staking_Set_controller", - "blob": "110800b1837d2d9cf166722c8ae384ed0525e5226d169f85d164d61152d3a7b77ee176d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Set controller", - "1 | Controller [1/2] : 2GTfdzXYD3mWWHFXcw1WJMvrrKWm9FoedY9xDA", - "1 | Controller [2/2] : LsguGU5VKA", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Staking : Set controller", - "1 | Controller [1/2] : 2GTfdzXYD3mWWHFXcw1WJMvrrKWm9FoedY9xDA", - "1 | Controller [2/2] : LsguGU5VKA", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 656, - "name": "Staking_Set_validator_count", - "blob": "11099abaf0d1d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Set validator count", - "1 | New : 880553638", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Staking : Set validator count", - "1 | New : 880553638", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 657, - "name": "Staking_Set_validator_count", - "blob": "110966e98b03d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Set validator count", - "1 | New : 14875225", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Staking : Set validator count", - "1 | New : 14875225", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 658, - "name": "Staking_Set_validator_count", - "blob": "11093e73db27d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Set validator count", - "1 | New : 167173327", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Staking : Set validator count", - "1 | New : 167173327", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 659, - "name": "Staking_Set_validator_count", - "blob": "11099abaf0d1d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Set validator count", - "1 | New : 880553638", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Staking : Set validator count", - "1 | New : 880553638", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 660, - "name": "Staking_Set_validator_count", - "blob": "110966e98b03d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Set validator count", - "1 | New : 14875225", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Staking : Set validator count", - "1 | New : 14875225", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 661, - "name": "Staking_Increase_validator_count", - "blob": "110a9abaf0d1d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Increase validator count", - "1 | Additional : 880553638", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Staking : Increase validator count", - "1 | Additional : 880553638", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 662, - "name": "Staking_Increase_validator_count", - "blob": "110a9abaf0d1d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Increase validator count", - "1 | Additional : 880553638", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Staking : Increase validator count", - "1 | Additional : 880553638", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 663, - "name": "Staking_Increase_validator_count", - "blob": "110a81b8d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Increase validator count", - "1 | Additional : 11808", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Staking : Increase validator count", - "1 | Additional : 11808", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 664, - "name": "Staking_Increase_validator_count", - "blob": "110a66e98b03d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Increase validator count", - "1 | Additional : 14875225" - ], - "output_expert": [ - "0 | Staking : Increase validator count", - "1 | Additional : 14875225", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 665, - "name": "Staking_Increase_validator_count", - "blob": "110a9abaf0d1d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Increase validator count", - "1 | Additional : 880553638", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Staking : Increase validator count", - "1 | Additional : 880553638", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 666, - "name": "Staking_Scale_validator_count", - "blob": "110b00d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Scale validator count", - "1 | Factor : 0%", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Staking : Scale validator count", - "1 | Factor : 0%", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 667, - "name": "Staking_Scale_validator_count", - "blob": "110b00d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Scale validator count", - "1 | Factor : 0%" - ], - "output_expert": [ - "0 | Staking : Scale validator count", - "1 | Factor : 0%", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 668, - "name": "Staking_Scale_validator_count", - "blob": "110b64d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Scale validator count", - "1 | Factor : 100%", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Staking : Scale validator count", - "1 | Factor : 100%", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 669, - "name": "Staking_Scale_validator_count", - "blob": "110b64d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Scale validator count", - "1 | Factor : 100%", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Staking : Scale validator count", - "1 | Factor : 100%", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 670, - "name": "Staking_Scale_validator_count", - "blob": "110b64d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Scale validator count", - "1 | Factor : 100%", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Staking : Scale validator count", - "1 | Factor : 100%", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 671, - "name": "Staking_Add_permissioned_validator", - "blob": "110c31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec0100000000d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Add permissioned validator", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Intended count : 0", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Staking : Add permissioned validator", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Intended count : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 672, - "name": "Staking_Add_permissioned_validator", - "blob": "110c31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec019d1c0000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Add permissioned validator", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Intended count : 7325", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Staking : Add permissioned validator", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Intended count : 7325", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 673, - "name": "Staking_Add_permissioned_validator", - "blob": "110c31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec019d1c0000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Add permissioned validator", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Intended count : 7325", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Staking : Add permissioned validator", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Intended count : 7325", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 674, - "name": "Staking_Add_permissioned_validator", - "blob": "110c31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec019d1c0000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Add permissioned validator", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Intended count : 7325", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Staking : Add permissioned validator", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Intended count : 7325", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 675, - "name": "Staking_Add_permissioned_validator", - "blob": "110c31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec01d3040000d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Add permissioned validator", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Intended count : 1235", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Staking : Add permissioned validator", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Intended count : 1235", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 676, - "name": "Staking_Remove_permissioned_validator", - "blob": "110d31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Remove permissioned validator", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Staking : Remove permissioned validator", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 677, - "name": "Staking_Remove_permissioned_validator", - "blob": "110d31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Remove permissioned validator", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Staking : Remove permissioned validator", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 678, - "name": "Staking_Remove_permissioned_validator", - "blob": "110d31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Remove permissioned validator", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Staking : Remove permissioned validator", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 679, - "name": "Staking_Remove_permissioned_validator", - "blob": "110d31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Remove permissioned validator", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Staking : Remove permissioned validator", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 680, - "name": "Staking_Remove_permissioned_validator", - "blob": "110d31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Remove permissioned validator", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Staking : Remove permissioned validator", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 681, - "name": "Staking_Validate_cdd_expiry_nominators", - "blob": "110e1c48210f7be71c1cab71d20cccb72834335a1696b29c3aa5ea73bf8ae95772c70b62c860d4534bc9c1d2134951096319dc25806f5f2987ac256c8a24b03bf8ef1820d202265cd40341d2fc555ed5024fc4b787e85a5f5d1d769007abb76a73d464e81c2bda659a4eb9482ab49c307c2d95eda1b220e9931026d3e422c170c7fc671212f015ac66558769be1ed742ef04b93a1700d893e510bdb7dffff6cce3d87e84f3c2eb79bcc2111450e245b5f5cb02d0570ac35b6b4aa8af63451efeb12c4c80b7bf99d52609a269aa7a2636f87790bc65d6cd2d40f518d71d7ced97263719d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Validate cdd expiry nominators", - "1 | Targets [1/14] : 2E5VNVTAETmygNYbRYgsaywc4YfnchZfAkbFgL", - "1 | Targets [2/14] : jYGUQX57Eq", - "1 | Targets [3/14] : 2EgSKX5AwDhDDLCd74LwDRr7FFTm5fRxfFAiU9", - "1 | Targets [4/14] : zP5WVyA5NV", - "1 | Targets [5/14] : 2DBx296b9Fnsp8ATWqDNGY8L8Wu4RubMjQkWxT", - "1 | Targets [6/14] : 7BcU3kFLRT", - "1 | Targets [7/14] : 2HhFad5Aqf1LaE9sGU4449xGpTDWFsAC6YqDgC", - "1 | Targets [8/14] : ShRyBdUBFN", - "1 | Targets [9/14] : 2CrcbBuNfvsKazMtHSjacvKRDjAZtVcmtwz7CA", - "1 | Targets [10/14] : MyJ8Q5gNQb", - "1 | Targets [11/14] : 2FTEqRTUSXcpDJJAgXD4ASAQzs728cX5KKvdcJ", - "1 | Targets [12/14] : 5shudehpMQ", - "1 | Targets [13/14] : 2FMgpKAHXwLLwzGJdkg25tQZj7nuFpMBxWytrh", - "1 | Targets [14/14] : ers3RsoL7Z", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Staking : Validate cdd expiry nominators", - "1 | Targets [1/14] : 2E5VNVTAETmygNYbRYgsaywc4YfnchZfAkbFgL", - "1 | Targets [2/14] : jYGUQX57Eq", - "1 | Targets [3/14] : 2EgSKX5AwDhDDLCd74LwDRr7FFTm5fRxfFAiU9", - "1 | Targets [4/14] : zP5WVyA5NV", - "1 | Targets [5/14] : 2DBx296b9Fnsp8ATWqDNGY8L8Wu4RubMjQkWxT", - "1 | Targets [6/14] : 7BcU3kFLRT", - "1 | Targets [7/14] : 2HhFad5Aqf1LaE9sGU4449xGpTDWFsAC6YqDgC", - "1 | Targets [8/14] : ShRyBdUBFN", - "1 | Targets [9/14] : 2CrcbBuNfvsKazMtHSjacvKRDjAZtVcmtwz7CA", - "1 | Targets [10/14] : MyJ8Q5gNQb", - "1 | Targets [11/14] : 2FTEqRTUSXcpDJJAgXD4ASAQzs728cX5KKvdcJ", - "1 | Targets [12/14] : 5shudehpMQ", - "1 | Targets [13/14] : 2FMgpKAHXwLLwzGJdkg25tQZj7nuFpMBxWytrh", - "1 | Targets [14/14] : ers3RsoL7Z", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 682, - "name": "Staking_Validate_cdd_expiry_nominators", - "blob": "110e04f08b83a6d53348ae7f0d95c17aede87f42f2f32cc5825d00d38c265d30597b2ed50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Validate cdd expiry nominators", - "1 | Targets [1/2] : 2HtK3EddN3XakicsaDCAH8xVqHvvaLvjBc8H3D", - "1 | Targets [2/2] : d53t89oAnj", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Staking : Validate cdd expiry nominators", - "1 | Targets [1/2] : 2HtK3EddN3XakicsaDCAH8xVqHvvaLvjBc8H3D", - "1 | Targets [2/2] : d53t89oAnj", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 683, - "name": "Staking_Validate_cdd_expiry_nominators", - "blob": "110e040247edc9fb8eca4b72159b9d38906edad72d519a6947c25060104e350aa15f3cd503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Validate cdd expiry nominators", - "1 | Targets [1/2] : 2CVuZmPB18shdgAGpGPAezrmLe9FvG73KtQqfz", - "1 | Targets [2/2] : sCa3yT4Vtd", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Staking : Validate cdd expiry nominators", - "1 | Targets [1/2] : 2CVuZmPB18shdgAGpGPAezrmLe9FvG73KtQqfz", - "1 | Targets [2/2] : sCa3yT4Vtd", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 684, - "name": "Staking_Validate_cdd_expiry_nominators", - "blob": "110e18649d76bd5cd114e157d77907f6b08216092a10a7c8e4f2e624281e76fca63b7690d1e72cb845e95f06a352497aceccc2ae353e0a4e880da83779ecb7af781b66d22c3b1766d31cf7af6eae2dabf096e8a3b6d3c4c0647ee44270c0adfa341077f2d2e5824780249fcb826b183a0323fa1525d3d10ef2cb23cc7b9695ce078e5cb69c33c994d33e7542745a97c1488e5e4a482ed55d889acfda481059d6468854641b5f730dbdcfbd359d2f1a657701eb098e9701dbf6b236331f86f13aee1e42d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Validate cdd expiry nominators", - "1 | Targets [1/12] : 2Eiqfg9f4Xi9FjzN8unSGp8tcnUrNwpEqBRm88", - "1 | Targets [2/12] : t6J78mthdt", - "1 | Targets [3/12] : 2FioMPDpPaj1NCSb9YRfhYy5eD8KoGto2vjw9u", - "1 | Targets [4/12] : vkWwGx9WpP", - "1 | Targets [5/12] : 2HCVJDmoFiQ7L4B98mEx6QpDn9qsbo8wStb93A", - "1 | Targets [6/12] : XXRVj1E75F", - "1 | Targets [7/12] : 2HwJLgHL4gxwfEn5MfwXhiWsKkKijs9MTqRNgy", - "1 | Targets [8/12] : ipKTk1DLew", - "1 | Targets [9/12] : 2GaMDgNyb6mSSgF6Gwhi3tQcUindX6uShD31A2", - "1 | Targets [10/12] : iPpAEkHsxx", - "1 | Targets [11/12] : 2EiB2G4NxM8E33tqeuvLbvxusUe9EmchDcixff", - "1 | Targets [12/12] : YQRBhcwNoQ", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Staking : Validate cdd expiry nominators", - "1 | Targets [1/12] : 2Eiqfg9f4Xi9FjzN8unSGp8tcnUrNwpEqBRm88", - "1 | Targets [2/12] : t6J78mthdt", - "1 | Targets [3/12] : 2FioMPDpPaj1NCSb9YRfhYy5eD8KoGto2vjw9u", - "1 | Targets [4/12] : vkWwGx9WpP", - "1 | Targets [5/12] : 2HCVJDmoFiQ7L4B98mEx6QpDn9qsbo8wStb93A", - "1 | Targets [6/12] : XXRVj1E75F", - "1 | Targets [7/12] : 2HwJLgHL4gxwfEn5MfwXhiWsKkKijs9MTqRNgy", - "1 | Targets [8/12] : ipKTk1DLew", - "1 | Targets [9/12] : 2GaMDgNyb6mSSgF6Gwhi3tQcUindX6uShD31A2", - "1 | Targets [10/12] : iPpAEkHsxx", - "1 | Targets [11/12] : 2EiB2G4NxM8E33tqeuvLbvxusUe9EmchDcixff", - "1 | Targets [12/12] : YQRBhcwNoQ", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 685, - "name": "Staking_Validate_cdd_expiry_nominators", - "blob": "110e040247edc9fb8eca4b72159b9d38906edad72d519a6947c25060104e350aa15f3cd503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Validate cdd expiry nominators", - "1 | Targets [1/2] : 2CVuZmPB18shdgAGpGPAezrmLe9FvG73KtQqfz", - "1 | Targets [2/2] : sCa3yT4Vtd", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Staking : Validate cdd expiry nominators", - "1 | Targets [1/2] : 2CVuZmPB18shdgAGpGPAezrmLe9FvG73KtQqfz", - "1 | Targets [2/2] : sCa3yT4Vtd", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 686, - "name": "Staking_Set_commission_cap", - "blob": "110f9782e1c6d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Set commission cap", - "1 | New cap : 333.6667799%", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Staking : Set commission cap", - "1 | New cap : 333.6667799%", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 687, - "name": "Staking_Set_commission_cap", - "blob": "110f7d1ae1aad50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Set commission cap", - "1 | New cap : 286.6879101%" - ], - "output_expert": [ - "0 | Staking : Set commission cap", - "1 | New cap : 286.6879101%", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 688, - "name": "Staking_Set_commission_cap", - "blob": "110f9782e1c6d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Set commission cap", - "1 | New cap : 333.6667799%", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Staking : Set commission cap", - "1 | New cap : 333.6667799%", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 689, - "name": "Staking_Set_commission_cap", - "blob": "110f9782e1c6d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Set commission cap", - "1 | New cap : 333.6667799%" - ], - "output_expert": [ - "0 | Staking : Set commission cap", - "1 | New cap : 333.6667799%", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 690, - "name": "Staking_Set_commission_cap", - "blob": "110f7d1ae1aad5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Set commission cap", - "1 | New cap : 286.6879101%", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Staking : Set commission cap", - "1 | New cap : 286.6879101%", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 691, - "name": "Staking_Set_min_bond_threshold", - "blob": "1110345fe7fc9c23bfb62334c8ca2c746feed503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Set min bond threshold", - "1 | New value [1/2] : POLYX 31693496425641852120896906194770", - "1 | New value [2/2] : 0.371252" - ], - "output_expert": [ - "0 | Staking : Set min bond threshold", - "1 | New value [1/2] : POLYX 31693496425641852120896906194770", - "1 | New value [2/2] : 0.371252", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 692, - "name": "Staking_Set_min_bond_threshold", - "blob": "1110345fe7fc9c23bfb62334c8ca2c746feed503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Set min bond threshold", - "1 | New value [1/2] : POLYX 31693496425641852120896906194770", - "1 | New value [2/2] : 0.371252", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Staking : Set min bond threshold", - "1 | New value [1/2] : POLYX 31693496425641852120896906194770", - "1 | New value [2/2] : 0.371252", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 693, - "name": "Staking_Set_min_bond_threshold", - "blob": "1110345fe7fc9c23bfb62334c8ca2c746feed503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Set min bond threshold", - "1 | New value [1/2] : POLYX 31693496425641852120896906194770", - "1 | New value [2/2] : 0.371252" - ], - "output_expert": [ - "0 | Staking : Set min bond threshold", - "1 | New value [1/2] : POLYX 31693496425641852120896906194770", - "1 | New value [2/2] : 0.371252", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 694, - "name": "Staking_Set_min_bond_threshold", - "blob": "1110345fe7fc9c23bfb62334c8ca2c746feed50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Set min bond threshold", - "1 | New value [1/2] : POLYX 31693496425641852120896906194770", - "1 | New value [2/2] : 0.371252", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Staking : Set min bond threshold", - "1 | New value [1/2] : POLYX 31693496425641852120896906194770", - "1 | New value [2/2] : 0.371252", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 695, - "name": "Staking_Set_min_bond_threshold", - "blob": "1110345fe7fc9c23bfb62334c8ca2c746feed503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Set min bond threshold", - "1 | New value [1/2] : POLYX 31693496425641852120896906194770", - "1 | New value [2/2] : 0.371252" - ], - "output_expert": [ - "0 | Staking : Set min bond threshold", - "1 | New value [1/2] : POLYX 31693496425641852120896906194770", - "1 | New value [2/2] : 0.371252", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 696, - "name": "Staking_Force_no_eras", - "blob": "1111d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Force no eras", - "1 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Staking : Force no eras", - "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip : POLYX 0.000987", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 697, - "name": "Staking_Force_no_eras", - "blob": "1111d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Force no eras", - "1 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Staking : Force no eras", - "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip : POLYX 55.555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 698, - "name": "Staking_Force_no_eras", - "blob": "1111d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Force no eras", - "1 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Staking : Force no eras", - "1 | Chain : Polymesh", - "2 | Nonce : 100", - "3 | Tip : POLYX 55.555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 699, - "name": "Staking_Force_no_eras", - "blob": "1111d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Force no eras", - "1 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Staking : Force no eras", - "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip : POLYX 1234.56789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 700, - "name": "Staking_Force_no_eras", - "blob": "1111d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Force no eras", - "1 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Staking : Force no eras", - "1 | Chain : Polymesh", - "2 | Nonce : 100", - "3 | Tip : POLYX 1234.56789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 701, - "name": "Staking_Force_new_era", - "blob": "1112d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Force new era", - "1 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Staking : Force new era", - "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip : POLYX 0.000987", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 702, - "name": "Staking_Force_new_era", - "blob": "1112d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Force new era", - "1 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Staking : Force new era", - "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip : POLYX 55.555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 703, - "name": "Staking_Force_new_era", - "blob": "1112d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Force new era", - "1 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Staking : Force new era", - "1 | Chain : Polymesh", - "2 | Nonce : 100", - "3 | Tip : POLYX 55.555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 704, - "name": "Staking_Force_new_era", - "blob": "1112d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Force new era", - "1 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Staking : Force new era", - "1 | Chain : Polymesh", - "2 | Nonce : 2339", - "3 | Tip : POLYX 5552342.355555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 705, - "name": "Staking_Force_new_era", - "blob": "1112d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Force new era", - "1 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Staking : Force new era", - "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Tip : POLYX 55.555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 706, - "name": "Staking_Set_invulnerables", - "blob": "1113186a5b5e6093822e84f18f3b97c387403b4e0c7adda2cb385fd79cbf9241b72e66746a227b177fc0b3473ce44cb9cd8d58668a949928838871cbb734edd075f83f86d5f512eb3ac237b7bc7e9697c64b036a54b51771c89c6c5273722598a8c91fe6d1ab46541fc6bdcfdd277270cc08c280dbb7fda2751f1f7fa30d17dd45f41e8c1a036c20c13bce5d86216a9bf31e6a490a6d694b34c3d77f8f22bb0daeef4d3c6201bb86068ce7c9f4fe4ac431eb36a01688f97c709be6fd14037e47b81c50d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Set invulnerables", - "1 | Invulnerables [1/12] : 2ErNKYedfvhiMXYYya4ib8eJ2kXn66DxsP4fuc", - "1 | Invulnerables [2/12] : xP8Gv12sAG", - "1 | Invulnerables [3/12] : 2F5ZBjRz8ynZP6SNbtRESkXa3A2ES2D2bHoNYm", - "1 | Invulnerables [4/12] : 7fW5LKg1hK", - "1 | Invulnerables [5/12] : 2FVi5TuPGsphRajEkJx2cQGooArZy9ufb25B7Z", - "1 | Invulnerables [6/12] : b6hq583qwu", - "1 | Invulnerables [7/12] : 2HfZQCdj4JJRuWMbxFQreBRwW1cz368CFXR3P3", - "1 | Invulnerables [8/12] : vbFZVwUiiQ", - "1 | Invulnerables [9/12] : 2FccXvsbSY1qbSNBALpMNaB5ByJTbZuJra5i3n", - "1 | Invulnerables [10/12] : KBajHVPjwc", - "1 | Invulnerables [11/12] : 2Dp66AMF68n3ygaXMee26UeB9WRBFAmBYKomDV", - "1 | Invulnerables [12/12] : QENutiJiVJ", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Staking : Set invulnerables", - "1 | Invulnerables [1/12] : 2ErNKYedfvhiMXYYya4ib8eJ2kXn66DxsP4fuc", - "1 | Invulnerables [2/12] : xP8Gv12sAG", - "1 | Invulnerables [3/12] : 2F5ZBjRz8ynZP6SNbtRESkXa3A2ES2D2bHoNYm", - "1 | Invulnerables [4/12] : 7fW5LKg1hK", - "1 | Invulnerables [5/12] : 2FVi5TuPGsphRajEkJx2cQGooArZy9ufb25B7Z", - "1 | Invulnerables [6/12] : b6hq583qwu", - "1 | Invulnerables [7/12] : 2HfZQCdj4JJRuWMbxFQreBRwW1cz368CFXR3P3", - "1 | Invulnerables [8/12] : vbFZVwUiiQ", - "1 | Invulnerables [9/12] : 2FccXvsbSY1qbSNBALpMNaB5ByJTbZuJra5i3n", - "1 | Invulnerables [10/12] : KBajHVPjwc", - "1 | Invulnerables [11/12] : 2Dp66AMF68n3ygaXMee26UeB9WRBFAmBYKomDV", - "1 | Invulnerables [12/12] : QENutiJiVJ", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 707, - "name": "Staking_Set_invulnerables", - "blob": "111324ba09ae5a1a06d6a5096e8fff1812b427b7b8472f8afd3f28a205cca623b2a62894667ff8cef58cc65f6a3fabe6d4738e6d923d558a0a9b19ad9893733082835bba966ea6ca4234843141fdd009bb8745df4e0cf51e7c8a9db5ae5d37c16fed2f360d0e343f81176e30f6f89c55f0b0ddc12c86dfac9f66b1a1f0c1b87b4c744866a090e9a0d5470f2e3df13a7a22d9c61699eefba5f2ba435d1df694ced2f34336b1dc398b1188204c2633a177ac9fa439065c2db553f0dbab3c19af63caff096ae17d5b2fee7a239ecd4b19d396b2f284a26e25852d5fe41d273a91ee623d1fbefb2815fc037d35ccae79237555457ac51f50518f27dd431386c3848b5f4f106e781d3e6c8b0ed98969bae24573501d89648c212ebe0fb7cc201cf109d7e837d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Set invulnerables", - "1 | Invulnerables [1/18] : 2GeqtHba1JjAWsSUbehiiC3hfNg7nryrD7maiR", - "1 | Invulnerables [2/18] : YZxQ8GhhFE", - "1 | Invulnerables [3/18] : 2FoVdyon9MokPTbsT1yGPVp2UdbqXDGib5WQjb", - "1 | Invulnerables [4/18] : HEKyFaXmih", - "1 | Invulnerables [5/18] : 2GfZhNbZPUSAiWgibrRb8pXzYRbFQZVPmxo7zG", - "1 | Invulnerables [6/18] : udMxQ81jJD", - "1 | Invulnerables [7/18] : 2DfnZpc7sbmiusf76kku8GMasZEhksda6Mi7q8", - "1 | Invulnerables [8/18] : ZbfGFBLQgo", - "1 | Invulnerables [9/18] : 2EmUggSH8DLLFzsa1r9hFQSvFixNVRjJW3Fj5m", - "1 | Invulnerables [10/18] : b58HL5zbjB", - "1 | Invulnerables [11/18] : 2DgdXLma4sAWPvkDA1gjs9zc8Azw3iy4MyhgNT", - "1 | Invulnerables [12/18] : U63qDZtqU9", - "1 | Invulnerables [13/18] : 2Es4AQ2Ao3NpSqwnyBKTPMBS7Eaf7JAHuwKQUi", - "1 | Invulnerables [14/18] : BKh1LwbpYm", - "1 | Invulnerables [15/18] : 2GmKovTufMs9PAVKDskoethS2tYrChoekWhVEc", - "1 | Invulnerables [16/18] : gRNSvSiUhV", - "1 | Invulnerables [17/18] : 2Ewm3vvCToummsrGVFwg4ETPgpfPfuSeuYGLSe", - "1 | Invulnerables [18/18] : 9b6pmP9zLV" - ], - "output_expert": [ - "0 | Staking : Set invulnerables", - "1 | Invulnerables [1/18] : 2GeqtHba1JjAWsSUbehiiC3hfNg7nryrD7maiR", - "1 | Invulnerables [2/18] : YZxQ8GhhFE", - "1 | Invulnerables [3/18] : 2FoVdyon9MokPTbsT1yGPVp2UdbqXDGib5WQjb", - "1 | Invulnerables [4/18] : HEKyFaXmih", - "1 | Invulnerables [5/18] : 2GfZhNbZPUSAiWgibrRb8pXzYRbFQZVPmxo7zG", - "1 | Invulnerables [6/18] : udMxQ81jJD", - "1 | Invulnerables [7/18] : 2DfnZpc7sbmiusf76kku8GMasZEhksda6Mi7q8", - "1 | Invulnerables [8/18] : ZbfGFBLQgo", - "1 | Invulnerables [9/18] : 2EmUggSH8DLLFzsa1r9hFQSvFixNVRjJW3Fj5m", - "1 | Invulnerables [10/18] : b58HL5zbjB", - "1 | Invulnerables [11/18] : 2DgdXLma4sAWPvkDA1gjs9zc8Azw3iy4MyhgNT", - "1 | Invulnerables [12/18] : U63qDZtqU9", - "1 | Invulnerables [13/18] : 2Es4AQ2Ao3NpSqwnyBKTPMBS7Eaf7JAHuwKQUi", - "1 | Invulnerables [14/18] : BKh1LwbpYm", - "1 | Invulnerables [15/18] : 2GmKovTufMs9PAVKDskoethS2tYrChoekWhVEc", - "1 | Invulnerables [16/18] : gRNSvSiUhV", - "1 | Invulnerables [17/18] : 2Ewm3vvCToummsrGVFwg4ETPgpfPfuSeuYGLSe", - "1 | Invulnerables [18/18] : 9b6pmP9zLV", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 708, - "name": "Staking_Set_invulnerables", - "blob": "1113040247edc9fb8eca4b72159b9d38906edad72d519a6947c25060104e350aa15f3cd503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Set invulnerables", - "1 | Invulnerables [1/2] : 2CVuZmPB18shdgAGpGPAezrmLe9FvG73KtQqfz", - "1 | Invulnerables [2/2] : sCa3yT4Vtd" - ], - "output_expert": [ - "0 | Staking : Set invulnerables", - "1 | Invulnerables [1/2] : 2CVuZmPB18shdgAGpGPAezrmLe9FvG73KtQqfz", - "1 | Invulnerables [2/2] : sCa3yT4Vtd", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 709, - "name": "Staking_Set_invulnerables", - "blob": "1113186a5b5e6093822e84f18f3b97c387403b4e0c7adda2cb385fd79cbf9241b72e66746a227b177fc0b3473ce44cb9cd8d58668a949928838871cbb734edd075f83f86d5f512eb3ac237b7bc7e9697c64b036a54b51771c89c6c5273722598a8c91fe6d1ab46541fc6bdcfdd277270cc08c280dbb7fda2751f1f7fa30d17dd45f41e8c1a036c20c13bce5d86216a9bf31e6a490a6d694b34c3d77f8f22bb0daeef4d3c6201bb86068ce7c9f4fe4ac431eb36a01688f97c709be6fd14037e47b81c50d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Set invulnerables", - "1 | Invulnerables [1/12] : 2ErNKYedfvhiMXYYya4ib8eJ2kXn66DxsP4fuc", - "1 | Invulnerables [2/12] : xP8Gv12sAG", - "1 | Invulnerables [3/12] : 2F5ZBjRz8ynZP6SNbtRESkXa3A2ES2D2bHoNYm", - "1 | Invulnerables [4/12] : 7fW5LKg1hK", - "1 | Invulnerables [5/12] : 2FVi5TuPGsphRajEkJx2cQGooArZy9ufb25B7Z", - "1 | Invulnerables [6/12] : b6hq583qwu", - "1 | Invulnerables [7/12] : 2HfZQCdj4JJRuWMbxFQreBRwW1cz368CFXR3P3", - "1 | Invulnerables [8/12] : vbFZVwUiiQ", - "1 | Invulnerables [9/12] : 2FccXvsbSY1qbSNBALpMNaB5ByJTbZuJra5i3n", - "1 | Invulnerables [10/12] : KBajHVPjwc", - "1 | Invulnerables [11/12] : 2Dp66AMF68n3ygaXMee26UeB9WRBFAmBYKomDV", - "1 | Invulnerables [12/12] : QENutiJiVJ", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Staking : Set invulnerables", - "1 | Invulnerables [1/12] : 2ErNKYedfvhiMXYYya4ib8eJ2kXn66DxsP4fuc", - "1 | Invulnerables [2/12] : xP8Gv12sAG", - "1 | Invulnerables [3/12] : 2F5ZBjRz8ynZP6SNbtRESkXa3A2ES2D2bHoNYm", - "1 | Invulnerables [4/12] : 7fW5LKg1hK", - "1 | Invulnerables [5/12] : 2FVi5TuPGsphRajEkJx2cQGooArZy9ufb25B7Z", - "1 | Invulnerables [6/12] : b6hq583qwu", - "1 | Invulnerables [7/12] : 2HfZQCdj4JJRuWMbxFQreBRwW1cz368CFXR3P3", - "1 | Invulnerables [8/12] : vbFZVwUiiQ", - "1 | Invulnerables [9/12] : 2FccXvsbSY1qbSNBALpMNaB5ByJTbZuJra5i3n", - "1 | Invulnerables [10/12] : KBajHVPjwc", - "1 | Invulnerables [11/12] : 2Dp66AMF68n3ygaXMee26UeB9WRBFAmBYKomDV", - "1 | Invulnerables [12/12] : QENutiJiVJ", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 710, - "name": "Staking_Set_invulnerables", - "blob": "11131cd8a98ec1754def3fe27883f46c1d5e2d44b7a6e3356442e484d8b9adc2de83515a7b70e775d9ec2e2cbaf6bde18355dcb566950b99f1d336e47c58547cde3f00be84f84c7f433b8698f888ffd9bb1fa469adfc2512ddd72ee1fca1eec49d977126cc124e4fe7e03f78af6e1aae5d230460e80716553cc571a77361c6ab07383e543724430cc713a3d963ef588657eb5933516e8f3dfb4d381fd1c1646640985646d23cfaa492501fe5441b6ebdc71c8a42c4842937832a43e9956257a1bb581912ed1f1f411d64f62c7c37d3c27fd982800a1cb3ec3648e2498e8cb010473a6fd5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Set invulnerables", - "1 | Invulnerables [1/14] : 2HLzpDTeVuWvNMRmdXAfZVvUHykP9Vm4fuqGy8", - "1 | Invulnerables [2/14] : eZRjVvTN2J", - "1 | Invulnerables [3/14] : 2EVZ5hm347oGHzHHBwXJgF3Xdra45L2uCLRQy9", - "1 | Invulnerables [4/14] : U6TX2V9yKk", - "1 | Invulnerables [5/14] : 2GkihcYpKKcu7rtxnh95pW9rYb4RMSsJEh1xPS", - "1 | Invulnerables [6/14] : yKiZQrH4Gb", - "1 | Invulnerables [7/14] : 2DKnYWmW9SoLRwqJGArvBXAvspEEbA9AptFk4u", - "1 | Invulnerables [8/14] : oGdFnCHWKh", - "1 | Invulnerables [9/14] : 2EMLWGYAFLdzq37dfi99sw8t7BBCK4zivmrTaH", - "1 | Invulnerables [10/14] : 8jwXtDHMgh", - "1 | Invulnerables [11/14] : 2E3mudwSEpUQCw2PyiTfjh5qN4UhHsyEqTan9G", - "1 | Invulnerables [12/14] : Nw29iFnhGN", - "1 | Invulnerables [13/14] : 2CsjQQZoijLvpu8SAWTUhUyvQVzYfQbEsrLNBi", - "1 | Invulnerables [14/14] : gXReuAwHsN", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Staking : Set invulnerables", - "1 | Invulnerables [1/14] : 2HLzpDTeVuWvNMRmdXAfZVvUHykP9Vm4fuqGy8", - "1 | Invulnerables [2/14] : eZRjVvTN2J", - "1 | Invulnerables [3/14] : 2EVZ5hm347oGHzHHBwXJgF3Xdra45L2uCLRQy9", - "1 | Invulnerables [4/14] : U6TX2V9yKk", - "1 | Invulnerables [5/14] : 2GkihcYpKKcu7rtxnh95pW9rYb4RMSsJEh1xPS", - "1 | Invulnerables [6/14] : yKiZQrH4Gb", - "1 | Invulnerables [7/14] : 2DKnYWmW9SoLRwqJGArvBXAvspEEbA9AptFk4u", - "1 | Invulnerables [8/14] : oGdFnCHWKh", - "1 | Invulnerables [9/14] : 2EMLWGYAFLdzq37dfi99sw8t7BBCK4zivmrTaH", - "1 | Invulnerables [10/14] : 8jwXtDHMgh", - "1 | Invulnerables [11/14] : 2E3mudwSEpUQCw2PyiTfjh5qN4UhHsyEqTan9G", - "1 | Invulnerables [12/14] : Nw29iFnhGN", - "1 | Invulnerables [13/14] : 2CsjQQZoijLvpu8SAWTUhUyvQVzYfQbEsrLNBi", - "1 | Invulnerables [14/14] : gXReuAwHsN", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 711, - "name": "Staking_Force_unstake", - "blob": "11143e687768a50d36e597c2eb73c8161ef62ba3c55f6aa5ca420e76dcd08b219d26d3040000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Force unstake", - "1 | Stash [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Stash [2/2] : kKMKAMQcg5", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Staking : Force unstake", - "1 | Stash [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Stash [2/2] : kKMKAMQcg5", - "2 | Num slashing spans : 1235", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 712, - "name": "Staking_Force_unstake", - "blob": "11146a8500b97a5889f4ecdf68f2a4b406fec17e564b6254cc641c43c18ca62cb21cf7010000d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Force unstake", - "1 | Stash [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Stash [2/2] : hbeqgL2Ukv", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Staking : Force unstake", - "1 | Stash [1/2] : 2EragtNW1QnD4z4oE4yeQddyAcvxHJUHPTcU2E", - "1 | Stash [2/2] : hbeqgL2Ukv", - "2 | Num slashing spans : 503", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 713, - "name": "Staking_Force_unstake", - "blob": "111442ed86a3b5fd55b0ec57c2112f981fbc2d91f4225759141ea0b255fd34639d74d3040000d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Force unstake", - "1 | Stash [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "1 | Stash [2/2] : kvir9Rw75p", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Staking : Force unstake", - "1 | Stash [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "1 | Stash [2/2] : kvir9Rw75p", - "2 | Num slashing spans : 1235", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 714, - "name": "Staking_Force_unstake", - "blob": "1114b673c14adc4fdaaa84b868330314bb524eb97de82eb6ad5c24401af92af33f54d3040000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Force unstake", - "1 | Stash [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Stash [2/2] : 6xRJgVAa3i", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Staking : Force unstake", - "1 | Stash [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Stash [2/2] : 6xRJgVAa3i", - "2 | Num slashing spans : 1235", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 715, - "name": "Staking_Force_unstake", - "blob": "111442ed86a3b5fd55b0ec57c2112f981fbc2d91f4225759141ea0b255fd34639d74d3040000d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Force unstake", - "1 | Stash [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "1 | Stash [2/2] : kvir9Rw75p" - ], - "output_expert": [ - "0 | Staking : Force unstake", - "1 | Stash [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "1 | Stash [2/2] : kvir9Rw75p", - "2 | Num slashing spans : 1235", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 716, - "name": "Staking_Force_new_era_always", - "blob": "1115d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Force new era always", - "1 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Staking : Force new era always", - "1 | Chain : Polymesh", - "2 | Nonce : 100", - "3 | Tip : POLYX 0.000987", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 717, - "name": "Staking_Force_new_era_always", - "blob": "1115d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Force new era always", - "1 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Staking : Force new era always", - "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Tip : POLYX 5552342.355555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 718, - "name": "Staking_Force_new_era_always", - "blob": "1115d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Force new era always", - "1 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Staking : Force new era always", - "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Tip : POLYX 1234.56789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 719, - "name": "Staking_Force_new_era_always", - "blob": "1115d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Force new era always", - "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "1 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Staking : Force new era always", - "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 720, - "name": "Staking_Force_new_era_always", - "blob": "1115d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Force new era always", - "1 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Staking : Force new era always", - "1 | Chain : Polymesh", - "2 | Nonce : 2339", - "3 | Tip : POLYX 0.000987", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 721, - "name": "Staking_Cancel_deferred_slash", - "blob": "1116f7010000100d0000000c0000001300000023000000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Cancel deferred slash", - "1 | Era : 503", - "2 | Slash indices [1/4] : 13", - "2 | Slash indices [2/4] : 12", - "2 | Slash indices [3/4] : 19", - "2 | Slash indices [4/4] : 35", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Staking : Cancel deferred slash", - "1 | Era : 503", - "2 | Slash indices [1/4] : 13", - "2 | Slash indices [2/4] : 12", - "2 | Slash indices [3/4] : 19", - "2 | Slash indices [4/4] : 35", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 722, - "name": "Staking_Cancel_deferred_slash", - "blob": "1116f7010000100d0000000c0000001300000023000000d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Cancel deferred slash", - "1 | Era : 503", - "2 | Slash indices [1/4] : 13", - "2 | Slash indices [2/4] : 12", - "2 | Slash indices [3/4] : 19", - "2 | Slash indices [4/4] : 35", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Staking : Cancel deferred slash", - "1 | Era : 503", - "2 | Slash indices [1/4] : 13", - "2 | Slash indices [2/4] : 12", - "2 | Slash indices [3/4] : 19", - "2 | Slash indices [4/4] : 35", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 723, - "name": "Staking_Cancel_deferred_slash", - "blob": "11169d1c0000100d0000000c0000001300000023000000d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Cancel deferred slash", - "1 | Era : 7325", - "2 | Slash indices [1/4] : 13", - "2 | Slash indices [2/4] : 12", - "2 | Slash indices [3/4] : 19", - "2 | Slash indices [4/4] : 35" - ], - "output_expert": [ - "0 | Staking : Cancel deferred slash", - "1 | Era : 7325", - "2 | Slash indices [1/4] : 13", - "2 | Slash indices [2/4] : 12", - "2 | Slash indices [3/4] : 19", - "2 | Slash indices [4/4] : 35", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 724, - "name": "Staking_Cancel_deferred_slash", - "blob": "1116f701000010200000000b000000200000000b000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Cancel deferred slash", - "1 | Era : 503", - "2 | Slash indices [1/4] : 32", - "2 | Slash indices [2/4] : 11", - "2 | Slash indices [3/4] : 32", - "2 | Slash indices [4/4] : 11", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Staking : Cancel deferred slash", - "1 | Era : 503", - "2 | Slash indices [1/4] : 32", - "2 | Slash indices [2/4] : 11", - "2 | Slash indices [3/4] : 32", - "2 | Slash indices [4/4] : 11", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 725, - "name": "Staking_Cancel_deferred_slash", - "blob": "1116f7010000100c000000290000003400000035000000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Cancel deferred slash", - "1 | Era : 503", - "2 | Slash indices [1/4] : 12", - "2 | Slash indices [2/4] : 41", - "2 | Slash indices [3/4] : 52", - "2 | Slash indices [4/4] : 53", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Staking : Cancel deferred slash", - "1 | Era : 503", - "2 | Slash indices [1/4] : 12", - "2 | Slash indices [2/4] : 41", - "2 | Slash indices [3/4] : 52", - "2 | Slash indices [4/4] : 53", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 726, - "name": "Staking_Payout_stakers", - "blob": "1117b673c14adc4fdaaa84b868330314bb524eb97de82eb6ad5c24401af92af33f54d3040000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Validator stash [2/2] : 6xRJgVAa3i", - "2 | Era : 1235", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Validator stash [2/2] : 6xRJgVAa3i", - "2 | Era : 1235", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 727, - "name": "Staking_Payout_stakers", - "blob": "11173e687768a50d36e597c2eb73c8161ef62ba3c55f6aa5ca420e76dcd08b219d2634300000d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Validator stash [2/2] : kKMKAMQcg5", - "2 | Era : 12340" - ], - "output_expert": [ - "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Validator stash [2/2] : kKMKAMQcg5", - "2 | Era : 12340", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 728, - "name": "Staking_Payout_stakers", - "blob": "11173e687768a50d36e597c2eb73c8161ef62ba3c55f6aa5ca420e76dcd08b219d26f7010000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Validator stash [2/2] : kKMKAMQcg5", - "2 | Era : 503", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Validator stash [2/2] : kKMKAMQcg5", - "2 | Era : 503", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 729, - "name": "Staking_Payout_stakers", - "blob": "1117b673c14adc4fdaaa84b868330314bb524eb97de82eb6ad5c24401af92af33f5400000000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Validator stash [2/2] : 6xRJgVAa3i", - "2 | Era : 0", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Validator stash [2/2] : 6xRJgVAa3i", - "2 | Era : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 730, - "name": "Staking_Payout_stakers", - "blob": "11171813b8c47c41f5279be46dc5272f7321cbfb8e6a91645a82458752c94de75b1c00000000d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | Validator stash [2/2] : PmkgsnFWXr", - "2 | Era : 0", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Staking : Payout stakers", - "1 | Validator stash [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | Validator stash [2/2] : PmkgsnFWXr", - "2 | Era : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 731, - "name": "Staking_Rebond", - "blob": "111833158139ae28a3dfaac5fe1560a5e9e05cd503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Rebond", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Staking : Rebond", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 732, - "name": "Staking_Rebond", - "blob": "11188ed73e0dd503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Rebond", - "1 | Amount : POLYX 55.555555", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Staking : Rebond", - "1 | Amount : POLYX 55.555555", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 733, - "name": "Staking_Rebond", - "blob": "11188ed73e0dd5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Rebond", - "1 | Amount : POLYX 55.555555", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Staking : Rebond", - "1 | Amount : POLYX 55.555555", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 734, - "name": "Staking_Rebond", - "blob": "11188ed73e0dd50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Rebond", - "1 | Amount : POLYX 55.555555", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Staking : Rebond", - "1 | Amount : POLYX 55.555555", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 735, - "name": "Staking_Rebond", - "blob": "11186d0fd5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Rebond", - "1 | Amount : POLYX 0.000987", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Staking : Rebond", - "1 | Amount : POLYX 0.000987", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 736, - "name": "Staking_Set_history_depth", - "blob": "11199abaf0d13e73db27d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Set history depth", - "1 | New history depth : 880553638", - "2 | Era items deleted : 167173327", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Staking : Set history depth", - "1 | New history depth : 880553638", - "2 | Era items deleted : 167173327", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 737, - "name": "Staking_Set_history_depth", - "blob": "11199abaf0d13e73db27d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Set history depth", - "1 | New history depth : 880553638", - "2 | Era items deleted : 167173327", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Staking : Set history depth", - "1 | New history depth : 880553638", - "2 | Era items deleted : 167173327", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 738, - "name": "Staking_Set_history_depth", - "blob": "11193e73db2766e98b03d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Set history depth", - "1 | New history depth : 167173327", - "2 | Era items deleted : 14875225", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Staking : Set history depth", - "1 | New history depth : 167173327", - "2 | Era items deleted : 14875225", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 739, - "name": "Staking_Set_history_depth", - "blob": "111981b89abaf0d1d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Set history depth", - "1 | New history depth : 11808", - "2 | Era items deleted : 880553638", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Staking : Set history depth", - "1 | New history depth : 11808", - "2 | Era items deleted : 880553638", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 740, - "name": "Staking_Set_history_depth", - "blob": "11199abaf0d19abaf0d1d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Set history depth", - "1 | New history depth : 880553638", - "2 | Era items deleted : 880553638" - ], - "output_expert": [ - "0 | Staking : Set history depth", - "1 | New history depth : 880553638", - "2 | Era items deleted : 880553638", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 741, - "name": "Staking_Reap_stash", - "blob": "111a3e687768a50d36e597c2eb73c8161ef62ba3c55f6aa5ca420e76dcd08b219d26d3040000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Reap stash", - "1 | Stash [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Stash [2/2] : kKMKAMQcg5", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Staking : Reap stash", - "1 | Stash [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Stash [2/2] : kKMKAMQcg5", - "2 | Num slashing spans : 1235", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 742, - "name": "Staking_Reap_stash", - "blob": "111a3e687768a50d36e597c2eb73c8161ef62ba3c55f6aa5ca420e76dcd08b219d2634300000d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Reap stash", - "1 | Stash [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Stash [2/2] : kKMKAMQcg5", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Staking : Reap stash", - "1 | Stash [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Stash [2/2] : kKMKAMQcg5", - "2 | Num slashing spans : 12340", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 743, - "name": "Staking_Reap_stash", - "blob": "111ab673c14adc4fdaaa84b868330314bb524eb97de82eb6ad5c24401af92af33f54d3040000d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Reap stash", - "1 | Stash [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Stash [2/2] : 6xRJgVAa3i", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Staking : Reap stash", - "1 | Stash [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Stash [2/2] : 6xRJgVAa3i", - "2 | Num slashing spans : 1235", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 744, - "name": "Staking_Reap_stash", - "blob": "111a44437e7896c15f809cbc7156673d31ecf873060385385e9c27d5ae4abc0556159d1c0000d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Reap stash", - "1 | Stash [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | Stash [2/2] : yiDWE8dFzF", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Staking : Reap stash", - "1 | Stash [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | Stash [2/2] : yiDWE8dFzF", - "2 | Num slashing spans : 7325", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 745, - "name": "Staking_Reap_stash", - "blob": "111a5cf93ef43e7f44d10f78045182931ed20d916dc1680da77e6e1e60c2f827bc7900000000d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Reap stash", - "1 | Stash [1/2] : 2EYpYprRA7x9tq23MPgSiZGQ7nyg2TkNyVDEw2", - "1 | Stash [2/2] : PVSHuQtD81" - ], - "output_expert": [ - "0 | Staking : Reap stash", - "1 | Stash [1/2] : 2EYpYprRA7x9tq23MPgSiZGQ7nyg2TkNyVDEw2", - "1 | Stash [2/2] : PVSHuQtD81", - "2 | Num slashing spans : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 746, - "name": "Staking_Payout_stakers_by_system", - "blob": "111d44437e7896c15f809cbc7156673d31ecf873060385385e9c27d5ae4abc055615d3040000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Payout stakers by system", - "1 | Validator stash [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | Validator stash [2/2] : yiDWE8dFzF", - "2 | Era : 1235", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Staking : Payout stakers by system", - "1 | Validator stash [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | Validator stash [2/2] : yiDWE8dFzF", - "2 | Era : 1235", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 747, - "name": "Staking_Payout_stakers_by_system", - "blob": "111d1813b8c47c41f5279be46dc5272f7321cbfb8e6a91645a82458752c94de75b1cf7010000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Payout stakers by system", - "1 | Validator stash [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | Validator stash [2/2] : PmkgsnFWXr", - "2 | Era : 503" - ], - "output_expert": [ - "0 | Staking : Payout stakers by system", - "1 | Validator stash [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | Validator stash [2/2] : PmkgsnFWXr", - "2 | Era : 503", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 748, - "name": "Staking_Payout_stakers_by_system", - "blob": "111d1813b8c47c41f5279be46dc5272f7321cbfb8e6a91645a82458752c94de75b1cf7010000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Payout stakers by system", - "1 | Validator stash [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | Validator stash [2/2] : PmkgsnFWXr", - "2 | Era : 503", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Staking : Payout stakers by system", - "1 | Validator stash [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | Validator stash [2/2] : PmkgsnFWXr", - "2 | Era : 503", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 749, - "name": "Staking_Payout_stakers_by_system", - "blob": "111de6b9eabd5f8491bd24bb8ff940cd591871b9fb05be188713f14b32f73923df6c00000000d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Payout stakers by system", - "1 | Validator stash [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | Validator stash [2/2] : 8Aw2bPcNj9", - "2 | Era : 0" - ], - "output_expert": [ - "0 | Staking : Payout stakers by system", - "1 | Validator stash [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | Validator stash [2/2] : 8Aw2bPcNj9", - "2 | Era : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 750, - "name": "Staking_Payout_stakers_by_system", - "blob": "111d3e687768a50d36e597c2eb73c8161ef62ba3c55f6aa5ca420e76dcd08b219d26d3040000d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Payout stakers by system", - "1 | Validator stash [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Validator stash [2/2] : kKMKAMQcg5", - "2 | Era : 1235", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Staking : Payout stakers by system", - "1 | Validator stash [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Validator stash [2/2] : kKMKAMQcg5", - "2 | Era : 1235", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 751, - "name": "Staking_Change_slashing_allowed_for", - "blob": "111e00d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Change slashing allowed for", - "1 | Slashing switch : Validator", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Staking : Change slashing allowed for", - "1 | Slashing switch : Validator", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 752, - "name": "Staking_Change_slashing_allowed_for", - "blob": "111e01d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Change slashing allowed for", - "1 | Slashing switch : ValidatorAndNominator", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Staking : Change slashing allowed for", - "1 | Slashing switch : ValidatorAndNominator", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 753, - "name": "Staking_Change_slashing_allowed_for", - "blob": "111e00d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Change slashing allowed for", - "1 | Slashing switch : Validator", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Staking : Change slashing allowed for", - "1 | Slashing switch : Validator", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 754, - "name": "Staking_Change_slashing_allowed_for", - "blob": "111e01d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Change slashing allowed for", - "1 | Slashing switch : ValidatorAndNominator" - ], - "output_expert": [ - "0 | Staking : Change slashing allowed for", - "1 | Slashing switch : ValidatorAndNominator", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 755, - "name": "Staking_Change_slashing_allowed_for", - "blob": "111e00d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Change slashing allowed for", - "1 | Slashing switch : Validator" - ], - "output_expert": [ - "0 | Staking : Change slashing allowed for", - "1 | Slashing switch : Validator", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 756, - "name": "Staking_Update_permissioned_validator_intended_count", - "blob": "111f31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec34300000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Update permissioned validator intended", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | New intended count : 12340", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Staking : Update permissioned validator intended", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | New intended count : 12340", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 757, - "name": "Staking_Update_permissioned_validator_intended_count", - "blob": "111f31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecf7010000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Update permissioned validator intended", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | New intended count : 503", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Staking : Update permissioned validator intended", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | New intended count : 503", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 758, - "name": "Staking_Update_permissioned_validator_intended_count", - "blob": "111f31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd3040000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Update permissioned validator intended", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | New intended count : 1235", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Staking : Update permissioned validator intended", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | New intended count : 1235", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 759, - "name": "Staking_Update_permissioned_validator_intended_count", - "blob": "111f31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec9d1c0000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Update permissioned validator intended", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | New intended count : 7325", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Staking : Update permissioned validator intended", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | New intended count : 7325", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 760, - "name": "Staking_Update_permissioned_validator_intended_count", - "blob": "111f31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec9d1c0000d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Update permissioned validator intended", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | New intended count : 7325", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Staking : Update permissioned validator intended", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | New intended count : 7325", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 761, - "name": "Staking_Chill_from_governance", - "blob": "112031c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec1c48210f7be71c1cab71d20cccb72834335a1696b29c3aa5ea73bf8ae95772c70b62c860d4534bc9c1d2134951096319dc25806f5f2987ac256c8a24b03bf8ef1820d202265cd40341d2fc555ed5024fc4b787e85a5f5d1d769007abb76a73d464e81c2bda659a4eb9482ab49c307c2d95eda1b220e9931026d3e422c170c7fc671212f015ac66558769be1ed742ef04b93a1700d893e510bdb7dffff6cce3d87e84f3c2eb79bcc2111450e245b5f5cb02d0570ac35b6b4aa8af63451efeb12c4c80b7bf99d52609a269aa7a2636f87790bc65d6cd2d40f518d71d7ced97263719d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Chill from governance", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Stash keys [1/14] : 2E5VNVTAETmygNYbRYgsaywc4YfnchZfAkbFgL", - "2 | Stash keys [2/14] : jYGUQX57Eq", - "2 | Stash keys [3/14] : 2EgSKX5AwDhDDLCd74LwDRr7FFTm5fRxfFAiU9", - "2 | Stash keys [4/14] : zP5WVyA5NV", - "2 | Stash keys [5/14] : 2DBx296b9Fnsp8ATWqDNGY8L8Wu4RubMjQkWxT", - "2 | Stash keys [6/14] : 7BcU3kFLRT", - "2 | Stash keys [7/14] : 2HhFad5Aqf1LaE9sGU4449xGpTDWFsAC6YqDgC", - "2 | Stash keys [8/14] : ShRyBdUBFN", - "2 | Stash keys [9/14] : 2CrcbBuNfvsKazMtHSjacvKRDjAZtVcmtwz7CA", - "2 | Stash keys [10/14] : MyJ8Q5gNQb", - "2 | Stash keys [11/14] : 2FTEqRTUSXcpDJJAgXD4ASAQzs728cX5KKvdcJ", - "2 | Stash keys [12/14] : 5shudehpMQ", - "2 | Stash keys [13/14] : 2FMgpKAHXwLLwzGJdkg25tQZj7nuFpMBxWytrh", - "2 | Stash keys [14/14] : ers3RsoL7Z", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Staking : Chill from governance", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Stash keys [1/14] : 2E5VNVTAETmygNYbRYgsaywc4YfnchZfAkbFgL", - "2 | Stash keys [2/14] : jYGUQX57Eq", - "2 | Stash keys [3/14] : 2EgSKX5AwDhDDLCd74LwDRr7FFTm5fRxfFAiU9", - "2 | Stash keys [4/14] : zP5WVyA5NV", - "2 | Stash keys [5/14] : 2DBx296b9Fnsp8ATWqDNGY8L8Wu4RubMjQkWxT", - "2 | Stash keys [6/14] : 7BcU3kFLRT", - "2 | Stash keys [7/14] : 2HhFad5Aqf1LaE9sGU4449xGpTDWFsAC6YqDgC", - "2 | Stash keys [8/14] : ShRyBdUBFN", - "2 | Stash keys [9/14] : 2CrcbBuNfvsKazMtHSjacvKRDjAZtVcmtwz7CA", - "2 | Stash keys [10/14] : MyJ8Q5gNQb", - "2 | Stash keys [11/14] : 2FTEqRTUSXcpDJJAgXD4ASAQzs728cX5KKvdcJ", - "2 | Stash keys [12/14] : 5shudehpMQ", - "2 | Stash keys [13/14] : 2FMgpKAHXwLLwzGJdkg25tQZj7nuFpMBxWytrh", - "2 | Stash keys [14/14] : ers3RsoL7Z", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 762, - "name": "Staking_Chill_from_governance", - "blob": "112031c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec1cd8a98ec1754def3fe27883f46c1d5e2d44b7a6e3356442e484d8b9adc2de83515a7b70e775d9ec2e2cbaf6bde18355dcb566950b99f1d336e47c58547cde3f00be84f84c7f433b8698f888ffd9bb1fa469adfc2512ddd72ee1fca1eec49d977126cc124e4fe7e03f78af6e1aae5d230460e80716553cc571a77361c6ab07383e543724430cc713a3d963ef588657eb5933516e8f3dfb4d381fd1c1646640985646d23cfaa492501fe5441b6ebdc71c8a42c4842937832a43e9956257a1bb581912ed1f1f411d64f62c7c37d3c27fd982800a1cb3ec3648e2498e8cb010473a6fd50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Chill from governance", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Stash keys [1/14] : 2HLzpDTeVuWvNMRmdXAfZVvUHykP9Vm4fuqGy8", - "2 | Stash keys [2/14] : eZRjVvTN2J", - "2 | Stash keys [3/14] : 2EVZ5hm347oGHzHHBwXJgF3Xdra45L2uCLRQy9", - "2 | Stash keys [4/14] : U6TX2V9yKk", - "2 | Stash keys [5/14] : 2GkihcYpKKcu7rtxnh95pW9rYb4RMSsJEh1xPS", - "2 | Stash keys [6/14] : yKiZQrH4Gb", - "2 | Stash keys [7/14] : 2DKnYWmW9SoLRwqJGArvBXAvspEEbA9AptFk4u", - "2 | Stash keys [8/14] : oGdFnCHWKh", - "2 | Stash keys [9/14] : 2EMLWGYAFLdzq37dfi99sw8t7BBCK4zivmrTaH", - "2 | Stash keys [10/14] : 8jwXtDHMgh", - "2 | Stash keys [11/14] : 2E3mudwSEpUQCw2PyiTfjh5qN4UhHsyEqTan9G", - "2 | Stash keys [12/14] : Nw29iFnhGN", - "2 | Stash keys [13/14] : 2CsjQQZoijLvpu8SAWTUhUyvQVzYfQbEsrLNBi", - "2 | Stash keys [14/14] : gXReuAwHsN", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Staking : Chill from governance", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Stash keys [1/14] : 2HLzpDTeVuWvNMRmdXAfZVvUHykP9Vm4fuqGy8", - "2 | Stash keys [2/14] : eZRjVvTN2J", - "2 | Stash keys [3/14] : 2EVZ5hm347oGHzHHBwXJgF3Xdra45L2uCLRQy9", - "2 | Stash keys [4/14] : U6TX2V9yKk", - "2 | Stash keys [5/14] : 2GkihcYpKKcu7rtxnh95pW9rYb4RMSsJEh1xPS", - "2 | Stash keys [6/14] : yKiZQrH4Gb", - "2 | Stash keys [7/14] : 2DKnYWmW9SoLRwqJGArvBXAvspEEbA9AptFk4u", - "2 | Stash keys [8/14] : oGdFnCHWKh", - "2 | Stash keys [9/14] : 2EMLWGYAFLdzq37dfi99sw8t7BBCK4zivmrTaH", - "2 | Stash keys [10/14] : 8jwXtDHMgh", - "2 | Stash keys [11/14] : 2E3mudwSEpUQCw2PyiTfjh5qN4UhHsyEqTan9G", - "2 | Stash keys [12/14] : Nw29iFnhGN", - "2 | Stash keys [13/14] : 2CsjQQZoijLvpu8SAWTUhUyvQVzYfQbEsrLNBi", - "2 | Stash keys [14/14] : gXReuAwHsN", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 763, - "name": "Staking_Chill_from_governance", - "blob": "112031c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec24ba09ae5a1a06d6a5096e8fff1812b427b7b8472f8afd3f28a205cca623b2a62894667ff8cef58cc65f6a3fabe6d4738e6d923d558a0a9b19ad9893733082835bba966ea6ca4234843141fdd009bb8745df4e0cf51e7c8a9db5ae5d37c16fed2f360d0e343f81176e30f6f89c55f0b0ddc12c86dfac9f66b1a1f0c1b87b4c744866a090e9a0d5470f2e3df13a7a22d9c61699eefba5f2ba435d1df694ced2f34336b1dc398b1188204c2633a177ac9fa439065c2db553f0dbab3c19af63caff096ae17d5b2fee7a239ecd4b19d396b2f284a26e25852d5fe41d273a91ee623d1fbefb2815fc037d35ccae79237555457ac51f50518f27dd431386c3848b5f4f106e781d3e6c8b0ed98969bae24573501d89648c212ebe0fb7cc201cf109d7e837d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Chill from governance", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Stash keys [1/18] : 2GeqtHba1JjAWsSUbehiiC3hfNg7nryrD7maiR", - "2 | Stash keys [2/18] : YZxQ8GhhFE", - "2 | Stash keys [3/18] : 2FoVdyon9MokPTbsT1yGPVp2UdbqXDGib5WQjb", - "2 | Stash keys [4/18] : HEKyFaXmih", - "2 | Stash keys [5/18] : 2GfZhNbZPUSAiWgibrRb8pXzYRbFQZVPmxo7zG", - "2 | Stash keys [6/18] : udMxQ81jJD", - "2 | Stash keys [7/18] : 2DfnZpc7sbmiusf76kku8GMasZEhksda6Mi7q8", - "2 | Stash keys [8/18] : ZbfGFBLQgo", - "2 | Stash keys [9/18] : 2EmUggSH8DLLFzsa1r9hFQSvFixNVRjJW3Fj5m", - "2 | Stash keys [10/18] : b58HL5zbjB", - "2 | Stash keys [11/18] : 2DgdXLma4sAWPvkDA1gjs9zc8Azw3iy4MyhgNT", - "2 | Stash keys [12/18] : U63qDZtqU9", - "2 | Stash keys [13/18] : 2Es4AQ2Ao3NpSqwnyBKTPMBS7Eaf7JAHuwKQUi", - "2 | Stash keys [14/18] : BKh1LwbpYm", - "2 | Stash keys [15/18] : 2GmKovTufMs9PAVKDskoethS2tYrChoekWhVEc", - "2 | Stash keys [16/18] : gRNSvSiUhV", - "2 | Stash keys [17/18] : 2Ewm3vvCToummsrGVFwg4ETPgpfPfuSeuYGLSe", - "2 | Stash keys [18/18] : 9b6pmP9zLV", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Staking : Chill from governance", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Stash keys [1/18] : 2GeqtHba1JjAWsSUbehiiC3hfNg7nryrD7maiR", - "2 | Stash keys [2/18] : YZxQ8GhhFE", - "2 | Stash keys [3/18] : 2FoVdyon9MokPTbsT1yGPVp2UdbqXDGib5WQjb", - "2 | Stash keys [4/18] : HEKyFaXmih", - "2 | Stash keys [5/18] : 2GfZhNbZPUSAiWgibrRb8pXzYRbFQZVPmxo7zG", - "2 | Stash keys [6/18] : udMxQ81jJD", - "2 | Stash keys [7/18] : 2DfnZpc7sbmiusf76kku8GMasZEhksda6Mi7q8", - "2 | Stash keys [8/18] : ZbfGFBLQgo", - "2 | Stash keys [9/18] : 2EmUggSH8DLLFzsa1r9hFQSvFixNVRjJW3Fj5m", - "2 | Stash keys [10/18] : b58HL5zbjB", - "2 | Stash keys [11/18] : 2DgdXLma4sAWPvkDA1gjs9zc8Azw3iy4MyhgNT", - "2 | Stash keys [12/18] : U63qDZtqU9", - "2 | Stash keys [13/18] : 2Es4AQ2Ao3NpSqwnyBKTPMBS7Eaf7JAHuwKQUi", - "2 | Stash keys [14/18] : BKh1LwbpYm", - "2 | Stash keys [15/18] : 2GmKovTufMs9PAVKDskoethS2tYrChoekWhVEc", - "2 | Stash keys [16/18] : gRNSvSiUhV", - "2 | Stash keys [17/18] : 2Ewm3vvCToummsrGVFwg4ETPgpfPfuSeuYGLSe", - "2 | Stash keys [18/18] : 9b6pmP9zLV", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 764, - "name": "Staking_Chill_from_governance", - "blob": "112031c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec24ba09ae5a1a06d6a5096e8fff1812b427b7b8472f8afd3f28a205cca623b2a62894667ff8cef58cc65f6a3fabe6d4738e6d923d558a0a9b19ad9893733082835bba966ea6ca4234843141fdd009bb8745df4e0cf51e7c8a9db5ae5d37c16fed2f360d0e343f81176e30f6f89c55f0b0ddc12c86dfac9f66b1a1f0c1b87b4c744866a090e9a0d5470f2e3df13a7a22d9c61699eefba5f2ba435d1df694ced2f34336b1dc398b1188204c2633a177ac9fa439065c2db553f0dbab3c19af63caff096ae17d5b2fee7a239ecd4b19d396b2f284a26e25852d5fe41d273a91ee623d1fbefb2815fc037d35ccae79237555457ac51f50518f27dd431386c3848b5f4f106e781d3e6c8b0ed98969bae24573501d89648c212ebe0fb7cc201cf109d7e837d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Chill from governance", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Stash keys [1/18] : 2GeqtHba1JjAWsSUbehiiC3hfNg7nryrD7maiR", - "2 | Stash keys [2/18] : YZxQ8GhhFE", - "2 | Stash keys [3/18] : 2FoVdyon9MokPTbsT1yGPVp2UdbqXDGib5WQjb", - "2 | Stash keys [4/18] : HEKyFaXmih", - "2 | Stash keys [5/18] : 2GfZhNbZPUSAiWgibrRb8pXzYRbFQZVPmxo7zG", - "2 | Stash keys [6/18] : udMxQ81jJD", - "2 | Stash keys [7/18] : 2DfnZpc7sbmiusf76kku8GMasZEhksda6Mi7q8", - "2 | Stash keys [8/18] : ZbfGFBLQgo", - "2 | Stash keys [9/18] : 2EmUggSH8DLLFzsa1r9hFQSvFixNVRjJW3Fj5m", - "2 | Stash keys [10/18] : b58HL5zbjB", - "2 | Stash keys [11/18] : 2DgdXLma4sAWPvkDA1gjs9zc8Azw3iy4MyhgNT", - "2 | Stash keys [12/18] : U63qDZtqU9", - "2 | Stash keys [13/18] : 2Es4AQ2Ao3NpSqwnyBKTPMBS7Eaf7JAHuwKQUi", - "2 | Stash keys [14/18] : BKh1LwbpYm", - "2 | Stash keys [15/18] : 2GmKovTufMs9PAVKDskoethS2tYrChoekWhVEc", - "2 | Stash keys [16/18] : gRNSvSiUhV", - "2 | Stash keys [17/18] : 2Ewm3vvCToummsrGVFwg4ETPgpfPfuSeuYGLSe", - "2 | Stash keys [18/18] : 9b6pmP9zLV", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Staking : Chill from governance", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Stash keys [1/18] : 2GeqtHba1JjAWsSUbehiiC3hfNg7nryrD7maiR", - "2 | Stash keys [2/18] : YZxQ8GhhFE", - "2 | Stash keys [3/18] : 2FoVdyon9MokPTbsT1yGPVp2UdbqXDGib5WQjb", - "2 | Stash keys [4/18] : HEKyFaXmih", - "2 | Stash keys [5/18] : 2GfZhNbZPUSAiWgibrRb8pXzYRbFQZVPmxo7zG", - "2 | Stash keys [6/18] : udMxQ81jJD", - "2 | Stash keys [7/18] : 2DfnZpc7sbmiusf76kku8GMasZEhksda6Mi7q8", - "2 | Stash keys [8/18] : ZbfGFBLQgo", - "2 | Stash keys [9/18] : 2EmUggSH8DLLFzsa1r9hFQSvFixNVRjJW3Fj5m", - "2 | Stash keys [10/18] : b58HL5zbjB", - "2 | Stash keys [11/18] : 2DgdXLma4sAWPvkDA1gjs9zc8Azw3iy4MyhgNT", - "2 | Stash keys [12/18] : U63qDZtqU9", - "2 | Stash keys [13/18] : 2Es4AQ2Ao3NpSqwnyBKTPMBS7Eaf7JAHuwKQUi", - "2 | Stash keys [14/18] : BKh1LwbpYm", - "2 | Stash keys [15/18] : 2GmKovTufMs9PAVKDskoethS2tYrChoekWhVEc", - "2 | Stash keys [16/18] : gRNSvSiUhV", - "2 | Stash keys [17/18] : 2Ewm3vvCToummsrGVFwg4ETPgpfPfuSeuYGLSe", - "2 | Stash keys [18/18] : 9b6pmP9zLV", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 765, - "name": "Staking_Chill_from_governance", - "blob": "112031c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec24ba09ae5a1a06d6a5096e8fff1812b427b7b8472f8afd3f28a205cca623b2a62894667ff8cef58cc65f6a3fabe6d4738e6d923d558a0a9b19ad9893733082835bba966ea6ca4234843141fdd009bb8745df4e0cf51e7c8a9db5ae5d37c16fed2f360d0e343f81176e30f6f89c55f0b0ddc12c86dfac9f66b1a1f0c1b87b4c744866a090e9a0d5470f2e3df13a7a22d9c61699eefba5f2ba435d1df694ced2f34336b1dc398b1188204c2633a177ac9fa439065c2db553f0dbab3c19af63caff096ae17d5b2fee7a239ecd4b19d396b2f284a26e25852d5fe41d273a91ee623d1fbefb2815fc037d35ccae79237555457ac51f50518f27dd431386c3848b5f4f106e781d3e6c8b0ed98969bae24573501d89648c212ebe0fb7cc201cf109d7e837d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Staking : Chill from governance", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Stash keys [1/18] : 2GeqtHba1JjAWsSUbehiiC3hfNg7nryrD7maiR", - "2 | Stash keys [2/18] : YZxQ8GhhFE", - "2 | Stash keys [3/18] : 2FoVdyon9MokPTbsT1yGPVp2UdbqXDGib5WQjb", - "2 | Stash keys [4/18] : HEKyFaXmih", - "2 | Stash keys [5/18] : 2GfZhNbZPUSAiWgibrRb8pXzYRbFQZVPmxo7zG", - "2 | Stash keys [6/18] : udMxQ81jJD", - "2 | Stash keys [7/18] : 2DfnZpc7sbmiusf76kku8GMasZEhksda6Mi7q8", - "2 | Stash keys [8/18] : ZbfGFBLQgo", - "2 | Stash keys [9/18] : 2EmUggSH8DLLFzsa1r9hFQSvFixNVRjJW3Fj5m", - "2 | Stash keys [10/18] : b58HL5zbjB", - "2 | Stash keys [11/18] : 2DgdXLma4sAWPvkDA1gjs9zc8Azw3iy4MyhgNT", - "2 | Stash keys [12/18] : U63qDZtqU9", - "2 | Stash keys [13/18] : 2Es4AQ2Ao3NpSqwnyBKTPMBS7Eaf7JAHuwKQUi", - "2 | Stash keys [14/18] : BKh1LwbpYm", - "2 | Stash keys [15/18] : 2GmKovTufMs9PAVKDskoethS2tYrChoekWhVEc", - "2 | Stash keys [16/18] : gRNSvSiUhV", - "2 | Stash keys [17/18] : 2Ewm3vvCToummsrGVFwg4ETPgpfPfuSeuYGLSe", - "2 | Stash keys [18/18] : 9b6pmP9zLV", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Staking : Chill from governance", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Stash keys [1/18] : 2GeqtHba1JjAWsSUbehiiC3hfNg7nryrD7maiR", - "2 | Stash keys [2/18] : YZxQ8GhhFE", - "2 | Stash keys [3/18] : 2FoVdyon9MokPTbsT1yGPVp2UdbqXDGib5WQjb", - "2 | Stash keys [4/18] : HEKyFaXmih", - "2 | Stash keys [5/18] : 2GfZhNbZPUSAiWgibrRb8pXzYRbFQZVPmxo7zG", - "2 | Stash keys [6/18] : udMxQ81jJD", - "2 | Stash keys [7/18] : 2DfnZpc7sbmiusf76kku8GMasZEhksda6Mi7q8", - "2 | Stash keys [8/18] : ZbfGFBLQgo", - "2 | Stash keys [9/18] : 2EmUggSH8DLLFzsa1r9hFQSvFixNVRjJW3Fj5m", - "2 | Stash keys [10/18] : b58HL5zbjB", - "2 | Stash keys [11/18] : 2DgdXLma4sAWPvkDA1gjs9zc8Azw3iy4MyhgNT", - "2 | Stash keys [12/18] : U63qDZtqU9", - "2 | Stash keys [13/18] : 2Es4AQ2Ao3NpSqwnyBKTPMBS7Eaf7JAHuwKQUi", - "2 | Stash keys [14/18] : BKh1LwbpYm", - "2 | Stash keys [15/18] : 2GmKovTufMs9PAVKDskoethS2tYrChoekWhVEc", - "2 | Stash keys [16/18] : gRNSvSiUhV", - "2 | Stash keys [17/18] : 2Ewm3vvCToummsrGVFwg4ETPgpfPfuSeuYGLSe", - "2 | Stash keys [18/18] : 9b6pmP9zLV", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 766, - "name": "Session_Set_keys", - "blob": "13002619f60e8130c2ab685357f745cc6fa870a6152f9759cd5cb07c7d3c8ae7ff8ece5c6ff1cbe09d3cc3078b9a2ea07924739ccde2e853636fb4d82199ebe02fb2fb66df588f09d7e31f2b27d7ed5ea1bc2846cecf839713561de3d140f94e43f988004582ceda3965241390fbc1e3424beb36f45157554cdc7696b9b3cd8cdd3201028e052f3965a1a5a99a4ae3618d4179334d3a27c51ac05f7c5bf21cca6aaa184dafa2964dafae333f953c37049f368eb0629e8d4ad14ada72fabbb3f70ce9b6b6d50f1ead62953e13c95a3601d05a11e84f036538ed8348c77c21162db0f25eb223d5f8c9ea35d38e9a470d9288bf574c8263c462f792b9f9b1924231e5363933d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Session : Set keys", - "1 | Keys [1/7] : 2619f60e8130c2ab685357f745cc6fa870a615", - "1 | Keys [2/7] : 2f9759cd5cb07c7d3c8ae7ff8ece5c6ff1cbe0", - "1 | Keys [3/7] : 9d3cc3078b9a2ea07924739ccde2e853636fb4", - "1 | Keys [4/7] : d82199ebe02fb2fb66df588f09d7e31f2b27d7", - "1 | Keys [5/7] : ed5ea1bc2846cecf839713561de3d140f94e43", - "1 | Keys [6/7] : f988004582ceda3965241390fbc1e3424beb36", - "1 | Keys [7/7] : f45157554cdc7696b9b3cd8cdd32", - "2 | Proof [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "2 | Proof [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "2 | Proof [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "2 | Proof [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "2 | Proof [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "2 | Proof [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "2 | Proof [7/7] : c462f792b9f9b1924231e5363933", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Session : Set keys", - "1 | Keys [1/7] : 2619f60e8130c2ab685357f745cc6fa870a615", - "1 | Keys [2/7] : 2f9759cd5cb07c7d3c8ae7ff8ece5c6ff1cbe0", - "1 | Keys [3/7] : 9d3cc3078b9a2ea07924739ccde2e853636fb4", - "1 | Keys [4/7] : d82199ebe02fb2fb66df588f09d7e31f2b27d7", - "1 | Keys [5/7] : ed5ea1bc2846cecf839713561de3d140f94e43", - "1 | Keys [6/7] : f988004582ceda3965241390fbc1e3424beb36", - "1 | Keys [7/7] : f45157554cdc7696b9b3cd8cdd32", - "2 | Proof [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "2 | Proof [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "2 | Proof [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "2 | Proof [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "2 | Proof [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "2 | Proof [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "2 | Proof [7/7] : c462f792b9f9b1924231e5363933", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 767, - "name": "Session_Set_keys", - "blob": "1300dd51ea45f0b0c3e19af2dc2c950cd3593c469c0bd71c9ea267f1503b43532ebce6b59b2af2351804d1ce71a351030df4529d0bb51cdef90d172e6255e899d423dead467f3aa8e30d9ff6448d86ce92cf8b6709b71ebce1afd2df1c54c72cfdfff2e7196b57c2698fc87fb1380cd36ad568f13c174893a732710b548f0658cf120102368c239a6fcc7dc2a9d8fed983e117fcd1710782f908856693f511e26acf6d4613dcef6f0ee634a296ca02944c3a6343a1925a69b86589565853a61ac8195d03aa41f3671806b0290995b165a873474757b34f0ddb95cc9f6ddd3ad9f0898252a6cfe584ca84737098a009bed3aa2344725682ae6aab269f611299e265c01029d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Session : Set keys", - "1 | Keys [1/7] : dd51ea45f0b0c3e19af2dc2c950cd3593c469c", - "1 | Keys [2/7] : 0bd71c9ea267f1503b43532ebce6b59b2af235", - "1 | Keys [3/7] : 1804d1ce71a351030df4529d0bb51cdef90d17", - "1 | Keys [4/7] : 2e6255e899d423dead467f3aa8e30d9ff6448d", - "1 | Keys [5/7] : 86ce92cf8b6709b71ebce1afd2df1c54c72cfd", - "1 | Keys [6/7] : fff2e7196b57c2698fc87fb1380cd36ad568f1", - "1 | Keys [7/7] : 3c174893a732710b548f0658cf12", - "2 | Proof [1/7] : 368c239a6fcc7dc2a9d8fed983e117fcd17107", - "2 | Proof [2/7] : 82f908856693f511e26acf6d4613dcef6f0ee6", - "2 | Proof [3/7] : 34a296ca02944c3a6343a1925a69b865895658", - "2 | Proof [4/7] : 53a61ac8195d03aa41f3671806b0290995b165", - "2 | Proof [5/7] : a873474757b34f0ddb95cc9f6ddd3ad9f08982", - "2 | Proof [6/7] : 52a6cfe584ca84737098a009bed3aa23447256", - "2 | Proof [7/7] : 82ae6aab269f611299e265c01029", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Session : Set keys", - "1 | Keys [1/7] : dd51ea45f0b0c3e19af2dc2c950cd3593c469c", - "1 | Keys [2/7] : 0bd71c9ea267f1503b43532ebce6b59b2af235", - "1 | Keys [3/7] : 1804d1ce71a351030df4529d0bb51cdef90d17", - "1 | Keys [4/7] : 2e6255e899d423dead467f3aa8e30d9ff6448d", - "1 | Keys [5/7] : 86ce92cf8b6709b71ebce1afd2df1c54c72cfd", - "1 | Keys [6/7] : fff2e7196b57c2698fc87fb1380cd36ad568f1", - "1 | Keys [7/7] : 3c174893a732710b548f0658cf12", - "2 | Proof [1/7] : 368c239a6fcc7dc2a9d8fed983e117fcd17107", - "2 | Proof [2/7] : 82f908856693f511e26acf6d4613dcef6f0ee6", - "2 | Proof [3/7] : 34a296ca02944c3a6343a1925a69b865895658", - "2 | Proof [4/7] : 53a61ac8195d03aa41f3671806b0290995b165", - "2 | Proof [5/7] : a873474757b34f0ddb95cc9f6ddd3ad9f08982", - "2 | Proof [6/7] : 52a6cfe584ca84737098a009bed3aa23447256", - "2 | Proof [7/7] : 82ae6aab269f611299e265c01029", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 768, - "name": "Session_Set_keys", - "blob": "13002619f60e8130c2ab685357f745cc6fa870a6152f9759cd5cb07c7d3c8ae7ff8ece5c6ff1cbe09d3cc3078b9a2ea07924739ccde2e853636fb4d82199ebe02fb2fb66df588f09d7e31f2b27d7ed5ea1bc2846cecf839713561de3d140f94e43f988004582ceda3965241390fbc1e3424beb36f45157554cdc7696b9b3cd8cdd3201016339e6e0873351f702d0cbffbdc3b3550184247413e88a3b3f3d722c6eda9ce28d04b66368160da05041d2685be5d398fb7d68ec2dad0677f0356b7de14fbc9ed503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Session : Set keys", - "1 | Keys [1/7] : 2619f60e8130c2ab685357f745cc6fa870a615", - "1 | Keys [2/7] : 2f9759cd5cb07c7d3c8ae7ff8ece5c6ff1cbe0", - "1 | Keys [3/7] : 9d3cc3078b9a2ea07924739ccde2e853636fb4", - "1 | Keys [4/7] : d82199ebe02fb2fb66df588f09d7e31f2b27d7", - "1 | Keys [5/7] : ed5ea1bc2846cecf839713561de3d140f94e43", - "1 | Keys [6/7] : f988004582ceda3965241390fbc1e3424beb36", - "1 | Keys [7/7] : f45157554cdc7696b9b3cd8cdd32", - "2 | Proof [1/4] : 6339e6e0873351f702d0cbffbdc3b355018424", - "2 | Proof [2/4] : 7413e88a3b3f3d722c6eda9ce28d04b6636816", - "2 | Proof [3/4] : 0da05041d2685be5d398fb7d68ec2dad0677f0", - "2 | Proof [4/4] : 356b7de14fbc9e", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Session : Set keys", - "1 | Keys [1/7] : 2619f60e8130c2ab685357f745cc6fa870a615", - "1 | Keys [2/7] : 2f9759cd5cb07c7d3c8ae7ff8ece5c6ff1cbe0", - "1 | Keys [3/7] : 9d3cc3078b9a2ea07924739ccde2e853636fb4", - "1 | Keys [4/7] : d82199ebe02fb2fb66df588f09d7e31f2b27d7", - "1 | Keys [5/7] : ed5ea1bc2846cecf839713561de3d140f94e43", - "1 | Keys [6/7] : f988004582ceda3965241390fbc1e3424beb36", - "1 | Keys [7/7] : f45157554cdc7696b9b3cd8cdd32", - "2 | Proof [1/4] : 6339e6e0873351f702d0cbffbdc3b355018424", - "2 | Proof [2/4] : 7413e88a3b3f3d722c6eda9ce28d04b6636816", - "2 | Proof [3/4] : 0da05041d2685be5d398fb7d68ec2dad0677f0", - "2 | Proof [4/4] : 356b7de14fbc9e", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 769, - "name": "Session_Set_keys", - "blob": "13002619f60e8130c2ab685357f745cc6fa870a6152f9759cd5cb07c7d3c8ae7ff8ece5c6ff1cbe09d3cc3078b9a2ea07924739ccde2e853636fb4d82199ebe02fb2fb66df588f09d7e31f2b27d7ed5ea1bc2846cecf839713561de3d140f94e43f988004582ceda3965241390fbc1e3424beb36f45157554cdc7696b9b3cd8cdd3280d1bf52d3cfc6bb2a8c0d557d53484e01677608fc8585158c1bd67087d94f45d6d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Session : Set keys", - "1 | Keys [1/7] : 2619f60e8130c2ab685357f745cc6fa870a615", - "1 | Keys [2/7] : 2f9759cd5cb07c7d3c8ae7ff8ece5c6ff1cbe0", - "1 | Keys [3/7] : 9d3cc3078b9a2ea07924739ccde2e853636fb4", - "1 | Keys [4/7] : d82199ebe02fb2fb66df588f09d7e31f2b27d7", - "1 | Keys [5/7] : ed5ea1bc2846cecf839713561de3d140f94e43", - "1 | Keys [6/7] : f988004582ceda3965241390fbc1e3424beb36", - "1 | Keys [7/7] : f45157554cdc7696b9b3cd8cdd32", - "2 | Proof [1/2] : d1bf52d3cfc6bb2a8c0d557d53484e01677608", - "2 | Proof [2/2] : fc8585158c1bd67087d94f45d6" - ], - "output_expert": [ - "0 | Session : Set keys", - "1 | Keys [1/7] : 2619f60e8130c2ab685357f745cc6fa870a615", - "1 | Keys [2/7] : 2f9759cd5cb07c7d3c8ae7ff8ece5c6ff1cbe0", - "1 | Keys [3/7] : 9d3cc3078b9a2ea07924739ccde2e853636fb4", - "1 | Keys [4/7] : d82199ebe02fb2fb66df588f09d7e31f2b27d7", - "1 | Keys [5/7] : ed5ea1bc2846cecf839713561de3d140f94e43", - "1 | Keys [6/7] : f988004582ceda3965241390fbc1e3424beb36", - "1 | Keys [7/7] : f45157554cdc7696b9b3cd8cdd32", - "2 | Proof [1/2] : d1bf52d3cfc6bb2a8c0d557d53484e01677608", - "2 | Proof [2/2] : fc8585158c1bd67087d94f45d6", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 770, - "name": "Session_Set_keys", - "blob": "1300dd51ea45f0b0c3e19af2dc2c950cd3593c469c0bd71c9ea267f1503b43532ebce6b59b2af2351804d1ce71a351030df4529d0bb51cdef90d172e6255e899d423dead467f3aa8e30d9ff6448d86ce92cf8b6709b71ebce1afd2df1c54c72cfdfff2e7196b57c2698fc87fb1380cd36ad568f13c174893a732710b548f0658cf1201028e052f3965a1a5a99a4ae3618d4179334d3a27c51ac05f7c5bf21cca6aaa184dafa2964dafae333f953c37049f368eb0629e8d4ad14ada72fabbb3f70ce9b6b6d50f1ead62953e13c95a3601d05a11e84f036538ed8348c77c21162db0f25eb223d5f8c9ea35d38e9a470d9288bf574c8263c462f792b9f9b1924231e5363933d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Session : Set keys", - "1 | Keys [1/7] : dd51ea45f0b0c3e19af2dc2c950cd3593c469c", - "1 | Keys [2/7] : 0bd71c9ea267f1503b43532ebce6b59b2af235", - "1 | Keys [3/7] : 1804d1ce71a351030df4529d0bb51cdef90d17", - "1 | Keys [4/7] : 2e6255e899d423dead467f3aa8e30d9ff6448d", - "1 | Keys [5/7] : 86ce92cf8b6709b71ebce1afd2df1c54c72cfd", - "1 | Keys [6/7] : fff2e7196b57c2698fc87fb1380cd36ad568f1", - "1 | Keys [7/7] : 3c174893a732710b548f0658cf12", - "2 | Proof [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "2 | Proof [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "2 | Proof [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "2 | Proof [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "2 | Proof [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "2 | Proof [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "2 | Proof [7/7] : c462f792b9f9b1924231e5363933", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Session : Set keys", - "1 | Keys [1/7] : dd51ea45f0b0c3e19af2dc2c950cd3593c469c", - "1 | Keys [2/7] : 0bd71c9ea267f1503b43532ebce6b59b2af235", - "1 | Keys [3/7] : 1804d1ce71a351030df4529d0bb51cdef90d17", - "1 | Keys [4/7] : 2e6255e899d423dead467f3aa8e30d9ff6448d", - "1 | Keys [5/7] : 86ce92cf8b6709b71ebce1afd2df1c54c72cfd", - "1 | Keys [6/7] : fff2e7196b57c2698fc87fb1380cd36ad568f1", - "1 | Keys [7/7] : 3c174893a732710b548f0658cf12", - "2 | Proof [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "2 | Proof [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "2 | Proof [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "2 | Proof [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "2 | Proof [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "2 | Proof [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "2 | Proof [7/7] : c462f792b9f9b1924231e5363933", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 771, - "name": "Session_Purge_keys", - "blob": "1301d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Session : Purge keys", - "1 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Session : Purge keys", - "1 | Chain : Polymesh", - "2 | Nonce : 2339", - "3 | Tip : POLYX 55.555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 772, - "name": "Session_Purge_keys", - "blob": "1301d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Session : Purge keys", - "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "1 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Session : Purge keys", - "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 773, - "name": "Session_Purge_keys", - "blob": "1301d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Session : Purge keys", - "1 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Session : Purge keys", - "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip : POLYX 55.555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 774, - "name": "Session_Purge_keys", - "blob": "1301d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Session : Purge keys", - "1 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Session : Purge keys", - "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip : POLYX 1234.56789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 775, - "name": "Session_Purge_keys", - "blob": "1301d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Session : Purge keys", - "1 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Session : Purge keys", - "1 | Chain : Polymesh", - "2 | Nonce : 1", - "3 | Tip : POLYX 55.555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 776, - "name": "Asset_Register_ticker", - "blob": "1a005449434b45522d3132333435d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Register ticker", - "1 | Ticker : TICKER-12345", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Register ticker", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 777, - "name": "Asset_Register_ticker", - "blob": "1a005449434b45522d3132333435d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Register ticker", - "1 | Ticker : TICKER-12345" - ], - "output_expert": [ - "0 | Asset : Register ticker", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 778, - "name": "Asset_Register_ticker", - "blob": "1a005449434b45522d3132333435d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Register ticker", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Asset : Register ticker", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 779, - "name": "Asset_Register_ticker", - "blob": "1a005449434b45522d3132333435d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Register ticker", - "1 | Ticker : TICKER-12345", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Register ticker", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 780, - "name": "Asset_Register_ticker", - "blob": "1a005449434b45522d3132333435d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Register ticker", - "1 | Ticker : TICKER-12345", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Register ticker", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 781, - "name": "Asset_Accept_ticker_transfer", - "blob": "1a012309000000000000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Accept ticker transfer", - "1 | Auth id : 2339", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Asset : Accept ticker transfer", - "1 | Auth id : 2339", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 782, - "name": "Asset_Accept_ticker_transfer", - "blob": "1a010100000000000000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Accept ticker transfer", - "1 | Auth id : 1", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Asset : Accept ticker transfer", - "1 | Auth id : 1", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 783, - "name": "Asset_Accept_ticker_transfer", - "blob": "1a012309000000000000d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Accept ticker transfer", - "1 | Auth id : 2339", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Asset : Accept ticker transfer", - "1 | Auth id : 2339", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 784, - "name": "Asset_Accept_ticker_transfer", - "blob": "1a010000000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Accept ticker transfer", - "1 | Auth id : 0", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Accept ticker transfer", - "1 | Auth id : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 785, - "name": "Asset_Accept_ticker_transfer", - "blob": "1a010000000000000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Accept ticker transfer", - "1 | Auth id : 0", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Asset : Accept ticker transfer", - "1 | Auth id : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 786, - "name": "Asset_Accept_asset_ownership_transfer", - "blob": "1a026bc4000000000000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Accept asset ownership transfer", - "1 | Auth id : 50283", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Asset : Accept asset ownership transfer", - "1 | Auth id : 50283", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 787, - "name": "Asset_Accept_asset_ownership_transfer", - "blob": "1a020000000000000000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Accept asset ownership transfer", - "1 | Auth id : 0" - ], - "output_expert": [ - "0 | Asset : Accept asset ownership transfer", - "1 | Auth id : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 788, - "name": "Asset_Accept_asset_ownership_transfer", - "blob": "1a020100000000000000d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Accept asset ownership transfer", - "1 | Auth id : 1", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Asset : Accept asset ownership transfer", - "1 | Auth id : 1", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 789, - "name": "Asset_Accept_asset_ownership_transfer", - "blob": "1a026400000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Accept asset ownership transfer", - "1 | Auth id : 100", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Accept asset ownership transfer", - "1 | Auth id : 100", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 790, - "name": "Asset_Accept_asset_ownership_transfer", - "blob": "1a020000000000000000d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Accept asset ownership transfer", - "1 | Auth id : 0", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Asset : Accept asset ownership transfer", - "1 | Auth id : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 791, - "name": "Asset_Create_asset", - "blob": "1a032841737365744e616d65315449434b45522d3132333435010000014846756e64696e675f526f756e645f4e616d65d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Create asset", - "1 | Name : AssetName1", - "2 | Ticker : TICKER-12345", - "3 | Divisible : True", - "4 | Asset type : EquityCommon", - "5 | Identifiers : ", - "6 | Funding round : Funding_Round_Name", - "7 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Asset : Create asset", - "1 | Name : AssetName1", - "2 | Ticker : TICKER-12345", - "3 | Divisible : True", - "4 | Asset type : EquityCommon", - "5 | Identifiers : ", - "6 | Funding round : Funding_Round_Name", - "7 | Chain : Polymesh", - "8 | Nonce : 0", - "9 | Tip : POLYX 0.000987", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 792, - "name": "Asset_Create_asset", - "blob": "1a032841737365744e616d65325449434b45522d3132333435000000014846756e64696e675f526f756e645f4e616d65d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Create asset", - "1 | Name : AssetName2", - "2 | Ticker : TICKER-12345", - "3 | Divisible : False", - "4 | Asset type : EquityCommon", - "5 | Identifiers : ", - "6 | Funding round : Funding_Round_Name", - "7 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Asset : Create asset", - "1 | Name : AssetName2", - "2 | Ticker : TICKER-12345", - "3 | Divisible : False", - "4 | Asset type : EquityCommon", - "5 | Identifiers : ", - "6 | Funding round : Funding_Round_Name", - "7 | Chain : Polymesh", - "8 | Nonce : 2339", - "9 | Tip : POLYX 5552342.355555", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 793, - "name": "Asset_Create_asset", - "blob": "1a032841737365744e616d65325449434b45522d313233343501093ec7060000014846756e64696e675f526f756e645f4e616d65d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Create asset", - "1 | Name : AssetName2", - "2 | Ticker : TICKER-12345", - "3 | Divisible : True", - "4 | Asset type [1/2] : Custom", - "4 | Asset type [2/2] : 444222", - "5 | Identifiers : ", - "6 | Funding round : Funding_Round_Name", - "7 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Asset : Create asset", - "1 | Name : AssetName2", - "2 | Ticker : TICKER-12345", - "3 | Divisible : True", - "4 | Asset type [1/2] : Custom", - "4 | Asset type [2/2] : 444222", - "5 | Identifiers : ", - "6 | Funding round : Funding_Round_Name", - "7 | Chain : Polymesh", - "8 | Nonce : 0", - "9 | Tip : POLYX 5552342.355555", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 794, - "name": "Asset_Create_asset", - "blob": "1a032841737365744e616d65315449434b45522d3132333435010000014846756e64696e675f526f756e645f4e616d65d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Create asset", - "1 | Name : AssetName1", - "2 | Ticker : TICKER-12345", - "3 | Divisible : True", - "4 | Asset type : EquityCommon", - "5 | Identifiers : ", - "6 | Funding round : Funding_Round_Name", - "7 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Asset : Create asset", - "1 | Name : AssetName1", - "2 | Ticker : TICKER-12345", - "3 | Divisible : True", - "4 | Asset type : EquityCommon", - "5 | Identifiers : ", - "6 | Funding round : Funding_Round_Name", - "7 | Chain : Polymesh", - "8 | Nonce : 2339", - "9 | Tip : POLYX 1234.56789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 795, - "name": "Asset_Create_asset", - "blob": "1a032841737365744e616d65315449434b45522d3132333435000000014846756e64696e675f526f756e645f4e616d65d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Create asset", - "1 | Name : AssetName1", - "2 | Ticker : TICKER-12345", - "3 | Divisible : False", - "4 | Asset type : EquityCommon", - "5 | Identifiers : ", - "6 | Funding round : Funding_Round_Name", - "7 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Asset : Create asset", - "1 | Name : AssetName1", - "2 | Ticker : TICKER-12345", - "3 | Divisible : False", - "4 | Asset type : EquityCommon", - "5 | Identifiers : ", - "6 | Funding round : Funding_Round_Name", - "7 | Chain : Polymesh", - "8 | Nonce : 100", - "9 | Tip : POLYX 1234.56789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 796, - "name": "Asset_Freeze", - "blob": "1a045449434b45522d3132333435d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Freeze", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Asset : Freeze", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 797, - "name": "Asset_Freeze", - "blob": "1a045449434b45522d3132333435d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Freeze", - "1 | Ticker : TICKER-12345", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Freeze", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 798, - "name": "Asset_Freeze", - "blob": "1a045449434b45522d3132333435d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Freeze", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Asset : Freeze", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 799, - "name": "Asset_Freeze", - "blob": "1a045449434b45522d3132333435d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Freeze", - "1 | Ticker : TICKER-12345" - ], - "output_expert": [ - "0 | Asset : Freeze", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 800, - "name": "Asset_Freeze", - "blob": "1a045449434b45522d3132333435d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Freeze", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Asset : Freeze", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 801, - "name": "Asset_Unfreeze", - "blob": "1a055449434b45522d3132333435d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Unfreeze", - "1 | Ticker : TICKER-12345" - ], - "output_expert": [ - "0 | Asset : Unfreeze", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 802, - "name": "Asset_Unfreeze", - "blob": "1a055449434b45522d3132333435d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Unfreeze", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Asset : Unfreeze", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 803, - "name": "Asset_Unfreeze", - "blob": "1a055449434b45522d3132333435d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Unfreeze", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Asset : Unfreeze", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 804, - "name": "Asset_Unfreeze", - "blob": "1a055449434b45522d3132333435d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Unfreeze", - "1 | Ticker : TICKER-12345", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Unfreeze", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 805, - "name": "Asset_Unfreeze", - "blob": "1a055449434b45522d3132333435d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Unfreeze", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Asset : Unfreeze", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 806, - "name": "Asset_Rename_asset", - "blob": "1a065449434b45522d31323334352841737365744e616d6531d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Rename asset", - "1 | Ticker : TICKER-12345", - "2 | Name : AssetName1", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Asset : Rename asset", - "1 | Ticker : TICKER-12345", - "2 | Name : AssetName1", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 807, - "name": "Asset_Rename_asset", - "blob": "1a065449434b45522d31323334352841737365744e616d6532d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Rename asset", - "1 | Ticker : TICKER-12345", - "2 | Name : AssetName2", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Asset : Rename asset", - "1 | Ticker : TICKER-12345", - "2 | Name : AssetName2", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 808, - "name": "Asset_Rename_asset", - "blob": "1a065449434b45522d31323334352841737365744e616d6532d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Rename asset", - "1 | Ticker : TICKER-12345", - "2 | Name : AssetName2", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Asset : Rename asset", - "1 | Ticker : TICKER-12345", - "2 | Name : AssetName2", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 809, - "name": "Asset_Rename_asset", - "blob": "1a065449434b45522d31323334352841737365744e616d6531d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Rename asset", - "1 | Ticker : TICKER-12345", - "2 | Name : AssetName1" - ], - "output_expert": [ - "0 | Asset : Rename asset", - "1 | Ticker : TICKER-12345", - "2 | Name : AssetName1", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 810, - "name": "Asset_Rename_asset", - "blob": "1a065449434b45522d31323334352841737365744e616d6532d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Rename asset", - "1 | Ticker : TICKER-12345", - "2 | Name : AssetName2" - ], - "output_expert": [ - "0 | Asset : Rename asset", - "1 | Ticker : TICKER-12345", - "2 | Name : AssetName2", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 811, - "name": "Asset_Issue", - "blob": "1a075449434b45522d31323334353180ae395160d332d7c92e41b0aad70e01bbb00ff5b8af54b6d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Issue", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | Portfolio kind : 13138319221866868923", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Issue", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | Portfolio kind : 13138319221866868923", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 812, - "name": "Asset_Issue", - "blob": "1a075449434b45522d31323334353180ae395160d332d7c92e41b0aad70e00d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Issue", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | Portfolio kind : Default", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Asset : Issue", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | Portfolio kind : Default", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 813, - "name": "Asset_Issue", - "blob": "1a075449434b45522d31323334353180ae395160d332d7c92e41b0aad70e00d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Issue", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | Portfolio kind : Default", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Asset : Issue", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | Portfolio kind : Default", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 814, - "name": "Asset_Issue", - "blob": "1a075449434b45522d31323334353180ae395160d332d7c92e41b0aad70e00d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Issue", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | Portfolio kind : Default", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Issue", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | Portfolio kind : Default", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 815, - "name": "Asset_Issue", - "blob": "1a075449434b45522d31323334353180ae395160d332d7c92e41b0aad70e00d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Issue", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | Portfolio kind : Default", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Asset : Issue", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | Portfolio kind : Default", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 816, - "name": "Asset_Redeem", - "blob": "1a085449434b45522d31323334353180ae395160d332d7c92e41b0aad70ed5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Redeem", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Redeem", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 817, - "name": "Asset_Redeem", - "blob": "1a085449434b45522d31323334353180ae395160d332d7c92e41b0aad70ed50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Redeem", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Asset : Redeem", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 818, - "name": "Asset_Redeem", - "blob": "1a085449434b45522d31323334353180ae395160d332d7c92e41b0aad70ed5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Redeem", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Redeem", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 819, - "name": "Asset_Redeem", - "blob": "1a085449434b45522d31323334353180ae395160d332d7c92e41b0aad70ed50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Redeem", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Asset : Redeem", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 820, - "name": "Asset_Redeem", - "blob": "1a085449434b45522d31323334353180ae395160d332d7c92e41b0aad70ed503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Redeem", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3" - ], - "output_expert": [ - "0 | Asset : Redeem", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 821, - "name": "Asset_Make_divisible", - "blob": "1a095449434b45522d3132333435d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Make divisible", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Asset : Make divisible", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 822, - "name": "Asset_Make_divisible", - "blob": "1a095449434b45522d3132333435d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Make divisible", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Asset : Make divisible", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 823, - "name": "Asset_Make_divisible", - "blob": "1a095449434b45522d3132333435d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Make divisible", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Asset : Make divisible", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 824, - "name": "Asset_Make_divisible", - "blob": "1a095449434b45522d3132333435d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Make divisible", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Asset : Make divisible", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 825, - "name": "Asset_Make_divisible", - "blob": "1a095449434b45522d3132333435d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Make divisible", - "1 | Ticker : TICKER-12345" - ], - "output_expert": [ - "0 | Asset : Make divisible", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 826, - "name": "Asset_Add_documents", - "blob": "1a0a085868747470733a2f2f646f63756d656e742e7572692e310132841b6ffd363e3bd33cebceb9220c3b7dee8af0fa036d754bf4161768fa30eaabf16193cd538b530bd6001bfde2c8138a54f2f65bcf054e73d8a5503f00014728446f63754e616d655f310120446f63755479706501f9be6186000000005868747470733a2f2f646f63756d656e742e7572692e3202713b552481bf95b30ac1a5eb0e9661d4277fdaac3fb1156cb2aa791e435339cfc104b2c291611fe7e1af68445c069d7428446f63754e616d655f320120446f6375547970650191850cb7050000005449434b45522d3132333435d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Add documents", - "1 | Docs [1/15] : https://document.uri.1", - "1 | Docs [2/15] : 32841b6ffd363e3bd33cebceb9220c3b7dee8a", - "1 | Docs [3/15] : f0fa036d754bf4161768fa30eaabf16193cd53", - "1 | Docs [4/15] : 8b530bd6001bfde2c8138a54f2f65bcf054e73", - "1 | Docs [5/15] : d8a5503f000147", - "1 | Docs [6/15] : DocuName_1", - "1 | Docs [7/15] : DocuType", - "1 | Docs [8/15] : 2254552825", - "1 | Docs [9/15] : https://document.uri.2", - "1 | Docs [10/15] : 713b552481bf95b30ac1a5eb0e9661d4277fda", - "1 | Docs [11/15] : ac3fb1156cb2aa791e435339cfc104b2c29161", - "1 | Docs [12/15] : 1fe7e1af68445c069d74", - "1 | Docs [13/15] : DocuName_2", - "1 | Docs [14/15] : DocuType", - "1 | Docs [15/15] : 24545887633", - "2 | Ticker : TICKER-12345" - ], - "output_expert": [ - "0 | Asset : Add documents", - "1 | Docs [1/15] : https://document.uri.1", - "1 | Docs [2/15] : 32841b6ffd363e3bd33cebceb9220c3b7dee8a", - "1 | Docs [3/15] : f0fa036d754bf4161768fa30eaabf16193cd53", - "1 | Docs [4/15] : 8b530bd6001bfde2c8138a54f2f65bcf054e73", - "1 | Docs [5/15] : d8a5503f000147", - "1 | Docs [6/15] : DocuName_1", - "1 | Docs [7/15] : DocuType", - "1 | Docs [8/15] : 2254552825", - "1 | Docs [9/15] : https://document.uri.2", - "1 | Docs [10/15] : 713b552481bf95b30ac1a5eb0e9661d4277fda", - "1 | Docs [11/15] : ac3fb1156cb2aa791e435339cfc104b2c29161", - "1 | Docs [12/15] : 1fe7e1af68445c069d74", - "1 | Docs [13/15] : DocuName_2", - "1 | Docs [14/15] : DocuType", - "1 | Docs [15/15] : 24545887633", - "2 | Ticker : TICKER-12345", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 827, - "name": "Asset_Add_documents", - "blob": "1a0a085868747470733a2f2f646f63756d656e742e7572692e310132841b6ffd363e3bd33cebceb9220c3b7dee8af0fa036d754bf4161768fa30eaabf16193cd538b530bd6001bfde2c8138a54f2f65bcf054e73d8a5503f00014728446f63754e616d655f310120446f63755479706501f9be6186000000005868747470733a2f2f646f63756d656e742e7572692e3202713b552481bf95b30ac1a5eb0e9661d4277fdaac3fb1156cb2aa791e435339cfc104b2c291611fe7e1af68445c069d7428446f63754e616d655f320120446f6375547970650191850cb7050000005449434b45522d3132333435d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Add documents", - "1 | Docs [1/15] : https://document.uri.1", - "1 | Docs [2/15] : 32841b6ffd363e3bd33cebceb9220c3b7dee8a", - "1 | Docs [3/15] : f0fa036d754bf4161768fa30eaabf16193cd53", - "1 | Docs [4/15] : 8b530bd6001bfde2c8138a54f2f65bcf054e73", - "1 | Docs [5/15] : d8a5503f000147", - "1 | Docs [6/15] : DocuName_1", - "1 | Docs [7/15] : DocuType", - "1 | Docs [8/15] : 2254552825", - "1 | Docs [9/15] : https://document.uri.2", - "1 | Docs [10/15] : 713b552481bf95b30ac1a5eb0e9661d4277fda", - "1 | Docs [11/15] : ac3fb1156cb2aa791e435339cfc104b2c29161", - "1 | Docs [12/15] : 1fe7e1af68445c069d74", - "1 | Docs [13/15] : DocuName_2", - "1 | Docs [14/15] : DocuType", - "1 | Docs [15/15] : 24545887633", - "2 | Ticker : TICKER-12345", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Asset : Add documents", - "1 | Docs [1/15] : https://document.uri.1", - "1 | Docs [2/15] : 32841b6ffd363e3bd33cebceb9220c3b7dee8a", - "1 | Docs [3/15] : f0fa036d754bf4161768fa30eaabf16193cd53", - "1 | Docs [4/15] : 8b530bd6001bfde2c8138a54f2f65bcf054e73", - "1 | Docs [5/15] : d8a5503f000147", - "1 | Docs [6/15] : DocuName_1", - "1 | Docs [7/15] : DocuType", - "1 | Docs [8/15] : 2254552825", - "1 | Docs [9/15] : https://document.uri.2", - "1 | Docs [10/15] : 713b552481bf95b30ac1a5eb0e9661d4277fda", - "1 | Docs [11/15] : ac3fb1156cb2aa791e435339cfc104b2c29161", - "1 | Docs [12/15] : 1fe7e1af68445c069d74", - "1 | Docs [13/15] : DocuName_2", - "1 | Docs [14/15] : DocuType", - "1 | Docs [15/15] : 24545887633", - "2 | Ticker : TICKER-12345", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 828, - "name": "Asset_Add_documents", - "blob": "1a0a005449434b45522d3132333435d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Add documents", - "1 | Docs : ", - "2 | Ticker : TICKER-12345", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Asset : Add documents", - "1 | Docs : ", - "2 | Ticker : TICKER-12345", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 829, - "name": "Asset_Add_documents", - "blob": "1a0a085868747470733a2f2f646f63756d656e742e7572692e310132841b6ffd363e3bd33cebceb9220c3b7dee8af0fa036d754bf4161768fa30eaabf16193cd538b530bd6001bfde2c8138a54f2f65bcf054e73d8a5503f00014728446f63754e616d655f310120446f63755479706501f9be6186000000005868747470733a2f2f646f63756d656e742e7572692e3202713b552481bf95b30ac1a5eb0e9661d4277fdaac3fb1156cb2aa791e435339cfc104b2c291611fe7e1af68445c069d7428446f63754e616d655f320120446f6375547970650191850cb7050000005449434b45522d3132333435d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Add documents", - "1 | Docs [1/15] : https://document.uri.1", - "1 | Docs [2/15] : 32841b6ffd363e3bd33cebceb9220c3b7dee8a", - "1 | Docs [3/15] : f0fa036d754bf4161768fa30eaabf16193cd53", - "1 | Docs [4/15] : 8b530bd6001bfde2c8138a54f2f65bcf054e73", - "1 | Docs [5/15] : d8a5503f000147", - "1 | Docs [6/15] : DocuName_1", - "1 | Docs [7/15] : DocuType", - "1 | Docs [8/15] : 2254552825", - "1 | Docs [9/15] : https://document.uri.2", - "1 | Docs [10/15] : 713b552481bf95b30ac1a5eb0e9661d4277fda", - "1 | Docs [11/15] : ac3fb1156cb2aa791e435339cfc104b2c29161", - "1 | Docs [12/15] : 1fe7e1af68445c069d74", - "1 | Docs [13/15] : DocuName_2", - "1 | Docs [14/15] : DocuType", - "1 | Docs [15/15] : 24545887633", - "2 | Ticker : TICKER-12345", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Add documents", - "1 | Docs [1/15] : https://document.uri.1", - "1 | Docs [2/15] : 32841b6ffd363e3bd33cebceb9220c3b7dee8a", - "1 | Docs [3/15] : f0fa036d754bf4161768fa30eaabf16193cd53", - "1 | Docs [4/15] : 8b530bd6001bfde2c8138a54f2f65bcf054e73", - "1 | Docs [5/15] : d8a5503f000147", - "1 | Docs [6/15] : DocuName_1", - "1 | Docs [7/15] : DocuType", - "1 | Docs [8/15] : 2254552825", - "1 | Docs [9/15] : https://document.uri.2", - "1 | Docs [10/15] : 713b552481bf95b30ac1a5eb0e9661d4277fda", - "1 | Docs [11/15] : ac3fb1156cb2aa791e435339cfc104b2c29161", - "1 | Docs [12/15] : 1fe7e1af68445c069d74", - "1 | Docs [13/15] : DocuName_2", - "1 | Docs [14/15] : DocuType", - "1 | Docs [15/15] : 24545887633", - "2 | Ticker : TICKER-12345", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 830, - "name": "Asset_Add_documents", - "blob": "1a0a085868747470733a2f2f646f63756d656e742e7572692e310132841b6ffd363e3bd33cebceb9220c3b7dee8af0fa036d754bf4161768fa30eaabf16193cd538b530bd6001bfde2c8138a54f2f65bcf054e73d8a5503f00014728446f63754e616d655f310120446f63755479706501f9be6186000000005868747470733a2f2f646f63756d656e742e7572692e3202713b552481bf95b30ac1a5eb0e9661d4277fdaac3fb1156cb2aa791e435339cfc104b2c291611fe7e1af68445c069d7428446f63754e616d655f320120446f6375547970650191850cb7050000005449434b45522d3132333435d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Add documents", - "1 | Docs [1/15] : https://document.uri.1", - "1 | Docs [2/15] : 32841b6ffd363e3bd33cebceb9220c3b7dee8a", - "1 | Docs [3/15] : f0fa036d754bf4161768fa30eaabf16193cd53", - "1 | Docs [4/15] : 8b530bd6001bfde2c8138a54f2f65bcf054e73", - "1 | Docs [5/15] : d8a5503f000147", - "1 | Docs [6/15] : DocuName_1", - "1 | Docs [7/15] : DocuType", - "1 | Docs [8/15] : 2254552825", - "1 | Docs [9/15] : https://document.uri.2", - "1 | Docs [10/15] : 713b552481bf95b30ac1a5eb0e9661d4277fda", - "1 | Docs [11/15] : ac3fb1156cb2aa791e435339cfc104b2c29161", - "1 | Docs [12/15] : 1fe7e1af68445c069d74", - "1 | Docs [13/15] : DocuName_2", - "1 | Docs [14/15] : DocuType", - "1 | Docs [15/15] : 24545887633", - "2 | Ticker : TICKER-12345", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Asset : Add documents", - "1 | Docs [1/15] : https://document.uri.1", - "1 | Docs [2/15] : 32841b6ffd363e3bd33cebceb9220c3b7dee8a", - "1 | Docs [3/15] : f0fa036d754bf4161768fa30eaabf16193cd53", - "1 | Docs [4/15] : 8b530bd6001bfde2c8138a54f2f65bcf054e73", - "1 | Docs [5/15] : d8a5503f000147", - "1 | Docs [6/15] : DocuName_1", - "1 | Docs [7/15] : DocuType", - "1 | Docs [8/15] : 2254552825", - "1 | Docs [9/15] : https://document.uri.2", - "1 | Docs [10/15] : 713b552481bf95b30ac1a5eb0e9661d4277fda", - "1 | Docs [11/15] : ac3fb1156cb2aa791e435339cfc104b2c29161", - "1 | Docs [12/15] : 1fe7e1af68445c069d74", - "1 | Docs [13/15] : DocuName_2", - "1 | Docs [14/15] : DocuType", - "1 | Docs [15/15] : 24545887633", - "2 | Ticker : TICKER-12345", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 831, - "name": "Asset_Remove_documents", - "blob": "1a0b005449434b45522d3132333435d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove documents", - "1 | Ids : ", - "2 | Ticker : TICKER-12345", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Asset : Remove documents", - "1 | Ids : ", - "2 | Ticker : TICKER-12345", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 832, - "name": "Asset_Remove_documents", - "blob": "1a0b005449434b45522d3132333435d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove documents", - "1 | Ids : ", - "2 | Ticker : TICKER-12345" - ], - "output_expert": [ - "0 | Asset : Remove documents", - "1 | Ids : ", - "2 | Ticker : TICKER-12345", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 833, - "name": "Asset_Remove_documents", - "blob": "1a0b005449434b45522d3132333435d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove documents", - "1 | Ids : ", - "2 | Ticker : TICKER-12345", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Asset : Remove documents", - "1 | Ids : ", - "2 | Ticker : TICKER-12345", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 834, - "name": "Asset_Remove_documents", - "blob": "1a0b005449434b45522d3132333435d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove documents", - "1 | Ids : ", - "2 | Ticker : TICKER-12345" - ], - "output_expert": [ - "0 | Asset : Remove documents", - "1 | Ids : ", - "2 | Ticker : TICKER-12345", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 835, - "name": "Asset_Remove_documents", - "blob": "1a0b04000000005449434b45522d3132333435d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove documents", - "1 | Ids : 0", - "2 | Ticker : TICKER-12345", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Remove documents", - "1 | Ids : 0", - "2 | Ticker : TICKER-12345", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 836, - "name": "Asset_Set_funding_round", - "blob": "1a0c5449434b45522d31323334352c526f756e644e616d655f32d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Set funding round", - "1 | Ticker : TICKER-12345", - "2 | Name : RoundName_2", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Asset : Set funding round", - "1 | Ticker : TICKER-12345", - "2 | Name : RoundName_2", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 837, - "name": "Asset_Set_funding_round", - "blob": "1a0c5449434b45522d31323334352c526f756e644e616d655f32d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Set funding round", - "1 | Ticker : TICKER-12345", - "2 | Name : RoundName_2", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Set funding round", - "1 | Ticker : TICKER-12345", - "2 | Name : RoundName_2", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 838, - "name": "Asset_Set_funding_round", - "blob": "1a0c5449434b45522d31323334352c526f756e644e616d655f31d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Set funding round", - "1 | Ticker : TICKER-12345", - "2 | Name : RoundName_1", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Asset : Set funding round", - "1 | Ticker : TICKER-12345", - "2 | Name : RoundName_1", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 839, - "name": "Asset_Set_funding_round", - "blob": "1a0c5449434b45522d31323334352c526f756e644e616d655f31d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Set funding round", - "1 | Ticker : TICKER-12345", - "2 | Name : RoundName_1", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Asset : Set funding round", - "1 | Ticker : TICKER-12345", - "2 | Name : RoundName_1", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 840, - "name": "Asset_Set_funding_round", - "blob": "1a0c5449434b45522d31323334352c526f756e644e616d655f32d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Set funding round", - "1 | Ticker : TICKER-12345", - "2 | Name : RoundName_2", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Asset : Set funding round", - "1 | Ticker : TICKER-12345", - "2 | Name : RoundName_2", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 841, - "name": "Asset_Update_identifiers", - "blob": "1a0d5449434b45522d31323334351000303337383333313030013033373833333130300255533033373833333130303503485755504b52304d504f55384647584254333934d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Update identifiers", - "1 | Ticker : TICKER-12345", - "2 | Asset identifiers [1/4] : 037833100", - "2 | Asset identifiers [2/4] : 037833100", - "2 | Asset identifiers [3/4] : US0378331005", - "2 | Asset identifiers [4/4] : HWUPKR0MPOU8FGXBT394", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Update identifiers", - "1 | Ticker : TICKER-12345", - "2 | Asset identifiers [1/4] : 037833100", - "2 | Asset identifiers [2/4] : 037833100", - "2 | Asset identifiers [3/4] : US0378331005", - "2 | Asset identifiers [4/4] : HWUPKR0MPOU8FGXBT394", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 842, - "name": "Asset_Update_identifiers", - "blob": "1a0d5449434b45522d313233343500d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Update identifiers", - "1 | Ticker : TICKER-12345", - "2 | Asset identifiers : ", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Update identifiers", - "1 | Ticker : TICKER-12345", - "2 | Asset identifiers : ", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 843, - "name": "Asset_Update_identifiers", - "blob": "1a0d5449434b45522d313233343500d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Update identifiers", - "1 | Ticker : TICKER-12345", - "2 | Asset identifiers : ", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Asset : Update identifiers", - "1 | Ticker : TICKER-12345", - "2 | Asset identifiers : ", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 844, - "name": "Asset_Update_identifiers", - "blob": "1a0d5449434b45522d313233343500d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Update identifiers", - "1 | Ticker : TICKER-12345", - "2 | Asset identifiers : ", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Asset : Update identifiers", - "1 | Ticker : TICKER-12345", - "2 | Asset identifiers : ", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 845, - "name": "Asset_Update_identifiers", - "blob": "1a0d5449434b45522d31323334351000303337383333313030013033373833333130300255533033373833333130303503485755504b52304d504f55384647584254333934d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Update identifiers", - "1 | Ticker : TICKER-12345", - "2 | Asset identifiers [1/4] : 037833100", - "2 | Asset identifiers [2/4] : 037833100", - "2 | Asset identifiers [3/4] : US0378331005", - "2 | Asset identifiers [4/4] : HWUPKR0MPOU8FGXBT394" - ], - "output_expert": [ - "0 | Asset : Update identifiers", - "1 | Ticker : TICKER-12345", - "2 | Asset identifiers [1/4] : 037833100", - "2 | Asset identifiers [2/4] : 037833100", - "2 | Asset identifiers [3/4] : US0378331005", - "2 | Asset identifiers [4/4] : HWUPKR0MPOU8FGXBT394", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 846, - "name": "Asset_Controller_transfer", - "blob": "1a0e5449434b45522d31323334353180ae395160d332d7c92e41b0aad70e0e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e2010000000000d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | From portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "3 | From portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "3 | From portfolio [3/3] : 123456", - "4 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Asset : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | From portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "3 | From portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "3 | From portfolio [3/3] : 123456", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 847, - "name": "Asset_Controller_transfer", - "blob": "1a0e5449434b45522d31323334353180ae395160d332d7c92e41b0aad70e0e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e2010000000000d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | From portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "3 | From portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "3 | From portfolio [3/3] : 123456" - ], - "output_expert": [ - "0 | Asset : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | From portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "3 | From portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "3 | From portfolio [3/3] : 123456", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 848, - "name": "Asset_Controller_transfer", - "blob": "1a0e5449434b45522d31323334353180ae395160d332d7c92e41b0aad70e0e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e2010000000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | From portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "3 | From portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "3 | From portfolio [3/3] : 123456", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | From portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "3 | From portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "3 | From portfolio [3/3] : 123456", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 849, - "name": "Asset_Controller_transfer", - "blob": "1a0e5449434b45522d31323334353180ae395160d332d7c92e41b0aad70e0e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e2010000000000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | From portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "3 | From portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "3 | From portfolio [3/3] : 123456", - "4 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Asset : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | From portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "3 | From portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "3 | From portfolio [3/3] : 123456", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 850, - "name": "Asset_Controller_transfer", - "blob": "1a0e5449434b45522d31323334353180ae395160d332d7c92e41b0aad70e0e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e2010000000000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | From portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "3 | From portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "3 | From portfolio [3/3] : 123456" - ], - "output_expert": [ - "0 | Asset : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | From portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "3 | From portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "3 | From portfolio [3/3] : 123456", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 851, - "name": "Asset_Register_custom_asset_type", - "blob": "1a0f100d0c1323d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Register custom asset type", - "1 | Ty [1/4] : 13", - "1 | Ty [2/4] : 12", - "1 | Ty [3/4] : 19", - "1 | Ty [4/4] : 35" - ], - "output_expert": [ - "0 | Asset : Register custom asset type", - "1 | Ty [1/4] : 13", - "1 | Ty [2/4] : 12", - "1 | Ty [3/4] : 19", - "1 | Ty [4/4] : 35", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 852, - "name": "Asset_Register_custom_asset_type", - "blob": "1a0f100d0c1323d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Register custom asset type", - "1 | Ty [1/4] : 13", - "1 | Ty [2/4] : 12", - "1 | Ty [3/4] : 19", - "1 | Ty [4/4] : 35" - ], - "output_expert": [ - "0 | Asset : Register custom asset type", - "1 | Ty [1/4] : 13", - "1 | Ty [2/4] : 12", - "1 | Ty [3/4] : 19", - "1 | Ty [4/4] : 35", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 853, - "name": "Asset_Register_custom_asset_type", - "blob": "1a0f100c293435d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Register custom asset type", - "1 | Ty [1/4] : 12", - "1 | Ty [2/4] : 41", - "1 | Ty [3/4] : 52", - "1 | Ty [4/4] : 53", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Asset : Register custom asset type", - "1 | Ty [1/4] : 12", - "1 | Ty [2/4] : 41", - "1 | Ty [3/4] : 52", - "1 | Ty [4/4] : 53", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 854, - "name": "Asset_Register_custom_asset_type", - "blob": "1a0f100e2a0c49d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Register custom asset type", - "1 | Ty [1/4] : 14", - "1 | Ty [2/4] : 42", - "1 | Ty [3/4] : 12", - "1 | Ty [4/4] : 73", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Asset : Register custom asset type", - "1 | Ty [1/4] : 14", - "1 | Ty [2/4] : 42", - "1 | Ty [3/4] : 12", - "1 | Ty [4/4] : 73", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 855, - "name": "Asset_Register_custom_asset_type", - "blob": "1a0f100c293435d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Register custom asset type", - "1 | Ty [1/4] : 12", - "1 | Ty [2/4] : 41", - "1 | Ty [3/4] : 52", - "1 | Ty [4/4] : 53" - ], - "output_expert": [ - "0 | Asset : Register custom asset type", - "1 | Ty [1/4] : 12", - "1 | Ty [2/4] : 41", - "1 | Ty [3/4] : 52", - "1 | Ty [4/4] : 53", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 856, - "name": "Asset_Create_asset_with_custom_type", - "blob": "1a102841737365744e616d65325449434b45522d313233343501100c2934351000303337383333313030013033373833333130300255533033373833333130303503485755504b52304d504f55384647584254333934014846756e64696e675f526f756e645f4e616d65d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Create asset with custom type", - "1 | Name : AssetName2", - "2 | Ticker : TICKER-12345", - "3 | Divisible : True", - "4 | Custom asset type [1/4] : 12", - "4 | Custom asset type [2/4] : 41", - "4 | Custom asset type [3/4] : 52", - "4 | Custom asset type [4/4] : 53", - "5 | Identifiers [1/4] : 037833100", - "5 | Identifiers [2/4] : 037833100", - "5 | Identifiers [3/4] : US0378331005", - "5 | Identifiers [4/4] : HWUPKR0MPOU8FGXBT394", - "6 | Funding round : Funding_Round_Name", - "7 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Asset : Create asset with custom type", - "1 | Name : AssetName2", - "2 | Ticker : TICKER-12345", - "3 | Divisible : True", - "4 | Custom asset type [1/4] : 12", - "4 | Custom asset type [2/4] : 41", - "4 | Custom asset type [3/4] : 52", - "4 | Custom asset type [4/4] : 53", - "5 | Identifiers [1/4] : 037833100", - "5 | Identifiers [2/4] : 037833100", - "5 | Identifiers [3/4] : US0378331005", - "5 | Identifiers [4/4] : HWUPKR0MPOU8FGXBT394", - "6 | Funding round : Funding_Round_Name", - "7 | Chain : Polymesh", - "8 | Nonce : 1", - "9 | Tip : POLYX 0.000987", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 857, - "name": "Asset_Create_asset_with_custom_type", - "blob": "1a102841737365744e616d65325449434b45522d313233343501100c29343500014846756e64696e675f526f756e645f4e616d65d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Create asset with custom type", - "1 | Name : AssetName2", - "2 | Ticker : TICKER-12345", - "3 | Divisible : True", - "4 | Custom asset type [1/4] : 12", - "4 | Custom asset type [2/4] : 41", - "4 | Custom asset type [3/4] : 52", - "4 | Custom asset type [4/4] : 53", - "5 | Identifiers : ", - "6 | Funding round : Funding_Round_Name", - "7 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Asset : Create asset with custom type", - "1 | Name : AssetName2", - "2 | Ticker : TICKER-12345", - "3 | Divisible : True", - "4 | Custom asset type [1/4] : 12", - "4 | Custom asset type [2/4] : 41", - "4 | Custom asset type [3/4] : 52", - "4 | Custom asset type [4/4] : 53", - "5 | Identifiers : ", - "6 | Funding round : Funding_Round_Name", - "7 | Chain : Polymesh", - "8 | Nonce : 100", - "9 | Tip : POLYX 0.000987", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 858, - "name": "Asset_Create_asset_with_custom_type", - "blob": "1a102841737365744e616d65325449434b45522d313233343501100e2a0c491000303337383333313030013033373833333130300255533033373833333130303503485755504b52304d504f55384647584254333934014846756e64696e675f526f756e645f4e616d65d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Create asset with custom type", - "1 | Name : AssetName2", - "2 | Ticker : TICKER-12345", - "3 | Divisible : True", - "4 | Custom asset type [1/4] : 14", - "4 | Custom asset type [2/4] : 42", - "4 | Custom asset type [3/4] : 12", - "4 | Custom asset type [4/4] : 73", - "5 | Identifiers [1/4] : 037833100", - "5 | Identifiers [2/4] : 037833100", - "5 | Identifiers [3/4] : US0378331005", - "5 | Identifiers [4/4] : HWUPKR0MPOU8FGXBT394", - "6 | Funding round : Funding_Round_Name" - ], - "output_expert": [ - "0 | Asset : Create asset with custom type", - "1 | Name : AssetName2", - "2 | Ticker : TICKER-12345", - "3 | Divisible : True", - "4 | Custom asset type [1/4] : 14", - "4 | Custom asset type [2/4] : 42", - "4 | Custom asset type [3/4] : 12", - "4 | Custom asset type [4/4] : 73", - "5 | Identifiers [1/4] : 037833100", - "5 | Identifiers [2/4] : 037833100", - "5 | Identifiers [3/4] : US0378331005", - "5 | Identifiers [4/4] : HWUPKR0MPOU8FGXBT394", - "6 | Funding round : Funding_Round_Name", - "7 | Chain : Polymesh", - "8 | Nonce : 50283", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 859, - "name": "Asset_Create_asset_with_custom_type", - "blob": "1a102841737365744e616d65315449434b45522d313233343501100e2a0c4900014846756e64696e675f526f756e645f4e616d65d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Create asset with custom type", - "1 | Name : AssetName1", - "2 | Ticker : TICKER-12345", - "3 | Divisible : True", - "4 | Custom asset type [1/4] : 14", - "4 | Custom asset type [2/4] : 42", - "4 | Custom asset type [3/4] : 12", - "4 | Custom asset type [4/4] : 73", - "5 | Identifiers : ", - "6 | Funding round : Funding_Round_Name", - "7 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Asset : Create asset with custom type", - "1 | Name : AssetName1", - "2 | Ticker : TICKER-12345", - "3 | Divisible : True", - "4 | Custom asset type [1/4] : 14", - "4 | Custom asset type [2/4] : 42", - "4 | Custom asset type [3/4] : 12", - "4 | Custom asset type [4/4] : 73", - "5 | Identifiers : ", - "6 | Funding round : Funding_Round_Name", - "7 | Chain : Polymesh", - "8 | Nonce : 0", - "9 | Tip : POLYX 55.555555", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 860, - "name": "Asset_Create_asset_with_custom_type", - "blob": "1a102841737365744e616d65315449434b45522d31323334350110200b200b1000303337383333313030013033373833333130300255533033373833333130303503485755504b52304d504f55384647584254333934014846756e64696e675f526f756e645f4e616d65d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Create asset with custom type", - "1 | Name : AssetName1", - "2 | Ticker : TICKER-12345", - "3 | Divisible : True", - "4 | Custom asset type [1/4] : 32", - "4 | Custom asset type [2/4] : 11", - "4 | Custom asset type [3/4] : 32", - "4 | Custom asset type [4/4] : 11", - "5 | Identifiers [1/4] : 037833100", - "5 | Identifiers [2/4] : 037833100", - "5 | Identifiers [3/4] : US0378331005", - "5 | Identifiers [4/4] : HWUPKR0MPOU8FGXBT394", - "6 | Funding round : Funding_Round_Name", - "7 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Asset : Create asset with custom type", - "1 | Name : AssetName1", - "2 | Ticker : TICKER-12345", - "3 | Divisible : True", - "4 | Custom asset type [1/4] : 32", - "4 | Custom asset type [2/4] : 11", - "4 | Custom asset type [3/4] : 32", - "4 | Custom asset type [4/4] : 11", - "5 | Identifiers [1/4] : 037833100", - "5 | Identifiers [2/4] : 037833100", - "5 | Identifiers [3/4] : US0378331005", - "5 | Identifiers [4/4] : HWUPKR0MPOU8FGXBT394", - "6 | Funding round : Funding_Round_Name", - "7 | Chain : Polymesh", - "8 | Nonce : 100", - "9 | Tip : POLYX 55.555555", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 861, - "name": "Asset_Set_asset_metadata", - "blob": "1a115449434b45522d313233343500c6bdb180bbf6082a3048656c6c6f20776f726c64210101d20296490000000001d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Set asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Key : 3028942034585107910", - "3 | Value : 48656c6c6f20776f726c6421", - "4 | Detail [1/2] : 1234567890", - "4 | Detail [2/2] : Locked" - ], - "output_expert": [ - "0 | Asset : Set asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Key : 3028942034585107910", - "3 | Value : 48656c6c6f20776f726c6421", - "4 | Detail [1/2] : 1234567890", - "4 | Detail [2/2] : Locked", - "5 | Chain : Polymesh", - "6 | Nonce : 1", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 862, - "name": "Asset_Set_asset_metadata", - "blob": "1a115449434b45522d313233343501f5a65be229cbb5053048656c6c6f20776f726c64210101a17c50010000000000d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Set asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Key : 411458321726023413", - "3 | Value : 48656c6c6f20776f726c6421", - "4 | Detail [1/2] : 22052001", - "4 | Detail [2/2] : Unlocked", - "5 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Asset : Set asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Key : 411458321726023413", - "3 | Value : 48656c6c6f20776f726c6421", - "4 | Detail [1/2] : 22052001", - "4 | Detail [2/2] : Unlocked", - "5 | Chain : Polymesh", - "6 | Nonce : 2339", - "7 | Tip : POLYX 55.555555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 863, - "name": "Asset_Set_asset_metadata", - "blob": "1a115449434b45522d313233343501f5a65be229cbb5053048656c6c6f20776f726c64210101af14ca000000000002ef91dfce0f000000d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Set asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Key : 411458321726023413", - "3 | Value : 48656c6c6f20776f726c6421", - "4 | Detail [1/2] : 13243567", - "4 | Detail [2/2] : 67895267823", - "5 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Asset : Set asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Key : 411458321726023413", - "3 | Value : 48656c6c6f20776f726c6421", - "4 | Detail [1/2] : 13243567", - "4 | Detail [2/2] : 67895267823", - "5 | Chain : Polymesh", - "6 | Nonce : 100", - "7 | Tip : POLYX 5552342.355555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 864, - "name": "Asset_Set_asset_metadata", - "blob": "1a115449434b45522d313233343501f5a65be229cbb5053048656c6c6f20776f726c64210101a17c50010000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Set asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Key : 411458321726023413", - "3 | Value : 48656c6c6f20776f726c6421", - "4 | Detail [1/2] : 22052001", - "4 | Detail [2/2] : Unlocked", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Set asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Key : 411458321726023413", - "3 | Value : 48656c6c6f20776f726c6421", - "4 | Detail [1/2] : 22052001", - "4 | Detail [2/2] : Unlocked", - "5 | Chain : Polymesh", - "6 | Nonce : 50283", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 865, - "name": "Asset_Set_asset_metadata", - "blob": "1a115449434b45522d313233343501f5a65be229cbb5053048656c6c6f20776f726c64210101a17c50010000000000d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Set asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Key : 411458321726023413", - "3 | Value : 48656c6c6f20776f726c6421", - "4 | Detail [1/2] : 22052001", - "4 | Detail [2/2] : Unlocked", - "5 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Asset : Set asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Key : 411458321726023413", - "3 | Value : 48656c6c6f20776f726c6421", - "4 | Detail [1/2] : 22052001", - "4 | Detail [2/2] : Unlocked", - "5 | Chain : Polymesh", - "6 | Nonce : 0", - "7 | Tip : POLYX 55.555555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 866, - "name": "Asset_Set_asset_metadata_details", - "blob": "1a125449434b45522d313233343501f5a65be229cbb50501206ff8030000000000d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Set asset metadata details", - "1 | Ticker : TICKER-12345", - "2 | Key : 411458321726023413", - "3 | Detail [1/2] : 66613024", - "3 | Detail [2/2] : Unlocked", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Asset : Set asset metadata details", - "1 | Ticker : TICKER-12345", - "2 | Key : 411458321726023413", - "3 | Detail [1/2] : 66613024", - "3 | Detail [2/2] : Unlocked", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 867, - "name": "Asset_Set_asset_metadata_details", - "blob": "1a125449434b45522d313233343500c6bdb180bbf6082a0104205ee51900000001d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Set asset metadata details", - "1 | Ticker : TICKER-12345", - "2 | Key : 3028942034585107910", - "3 | Detail [1/2] : 111222333444", - "3 | Detail [2/2] : Locked" - ], - "output_expert": [ - "0 | Asset : Set asset metadata details", - "1 | Ticker : TICKER-12345", - "2 | Key : 3028942034585107910", - "3 | Detail [1/2] : 111222333444", - "3 | Detail [2/2] : Locked", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 868, - "name": "Asset_Set_asset_metadata_details", - "blob": "1a125449434b45522d313233343501f5a65be229cbb50501206ff8030000000000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Set asset metadata details", - "1 | Ticker : TICKER-12345", - "2 | Key : 411458321726023413", - "3 | Detail [1/2] : 66613024", - "3 | Detail [2/2] : Unlocked", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Asset : Set asset metadata details", - "1 | Ticker : TICKER-12345", - "2 | Key : 411458321726023413", - "3 | Detail [1/2] : 66613024", - "3 | Detail [2/2] : Unlocked", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 869, - "name": "Asset_Set_asset_metadata_details", - "blob": "1a125449434b45522d313233343501f5a65be229cbb505010bcee40700000000021265c24f684c9d21d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Set asset metadata details", - "1 | Ticker : TICKER-12345", - "2 | Key : 411458321726023413", - "3 | Detail [1/2] : 132435467", - "3 | Detail [2/2] : 2422176185493644562", - "4 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Asset : Set asset metadata details", - "1 | Ticker : TICKER-12345", - "2 | Key : 411458321726023413", - "3 | Detail [1/2] : 132435467", - "3 | Detail [2/2] : 2422176185493644562", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 870, - "name": "Asset_Set_asset_metadata_details", - "blob": "1a125449434b45522d313233343501f5a65be229cbb505010bcee40700000000021265c24f684c9d21d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Set asset metadata details", - "1 | Ticker : TICKER-12345", - "2 | Key : 411458321726023413", - "3 | Detail [1/2] : 132435467", - "3 | Detail [2/2] : 2422176185493644562", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Set asset metadata details", - "1 | Ticker : TICKER-12345", - "2 | Key : 411458321726023413", - "3 | Detail [1/2] : 132435467", - "3 | Detail [2/2] : 2422176185493644562", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 871, - "name": "Asset_Register_and_set_local_asset_metadata", - "blob": "1a135449434b45522d3132333435144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663f3048656c6c6f20776f726c64210101a17c50010000000000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Register and set local asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Value : 48656c6c6f20776f726c6421", - "5 | Detail [1/2] : 22052001", - "5 | Detail [2/2] : Unlocked", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Register and set local asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Value : 48656c6c6f20776f726c6421", - "5 | Detail [1/2] : 22052001", - "5 | Detail [2/2] : Unlocked", - "6 | Chain : Polymesh", - "7 | Nonce : 1", - "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "8 | Tip [2/2] : 3.456789", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 872, - "name": "Asset_Register_and_set_local_asset_metadata", - "blob": "1a135449434b45522d3132333435144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663f3048656c6c6f20776f726c64210101d20296490000000001d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Register and set local asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Value : 48656c6c6f20776f726c6421", - "5 | Detail [1/2] : 1234567890", - "5 | Detail [2/2] : Locked", - "6 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Asset : Register and set local asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Value : 48656c6c6f20776f726c6421", - "5 | Detail [1/2] : 1234567890", - "5 | Detail [2/2] : Locked", - "6 | Chain : Polymesh", - "7 | Nonce : 2339", - "8 | Tip : POLYX 0.000987", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 873, - "name": "Asset_Register_and_set_local_asset_metadata", - "blob": "1a135449434b45522d3132333435144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663f3048656c6c6f20776f726c64210101a17c50010000000000d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Register and set local asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Value : 48656c6c6f20776f726c6421", - "5 | Detail [1/2] : 22052001", - "5 | Detail [2/2] : Unlocked" - ], - "output_expert": [ - "0 | Asset : Register and set local asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Value : 48656c6c6f20776f726c6421", - "5 | Detail [1/2] : 22052001", - "5 | Detail [2/2] : Unlocked", - "6 | Chain : Polymesh", - "7 | Nonce : 100", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 874, - "name": "Asset_Register_and_set_local_asset_metadata", - "blob": "1a135449434b45522d3132333435144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663f3048656c6c6f20776f726c64210101d20296490000000001d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Register and set local asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Value : 48656c6c6f20776f726c6421", - "5 | Detail [1/2] : 1234567890", - "5 | Detail [2/2] : Locked", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Register and set local asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Value : 48656c6c6f20776f726c6421", - "5 | Detail [1/2] : 1234567890", - "5 | Detail [2/2] : Locked", - "6 | Chain : Polymesh", - "7 | Nonce : 0", - "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "8 | Tip [2/2] : 3.456789", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 875, - "name": "Asset_Register_and_set_local_asset_metadata", - "blob": "1a135449434b45522d3132333435144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663f3048656c6c6f20776f726c64210101a17c50010000000000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Register and set local asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Value : 48656c6c6f20776f726c6421", - "5 | Detail [1/2] : 22052001", - "5 | Detail [2/2] : Unlocked", - "6 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Asset : Register and set local asset metadata", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Value : 48656c6c6f20776f726c6421", - "5 | Detail [1/2] : 22052001", - "5 | Detail [2/2] : Unlocked", - "6 | Chain : Polymesh", - "7 | Nonce : 2339", - "8 | Tip : POLYX 1234.56789", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 876, - "name": "Asset_Register_asset_metadata_local_type", - "blob": "1a145449434b45522d3132333435144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Register asset metadata local type", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f" - ], - "output_expert": [ - "0 | Asset : Register asset metadata local type", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 877, - "name": "Asset_Register_asset_metadata_local_type", - "blob": "1a145449434b45522d3132333435144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Register asset metadata local type", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Asset : Register asset metadata local type", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 878, - "name": "Asset_Register_asset_metadata_local_type", - "blob": "1a145449434b45522d3132333435144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Register asset metadata local type", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Asset : Register asset metadata local type", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 879, - "name": "Asset_Register_asset_metadata_local_type", - "blob": "1a145449434b45522d3132333435144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Register asset metadata local type", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Register asset metadata local type", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 880, - "name": "Asset_Register_asset_metadata_local_type", - "blob": "1a145449434b45522d3132333435144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Register asset metadata local type", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Asset : Register asset metadata local type", - "1 | Ticker : TICKER-12345", - "2 | Name : 4e616d6565", - "3 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "3 | Spec [2/3] : 496d7072657373697665207765627369746521", - "3 | Spec [3/3] : 57687920747970654465663f", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 881, - "name": "Asset_Register_asset_metadata_global_type", - "blob": "1a15144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Register asset metadata global type", - "1 | Name : 4e616d6565", - "2 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "2 | Spec [2/3] : 496d7072657373697665207765627369746521", - "2 | Spec [3/3] : 57687920747970654465663f", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Asset : Register asset metadata global type", - "1 | Name : 4e616d6565", - "2 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "2 | Spec [2/3] : 496d7072657373697665207765627369746521", - "2 | Spec [3/3] : 57687920747970654465663f", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 882, - "name": "Asset_Register_asset_metadata_global_type", - "blob": "1a15144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Register asset metadata global type", - "1 | Name : 4e616d6565", - "2 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "2 | Spec [2/3] : 496d7072657373697665207765627369746521", - "2 | Spec [3/3] : 57687920747970654465663f", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Asset : Register asset metadata global type", - "1 | Name : 4e616d6565", - "2 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "2 | Spec [2/3] : 496d7072657373697665207765627369746521", - "2 | Spec [3/3] : 57687920747970654465663f", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 883, - "name": "Asset_Register_asset_metadata_global_type", - "blob": "1a15144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Register asset metadata global type", - "1 | Name : 4e616d6565", - "2 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "2 | Spec [2/3] : 496d7072657373697665207765627369746521", - "2 | Spec [3/3] : 57687920747970654465663f", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Asset : Register asset metadata global type", - "1 | Name : 4e616d6565", - "2 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "2 | Spec [2/3] : 496d7072657373697665207765627369746521", - "2 | Spec [3/3] : 57687920747970654465663f", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 884, - "name": "Asset_Register_asset_metadata_global_type", - "blob": "1a15144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Register asset metadata global type", - "1 | Name : 4e616d6565", - "2 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "2 | Spec [2/3] : 496d7072657373697665207765627369746521", - "2 | Spec [3/3] : 57687920747970654465663f", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Asset : Register asset metadata global type", - "1 | Name : 4e616d6565", - "2 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "2 | Spec [2/3] : 496d7072657373697665207765627369746521", - "2 | Spec [3/3] : 57687920747970654465663f", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 885, - "name": "Asset_Register_asset_metadata_global_type", - "blob": "1a15144e616d6565013c68747470733a2f2f6162632e78797a014c496d7072657373697665207765627369746521013057687920747970654465663fd503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Register asset metadata global type", - "1 | Name : 4e616d6565", - "2 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "2 | Spec [2/3] : 496d7072657373697665207765627369746521", - "2 | Spec [3/3] : 57687920747970654465663f", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Register asset metadata global type", - "1 | Name : 4e616d6565", - "2 | Spec [1/3] : 68747470733a2f2f6162632e78797a", - "2 | Spec [2/3] : 496d7072657373697665207765627369746521", - "2 | Spec [3/3] : 57687920747970654465663f", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 886, - "name": "Asset_Redeem_from_portfolio", - "blob": "1a165449434b45522d31323334353180ae395160d332d7c92e41b0aad70e016d7923cc5f1a4adcd503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Redeem from portfolio", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | Portfolio : 15873528835369826669", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Asset : Redeem from portfolio", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | Portfolio : 15873528835369826669", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 887, - "name": "Asset_Redeem_from_portfolio", - "blob": "1a165449434b45522d31323334353180ae395160d332d7c92e41b0aad70e01bbb00ff5b8af54b6d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Redeem from portfolio", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | Portfolio : 13138319221866868923", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Redeem from portfolio", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | Portfolio : 13138319221866868923", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 888, - "name": "Asset_Redeem_from_portfolio", - "blob": "1a165449434b45522d31323334353180ae395160d332d7c92e41b0aad70e01b8f822db38c2fa85d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Redeem from portfolio", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | Portfolio : 9654242300672538808", - "4 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Asset : Redeem from portfolio", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | Portfolio : 9654242300672538808", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 889, - "name": "Asset_Redeem_from_portfolio", - "blob": "1a165449434b45522d31323334353180ae395160d332d7c92e41b0aad70e01b8f822db38c2fa85d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Redeem from portfolio", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | Portfolio : 9654242300672538808" - ], - "output_expert": [ - "0 | Asset : Redeem from portfolio", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | Portfolio : 9654242300672538808", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 890, - "name": "Asset_Redeem_from_portfolio", - "blob": "1a165449434b45522d31323334353180ae395160d332d7c92e41b0aad70e00d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Redeem from portfolio", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | Portfolio : Default", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Asset : Redeem from portfolio", - "1 | Ticker : TICKER-12345", - "2 | Amount [1/2] : 19728997739536122846747954930508.52971", - "2 | Amount [2/2] : 3", - "3 | Portfolio : Default", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 891, - "name": "Asset_Update_asset_type", - "blob": "1a175449434b45522d313233343500d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Update asset type", - "1 | Ticker : TICKER-12345", - "2 | Asset type : EquityCommon", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Update asset type", - "1 | Ticker : TICKER-12345", - "2 | Asset type : EquityCommon", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 892, - "name": "Asset_Update_asset_type", - "blob": "1a175449434b45522d3132333435093ec70600d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Update asset type", - "1 | Ticker : TICKER-12345", - "2 | Asset type [1/2] : Custom", - "2 | Asset type [2/2] : 444222", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Update asset type", - "1 | Ticker : TICKER-12345", - "2 | Asset type [1/2] : Custom", - "2 | Asset type [2/2] : 444222", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 893, - "name": "Asset_Update_asset_type", - "blob": "1a175449434b45522d3132333435093ec70600d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Update asset type", - "1 | Ticker : TICKER-12345", - "2 | Asset type [1/2] : Custom", - "2 | Asset type [2/2] : 444222", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Asset : Update asset type", - "1 | Ticker : TICKER-12345", - "2 | Asset type [1/2] : Custom", - "2 | Asset type [2/2] : 444222", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 894, - "name": "Asset_Update_asset_type", - "blob": "1a175449434b45522d3132333435093ec70600d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Update asset type", - "1 | Ticker : TICKER-12345", - "2 | Asset type [1/2] : Custom", - "2 | Asset type [2/2] : 444222", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Asset : Update asset type", - "1 | Ticker : TICKER-12345", - "2 | Asset type [1/2] : Custom", - "2 | Asset type [2/2] : 444222", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 895, - "name": "Asset_Update_asset_type", - "blob": "1a175449434b45522d313233343500d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Update asset type", - "1 | Ticker : TICKER-12345", - "2 | Asset type : EquityCommon" - ], - "output_expert": [ - "0 | Asset : Update asset type", - "1 | Ticker : TICKER-12345", - "2 | Asset type : EquityCommon", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 896, - "name": "Asset_Remove_local_metadata_key", - "blob": "1a185449434b45522d31323334359249e197f4ad9952d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove local metadata key", - "1 | Ticker : TICKER-12345", - "2 | Local key : 5951979648578570642", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Asset : Remove local metadata key", - "1 | Ticker : TICKER-12345", - "2 | Local key : 5951979648578570642", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 897, - "name": "Asset_Remove_local_metadata_key", - "blob": "1a185449434b45522d3132333435aa89b5b365cd48e1d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove local metadata key", - "1 | Ticker : TICKER-12345", - "2 | Local key : 16233450693547362730", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Asset : Remove local metadata key", - "1 | Ticker : TICKER-12345", - "2 | Local key : 16233450693547362730", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 898, - "name": "Asset_Remove_local_metadata_key", - "blob": "1a185449434b45522d31323334359249e197f4ad9952d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove local metadata key", - "1 | Ticker : TICKER-12345", - "2 | Local key : 5951979648578570642", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Asset : Remove local metadata key", - "1 | Ticker : TICKER-12345", - "2 | Local key : 5951979648578570642", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 899, - "name": "Asset_Remove_local_metadata_key", - "blob": "1a185449434b45522d3132333435405e7bf754c90478d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove local metadata key", - "1 | Ticker : TICKER-12345", - "2 | Local key : 8648258551224688192", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Asset : Remove local metadata key", - "1 | Ticker : TICKER-12345", - "2 | Local key : 8648258551224688192", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 900, - "name": "Asset_Remove_local_metadata_key", - "blob": "1a185449434b45522d31323334359249e197f4ad9952d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove local metadata key", - "1 | Ticker : TICKER-12345", - "2 | Local key : 5951979648578570642", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Asset : Remove local metadata key", - "1 | Ticker : TICKER-12345", - "2 | Local key : 5951979648578570642", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 901, - "name": "Asset_Remove_metadata_value", - "blob": "1a195449434b45522d313233343501f5a65be229cbb505d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove metadata value", - "1 | Ticker : TICKER-12345", - "2 | Metadata key : 411458321726023413", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Asset : Remove metadata value", - "1 | Ticker : TICKER-12345", - "2 | Metadata key : 411458321726023413", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 902, - "name": "Asset_Remove_metadata_value", - "blob": "1a195449434b45522d313233343501f5a65be229cbb505d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove metadata value", - "1 | Ticker : TICKER-12345", - "2 | Metadata key : 411458321726023413", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Remove metadata value", - "1 | Ticker : TICKER-12345", - "2 | Metadata key : 411458321726023413", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 903, - "name": "Asset_Remove_metadata_value", - "blob": "1a195449434b45522d313233343500c6bdb180bbf6082ad50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove metadata value", - "1 | Ticker : TICKER-12345", - "2 | Metadata key : 3028942034585107910", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Asset : Remove metadata value", - "1 | Ticker : TICKER-12345", - "2 | Metadata key : 3028942034585107910", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 904, - "name": "Asset_Remove_metadata_value", - "blob": "1a195449434b45522d313233343501f5a65be229cbb505d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove metadata value", - "1 | Ticker : TICKER-12345", - "2 | Metadata key : 411458321726023413", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Asset : Remove metadata value", - "1 | Ticker : TICKER-12345", - "2 | Metadata key : 411458321726023413", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 905, - "name": "Asset_Remove_metadata_value", - "blob": "1a195449434b45522d313233343500c6bdb180bbf6082ad5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove metadata value", - "1 | Ticker : TICKER-12345", - "2 | Metadata key : 3028942034585107910", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Asset : Remove metadata value", - "1 | Ticker : TICKER-12345", - "2 | Metadata key : 3028942034585107910", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 906, - "name": "Asset_Exempt_ticker_affirmation", - "blob": "1a1a5449434b45522d3132333435d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Exempt ticker affirmation", - "1 | Ticker : TICKER-12345" - ], - "output_expert": [ - "0 | Asset : Exempt ticker affirmation", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 907, - "name": "Asset_Exempt_ticker_affirmation", - "blob": "1a1a5449434b45522d3132333435d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Exempt ticker affirmation", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Asset : Exempt ticker affirmation", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 908, - "name": "Asset_Exempt_ticker_affirmation", - "blob": "1a1a5449434b45522d3132333435d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Exempt ticker affirmation", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Asset : Exempt ticker affirmation", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 909, - "name": "Asset_Exempt_ticker_affirmation", - "blob": "1a1a5449434b45522d3132333435d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Exempt ticker affirmation", - "1 | Ticker : TICKER-12345", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Exempt ticker affirmation", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 910, - "name": "Asset_Exempt_ticker_affirmation", - "blob": "1a1a5449434b45522d3132333435d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Exempt ticker affirmation", - "1 | Ticker : TICKER-12345" - ], - "output_expert": [ - "0 | Asset : Exempt ticker affirmation", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 911, - "name": "Asset_Remove_ticker_affirmation_exemption", - "blob": "1a1b5449434b45522d3132333435d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove ticker affirmation exemption", - "1 | Ticker : TICKER-12345", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Remove ticker affirmation exemption", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 912, - "name": "Asset_Remove_ticker_affirmation_exemption", - "blob": "1a1b5449434b45522d3132333435d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove ticker affirmation exemption", - "1 | Ticker : TICKER-12345" - ], - "output_expert": [ - "0 | Asset : Remove ticker affirmation exemption", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 913, - "name": "Asset_Remove_ticker_affirmation_exemption", - "blob": "1a1b5449434b45522d3132333435d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove ticker affirmation exemption", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Asset : Remove ticker affirmation exemption", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 914, - "name": "Asset_Remove_ticker_affirmation_exemption", - "blob": "1a1b5449434b45522d3132333435d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove ticker affirmation exemption", - "1 | Ticker : TICKER-12345" - ], - "output_expert": [ - "0 | Asset : Remove ticker affirmation exemption", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 915, - "name": "Asset_Remove_ticker_affirmation_exemption", - "blob": "1a1b5449434b45522d3132333435d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove ticker affirmation exemption", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Asset : Remove ticker affirmation exemption", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 916, - "name": "Asset_Pre_approve_ticker", - "blob": "1a1c5449434b45522d3132333435d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Pre approve ticker", - "1 | Ticker : TICKER-12345", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Pre approve ticker", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 917, - "name": "Asset_Pre_approve_ticker", - "blob": "1a1c5449434b45522d3132333435d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Pre approve ticker", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Asset : Pre approve ticker", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 918, - "name": "Asset_Pre_approve_ticker", - "blob": "1a1c5449434b45522d3132333435d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Pre approve ticker", - "1 | Ticker : TICKER-12345", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Pre approve ticker", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 919, - "name": "Asset_Pre_approve_ticker", - "blob": "1a1c5449434b45522d3132333435d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Pre approve ticker", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Asset : Pre approve ticker", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 920, - "name": "Asset_Pre_approve_ticker", - "blob": "1a1c5449434b45522d3132333435d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Pre approve ticker", - "1 | Ticker : TICKER-12345" - ], - "output_expert": [ - "0 | Asset : Pre approve ticker", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 921, - "name": "Asset_Remove_ticker_pre_approval", - "blob": "1a1d5449434b45522d3132333435d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove ticker pre approval", - "1 | Ticker : TICKER-12345", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Remove ticker pre approval", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 922, - "name": "Asset_Remove_ticker_pre_approval", - "blob": "1a1d5449434b45522d3132333435d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove ticker pre approval", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Asset : Remove ticker pre approval", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 923, - "name": "Asset_Remove_ticker_pre_approval", - "blob": "1a1d5449434b45522d3132333435d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove ticker pre approval", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Asset : Remove ticker pre approval", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 924, - "name": "Asset_Remove_ticker_pre_approval", - "blob": "1a1d5449434b45522d3132333435d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove ticker pre approval", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Asset : Remove ticker pre approval", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 925, - "name": "Asset_Remove_ticker_pre_approval", - "blob": "1a1d5449434b45522d3132333435d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove ticker pre approval", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Asset : Remove ticker pre approval", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 926, - "name": "Asset_Add_mandatory_mediators", - "blob": "1a1e5449434b45522d31323334351018a8d3595f79de58001acb7bd81d8b8c4e0b829240c04ebd801222061285434e40bca8eefb4555bc542d3af8234208db1cc83174d49e7fc72c2f1b08becf8f356cd73ceb115504e7dc2c2c9c9fe319ecd6ece2fb5b6e3d5957a4bb82d46589ff7280c1cda956605c93f8d3d590ead5ba839890a8f059173e9fd5529311b98948d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Add mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/8] : 18a8d3595f79de58001acb7bd81d8b8c4e0b82", - "2 | Mediators [2/8] : 9240c04ebd801222061285434e", - "2 | Mediators [3/8] : 40bca8eefb4555bc542d3af8234208db1cc831", - "2 | Mediators [4/8] : 74d49e7fc72c2f1b08becf8f35", - "2 | Mediators [5/8] : 6cd73ceb115504e7dc2c2c9c9fe319ecd6ece2", - "2 | Mediators [6/8] : fb5b6e3d5957a4bb82d46589ff", - "2 | Mediators [7/8] : 7280c1cda956605c93f8d3d590ead5ba839890", - "2 | Mediators [8/8] : a8f059173e9fd5529311b98948", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Asset : Add mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/8] : 18a8d3595f79de58001acb7bd81d8b8c4e0b82", - "2 | Mediators [2/8] : 9240c04ebd801222061285434e", - "2 | Mediators [3/8] : 40bca8eefb4555bc542d3af8234208db1cc831", - "2 | Mediators [4/8] : 74d49e7fc72c2f1b08becf8f35", - "2 | Mediators [5/8] : 6cd73ceb115504e7dc2c2c9c9fe319ecd6ece2", - "2 | Mediators [6/8] : fb5b6e3d5957a4bb82d46589ff", - "2 | Mediators [7/8] : 7280c1cda956605c93f8d3d590ead5ba839890", - "2 | Mediators [8/8] : a8f059173e9fd5529311b98948", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 927, - "name": "Asset_Add_mandatory_mediators", - "blob": "1a1e5449434b45522d3132333435082cd3b8953a319ef15b02fa014cb4eda3220978a954467f40b7c6f489e672128069715f0ca6cd29006c126acbb4e18b556aef4c8ccba97d1a3e18754050ddb187d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Add mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/4] : 2cd3b8953a319ef15b02fa014cb4eda3220978", - "2 | Mediators [2/4] : a954467f40b7c6f489e6721280", - "2 | Mediators [3/4] : 69715f0ca6cd29006c126acbb4e18b556aef4c", - "2 | Mediators [4/4] : 8ccba97d1a3e18754050ddb187" - ], - "output_expert": [ - "0 | Asset : Add mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/4] : 2cd3b8953a319ef15b02fa014cb4eda3220978", - "2 | Mediators [2/4] : a954467f40b7c6f489e6721280", - "2 | Mediators [3/4] : 69715f0ca6cd29006c126acbb4e18b556aef4c", - "2 | Mediators [4/4] : 8ccba97d1a3e18754050ddb187", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 928, - "name": "Asset_Add_mandatory_mediators", - "blob": "1a1e5449434b45522d3132333435082cd3b8953a319ef15b02fa014cb4eda3220978a954467f40b7c6f489e672128069715f0ca6cd29006c126acbb4e18b556aef4c8ccba97d1a3e18754050ddb187d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Add mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/4] : 2cd3b8953a319ef15b02fa014cb4eda3220978", - "2 | Mediators [2/4] : a954467f40b7c6f489e6721280", - "2 | Mediators [3/4] : 69715f0ca6cd29006c126acbb4e18b556aef4c", - "2 | Mediators [4/4] : 8ccba97d1a3e18754050ddb187", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Asset : Add mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/4] : 2cd3b8953a319ef15b02fa014cb4eda3220978", - "2 | Mediators [2/4] : a954467f40b7c6f489e6721280", - "2 | Mediators [3/4] : 69715f0ca6cd29006c126acbb4e18b556aef4c", - "2 | Mediators [4/4] : 8ccba97d1a3e18754050ddb187", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 929, - "name": "Asset_Add_mandatory_mediators", - "blob": "1a1e5449434b45522d3132333435082cd3b8953a319ef15b02fa014cb4eda3220978a954467f40b7c6f489e672128069715f0ca6cd29006c126acbb4e18b556aef4c8ccba97d1a3e18754050ddb187d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Add mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/4] : 2cd3b8953a319ef15b02fa014cb4eda3220978", - "2 | Mediators [2/4] : a954467f40b7c6f489e6721280", - "2 | Mediators [3/4] : 69715f0ca6cd29006c126acbb4e18b556aef4c", - "2 | Mediators [4/4] : 8ccba97d1a3e18754050ddb187", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Asset : Add mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/4] : 2cd3b8953a319ef15b02fa014cb4eda3220978", - "2 | Mediators [2/4] : a954467f40b7c6f489e6721280", - "2 | Mediators [3/4] : 69715f0ca6cd29006c126acbb4e18b556aef4c", - "2 | Mediators [4/4] : 8ccba97d1a3e18754050ddb187", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 930, - "name": "Asset_Add_mandatory_mediators", - "blob": "1a1e5449434b45522d31323334351018a8d3595f79de58001acb7bd81d8b8c4e0b829240c04ebd801222061285434e40bca8eefb4555bc542d3af8234208db1cc83174d49e7fc72c2f1b08becf8f356cd73ceb115504e7dc2c2c9c9fe319ecd6ece2fb5b6e3d5957a4bb82d46589ff7280c1cda956605c93f8d3d590ead5ba839890a8f059173e9fd5529311b98948d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Add mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/8] : 18a8d3595f79de58001acb7bd81d8b8c4e0b82", - "2 | Mediators [2/8] : 9240c04ebd801222061285434e", - "2 | Mediators [3/8] : 40bca8eefb4555bc542d3af8234208db1cc831", - "2 | Mediators [4/8] : 74d49e7fc72c2f1b08becf8f35", - "2 | Mediators [5/8] : 6cd73ceb115504e7dc2c2c9c9fe319ecd6ece2", - "2 | Mediators [6/8] : fb5b6e3d5957a4bb82d46589ff", - "2 | Mediators [7/8] : 7280c1cda956605c93f8d3d590ead5ba839890", - "2 | Mediators [8/8] : a8f059173e9fd5529311b98948", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Add mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/8] : 18a8d3595f79de58001acb7bd81d8b8c4e0b82", - "2 | Mediators [2/8] : 9240c04ebd801222061285434e", - "2 | Mediators [3/8] : 40bca8eefb4555bc542d3af8234208db1cc831", - "2 | Mediators [4/8] : 74d49e7fc72c2f1b08becf8f35", - "2 | Mediators [5/8] : 6cd73ceb115504e7dc2c2c9c9fe319ecd6ece2", - "2 | Mediators [6/8] : fb5b6e3d5957a4bb82d46589ff", - "2 | Mediators [7/8] : 7280c1cda956605c93f8d3d590ead5ba839890", - "2 | Mediators [8/8] : a8f059173e9fd5529311b98948", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 931, - "name": "Asset_Remove_mandatory_mediators", - "blob": "1a1f5449434b45522d31323334351018a8d3595f79de58001acb7bd81d8b8c4e0b829240c04ebd801222061285434e40bca8eefb4555bc542d3af8234208db1cc83174d49e7fc72c2f1b08becf8f356cd73ceb115504e7dc2c2c9c9fe319ecd6ece2fb5b6e3d5957a4bb82d46589ff7280c1cda956605c93f8d3d590ead5ba839890a8f059173e9fd5529311b98948d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/8] : 18a8d3595f79de58001acb7bd81d8b8c4e0b82", - "2 | Mediators [2/8] : 9240c04ebd801222061285434e", - "2 | Mediators [3/8] : 40bca8eefb4555bc542d3af8234208db1cc831", - "2 | Mediators [4/8] : 74d49e7fc72c2f1b08becf8f35", - "2 | Mediators [5/8] : 6cd73ceb115504e7dc2c2c9c9fe319ecd6ece2", - "2 | Mediators [6/8] : fb5b6e3d5957a4bb82d46589ff", - "2 | Mediators [7/8] : 7280c1cda956605c93f8d3d590ead5ba839890", - "2 | Mediators [8/8] : a8f059173e9fd5529311b98948", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Asset : Remove mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/8] : 18a8d3595f79de58001acb7bd81d8b8c4e0b82", - "2 | Mediators [2/8] : 9240c04ebd801222061285434e", - "2 | Mediators [3/8] : 40bca8eefb4555bc542d3af8234208db1cc831", - "2 | Mediators [4/8] : 74d49e7fc72c2f1b08becf8f35", - "2 | Mediators [5/8] : 6cd73ceb115504e7dc2c2c9c9fe319ecd6ece2", - "2 | Mediators [6/8] : fb5b6e3d5957a4bb82d46589ff", - "2 | Mediators [7/8] : 7280c1cda956605c93f8d3d590ead5ba839890", - "2 | Mediators [8/8] : a8f059173e9fd5529311b98948", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 932, - "name": "Asset_Remove_mandatory_mediators", - "blob": "1a1f5449434b45522d31323334351018a8d3595f79de58001acb7bd81d8b8c4e0b829240c04ebd801222061285434e40bca8eefb4555bc542d3af8234208db1cc83174d49e7fc72c2f1b08becf8f356cd73ceb115504e7dc2c2c9c9fe319ecd6ece2fb5b6e3d5957a4bb82d46589ff7280c1cda956605c93f8d3d590ead5ba839890a8f059173e9fd5529311b98948d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/8] : 18a8d3595f79de58001acb7bd81d8b8c4e0b82", - "2 | Mediators [2/8] : 9240c04ebd801222061285434e", - "2 | Mediators [3/8] : 40bca8eefb4555bc542d3af8234208db1cc831", - "2 | Mediators [4/8] : 74d49e7fc72c2f1b08becf8f35", - "2 | Mediators [5/8] : 6cd73ceb115504e7dc2c2c9c9fe319ecd6ece2", - "2 | Mediators [6/8] : fb5b6e3d5957a4bb82d46589ff", - "2 | Mediators [7/8] : 7280c1cda956605c93f8d3d590ead5ba839890", - "2 | Mediators [8/8] : a8f059173e9fd5529311b98948", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Asset : Remove mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/8] : 18a8d3595f79de58001acb7bd81d8b8c4e0b82", - "2 | Mediators [2/8] : 9240c04ebd801222061285434e", - "2 | Mediators [3/8] : 40bca8eefb4555bc542d3af8234208db1cc831", - "2 | Mediators [4/8] : 74d49e7fc72c2f1b08becf8f35", - "2 | Mediators [5/8] : 6cd73ceb115504e7dc2c2c9c9fe319ecd6ece2", - "2 | Mediators [6/8] : fb5b6e3d5957a4bb82d46589ff", - "2 | Mediators [7/8] : 7280c1cda956605c93f8d3d590ead5ba839890", - "2 | Mediators [8/8] : a8f059173e9fd5529311b98948", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 933, - "name": "Asset_Remove_mandatory_mediators", - "blob": "1a1f5449434b45522d31323334351018a8d3595f79de58001acb7bd81d8b8c4e0b829240c04ebd801222061285434e40bca8eefb4555bc542d3af8234208db1cc83174d49e7fc72c2f1b08becf8f356cd73ceb115504e7dc2c2c9c9fe319ecd6ece2fb5b6e3d5957a4bb82d46589ff7280c1cda956605c93f8d3d590ead5ba839890a8f059173e9fd5529311b98948d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/8] : 18a8d3595f79de58001acb7bd81d8b8c4e0b82", - "2 | Mediators [2/8] : 9240c04ebd801222061285434e", - "2 | Mediators [3/8] : 40bca8eefb4555bc542d3af8234208db1cc831", - "2 | Mediators [4/8] : 74d49e7fc72c2f1b08becf8f35", - "2 | Mediators [5/8] : 6cd73ceb115504e7dc2c2c9c9fe319ecd6ece2", - "2 | Mediators [6/8] : fb5b6e3d5957a4bb82d46589ff", - "2 | Mediators [7/8] : 7280c1cda956605c93f8d3d590ead5ba839890", - "2 | Mediators [8/8] : a8f059173e9fd5529311b98948", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Asset : Remove mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/8] : 18a8d3595f79de58001acb7bd81d8b8c4e0b82", - "2 | Mediators [2/8] : 9240c04ebd801222061285434e", - "2 | Mediators [3/8] : 40bca8eefb4555bc542d3af8234208db1cc831", - "2 | Mediators [4/8] : 74d49e7fc72c2f1b08becf8f35", - "2 | Mediators [5/8] : 6cd73ceb115504e7dc2c2c9c9fe319ecd6ece2", - "2 | Mediators [6/8] : fb5b6e3d5957a4bb82d46589ff", - "2 | Mediators [7/8] : 7280c1cda956605c93f8d3d590ead5ba839890", - "2 | Mediators [8/8] : a8f059173e9fd5529311b98948", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 934, - "name": "Asset_Remove_mandatory_mediators", - "blob": "1a1f5449434b45522d31323334350409ad49a64e0dce33ece6ec4250a8f9cbb2487967995450c6b86d65807d93767fd503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/2] : 09ad49a64e0dce33ece6ec4250a8f9cbb24879", - "2 | Mediators [2/2] : 67995450c6b86d65807d93767f", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Asset : Remove mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/2] : 09ad49a64e0dce33ece6ec4250a8f9cbb24879", - "2 | Mediators [2/2] : 67995450c6b86d65807d93767f", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 935, - "name": "Asset_Remove_mandatory_mediators", - "blob": "1a1f5449434b45522d313233343508af346c760b7a13a015d071a3f91dfa08776a85094361af02ea2d9f1af875ad74f53b16bfdb48d5b6ffadd557fba2dd0fa74d1558982871d50b84c37b78e39e6cd5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Asset : Remove mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/4] : af346c760b7a13a015d071a3f91dfa08776a85", - "2 | Mediators [2/4] : 094361af02ea2d9f1af875ad74", - "2 | Mediators [3/4] : f53b16bfdb48d5b6ffadd557fba2dd0fa74d15", - "2 | Mediators [4/4] : 58982871d50b84c37b78e39e6c", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Asset : Remove mandatory mediators", - "1 | Ticker : TICKER-12345", - "2 | Mediators [1/4] : af346c760b7a13a015d071a3f91dfa08776a85", - "2 | Mediators [2/4] : 094361af02ea2d9f1af875ad74", - "2 | Mediators [3/4] : f53b16bfdb48d5b6ffadd557fba2dd0fa74d15", - "2 | Mediators [4/4] : 58982871d50b84c37b78e39e6c", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 936, - "name": "Capitaldistribution_Distribute", - "blob": "1b005449434b45522d31323341416fec210001cadc0000000000005449434b45522d3132333435345fe7fc9c23bfb62334c8ca2c746fee345fe7fc9c23bfb62334c8ca2c746fee0008000000000000010008000000000000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Capitaldistribution : Distribute", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Portfolio : 56522", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 31693496425641852120896906194770", - "4 | Per share [2/2] : 0.371252", - "5 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "5 | Amount [2/2] : 0.371252", - "6 | Payment at : 2048", - "7 | Expires at : 2048", - "8 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Capitaldistribution : Distribute", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Portfolio : 56522", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 31693496425641852120896906194770", - "4 | Per share [2/2] : 0.371252", - "5 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "5 | Amount [2/2] : 0.371252", - "6 | Payment at : 2048", - "7 | Expires at : 2048", - "8 | Chain : Polymesh", - "9 | Nonce : 100", - "10 | Tip : POLYX 1234.56789", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 937, - "name": "Capitaldistribution_Distribute", - "blob": "1b005449434b45522d31323341416fec210001bb130000000000005449434b45522d3132333435345fe7fc9c23bfb62334c8ca2c746fee345fe7fc9c23bfb62334c8ca2c746fee8000000000000000018000000000000000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Capitaldistribution : Distribute", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Portfolio : 5051", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 31693496425641852120896906194770", - "4 | Per share [2/2] : 0.371252", - "5 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "5 | Amount [2/2] : 0.371252", - "6 | Payment at : 128", - "7 | Expires at : 128", - "8 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Capitaldistribution : Distribute", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Portfolio : 5051", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 31693496425641852120896906194770", - "4 | Per share [2/2] : 0.371252", - "5 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "5 | Amount [2/2] : 0.371252", - "6 | Payment at : 128", - "7 | Expires at : 128", - "8 | Chain : Polymesh", - "9 | Nonce : 100", - "10 | Tip : POLYX 55.555555", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 938, - "name": "Capitaldistribution_Distribute", - "blob": "1b005449434b45522d31323341416fec21000100000000000000005449434b45522d3132333435345fe7fc9c23bfb62334c8ca2c746fee345fe7fc9c23bfb62334c8ca2c746fee0008000000000000010001000000000000d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Capitaldistribution : Distribute", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Portfolio : 0", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 31693496425641852120896906194770", - "4 | Per share [2/2] : 0.371252", - "5 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "5 | Amount [2/2] : 0.371252", - "6 | Payment at : 2048", - "7 | Expires at : 256", - "8 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Capitaldistribution : Distribute", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Portfolio : 0", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 31693496425641852120896906194770", - "4 | Per share [2/2] : 0.371252", - "5 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "5 | Amount [2/2] : 0.371252", - "6 | Payment at : 2048", - "7 | Expires at : 256", - "8 | Chain : Polymesh", - "9 | Nonce : 1", - "10 | Tip : POLYX 0.000987", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 939, - "name": "Capitaldistribution_Distribute", - "blob": "1b005449434b45522d31323341416fec21000119000000000000005449434b45522d3132333435345fe7fc9c23bfb62334c8ca2c746fee345fe7fc9c23bfb62334c8ca2c746fee0001000000000000010001000000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Capitaldistribution : Distribute", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Portfolio : 25", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 31693496425641852120896906194770", - "4 | Per share [2/2] : 0.371252", - "5 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "5 | Amount [2/2] : 0.371252", - "6 | Payment at : 256", - "7 | Expires at : 256", - "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "8 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Capitaldistribution : Distribute", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Portfolio : 25", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 31693496425641852120896906194770", - "4 | Per share [2/2] : 0.371252", - "5 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "5 | Amount [2/2] : 0.371252", - "6 | Payment at : 256", - "7 | Expires at : 256", - "8 | Chain : Polymesh", - "9 | Nonce : 50283", - "10 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "10 | Tip [2/2] : 3.456789", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 940, - "name": "Capitaldistribution_Distribute", - "blob": "1b005449434b45522d31323341416fec21000100000000000000005449434b45522d3132333435345fe7fc9c23bfb62334c8ca2c746fee345fe7fc9c23bfb62334c8ca2c746fee0001000000000000018000000000000000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Capitaldistribution : Distribute", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Portfolio : 0", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 31693496425641852120896906194770", - "4 | Per share [2/2] : 0.371252", - "5 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "5 | Amount [2/2] : 0.371252", - "6 | Payment at : 256", - "7 | Expires at : 128", - "8 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Capitaldistribution : Distribute", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Portfolio : 0", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 31693496425641852120896906194770", - "4 | Per share [2/2] : 0.371252", - "5 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "5 | Amount [2/2] : 0.371252", - "6 | Payment at : 256", - "7 | Expires at : 128", - "8 | Chain : Polymesh", - "9 | Nonce : 1", - "10 | Tip : POLYX 5552342.355555", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 941, - "name": "Capitaldistribution_Claim", - "blob": "1b015449434b45522d31323341416fec2100d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Capitaldistribution : Claim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Capitaldistribution : Claim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 942, - "name": "Capitaldistribution_Claim", - "blob": "1b015449434b45522d31323341416fec2100d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Capitaldistribution : Claim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Capitaldistribution : Claim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 943, - "name": "Capitaldistribution_Claim", - "blob": "1b015449434b45522d31323341416fec2100d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Capitaldistribution : Claim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Capitaldistribution : Claim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 944, - "name": "Capitaldistribution_Claim", - "blob": "1b015449434b45522d31323341416fec2100d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Capitaldistribution : Claim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Capitaldistribution : Claim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 945, - "name": "Capitaldistribution_Claim", - "blob": "1b015449434b45522d31323341416fec2100d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Capitaldistribution : Claim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Capitaldistribution : Claim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 946, - "name": "Capitaldistribution_Push_benefit", - "blob": "1b025449434b45522d31323341416fec210031c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Capitaldistribution : Push benefit", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Holder [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Holder [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Capitaldistribution : Push benefit", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Holder [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Holder [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 947, - "name": "Capitaldistribution_Push_benefit", - "blob": "1b025449434b45522d31323341416fec210031c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Capitaldistribution : Push benefit", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Holder [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Holder [2/2] : 258ab3f4314e37a4eb089601ec" - ], - "output_expert": [ - "0 | Capitaldistribution : Push benefit", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Holder [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Holder [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 948, - "name": "Capitaldistribution_Push_benefit", - "blob": "1b025449434b45522d31323341416fec210031c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Capitaldistribution : Push benefit", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Holder [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Holder [2/2] : 258ab3f4314e37a4eb089601ec" - ], - "output_expert": [ - "0 | Capitaldistribution : Push benefit", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Holder [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Holder [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 949, - "name": "Capitaldistribution_Push_benefit", - "blob": "1b025449434b45522d31323341416fec210031c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Capitaldistribution : Push benefit", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Holder [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Holder [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Capitaldistribution : Push benefit", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Holder [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Holder [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 950, - "name": "Capitaldistribution_Push_benefit", - "blob": "1b025449434b45522d31323341416fec210031c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Capitaldistribution : Push benefit", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Holder [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Holder [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Capitaldistribution : Push benefit", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Holder [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Holder [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 951, - "name": "Capitaldistribution_Reclaim", - "blob": "1b035449434b45522d31323341416fec2100d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Capitaldistribution : Reclaim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Capitaldistribution : Reclaim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 952, - "name": "Capitaldistribution_Reclaim", - "blob": "1b035449434b45522d31323341416fec2100d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Capitaldistribution : Reclaim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215" - ], - "output_expert": [ - "0 | Capitaldistribution : Reclaim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 953, - "name": "Capitaldistribution_Reclaim", - "blob": "1b035449434b45522d31323341416fec2100d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Capitaldistribution : Reclaim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Capitaldistribution : Reclaim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 954, - "name": "Capitaldistribution_Reclaim", - "blob": "1b035449434b45522d31323341416fec2100d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Capitaldistribution : Reclaim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Capitaldistribution : Reclaim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 955, - "name": "Capitaldistribution_Reclaim", - "blob": "1b035449434b45522d31323341416fec2100d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Capitaldistribution : Reclaim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215" - ], - "output_expert": [ - "0 | Capitaldistribution : Reclaim", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 956, - "name": "Capitaldistribution_Remove_distribution", - "blob": "1b045449434b45522d31323341416fec2100d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Capitaldistribution : Remove distribution", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Capitaldistribution : Remove distribution", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 957, - "name": "Capitaldistribution_Remove_distribution", - "blob": "1b045449434b45522d31323341416fec2100d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Capitaldistribution : Remove distribution", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Capitaldistribution : Remove distribution", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 958, - "name": "Capitaldistribution_Remove_distribution", - "blob": "1b045449434b45522d31323341416fec2100d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Capitaldistribution : Remove distribution", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Capitaldistribution : Remove distribution", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 959, - "name": "Capitaldistribution_Remove_distribution", - "blob": "1b045449434b45522d31323341416fec2100d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Capitaldistribution : Remove distribution", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Capitaldistribution : Remove distribution", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 960, - "name": "Capitaldistribution_Remove_distribution", - "blob": "1b045449434b45522d31323341416fec2100d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Capitaldistribution : Remove distribution", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Capitaldistribution : Remove distribution", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 961, - "name": "Checkpoint_Create_checkpoint", - "blob": "1c005449434b45522d3132333435d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Checkpoint : Create checkpoint", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Checkpoint : Create checkpoint", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 962, - "name": "Checkpoint_Create_checkpoint", - "blob": "1c005449434b45522d3132333435d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Checkpoint : Create checkpoint", - "1 | Ticker : TICKER-12345", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Checkpoint : Create checkpoint", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 963, - "name": "Checkpoint_Create_checkpoint", - "blob": "1c005449434b45522d3132333435d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Checkpoint : Create checkpoint", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Checkpoint : Create checkpoint", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 964, - "name": "Checkpoint_Create_checkpoint", - "blob": "1c005449434b45522d3132333435d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Checkpoint : Create checkpoint", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Checkpoint : Create checkpoint", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 965, - "name": "Checkpoint_Create_checkpoint", - "blob": "1c005449434b45522d3132333435d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Checkpoint : Create checkpoint", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Checkpoint : Create checkpoint", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 966, - "name": "Checkpoint_Set_schedules_max_complexity", - "blob": "1c012309000000000000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Checkpoint : Set schedules max complexity", - "1 | Max complexity : 2339", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Checkpoint : Set schedules max complexity", - "1 | Max complexity : 2339", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 967, - "name": "Checkpoint_Set_schedules_max_complexity", - "blob": "1c010000000000000000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Checkpoint : Set schedules max complexity", - "1 | Max complexity : 0", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Checkpoint : Set schedules max complexity", - "1 | Max complexity : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 968, - "name": "Checkpoint_Set_schedules_max_complexity", - "blob": "1c016400000000000000d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Checkpoint : Set schedules max complexity", - "1 | Max complexity : 100", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Checkpoint : Set schedules max complexity", - "1 | Max complexity : 100", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 969, - "name": "Checkpoint_Set_schedules_max_complexity", - "blob": "1c010000000000000000d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Checkpoint : Set schedules max complexity", - "1 | Max complexity : 0", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Checkpoint : Set schedules max complexity", - "1 | Max complexity : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 970, - "name": "Checkpoint_Set_schedules_max_complexity", - "blob": "1c010100000000000000d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Checkpoint : Set schedules max complexity", - "1 | Max complexity : 1", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Checkpoint : Set schedules max complexity", - "1 | Max complexity : 1", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 971, - "name": "Checkpoint_Create_schedule", - "blob": "1c025449434b45522d31323334350cbd9140ad859401729e4df68d68a632996844d98011dbc8a1d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Checkpoint : Create schedule", - "1 | Ticker : TICKER-12345", - "2 | Schedule [1/3] : 8215010497158746557", - "2 | Schedule [2/3] : 11039068604627045790", - "2 | Schedule [3/3] : 11657808503671178344" - ], - "output_expert": [ - "0 | Checkpoint : Create schedule", - "1 | Ticker : TICKER-12345", - "2 | Schedule [1/3] : 8215010497158746557", - "2 | Schedule [2/3] : 11039068604627045790", - "2 | Schedule [3/3] : 11657808503671178344", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 972, - "name": "Checkpoint_Create_schedule", - "blob": "1c025449434b45522d31323334350cbd9140ad859401729e4df68d68a632996844d98011dbc8a1d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Checkpoint : Create schedule", - "1 | Ticker : TICKER-12345", - "2 | Schedule [1/3] : 8215010497158746557", - "2 | Schedule [2/3] : 11039068604627045790", - "2 | Schedule [3/3] : 11657808503671178344" - ], - "output_expert": [ - "0 | Checkpoint : Create schedule", - "1 | Ticker : TICKER-12345", - "2 | Schedule [1/3] : 8215010497158746557", - "2 | Schedule [2/3] : 11039068604627045790", - "2 | Schedule [3/3] : 11657808503671178344", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 973, - "name": "Checkpoint_Create_schedule", - "blob": "1c025449434b45522d31323334350424c3d378ed90e92cd503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Checkpoint : Create schedule", - "1 | Ticker : TICKER-12345", - "2 | Schedule : 3236277156851204900", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Checkpoint : Create schedule", - "1 | Ticker : TICKER-12345", - "2 | Schedule : 3236277156851204900", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 974, - "name": "Checkpoint_Create_schedule", - "blob": "1c025449434b45522d31323334350cbd9140ad859401729e4df68d68a632996844d98011dbc8a1d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Checkpoint : Create schedule", - "1 | Ticker : TICKER-12345", - "2 | Schedule [1/3] : 8215010497158746557", - "2 | Schedule [2/3] : 11039068604627045790", - "2 | Schedule [3/3] : 11657808503671178344" - ], - "output_expert": [ - "0 | Checkpoint : Create schedule", - "1 | Ticker : TICKER-12345", - "2 | Schedule [1/3] : 8215010497158746557", - "2 | Schedule [2/3] : 11039068604627045790", - "2 | Schedule [3/3] : 11657808503671178344", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 975, - "name": "Checkpoint_Create_schedule", - "blob": "1c025449434b45522d31323334350424c3d378ed90e92cd5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Checkpoint : Create schedule", - "1 | Ticker : TICKER-12345", - "2 | Schedule : 3236277156851204900", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Checkpoint : Create schedule", - "1 | Ticker : TICKER-12345", - "2 | Schedule : 3236277156851204900", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 976, - "name": "Checkpoint_Remove_schedule", - "blob": "1c035449434b45522d3132333435e793190000000000d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Checkpoint : Remove schedule", - "1 | Ticker : TICKER-12345", - "2 | Id : 1676263" - ], - "output_expert": [ - "0 | Checkpoint : Remove schedule", - "1 | Ticker : TICKER-12345", - "2 | Id : 1676263", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 977, - "name": "Checkpoint_Remove_schedule", - "blob": "1c035449434b45522d3132333435e793190000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Checkpoint : Remove schedule", - "1 | Ticker : TICKER-12345", - "2 | Id : 1676263", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Checkpoint : Remove schedule", - "1 | Ticker : TICKER-12345", - "2 | Id : 1676263", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 978, - "name": "Checkpoint_Remove_schedule", - "blob": "1c035449434b45522d3132333435e793190000000000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Checkpoint : Remove schedule", - "1 | Ticker : TICKER-12345", - "2 | Id : 1676263" - ], - "output_expert": [ - "0 | Checkpoint : Remove schedule", - "1 | Ticker : TICKER-12345", - "2 | Id : 1676263", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 979, - "name": "Checkpoint_Remove_schedule", - "blob": "1c035449434b45522d31323334351c42030000000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Checkpoint : Remove schedule", - "1 | Ticker : TICKER-12345", - "2 | Id : 213532", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Checkpoint : Remove schedule", - "1 | Ticker : TICKER-12345", - "2 | Id : 213532", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 980, - "name": "Checkpoint_Remove_schedule", - "blob": "1c035449434b45522d3132333435150e020000000000d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Checkpoint : Remove schedule", - "1 | Ticker : TICKER-12345", - "2 | Id : 134677", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Checkpoint : Remove schedule", - "1 | Ticker : TICKER-12345", - "2 | Id : 134677", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 981, - "name": "Compliancemanager_Add_compliance_requirement", - "blob": "1d005449434b45522d31323334350404000000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Add compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Sender conditions : ExternalAgent", - "3 | Receiver conditions : ", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Compliancemanager : Add compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Sender conditions : ExternalAgent", - "3 | Receiver conditions : ", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 982, - "name": "Compliancemanager_Add_compliance_requirement", - "blob": "1d005449434b45522d31323334350404000004040000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Add compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Sender conditions : ExternalAgent", - "3 | Receiver conditions : ExternalAgent", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Compliancemanager : Add compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Sender conditions : ExternalAgent", - "3 | Receiver conditions : ExternalAgent", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 983, - "name": "Compliancemanager_Add_compliance_requirement", - "blob": "1d005449434b45522d313233343500040000015449434b45522d323430383208a54d868702b1fdfdf847c03d1f11ecc40e10ea1b790e238036046f0816c865fc00c50e87a4a63ad6cf2476e1d69f1c23f0c77deed0183f5a2c18032fb84d436b4300d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Add compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Sender conditions : ", - "3 | Receiver conditions [1/8] : Accredited", - "3 | Receiver conditions [2/8] : TICKER-24082", - "3 | Receiver conditions [3/8] : a54d868702b1fdfdf847c03d1f11ecc40e10ea", - "3 | Receiver conditions [4/8] : 1b790e238036046f0816c865fc", - "3 | Receiver conditions [5/8] : Any", - "3 | Receiver conditions [6/8] : c50e87a4a63ad6cf2476e1d69f1c23f0c77dee", - "3 | Receiver conditions [7/8] : d0183f5a2c18032fb84d436b43", - "3 | Receiver conditions [8/8] : Any" - ], - "output_expert": [ - "0 | Compliancemanager : Add compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Sender conditions : ", - "3 | Receiver conditions [1/8] : Accredited", - "3 | Receiver conditions [2/8] : TICKER-24082", - "3 | Receiver conditions [3/8] : a54d868702b1fdfdf847c03d1f11ecc40e10ea", - "3 | Receiver conditions [4/8] : 1b790e238036046f0816c865fc", - "3 | Receiver conditions [5/8] : Any", - "3 | Receiver conditions [6/8] : c50e87a4a63ad6cf2476e1d69f1c23f0c77dee", - "3 | Receiver conditions [7/8] : d0183f5a2c18032fb84d436b43", - "3 | Receiver conditions [8/8] : Any", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 984, - "name": "Compliancemanager_Add_compliance_requirement", - "blob": "1d005449434b45522d3132333435040000015449434b45522d323430383208a54d868702b1fdfdf847c03d1f11ecc40e10ea1b790e238036046f0816c865fc00c50e87a4a63ad6cf2476e1d69f1c23f0c77deed0183f5a2c18032fb84d436b430004040000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Add compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Sender conditions [1/8] : Accredited", - "2 | Sender conditions [2/8] : TICKER-24082", - "2 | Sender conditions [3/8] : a54d868702b1fdfdf847c03d1f11ecc40e10ea", - "2 | Sender conditions [4/8] : 1b790e238036046f0816c865fc", - "2 | Sender conditions [5/8] : Any", - "2 | Sender conditions [6/8] : c50e87a4a63ad6cf2476e1d69f1c23f0c77dee", - "2 | Sender conditions [7/8] : d0183f5a2c18032fb84d436b43", - "2 | Sender conditions [8/8] : Any", - "3 | Receiver conditions : ExternalAgent", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Compliancemanager : Add compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Sender conditions [1/8] : Accredited", - "2 | Sender conditions [2/8] : TICKER-24082", - "2 | Sender conditions [3/8] : a54d868702b1fdfdf847c03d1f11ecc40e10ea", - "2 | Sender conditions [4/8] : 1b790e238036046f0816c865fc", - "2 | Sender conditions [5/8] : Any", - "2 | Sender conditions [6/8] : c50e87a4a63ad6cf2476e1d69f1c23f0c77dee", - "2 | Sender conditions [7/8] : d0183f5a2c18032fb84d436b43", - "2 | Sender conditions [8/8] : Any", - "3 | Receiver conditions : ExternalAgent", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 985, - "name": "Compliancemanager_Add_compliance_requirement", - "blob": "1d005449434b45522d31323334350404000004040000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Add compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Sender conditions : ExternalAgent", - "3 | Receiver conditions : ExternalAgent", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Compliancemanager : Add compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Sender conditions : ExternalAgent", - "3 | Receiver conditions : ExternalAgent", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 986, - "name": "Compliancemanager_Remove_compliance_requirement", - "blob": "1d015449434b45522d3132333435d3040000d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Remove compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Id : 1235", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Compliancemanager : Remove compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Id : 1235", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 987, - "name": "Compliancemanager_Remove_compliance_requirement", - "blob": "1d015449434b45522d3132333435f7010000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Remove compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Id : 503", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Compliancemanager : Remove compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Id : 503", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 988, - "name": "Compliancemanager_Remove_compliance_requirement", - "blob": "1d015449434b45522d3132333435f7010000d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Remove compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Id : 503", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Compliancemanager : Remove compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Id : 503", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 989, - "name": "Compliancemanager_Remove_compliance_requirement", - "blob": "1d015449434b45522d31323334359d1c0000d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Remove compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Id : 7325", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Compliancemanager : Remove compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Id : 7325", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 990, - "name": "Compliancemanager_Remove_compliance_requirement", - "blob": "1d015449434b45522d31323334359d1c0000d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Remove compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Id : 7325", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Compliancemanager : Remove compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | Id : 7325", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 991, - "name": "Compliancemanager_Replace_asset_compliance", - "blob": "1d025449434b45522d313233343500d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Replace asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Asset compliance : ", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Compliancemanager : Replace asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Asset compliance : ", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 992, - "name": "Compliancemanager_Replace_asset_compliance", - "blob": "1d025449434b45522d313233343504040000015449434b45522d333435363708cb841e7a7993cca416918b8e12484964ee3dea2156786935aeffee62c56f10560029a969fd12288ecfa11a9a03caf9d923d2dda7022b619754977ffa6bbcc71d5c000000000000d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Replace asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Asset compliance [1/10] : Accredited", - "2 | Asset compliance [2/10] : TICKER-34567", - "2 | Asset compliance [3/10] : cb841e7a7993cca416918b8e12484964ee3dea", - "2 | Asset compliance [4/10] : 2156786935aeffee62c56f1056", - "2 | Asset compliance [5/10] : Any", - "2 | Asset compliance [6/10] : 29a969fd12288ecfa11a9a03caf9d923d2dda7", - "2 | Asset compliance [7/10] : 022b619754977ffa6bbcc71d5c", - "2 | Asset compliance [8/10] : Any", - "2 | Asset compliance [9/10] : ", - "2 | Asset compliance [10/10] : 0", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Compliancemanager : Replace asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Asset compliance [1/10] : Accredited", - "2 | Asset compliance [2/10] : TICKER-34567", - "2 | Asset compliance [3/10] : cb841e7a7993cca416918b8e12484964ee3dea", - "2 | Asset compliance [4/10] : 2156786935aeffee62c56f1056", - "2 | Asset compliance [5/10] : Any", - "2 | Asset compliance [6/10] : 29a969fd12288ecfa11a9a03caf9d923d2dda7", - "2 | Asset compliance [7/10] : 022b619754977ffa6bbcc71d5c", - "2 | Asset compliance [8/10] : Any", - "2 | Asset compliance [9/10] : ", - "2 | Asset compliance [10/10] : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 993, - "name": "Compliancemanager_Replace_asset_compliance", - "blob": "1d025449434b45522d313233343504040000015449434b45522d333435363708cb841e7a7993cca416918b8e12484964ee3dea2156786935aeffee62c56f10560029a969fd12288ecfa11a9a03caf9d923d2dda7022b619754977ffa6bbcc71d5c000000000000d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Replace asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Asset compliance [1/10] : Accredited", - "2 | Asset compliance [2/10] : TICKER-34567", - "2 | Asset compliance [3/10] : cb841e7a7993cca416918b8e12484964ee3dea", - "2 | Asset compliance [4/10] : 2156786935aeffee62c56f1056", - "2 | Asset compliance [5/10] : Any", - "2 | Asset compliance [6/10] : 29a969fd12288ecfa11a9a03caf9d923d2dda7", - "2 | Asset compliance [7/10] : 022b619754977ffa6bbcc71d5c", - "2 | Asset compliance [8/10] : Any", - "2 | Asset compliance [9/10] : ", - "2 | Asset compliance [10/10] : 0", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Compliancemanager : Replace asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Asset compliance [1/10] : Accredited", - "2 | Asset compliance [2/10] : TICKER-34567", - "2 | Asset compliance [3/10] : cb841e7a7993cca416918b8e12484964ee3dea", - "2 | Asset compliance [4/10] : 2156786935aeffee62c56f1056", - "2 | Asset compliance [5/10] : Any", - "2 | Asset compliance [6/10] : 29a969fd12288ecfa11a9a03caf9d923d2dda7", - "2 | Asset compliance [7/10] : 022b619754977ffa6bbcc71d5c", - "2 | Asset compliance [8/10] : Any", - "2 | Asset compliance [9/10] : ", - "2 | Asset compliance [10/10] : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 994, - "name": "Compliancemanager_Replace_asset_compliance", - "blob": "1d025449434b45522d313233343504040000015449434b45522d333435363708cb841e7a7993cca416918b8e12484964ee3dea2156786935aeffee62c56f10560029a969fd12288ecfa11a9a03caf9d923d2dda7022b619754977ffa6bbcc71d5c000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Replace asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Asset compliance [1/10] : Accredited", - "2 | Asset compliance [2/10] : TICKER-34567", - "2 | Asset compliance [3/10] : cb841e7a7993cca416918b8e12484964ee3dea", - "2 | Asset compliance [4/10] : 2156786935aeffee62c56f1056", - "2 | Asset compliance [5/10] : Any", - "2 | Asset compliance [6/10] : 29a969fd12288ecfa11a9a03caf9d923d2dda7", - "2 | Asset compliance [7/10] : 022b619754977ffa6bbcc71d5c", - "2 | Asset compliance [8/10] : Any", - "2 | Asset compliance [9/10] : ", - "2 | Asset compliance [10/10] : 0", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Compliancemanager : Replace asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Asset compliance [1/10] : Accredited", - "2 | Asset compliance [2/10] : TICKER-34567", - "2 | Asset compliance [3/10] : cb841e7a7993cca416918b8e12484964ee3dea", - "2 | Asset compliance [4/10] : 2156786935aeffee62c56f1056", - "2 | Asset compliance [5/10] : Any", - "2 | Asset compliance [6/10] : 29a969fd12288ecfa11a9a03caf9d923d2dda7", - "2 | Asset compliance [7/10] : 022b619754977ffa6bbcc71d5c", - "2 | Asset compliance [8/10] : Any", - "2 | Asset compliance [9/10] : ", - "2 | Asset compliance [10/10] : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 995, - "name": "Compliancemanager_Replace_asset_compliance", - "blob": "1d025449434b45522d313233343504040000015449434b45522d333435363708cb841e7a7993cca416918b8e12484964ee3dea2156786935aeffee62c56f10560029a969fd12288ecfa11a9a03caf9d923d2dda7022b619754977ffa6bbcc71d5c000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Replace asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Asset compliance [1/10] : Accredited", - "2 | Asset compliance [2/10] : TICKER-34567", - "2 | Asset compliance [3/10] : cb841e7a7993cca416918b8e12484964ee3dea", - "2 | Asset compliance [4/10] : 2156786935aeffee62c56f1056", - "2 | Asset compliance [5/10] : Any", - "2 | Asset compliance [6/10] : 29a969fd12288ecfa11a9a03caf9d923d2dda7", - "2 | Asset compliance [7/10] : 022b619754977ffa6bbcc71d5c", - "2 | Asset compliance [8/10] : Any", - "2 | Asset compliance [9/10] : ", - "2 | Asset compliance [10/10] : 0", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Compliancemanager : Replace asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Asset compliance [1/10] : Accredited", - "2 | Asset compliance [2/10] : TICKER-34567", - "2 | Asset compliance [3/10] : cb841e7a7993cca416918b8e12484964ee3dea", - "2 | Asset compliance [4/10] : 2156786935aeffee62c56f1056", - "2 | Asset compliance [5/10] : Any", - "2 | Asset compliance [6/10] : 29a969fd12288ecfa11a9a03caf9d923d2dda7", - "2 | Asset compliance [7/10] : 022b619754977ffa6bbcc71d5c", - "2 | Asset compliance [8/10] : Any", - "2 | Asset compliance [9/10] : ", - "2 | Asset compliance [10/10] : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 996, - "name": "Compliancemanager_Reset_asset_compliance", - "blob": "1d035449434b45522d3132333435d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Reset asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Compliancemanager : Reset asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 997, - "name": "Compliancemanager_Reset_asset_compliance", - "blob": "1d035449434b45522d3132333435d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Reset asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Compliancemanager : Reset asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 998, - "name": "Compliancemanager_Reset_asset_compliance", - "blob": "1d035449434b45522d3132333435d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Reset asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Compliancemanager : Reset asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 999, - "name": "Compliancemanager_Reset_asset_compliance", - "blob": "1d035449434b45522d3132333435d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Reset asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Compliancemanager : Reset asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1000, - "name": "Compliancemanager_Reset_asset_compliance", - "blob": "1d035449434b45522d3132333435d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Reset asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Compliancemanager : Reset asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1001, - "name": "Compliancemanager_Pause_asset_compliance", - "blob": "1d045449434b45522d3132333435d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Pause asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Compliancemanager : Pause asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1002, - "name": "Compliancemanager_Pause_asset_compliance", - "blob": "1d045449434b45522d3132333435d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Pause asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Compliancemanager : Pause asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1003, - "name": "Compliancemanager_Pause_asset_compliance", - "blob": "1d045449434b45522d3132333435d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Pause asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Compliancemanager : Pause asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1004, - "name": "Compliancemanager_Pause_asset_compliance", - "blob": "1d045449434b45522d3132333435d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Pause asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Compliancemanager : Pause asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1005, - "name": "Compliancemanager_Pause_asset_compliance", - "blob": "1d045449434b45522d3132333435d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Pause asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Compliancemanager : Pause asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1006, - "name": "Compliancemanager_Resume_asset_compliance", - "blob": "1d055449434b45522d3132333435d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Resume asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Compliancemanager : Resume asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1007, - "name": "Compliancemanager_Resume_asset_compliance", - "blob": "1d055449434b45522d3132333435d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Resume asset compliance", - "1 | Ticker : TICKER-12345" - ], - "output_expert": [ - "0 | Compliancemanager : Resume asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1008, - "name": "Compliancemanager_Resume_asset_compliance", - "blob": "1d055449434b45522d3132333435d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Resume asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Compliancemanager : Resume asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1009, - "name": "Compliancemanager_Resume_asset_compliance", - "blob": "1d055449434b45522d3132333435d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Resume asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Compliancemanager : Resume asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1010, - "name": "Compliancemanager_Resume_asset_compliance", - "blob": "1d055449434b45522d3132333435d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Resume asset compliance", - "1 | Ticker : TICKER-12345" - ], - "output_expert": [ - "0 | Compliancemanager : Resume asset compliance", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1011, - "name": "Compliancemanager_Add_default_trusted_claim_issuer", - "blob": "1d065449434b45522d313233343571d3d32b15591b31a466d677282ddcdc2b40e7967a703080c7a06a52e218fb5e00d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Add default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/3] : 71d3d32b15591b31a466d677282ddcdc2b40e7", - "2 | Issuer [2/3] : 967a703080c7a06a52e218fb5e", - "2 | Issuer [3/3] : Any" - ], - "output_expert": [ - "0 | Compliancemanager : Add default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/3] : 71d3d32b15591b31a466d677282ddcdc2b40e7", - "2 | Issuer [2/3] : 967a703080c7a06a52e218fb5e", - "2 | Issuer [3/3] : Any", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1012, - "name": "Compliancemanager_Add_default_trusted_claim_issuer", - "blob": "1d065449434b45522d313233343571d3d32b15591b31a466d677282ddcdc2b40e7967a703080c7a06a52e218fb5e00d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Add default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/3] : 71d3d32b15591b31a466d677282ddcdc2b40e7", - "2 | Issuer [2/3] : 967a703080c7a06a52e218fb5e", - "2 | Issuer [3/3] : Any", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Compliancemanager : Add default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/3] : 71d3d32b15591b31a466d677282ddcdc2b40e7", - "2 | Issuer [2/3] : 967a703080c7a06a52e218fb5e", - "2 | Issuer [3/3] : Any", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1013, - "name": "Compliancemanager_Add_default_trusted_claim_issuer", - "blob": "1d065449434b45522d313233343571d3d32b15591b31a466d677282ddcdc2b40e7967a703080c7a06a52e218fb5e00d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Add default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/3] : 71d3d32b15591b31a466d677282ddcdc2b40e7", - "2 | Issuer [2/3] : 967a703080c7a06a52e218fb5e", - "2 | Issuer [3/3] : Any", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Compliancemanager : Add default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/3] : 71d3d32b15591b31a466d677282ddcdc2b40e7", - "2 | Issuer [2/3] : 967a703080c7a06a52e218fb5e", - "2 | Issuer [3/3] : Any", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1014, - "name": "Compliancemanager_Add_default_trusted_claim_issuer", - "blob": "1d065449434b45522d313233343571d3d32b15591b31a466d677282ddcdc2b40e7967a703080c7a06a52e218fb5e00d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Add default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/3] : 71d3d32b15591b31a466d677282ddcdc2b40e7", - "2 | Issuer [2/3] : 967a703080c7a06a52e218fb5e", - "2 | Issuer [3/3] : Any", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Compliancemanager : Add default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/3] : 71d3d32b15591b31a466d677282ddcdc2b40e7", - "2 | Issuer [2/3] : 967a703080c7a06a52e218fb5e", - "2 | Issuer [3/3] : Any", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1015, - "name": "Compliancemanager_Add_default_trusted_claim_issuer", - "blob": "1d065449434b45522d313233343571d3d32b15591b31a466d677282ddcdc2b40e7967a703080c7a06a52e218fb5e00d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Add default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/3] : 71d3d32b15591b31a466d677282ddcdc2b40e7", - "2 | Issuer [2/3] : 967a703080c7a06a52e218fb5e", - "2 | Issuer [3/3] : Any", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Compliancemanager : Add default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/3] : 71d3d32b15591b31a466d677282ddcdc2b40e7", - "2 | Issuer [2/3] : 967a703080c7a06a52e218fb5e", - "2 | Issuer [3/3] : Any", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1016, - "name": "Compliancemanager_Remove_default_trusted_claim_issuer", - "blob": "1d075449434b45522d313233343531c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Remove default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Issuer [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Compliancemanager : Remove default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Issuer [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1017, - "name": "Compliancemanager_Remove_default_trusted_claim_issuer", - "blob": "1d075449434b45522d313233343531c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Remove default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Issuer [2/2] : 258ab3f4314e37a4eb089601ec" - ], - "output_expert": [ - "0 | Compliancemanager : Remove default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Issuer [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1018, - "name": "Compliancemanager_Remove_default_trusted_claim_issuer", - "blob": "1d075449434b45522d313233343531c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Remove default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Issuer [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Compliancemanager : Remove default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Issuer [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1019, - "name": "Compliancemanager_Remove_default_trusted_claim_issuer", - "blob": "1d075449434b45522d313233343531c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Remove default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Issuer [2/2] : 258ab3f4314e37a4eb089601ec" - ], - "output_expert": [ - "0 | Compliancemanager : Remove default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Issuer [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1020, - "name": "Compliancemanager_Remove_default_trusted_claim_issuer", - "blob": "1d075449434b45522d313233343531c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Remove default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Issuer [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Compliancemanager : Remove default trusted claim issuer", - "1 | Ticker : TICKER-12345", - "2 | Issuer [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Issuer [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1021, - "name": "Compliancemanager_Change_compliance_requirement", - "blob": "1d085449434b45522d3132333435040000015449434b45522d3334353637087c85633d25aa273b5c48da6fc2ee96c207c597390e5138281abc9c8e8bd8e47f00f2ab6069262fff08fd1a7a952f223c109eadd6335d8170be74fe624672fa2d72000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Change compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | New req [1/10] : Accredited", - "2 | New req [2/10] : TICKER-34567", - "2 | New req [3/10] : 7c85633d25aa273b5c48da6fc2ee96c207c597", - "2 | New req [4/10] : 390e5138281abc9c8e8bd8e47f", - "2 | New req [5/10] : Any", - "2 | New req [6/10] : f2ab6069262fff08fd1a7a952f223c109eadd6", - "2 | New req [7/10] : 335d8170be74fe624672fa2d72", - "2 | New req [8/10] : Any", - "2 | New req [9/10] : ", - "2 | New req [10/10] : 0", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Compliancemanager : Change compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | New req [1/10] : Accredited", - "2 | New req [2/10] : TICKER-34567", - "2 | New req [3/10] : 7c85633d25aa273b5c48da6fc2ee96c207c597", - "2 | New req [4/10] : 390e5138281abc9c8e8bd8e47f", - "2 | New req [5/10] : Any", - "2 | New req [6/10] : f2ab6069262fff08fd1a7a952f223c109eadd6", - "2 | New req [7/10] : 335d8170be74fe624672fa2d72", - "2 | New req [8/10] : Any", - "2 | New req [9/10] : ", - "2 | New req [10/10] : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1022, - "name": "Compliancemanager_Change_compliance_requirement", - "blob": "1d085449434b45522d3132333435040000015449434b45522d3334353637087c85633d25aa273b5c48da6fc2ee96c207c597390e5138281abc9c8e8bd8e47f00f2ab6069262fff08fd1a7a952f223c109eadd6335d8170be74fe624672fa2d72000000000000d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Change compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | New req [1/10] : Accredited", - "2 | New req [2/10] : TICKER-34567", - "2 | New req [3/10] : 7c85633d25aa273b5c48da6fc2ee96c207c597", - "2 | New req [4/10] : 390e5138281abc9c8e8bd8e47f", - "2 | New req [5/10] : Any", - "2 | New req [6/10] : f2ab6069262fff08fd1a7a952f223c109eadd6", - "2 | New req [7/10] : 335d8170be74fe624672fa2d72", - "2 | New req [8/10] : Any", - "2 | New req [9/10] : ", - "2 | New req [10/10] : 0", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Compliancemanager : Change compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | New req [1/10] : Accredited", - "2 | New req [2/10] : TICKER-34567", - "2 | New req [3/10] : 7c85633d25aa273b5c48da6fc2ee96c207c597", - "2 | New req [4/10] : 390e5138281abc9c8e8bd8e47f", - "2 | New req [5/10] : Any", - "2 | New req [6/10] : f2ab6069262fff08fd1a7a952f223c109eadd6", - "2 | New req [7/10] : 335d8170be74fe624672fa2d72", - "2 | New req [8/10] : Any", - "2 | New req [9/10] : ", - "2 | New req [10/10] : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1023, - "name": "Compliancemanager_Change_compliance_requirement", - "blob": "1d085449434b45522d3132333435040000015449434b45522d3334353637087c85633d25aa273b5c48da6fc2ee96c207c597390e5138281abc9c8e8bd8e47f00f2ab6069262fff08fd1a7a952f223c109eadd6335d8170be74fe624672fa2d72000000000000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Change compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | New req [1/10] : Accredited", - "2 | New req [2/10] : TICKER-34567", - "2 | New req [3/10] : 7c85633d25aa273b5c48da6fc2ee96c207c597", - "2 | New req [4/10] : 390e5138281abc9c8e8bd8e47f", - "2 | New req [5/10] : Any", - "2 | New req [6/10] : f2ab6069262fff08fd1a7a952f223c109eadd6", - "2 | New req [7/10] : 335d8170be74fe624672fa2d72", - "2 | New req [8/10] : Any", - "2 | New req [9/10] : ", - "2 | New req [10/10] : 0", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Compliancemanager : Change compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | New req [1/10] : Accredited", - "2 | New req [2/10] : TICKER-34567", - "2 | New req [3/10] : 7c85633d25aa273b5c48da6fc2ee96c207c597", - "2 | New req [4/10] : 390e5138281abc9c8e8bd8e47f", - "2 | New req [5/10] : Any", - "2 | New req [6/10] : f2ab6069262fff08fd1a7a952f223c109eadd6", - "2 | New req [7/10] : 335d8170be74fe624672fa2d72", - "2 | New req [8/10] : Any", - "2 | New req [9/10] : ", - "2 | New req [10/10] : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1024, - "name": "Compliancemanager_Change_compliance_requirement", - "blob": "1d085449434b45522d3132333435040000015449434b45522d3334353637087c85633d25aa273b5c48da6fc2ee96c207c597390e5138281abc9c8e8bd8e47f00f2ab6069262fff08fd1a7a952f223c109eadd6335d8170be74fe624672fa2d72000000000000d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Change compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | New req [1/10] : Accredited", - "2 | New req [2/10] : TICKER-34567", - "2 | New req [3/10] : 7c85633d25aa273b5c48da6fc2ee96c207c597", - "2 | New req [4/10] : 390e5138281abc9c8e8bd8e47f", - "2 | New req [5/10] : Any", - "2 | New req [6/10] : f2ab6069262fff08fd1a7a952f223c109eadd6", - "2 | New req [7/10] : 335d8170be74fe624672fa2d72", - "2 | New req [8/10] : Any", - "2 | New req [9/10] : ", - "2 | New req [10/10] : 0", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Compliancemanager : Change compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | New req [1/10] : Accredited", - "2 | New req [2/10] : TICKER-34567", - "2 | New req [3/10] : 7c85633d25aa273b5c48da6fc2ee96c207c597", - "2 | New req [4/10] : 390e5138281abc9c8e8bd8e47f", - "2 | New req [5/10] : Any", - "2 | New req [6/10] : f2ab6069262fff08fd1a7a952f223c109eadd6", - "2 | New req [7/10] : 335d8170be74fe624672fa2d72", - "2 | New req [8/10] : Any", - "2 | New req [9/10] : ", - "2 | New req [10/10] : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1025, - "name": "Compliancemanager_Change_compliance_requirement", - "blob": "1d085449434b45522d3132333435040000015449434b45522d3334353637087c85633d25aa273b5c48da6fc2ee96c207c597390e5138281abc9c8e8bd8e47f00f2ab6069262fff08fd1a7a952f223c109eadd6335d8170be74fe624672fa2d72000000000000d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Compliancemanager : Change compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | New req [1/10] : Accredited", - "2 | New req [2/10] : TICKER-34567", - "2 | New req [3/10] : 7c85633d25aa273b5c48da6fc2ee96c207c597", - "2 | New req [4/10] : 390e5138281abc9c8e8bd8e47f", - "2 | New req [5/10] : Any", - "2 | New req [6/10] : f2ab6069262fff08fd1a7a952f223c109eadd6", - "2 | New req [7/10] : 335d8170be74fe624672fa2d72", - "2 | New req [8/10] : Any", - "2 | New req [9/10] : ", - "2 | New req [10/10] : 0", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Compliancemanager : Change compliance requirement", - "1 | Ticker : TICKER-12345", - "2 | New req [1/10] : Accredited", - "2 | New req [2/10] : TICKER-34567", - "2 | New req [3/10] : 7c85633d25aa273b5c48da6fc2ee96c207c597", - "2 | New req [4/10] : 390e5138281abc9c8e8bd8e47f", - "2 | New req [5/10] : Any", - "2 | New req [6/10] : f2ab6069262fff08fd1a7a952f223c109eadd6", - "2 | New req [7/10] : 335d8170be74fe624672fa2d72", - "2 | New req [8/10] : Any", - "2 | New req [9/10] : ", - "2 | New req [10/10] : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1026, - "name": "Corporateaction_Set_max_details_length", - "blob": "1e0000000000d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Set max details length", - "1 | Length : 0", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Corporateaction : Set max details length", - "1 | Length : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1027, - "name": "Corporateaction_Set_max_details_length", - "blob": "1e00f7010000d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Set max details length", - "1 | Length : 503", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Corporateaction : Set max details length", - "1 | Length : 503", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1028, - "name": "Corporateaction_Set_max_details_length", - "blob": "1e0034300000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Set max details length", - "1 | Length : 12340" - ], - "output_expert": [ - "0 | Corporateaction : Set max details length", - "1 | Length : 12340", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1029, - "name": "Corporateaction_Set_max_details_length", - "blob": "1e009d1c0000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Set max details length", - "1 | Length : 7325", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Corporateaction : Set max details length", - "1 | Length : 7325", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1030, - "name": "Corporateaction_Set_max_details_length", - "blob": "1e0000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Set max details length", - "1 | Length : 0", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Corporateaction : Set max details length", - "1 | Length : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1031, - "name": "Corporateaction_Set_default_targets", - "blob": "1e015449434b45522d3132333435042a4d5359367a143c2de0037d012de7b60d5a723b78444912319beeaaa618ea9800d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Set default targets", - "1 | Ticker : TICKER-12345", - "2 | Targets [1/3] : 2a4d5359367a143c2de0037d012de7b60d5a72", - "2 | Targets [2/3] : 3b78444912319beeaaa618ea98", - "2 | Targets [3/3] : Include", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Corporateaction : Set default targets", - "1 | Ticker : TICKER-12345", - "2 | Targets [1/3] : 2a4d5359367a143c2de0037d012de7b60d5a72", - "2 | Targets [2/3] : 3b78444912319beeaaa618ea98", - "2 | Targets [3/3] : Include", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1032, - "name": "Corporateaction_Set_default_targets", - "blob": "1e015449434b45522d313233343504ab55aaaafca88261e1e6ceae3cb2e3cc9689d87f6a7d92f835a7b1a9fcde0ec601d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Set default targets", - "1 | Ticker : TICKER-12345", - "2 | Targets [1/3] : ab55aaaafca88261e1e6ceae3cb2e3cc9689d8", - "2 | Targets [2/3] : 7f6a7d92f835a7b1a9fcde0ec6", - "2 | Targets [3/3] : Exclude", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Corporateaction : Set default targets", - "1 | Ticker : TICKER-12345", - "2 | Targets [1/3] : ab55aaaafca88261e1e6ceae3cb2e3cc9689d8", - "2 | Targets [2/3] : 7f6a7d92f835a7b1a9fcde0ec6", - "2 | Targets [3/3] : Exclude", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1033, - "name": "Corporateaction_Set_default_targets", - "blob": "1e015449434b45522d313233343504ab55aaaafca88261e1e6ceae3cb2e3cc9689d87f6a7d92f835a7b1a9fcde0ec601d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Set default targets", - "1 | Ticker : TICKER-12345", - "2 | Targets [1/3] : ab55aaaafca88261e1e6ceae3cb2e3cc9689d8", - "2 | Targets [2/3] : 7f6a7d92f835a7b1a9fcde0ec6", - "2 | Targets [3/3] : Exclude", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Corporateaction : Set default targets", - "1 | Ticker : TICKER-12345", - "2 | Targets [1/3] : ab55aaaafca88261e1e6ceae3cb2e3cc9689d8", - "2 | Targets [2/3] : 7f6a7d92f835a7b1a9fcde0ec6", - "2 | Targets [3/3] : Exclude", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1034, - "name": "Corporateaction_Set_default_targets", - "blob": "1e015449434b45522d313233343504ab55aaaafca88261e1e6ceae3cb2e3cc9689d87f6a7d92f835a7b1a9fcde0ec601d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Set default targets", - "1 | Ticker : TICKER-12345", - "2 | Targets [1/3] : ab55aaaafca88261e1e6ceae3cb2e3cc9689d8", - "2 | Targets [2/3] : 7f6a7d92f835a7b1a9fcde0ec6", - "2 | Targets [3/3] : Exclude", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Corporateaction : Set default targets", - "1 | Ticker : TICKER-12345", - "2 | Targets [1/3] : ab55aaaafca88261e1e6ceae3cb2e3cc9689d8", - "2 | Targets [2/3] : 7f6a7d92f835a7b1a9fcde0ec6", - "2 | Targets [3/3] : Exclude", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1035, - "name": "Corporateaction_Set_default_targets", - "blob": "1e015449434b45522d313233343504ab55aaaafca88261e1e6ceae3cb2e3cc9689d87f6a7d92f835a7b1a9fcde0ec601d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Set default targets", - "1 | Ticker : TICKER-12345", - "2 | Targets [1/3] : ab55aaaafca88261e1e6ceae3cb2e3cc9689d8", - "2 | Targets [2/3] : 7f6a7d92f835a7b1a9fcde0ec6", - "2 | Targets [3/3] : Exclude", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Corporateaction : Set default targets", - "1 | Ticker : TICKER-12345", - "2 | Targets [1/3] : ab55aaaafca88261e1e6ceae3cb2e3cc9689d8", - "2 | Targets [2/3] : 7f6a7d92f835a7b1a9fcde0ec6", - "2 | Targets [3/3] : Exclude", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1036, - "name": "Corporateaction_Set_default_withholding_tax", - "blob": "1e025449434b45522d313233343500000000d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Set default withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Tax : 0.0000%", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Corporateaction : Set default withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Tax : 0.0000%", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1037, - "name": "Corporateaction_Set_default_withholding_tax", - "blob": "1e025449434b45522d313233343523c2f001d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Set default withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Tax : 3255.5555%", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Corporateaction : Set default withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Tax : 3255.5555%", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1038, - "name": "Corporateaction_Set_default_withholding_tax", - "blob": "1e025449434b45522d313233343523c2f001d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Set default withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Tax : 3255.5555%", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Corporateaction : Set default withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Tax : 3255.5555%", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1039, - "name": "Corporateaction_Set_default_withholding_tax", - "blob": "1e025449434b45522d3132333435400d0300d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Set default withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Tax : 20.0000%", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Corporateaction : Set default withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Tax : 20.0000%", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1040, - "name": "Corporateaction_Set_default_withholding_tax", - "blob": "1e025449434b45522d3132333435400d0300d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Set default withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Tax : 20.0000%" - ], - "output_expert": [ - "0 | Corporateaction : Set default withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Tax : 20.0000%", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1041, - "name": "Corporateaction_Set_did_withholding_tax", - "blob": "1e035449434b45522d313233343531c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec01400d0300d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Set did withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Taxed did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Taxed did [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tax : 20.0000%" - ], - "output_expert": [ - "0 | Corporateaction : Set did withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Taxed did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Taxed did [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tax : 20.0000%", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1042, - "name": "Corporateaction_Set_did_withholding_tax", - "blob": "1e035449434b45522d313233343531c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec01400d0300d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Set did withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Taxed did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Taxed did [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tax : 20.0000%", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Corporateaction : Set did withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Taxed did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Taxed did [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tax : 20.0000%", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1043, - "name": "Corporateaction_Set_did_withholding_tax", - "blob": "1e035449434b45522d313233343531c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec01400d0300d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Set did withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Taxed did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Taxed did [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tax : 20.0000%", - "4 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Corporateaction : Set did withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Taxed did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Taxed did [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tax : 20.0000%", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1044, - "name": "Corporateaction_Set_did_withholding_tax", - "blob": "1e035449434b45522d313233343531c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec0123c2f001d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Set did withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Taxed did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Taxed did [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tax : 3255.5555%", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Corporateaction : Set did withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Taxed did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Taxed did [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tax : 3255.5555%", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1045, - "name": "Corporateaction_Set_did_withholding_tax", - "blob": "1e035449434b45522d313233343531c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec0123c2f001d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Set did withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Taxed did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Taxed did [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tax : 3255.5555%", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Corporateaction : Set did withholding tax", - "1 | Ticker : TICKER-12345", - "2 | Taxed did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Taxed did [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tax : 3255.5555%", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1046, - "name": "Corporateaction_Initiate_corporate_action", - "blob": "1e045449434b45522d3132333435030008000000000000010091150000000000005044657461696c7320412c2044657461696c73204201049c9f43f7620cafcc9765792f6076e32424dc85a0618a8f1f41ff947d38b30d86000100000000010484999dfd9106a38353e8a9c2e5c4b36532742f7e9c09e4a9e4c6cbf023c87af1400d0300d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Initiate corporate action", - "1 | Ticker : TICKER-12345", - "2 | Kind : Reorganization", - "3 | Decl date : 2048", - "4 | Record date : 5521", - "5 | Details : Details A, Details B", - "6 | Targets [1/3] : 9c9f43f7620cafcc9765792f6076e32424dc85", - "6 | Targets [2/3] : a0618a8f1f41ff947d38b30d86", - "6 | Targets [3/3] : Include", - "7 | Default withholding tax : 0.0000%", - "8 | Withholding tax [1/3] : 84999dfd9106a38353e8a9c2e5c4b36532742f", - "8 | Withholding tax [2/3] : 7e9c09e4a9e4c6cbf023c87af1", - "8 | Withholding tax [3/3] : 20.0000%" - ], - "output_expert": [ - "0 | Corporateaction : Initiate corporate action", - "1 | Ticker : TICKER-12345", - "2 | Kind : Reorganization", - "3 | Decl date : 2048", - "4 | Record date : 5521", - "5 | Details : Details A, Details B", - "6 | Targets [1/3] : 9c9f43f7620cafcc9765792f6076e32424dc85", - "6 | Targets [2/3] : a0618a8f1f41ff947d38b30d86", - "6 | Targets [3/3] : Include", - "7 | Default withholding tax : 0.0000%", - "8 | Withholding tax [1/3] : 84999dfd9106a38353e8a9c2e5c4b36532742f", - "8 | Withholding tax [2/3] : 7e9c09e4a9e4c6cbf023c87af1", - "8 | Withholding tax [3/3] : 20.0000%", - "9 | Chain : Polymesh", - "10 | Nonce : 0", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1047, - "name": "Corporateaction_Initiate_corporate_action", - "blob": "1e045449434b45522d3132333435000001000000000000005044657461696c7320412c2044657461696c73204201049c9f43f7620cafcc9765792f6076e32424dc85a0618a8f1f41ff947d38b30d86000123c2f001010484999dfd9106a38353e8a9c2e5c4b36532742f7e9c09e4a9e4c6cbf023c87af1400d0300d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Initiate corporate action", - "1 | Ticker : TICKER-12345", - "2 | Kind : PredictableBenefit", - "3 | Decl date : 256", - "4 | Record date : None", - "5 | Details : Details A, Details B", - "6 | Targets [1/3] : 9c9f43f7620cafcc9765792f6076e32424dc85", - "6 | Targets [2/3] : a0618a8f1f41ff947d38b30d86", - "6 | Targets [3/3] : Include", - "7 | Default withholding tax : 3255.5555%", - "8 | Withholding tax [1/3] : 84999dfd9106a38353e8a9c2e5c4b36532742f", - "8 | Withholding tax [2/3] : 7e9c09e4a9e4c6cbf023c87af1", - "8 | Withholding tax [3/3] : 20.0000%", - "9 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Corporateaction : Initiate corporate action", - "1 | Ticker : TICKER-12345", - "2 | Kind : PredictableBenefit", - "3 | Decl date : 256", - "4 | Record date : None", - "5 | Details : Details A, Details B", - "6 | Targets [1/3] : 9c9f43f7620cafcc9765792f6076e32424dc85", - "6 | Targets [2/3] : a0618a8f1f41ff947d38b30d86", - "6 | Targets [3/3] : Include", - "7 | Default withholding tax : 3255.5555%", - "8 | Withholding tax [1/3] : 84999dfd9106a38353e8a9c2e5c4b36532742f", - "8 | Withholding tax [2/3] : 7e9c09e4a9e4c6cbf023c87af1", - "8 | Withholding tax [3/3] : 20.0000%", - "9 | Chain : Polymesh", - "10 | Nonce : 0", - "11 | Tip : POLYX 0.000987", - "12 | Era Phase : 61", - "13 | Era Period : 64", - "14 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "14 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1048, - "name": "Corporateaction_Initiate_corporate_action", - "blob": "1e045449434b45522d31323334350080000000000000000102cc820d00000000005044657461696c7320412c2044657461696c73204201049c9f43f7620cafcc9765792f6076e32424dc85a0618a8f1f41ff947d38b30d86000123c2f001010484999dfd9106a38353e8a9c2e5c4b36532742f7e9c09e4a9e4c6cbf023c87af1400d0300d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Initiate corporate action", - "1 | Ticker : TICKER-12345", - "2 | Kind : PredictableBenefit", - "3 | Decl date : 128", - "4 | Record date : 885452", - "5 | Details : Details A, Details B", - "6 | Targets [1/3] : 9c9f43f7620cafcc9765792f6076e32424dc85", - "6 | Targets [2/3] : a0618a8f1f41ff947d38b30d86", - "6 | Targets [3/3] : Include", - "7 | Default withholding tax : 3255.5555%", - "8 | Withholding tax [1/3] : 84999dfd9106a38353e8a9c2e5c4b36532742f", - "8 | Withholding tax [2/3] : 7e9c09e4a9e4c6cbf023c87af1", - "8 | Withholding tax [3/3] : 20.0000%" - ], - "output_expert": [ - "0 | Corporateaction : Initiate corporate action", - "1 | Ticker : TICKER-12345", - "2 | Kind : PredictableBenefit", - "3 | Decl date : 128", - "4 | Record date : 885452", - "5 | Details : Details A, Details B", - "6 | Targets [1/3] : 9c9f43f7620cafcc9765792f6076e32424dc85", - "6 | Targets [2/3] : a0618a8f1f41ff947d38b30d86", - "6 | Targets [3/3] : Include", - "7 | Default withholding tax : 3255.5555%", - "8 | Withholding tax [1/3] : 84999dfd9106a38353e8a9c2e5c4b36532742f", - "8 | Withholding tax [2/3] : 7e9c09e4a9e4c6cbf023c87af1", - "8 | Withholding tax [3/3] : 20.0000%", - "9 | Chain : Polymesh", - "10 | Nonce : 100", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1049, - "name": "Corporateaction_Initiate_corporate_action", - "blob": "1e045449434b45522d3132333435008000000000000000010091150000000000005044657461696c7320412c2044657461696c73204201049c9f43f7620cafcc9765792f6076e32424dc85a0618a8f1f41ff947d38b30d860001400d0300010484999dfd9106a38353e8a9c2e5c4b36532742f7e9c09e4a9e4c6cbf023c87af1400d0300d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Initiate corporate action", - "1 | Ticker : TICKER-12345", - "2 | Kind : PredictableBenefit", - "3 | Decl date : 128", - "4 | Record date : 5521", - "5 | Details : Details A, Details B", - "6 | Targets [1/3] : 9c9f43f7620cafcc9765792f6076e32424dc85", - "6 | Targets [2/3] : a0618a8f1f41ff947d38b30d86", - "6 | Targets [3/3] : Include", - "7 | Default withholding tax : 20.0000%", - "8 | Withholding tax [1/3] : 84999dfd9106a38353e8a9c2e5c4b36532742f", - "8 | Withholding tax [2/3] : 7e9c09e4a9e4c6cbf023c87af1", - "8 | Withholding tax [3/3] : 20.0000%", - "9 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Corporateaction : Initiate corporate action", - "1 | Ticker : TICKER-12345", - "2 | Kind : PredictableBenefit", - "3 | Decl date : 128", - "4 | Record date : 5521", - "5 | Details : Details A, Details B", - "6 | Targets [1/3] : 9c9f43f7620cafcc9765792f6076e32424dc85", - "6 | Targets [2/3] : a0618a8f1f41ff947d38b30d86", - "6 | Targets [3/3] : Include", - "7 | Default withholding tax : 20.0000%", - "8 | Withholding tax [1/3] : 84999dfd9106a38353e8a9c2e5c4b36532742f", - "8 | Withholding tax [2/3] : 7e9c09e4a9e4c6cbf023c87af1", - "8 | Withholding tax [3/3] : 20.0000%", - "9 | Chain : Polymesh", - "10 | Nonce : 1", - "11 | Tip : POLYX 0.000987", - "12 | Era Phase : 61", - "13 | Era Period : 64", - "14 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "14 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1050, - "name": "Corporateaction_Initiate_corporate_action", - "blob": "1e045449434b45522d31323334350380000000000000000102cc820d00000000005044657461696c7320412c2044657461696c7320420104f4622fa58111f03c99e44e0f5d0d0dba9572e7e3bb59557a7226a1ffda1e725c010100000000010484999dfd9106a38353e8a9c2e5c4b36532742f7e9c09e4a9e4c6cbf023c87af1400d0300d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Initiate corporate action", - "1 | Ticker : TICKER-12345", - "2 | Kind : Reorganization", - "3 | Decl date : 128", - "4 | Record date : 885452", - "5 | Details : Details A, Details B", - "6 | Targets [1/3] : f4622fa58111f03c99e44e0f5d0d0dba9572e7", - "6 | Targets [2/3] : e3bb59557a7226a1ffda1e725c", - "6 | Targets [3/3] : Exclude", - "7 | Default withholding tax : 0.0000%", - "8 | Withholding tax [1/3] : 84999dfd9106a38353e8a9c2e5c4b36532742f", - "8 | Withholding tax [2/3] : 7e9c09e4a9e4c6cbf023c87af1", - "8 | Withholding tax [3/3] : 20.0000%" - ], - "output_expert": [ - "0 | Corporateaction : Initiate corporate action", - "1 | Ticker : TICKER-12345", - "2 | Kind : Reorganization", - "3 | Decl date : 128", - "4 | Record date : 885452", - "5 | Details : Details A, Details B", - "6 | Targets [1/3] : f4622fa58111f03c99e44e0f5d0d0dba9572e7", - "6 | Targets [2/3] : e3bb59557a7226a1ffda1e725c", - "6 | Targets [3/3] : Exclude", - "7 | Default withholding tax : 0.0000%", - "8 | Withholding tax [1/3] : 84999dfd9106a38353e8a9c2e5c4b36532742f", - "8 | Withholding tax [2/3] : 7e9c09e4a9e4c6cbf023c87af1", - "8 | Withholding tax [3/3] : 20.0000%", - "9 | Chain : Polymesh", - "10 | Nonce : 2339", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1051, - "name": "Corporateaction_Link_ca_doc", - "blob": "1e055449434b45522d31323341416fec210010672f0000406903000f000000bd3c1221d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Link ca doc", - "1 | Id [1/2] : TICKER-123AA", - "1 | Id [2/2] : 2223215", - "2 | Docs [1/4] : 12135", - "2 | Docs [2/4] : 223552", - "2 | Docs [3/4] : 15", - "2 | Docs [4/4] : 554843325", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Corporateaction : Link ca doc", - "1 | Id [1/2] : TICKER-123AA", - "1 | Id [2/2] : 2223215", - "2 | Docs [1/4] : 12135", - "2 | Docs [2/4] : 223552", - "2 | Docs [3/4] : 15", - "2 | Docs [4/4] : 554843325", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1052, - "name": "Corporateaction_Link_ca_doc", - "blob": "1e055449434b45522d31323341416fec210000d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Link ca doc", - "1 | Id [1/2] : TICKER-123AA", - "1 | Id [2/2] : 2223215", - "2 | Docs : ", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Corporateaction : Link ca doc", - "1 | Id [1/2] : TICKER-123AA", - "1 | Id [2/2] : 2223215", - "2 | Docs : ", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1053, - "name": "Corporateaction_Link_ca_doc", - "blob": "1e055449434b45522d31323341416fec210000d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Link ca doc", - "1 | Id [1/2] : TICKER-123AA", - "1 | Id [2/2] : 2223215", - "2 | Docs : ", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Corporateaction : Link ca doc", - "1 | Id [1/2] : TICKER-123AA", - "1 | Id [2/2] : 2223215", - "2 | Docs : ", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1054, - "name": "Corporateaction_Link_ca_doc", - "blob": "1e055449434b45522d31323341416fec210000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Link ca doc", - "1 | Id [1/2] : TICKER-123AA", - "1 | Id [2/2] : 2223215", - "2 | Docs : ", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Corporateaction : Link ca doc", - "1 | Id [1/2] : TICKER-123AA", - "1 | Id [2/2] : 2223215", - "2 | Docs : ", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1055, - "name": "Corporateaction_Link_ca_doc", - "blob": "1e055449434b45522d31323341416fec21000400000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Link ca doc", - "1 | Id [1/2] : TICKER-123AA", - "1 | Id [2/2] : 2223215", - "2 | Docs : 0", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Corporateaction : Link ca doc", - "1 | Id [1/2] : TICKER-123AA", - "1 | Id [2/2] : 2223215", - "2 | Docs : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1056, - "name": "Corporateaction_Remove_ca", - "blob": "1e065449434b45522d31323341416fec2100d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Remove ca", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215" - ], - "output_expert": [ - "0 | Corporateaction : Remove ca", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1057, - "name": "Corporateaction_Remove_ca", - "blob": "1e065449434b45522d31323341416fec2100d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Remove ca", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215" - ], - "output_expert": [ - "0 | Corporateaction : Remove ca", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1058, - "name": "Corporateaction_Remove_ca", - "blob": "1e065449434b45522d31323341416fec2100d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Remove ca", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Corporateaction : Remove ca", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1059, - "name": "Corporateaction_Remove_ca", - "blob": "1e065449434b45522d31323341416fec2100d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Remove ca", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Corporateaction : Remove ca", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1060, - "name": "Corporateaction_Remove_ca", - "blob": "1e065449434b45522d31323341416fec2100d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Remove ca", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Corporateaction : Remove ca", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1061, - "name": "Corporateaction_Change_record_date", - "blob": "1e075449434b45522d31323341416fec210001009115000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Change record date", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Record date : 5521", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Corporateaction : Change record date", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Record date : 5521", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1062, - "name": "Corporateaction_Change_record_date", - "blob": "1e075449434b45522d31323341416fec210000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Change record date", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Record date : None", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Corporateaction : Change record date", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Record date : None", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1063, - "name": "Corporateaction_Change_record_date", - "blob": "1e075449434b45522d31323341416fec210000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Change record date", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Record date : None", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Corporateaction : Change record date", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Record date : None", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1064, - "name": "Corporateaction_Change_record_date", - "blob": "1e075449434b45522d31323341416fec21000102cc820d0000000000d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Change record date", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Record date : 885452", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Corporateaction : Change record date", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Record date : 885452", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1065, - "name": "Corporateaction_Change_record_date", - "blob": "1e075449434b45522d31323341416fec210001009115000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Change record date", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Record date : 5521", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Corporateaction : Change record date", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Record date : 5521", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1066, - "name": "Corporateaction_Initiate_corporate_action_and_distribute", - "blob": "1e085449434b45522d333435363701c9a101a23ce4ad0e0102544fbaf37f46f0f20101eaab29cb2094ce6150e9c88744e0928b8f05cc11b1c09460b46204360bcc8a79f281c4b336c52569c3678460a40c2175c9f5f0a512f89a24a2cb96a0c0d0457901082e775081c59efa97bbbb7a2fd123b564997e0a10834347372c0865965e4bb8e7c82d3d9fa0a3cea5e74dd7d349256adfe59614cc204dc79f79802bf3b972bff50101db1ca02401088f323b5c71b012f6c03bc28c5058879074b83452e664895670a56e12a853310306f96c5db839b219705043c96ec744fdb806c10d8cabdc157a7255787ab2c97cd6941f06d6f4ef8401bb130000000000005449434b45522d3132333435345fe7fc9c23bfb62334c8ca2c746fee345fe7fc9c23bfb62334c8ca2c746fee0008000000000000010001000000000000d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Initiate corporate action and distribu", - "1 | Ca args [1/20] : TICKER-34567", - "1 | Ca args [2/20] : UnpredictableBenfit", - "1 | Ca args [3/20] : 1057752436569121225", - "1 | Ca args [4/20] : 17505569266952982356", - "1 | Ca args [5/20] : eaab29cb2094ce6150e9c88744e0928b8f05cc", - "1 | Ca args [6/20] : 11b1c09460b46204360bcc8a79f281c4b336c5", - "1 | Ca args [7/20] : 2569c3678460a40c2175c9f5f0a512f89a24a2", - "1 | Ca args [8/20] : cb96a0c0d04579", - "1 | Ca args [9/20] : 2e775081c59efa97bbbb7a2fd123b564997e0a", - "1 | Ca args [10/20] : 10834347372c0865965e4bb8e7", - "1 | Ca args [11/20] : c82d3d9fa0a3cea5e74dd7d349256adfe59614", - "1 | Ca args [12/20] : cc204dc79f79802bf3b972bff5", - "1 | Ca args [13/20] : Exclude", - "1 | Ca args [14/20] : 61447.2923%", - "1 | Ca args [15/20] : 8f323b5c71b012f6c03bc28c5058879074b834", - "1 | Ca args [16/20] : 52e664895670a56e12a8533103", - "1 | Ca args [17/20] : 156742.2726%", - "1 | Ca args [18/20] : b839b219705043c96ec744fdb806c10d8cabdc", - "1 | Ca args [19/20] : 157a7255787ab2c97cd6941f06", - "1 | Ca args [20/20] : 223031.8294%", - "2 | Portfolio : 5051", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 31693496425641852120896906194770", - "4 | Per share [2/2] : 0.371252", - "5 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "5 | Amount [2/2] : 0.371252", - "6 | Payment at : 2048", - "7 | Expires at : 256", - "8 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Corporateaction : Initiate corporate action and distribu", - "1 | Ca args [1/20] : TICKER-34567", - "1 | Ca args [2/20] : UnpredictableBenfit", - "1 | Ca args [3/20] : 1057752436569121225", - "1 | Ca args [4/20] : 17505569266952982356", - "1 | Ca args [5/20] : eaab29cb2094ce6150e9c88744e0928b8f05cc", - "1 | Ca args [6/20] : 11b1c09460b46204360bcc8a79f281c4b336c5", - "1 | Ca args [7/20] : 2569c3678460a40c2175c9f5f0a512f89a24a2", - "1 | Ca args [8/20] : cb96a0c0d04579", - "1 | Ca args [9/20] : 2e775081c59efa97bbbb7a2fd123b564997e0a", - "1 | Ca args [10/20] : 10834347372c0865965e4bb8e7", - "1 | Ca args [11/20] : c82d3d9fa0a3cea5e74dd7d349256adfe59614", - "1 | Ca args [12/20] : cc204dc79f79802bf3b972bff5", - "1 | Ca args [13/20] : Exclude", - "1 | Ca args [14/20] : 61447.2923%", - "1 | Ca args [15/20] : 8f323b5c71b012f6c03bc28c5058879074b834", - "1 | Ca args [16/20] : 52e664895670a56e12a8533103", - "1 | Ca args [17/20] : 156742.2726%", - "1 | Ca args [18/20] : b839b219705043c96ec744fdb806c10d8cabdc", - "1 | Ca args [19/20] : 157a7255787ab2c97cd6941f06", - "1 | Ca args [20/20] : 223031.8294%", - "2 | Portfolio : 5051", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 31693496425641852120896906194770", - "4 | Per share [2/2] : 0.371252", - "5 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "5 | Amount [2/2] : 0.371252", - "6 | Payment at : 2048", - "7 | Expires at : 256", - "8 | Chain : Polymesh", - "9 | Nonce : 50283", - "10 | Tip : POLYX 1234.56789", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1067, - "name": "Corporateaction_Initiate_corporate_action_and_distribute", - "blob": "1e085449434b45522d333435363701c9a101a23ce4ad0e0102544fbaf37f46f0f20101eaab29cb2094ce6150e9c88744e0928b8f05cc11b1c09460b46204360bcc8a79f281c4b336c52569c3678460a40c2175c9f5f0a512f89a24a2cb96a0c0d0457901082e775081c59efa97bbbb7a2fd123b564997e0a10834347372c0865965e4bb8e7c82d3d9fa0a3cea5e74dd7d349256adfe59614cc204dc79f79802bf3b972bff50101db1ca02401088f323b5c71b012f6c03bc28c5058879074b83452e664895670a56e12a853310306f96c5db839b219705043c96ec744fdb806c10d8cabdc157a7255787ab2c97cd6941f06d6f4ef840100000000000000005449434b45522d3132333435345fe7fc9c23bfb62334c8ca2c746fee345fe7fc9c23bfb62334c8ca2c746fee0008000000000000010001000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Initiate corporate action and distribu", - "1 | Ca args [1/20] : TICKER-34567", - "1 | Ca args [2/20] : UnpredictableBenfit", - "1 | Ca args [3/20] : 1057752436569121225", - "1 | Ca args [4/20] : 17505569266952982356", - "1 | Ca args [5/20] : eaab29cb2094ce6150e9c88744e0928b8f05cc", - "1 | Ca args [6/20] : 11b1c09460b46204360bcc8a79f281c4b336c5", - "1 | Ca args [7/20] : 2569c3678460a40c2175c9f5f0a512f89a24a2", - "1 | Ca args [8/20] : cb96a0c0d04579", - "1 | Ca args [9/20] : 2e775081c59efa97bbbb7a2fd123b564997e0a", - "1 | Ca args [10/20] : 10834347372c0865965e4bb8e7", - "1 | Ca args [11/20] : c82d3d9fa0a3cea5e74dd7d349256adfe59614", - "1 | Ca args [12/20] : cc204dc79f79802bf3b972bff5", - "1 | Ca args [13/20] : Exclude", - "1 | Ca args [14/20] : 61447.2923%", - "1 | Ca args [15/20] : 8f323b5c71b012f6c03bc28c5058879074b834", - "1 | Ca args [16/20] : 52e664895670a56e12a8533103", - "1 | Ca args [17/20] : 156742.2726%", - "1 | Ca args [18/20] : b839b219705043c96ec744fdb806c10d8cabdc", - "1 | Ca args [19/20] : 157a7255787ab2c97cd6941f06", - "1 | Ca args [20/20] : 223031.8294%", - "2 | Portfolio : 0", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 31693496425641852120896906194770", - "4 | Per share [2/2] : 0.371252", - "5 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "5 | Amount [2/2] : 0.371252", - "6 | Payment at : 2048", - "7 | Expires at : 256", - "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "8 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Corporateaction : Initiate corporate action and distribu", - "1 | Ca args [1/20] : TICKER-34567", - "1 | Ca args [2/20] : UnpredictableBenfit", - "1 | Ca args [3/20] : 1057752436569121225", - "1 | Ca args [4/20] : 17505569266952982356", - "1 | Ca args [5/20] : eaab29cb2094ce6150e9c88744e0928b8f05cc", - "1 | Ca args [6/20] : 11b1c09460b46204360bcc8a79f281c4b336c5", - "1 | Ca args [7/20] : 2569c3678460a40c2175c9f5f0a512f89a24a2", - "1 | Ca args [8/20] : cb96a0c0d04579", - "1 | Ca args [9/20] : 2e775081c59efa97bbbb7a2fd123b564997e0a", - "1 | Ca args [10/20] : 10834347372c0865965e4bb8e7", - "1 | Ca args [11/20] : c82d3d9fa0a3cea5e74dd7d349256adfe59614", - "1 | Ca args [12/20] : cc204dc79f79802bf3b972bff5", - "1 | Ca args [13/20] : Exclude", - "1 | Ca args [14/20] : 61447.2923%", - "1 | Ca args [15/20] : 8f323b5c71b012f6c03bc28c5058879074b834", - "1 | Ca args [16/20] : 52e664895670a56e12a8533103", - "1 | Ca args [17/20] : 156742.2726%", - "1 | Ca args [18/20] : b839b219705043c96ec744fdb806c10d8cabdc", - "1 | Ca args [19/20] : 157a7255787ab2c97cd6941f06", - "1 | Ca args [20/20] : 223031.8294%", - "2 | Portfolio : 0", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 31693496425641852120896906194770", - "4 | Per share [2/2] : 0.371252", - "5 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "5 | Amount [2/2] : 0.371252", - "6 | Payment at : 2048", - "7 | Expires at : 256", - "8 | Chain : Polymesh", - "9 | Nonce : 1", - "10 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "10 | Tip [2/2] : 3.456789", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1068, - "name": "Corporateaction_Initiate_corporate_action_and_distribute", - "blob": "1e085449434b45522d333435363701c9a101a23ce4ad0e0102544fbaf37f46f0f20101eaab29cb2094ce6150e9c88744e0928b8f05cc11b1c09460b46204360bcc8a79f281c4b336c52569c3678460a40c2175c9f5f0a512f89a24a2cb96a0c0d0457901082e775081c59efa97bbbb7a2fd123b564997e0a10834347372c0865965e4bb8e7c82d3d9fa0a3cea5e74dd7d349256adfe59614cc204dc79f79802bf3b972bff50101db1ca02401088f323b5c71b012f6c03bc28c5058879074b83452e664895670a56e12a853310306f96c5db839b219705043c96ec744fdb806c10d8cabdc157a7255787ab2c97cd6941f06d6f4ef8401cadc0000000000005449434b45522d3132333435345fe7fc9c23bfb62334c8ca2c746fee345fe7fc9c23bfb62334c8ca2c746fee0008000000000000010001000000000000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Initiate corporate action and distribu", - "1 | Ca args [1/20] : TICKER-34567", - "1 | Ca args [2/20] : UnpredictableBenfit", - "1 | Ca args [3/20] : 1057752436569121225", - "1 | Ca args [4/20] : 17505569266952982356", - "1 | Ca args [5/20] : eaab29cb2094ce6150e9c88744e0928b8f05cc", - "1 | Ca args [6/20] : 11b1c09460b46204360bcc8a79f281c4b336c5", - "1 | Ca args [7/20] : 2569c3678460a40c2175c9f5f0a512f89a24a2", - "1 | Ca args [8/20] : cb96a0c0d04579", - "1 | Ca args [9/20] : 2e775081c59efa97bbbb7a2fd123b564997e0a", - "1 | Ca args [10/20] : 10834347372c0865965e4bb8e7", - "1 | Ca args [11/20] : c82d3d9fa0a3cea5e74dd7d349256adfe59614", - "1 | Ca args [12/20] : cc204dc79f79802bf3b972bff5", - "1 | Ca args [13/20] : Exclude", - "1 | Ca args [14/20] : 61447.2923%", - "1 | Ca args [15/20] : 8f323b5c71b012f6c03bc28c5058879074b834", - "1 | Ca args [16/20] : 52e664895670a56e12a8533103", - "1 | Ca args [17/20] : 156742.2726%", - "1 | Ca args [18/20] : b839b219705043c96ec744fdb806c10d8cabdc", - "1 | Ca args [19/20] : 157a7255787ab2c97cd6941f06", - "1 | Ca args [20/20] : 223031.8294%", - "2 | Portfolio : 56522", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 31693496425641852120896906194770", - "4 | Per share [2/2] : 0.371252", - "5 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "5 | Amount [2/2] : 0.371252", - "6 | Payment at : 2048", - "7 | Expires at : 256", - "8 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Corporateaction : Initiate corporate action and distribu", - "1 | Ca args [1/20] : TICKER-34567", - "1 | Ca args [2/20] : UnpredictableBenfit", - "1 | Ca args [3/20] : 1057752436569121225", - "1 | Ca args [4/20] : 17505569266952982356", - "1 | Ca args [5/20] : eaab29cb2094ce6150e9c88744e0928b8f05cc", - "1 | Ca args [6/20] : 11b1c09460b46204360bcc8a79f281c4b336c5", - "1 | Ca args [7/20] : 2569c3678460a40c2175c9f5f0a512f89a24a2", - "1 | Ca args [8/20] : cb96a0c0d04579", - "1 | Ca args [9/20] : 2e775081c59efa97bbbb7a2fd123b564997e0a", - "1 | Ca args [10/20] : 10834347372c0865965e4bb8e7", - "1 | Ca args [11/20] : c82d3d9fa0a3cea5e74dd7d349256adfe59614", - "1 | Ca args [12/20] : cc204dc79f79802bf3b972bff5", - "1 | Ca args [13/20] : Exclude", - "1 | Ca args [14/20] : 61447.2923%", - "1 | Ca args [15/20] : 8f323b5c71b012f6c03bc28c5058879074b834", - "1 | Ca args [16/20] : 52e664895670a56e12a8533103", - "1 | Ca args [17/20] : 156742.2726%", - "1 | Ca args [18/20] : b839b219705043c96ec744fdb806c10d8cabdc", - "1 | Ca args [19/20] : 157a7255787ab2c97cd6941f06", - "1 | Ca args [20/20] : 223031.8294%", - "2 | Portfolio : 56522", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 31693496425641852120896906194770", - "4 | Per share [2/2] : 0.371252", - "5 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "5 | Amount [2/2] : 0.371252", - "6 | Payment at : 2048", - "7 | Expires at : 256", - "8 | Chain : Polymesh", - "9 | Nonce : 1", - "10 | Tip : POLYX 5552342.355555", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1069, - "name": "Corporateaction_Initiate_corporate_action_and_distribute", - "blob": "1e085449434b45522d333435363701c9a101a23ce4ad0e0102544fbaf37f46f0f20101eaab29cb2094ce6150e9c88744e0928b8f05cc11b1c09460b46204360bcc8a79f281c4b336c52569c3678460a40c2175c9f5f0a512f89a24a2cb96a0c0d0457901082e775081c59efa97bbbb7a2fd123b564997e0a10834347372c0865965e4bb8e7c82d3d9fa0a3cea5e74dd7d349256adfe59614cc204dc79f79802bf3b972bff50101db1ca02401088f323b5c71b012f6c03bc28c5058879074b83452e664895670a56e12a853310306f96c5db839b219705043c96ec744fdb806c10d8cabdc157a7255787ab2c97cd6941f06d6f4ef8401bb130000000000005449434b45522d3132333435345fe7fc9c23bfb62334c8ca2c746fee345fe7fc9c23bfb62334c8ca2c746fee0008000000000000018000000000000000d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Initiate corporate action and distribu", - "1 | Ca args [1/20] : TICKER-34567", - "1 | Ca args [2/20] : UnpredictableBenfit", - "1 | Ca args [3/20] : 1057752436569121225", - "1 | Ca args [4/20] : 17505569266952982356", - "1 | Ca args [5/20] : eaab29cb2094ce6150e9c88744e0928b8f05cc", - "1 | Ca args [6/20] : 11b1c09460b46204360bcc8a79f281c4b336c5", - "1 | Ca args [7/20] : 2569c3678460a40c2175c9f5f0a512f89a24a2", - "1 | Ca args [8/20] : cb96a0c0d04579", - "1 | Ca args [9/20] : 2e775081c59efa97bbbb7a2fd123b564997e0a", - "1 | Ca args [10/20] : 10834347372c0865965e4bb8e7", - "1 | Ca args [11/20] : c82d3d9fa0a3cea5e74dd7d349256adfe59614", - "1 | Ca args [12/20] : cc204dc79f79802bf3b972bff5", - "1 | Ca args [13/20] : Exclude", - "1 | Ca args [14/20] : 61447.2923%", - "1 | Ca args [15/20] : 8f323b5c71b012f6c03bc28c5058879074b834", - "1 | Ca args [16/20] : 52e664895670a56e12a8533103", - "1 | Ca args [17/20] : 156742.2726%", - "1 | Ca args [18/20] : b839b219705043c96ec744fdb806c10d8cabdc", - "1 | Ca args [19/20] : 157a7255787ab2c97cd6941f06", - "1 | Ca args [20/20] : 223031.8294%", - "2 | Portfolio : 5051", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 31693496425641852120896906194770", - "4 | Per share [2/2] : 0.371252", - "5 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "5 | Amount [2/2] : 0.371252", - "6 | Payment at : 2048", - "7 | Expires at : 128" - ], - "output_expert": [ - "0 | Corporateaction : Initiate corporate action and distribu", - "1 | Ca args [1/20] : TICKER-34567", - "1 | Ca args [2/20] : UnpredictableBenfit", - "1 | Ca args [3/20] : 1057752436569121225", - "1 | Ca args [4/20] : 17505569266952982356", - "1 | Ca args [5/20] : eaab29cb2094ce6150e9c88744e0928b8f05cc", - "1 | Ca args [6/20] : 11b1c09460b46204360bcc8a79f281c4b336c5", - "1 | Ca args [7/20] : 2569c3678460a40c2175c9f5f0a512f89a24a2", - "1 | Ca args [8/20] : cb96a0c0d04579", - "1 | Ca args [9/20] : 2e775081c59efa97bbbb7a2fd123b564997e0a", - "1 | Ca args [10/20] : 10834347372c0865965e4bb8e7", - "1 | Ca args [11/20] : c82d3d9fa0a3cea5e74dd7d349256adfe59614", - "1 | Ca args [12/20] : cc204dc79f79802bf3b972bff5", - "1 | Ca args [13/20] : Exclude", - "1 | Ca args [14/20] : 61447.2923%", - "1 | Ca args [15/20] : 8f323b5c71b012f6c03bc28c5058879074b834", - "1 | Ca args [16/20] : 52e664895670a56e12a8533103", - "1 | Ca args [17/20] : 156742.2726%", - "1 | Ca args [18/20] : b839b219705043c96ec744fdb806c10d8cabdc", - "1 | Ca args [19/20] : 157a7255787ab2c97cd6941f06", - "1 | Ca args [20/20] : 223031.8294%", - "2 | Portfolio : 5051", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 31693496425641852120896906194770", - "4 | Per share [2/2] : 0.371252", - "5 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "5 | Amount [2/2] : 0.371252", - "6 | Payment at : 2048", - "7 | Expires at : 128", - "8 | Chain : Polymesh", - "9 | Nonce : 0", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1070, - "name": "Corporateaction_Initiate_corporate_action_and_distribute", - "blob": "1e085449434b45522d333435363701c9a101a23ce4ad0e0102544fbaf37f46f0f20101eaab29cb2094ce6150e9c88744e0928b8f05cc11b1c09460b46204360bcc8a79f281c4b336c52569c3678460a40c2175c9f5f0a512f89a24a2cb96a0c0d0457901082e775081c59efa97bbbb7a2fd123b564997e0a10834347372c0865965e4bb8e7c82d3d9fa0a3cea5e74dd7d349256adfe59614cc204dc79f79802bf3b972bff50101db1ca02401088f323b5c71b012f6c03bc28c5058879074b83452e664895670a56e12a853310306f96c5db839b219705043c96ec744fdb806c10d8cabdc157a7255787ab2c97cd6941f06d6f4ef8401cadc0000000000005449434b45522d3132333435345fe7fc9c23bfb62334c8ca2c746fee345fe7fc9c23bfb62334c8ca2c746fee0008000000000000018000000000000000d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateaction : Initiate corporate action and distribu", - "1 | Ca args [1/20] : TICKER-34567", - "1 | Ca args [2/20] : UnpredictableBenfit", - "1 | Ca args [3/20] : 1057752436569121225", - "1 | Ca args [4/20] : 17505569266952982356", - "1 | Ca args [5/20] : eaab29cb2094ce6150e9c88744e0928b8f05cc", - "1 | Ca args [6/20] : 11b1c09460b46204360bcc8a79f281c4b336c5", - "1 | Ca args [7/20] : 2569c3678460a40c2175c9f5f0a512f89a24a2", - "1 | Ca args [8/20] : cb96a0c0d04579", - "1 | Ca args [9/20] : 2e775081c59efa97bbbb7a2fd123b564997e0a", - "1 | Ca args [10/20] : 10834347372c0865965e4bb8e7", - "1 | Ca args [11/20] : c82d3d9fa0a3cea5e74dd7d349256adfe59614", - "1 | Ca args [12/20] : cc204dc79f79802bf3b972bff5", - "1 | Ca args [13/20] : Exclude", - "1 | Ca args [14/20] : 61447.2923%", - "1 | Ca args [15/20] : 8f323b5c71b012f6c03bc28c5058879074b834", - "1 | Ca args [16/20] : 52e664895670a56e12a8533103", - "1 | Ca args [17/20] : 156742.2726%", - "1 | Ca args [18/20] : b839b219705043c96ec744fdb806c10d8cabdc", - "1 | Ca args [19/20] : 157a7255787ab2c97cd6941f06", - "1 | Ca args [20/20] : 223031.8294%", - "2 | Portfolio : 56522", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 31693496425641852120896906194770", - "4 | Per share [2/2] : 0.371252", - "5 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "5 | Amount [2/2] : 0.371252", - "6 | Payment at : 2048", - "7 | Expires at : 128", - "8 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Corporateaction : Initiate corporate action and distribu", - "1 | Ca args [1/20] : TICKER-34567", - "1 | Ca args [2/20] : UnpredictableBenfit", - "1 | Ca args [3/20] : 1057752436569121225", - "1 | Ca args [4/20] : 17505569266952982356", - "1 | Ca args [5/20] : eaab29cb2094ce6150e9c88744e0928b8f05cc", - "1 | Ca args [6/20] : 11b1c09460b46204360bcc8a79f281c4b336c5", - "1 | Ca args [7/20] : 2569c3678460a40c2175c9f5f0a512f89a24a2", - "1 | Ca args [8/20] : cb96a0c0d04579", - "1 | Ca args [9/20] : 2e775081c59efa97bbbb7a2fd123b564997e0a", - "1 | Ca args [10/20] : 10834347372c0865965e4bb8e7", - "1 | Ca args [11/20] : c82d3d9fa0a3cea5e74dd7d349256adfe59614", - "1 | Ca args [12/20] : cc204dc79f79802bf3b972bff5", - "1 | Ca args [13/20] : Exclude", - "1 | Ca args [14/20] : 61447.2923%", - "1 | Ca args [15/20] : 8f323b5c71b012f6c03bc28c5058879074b834", - "1 | Ca args [16/20] : 52e664895670a56e12a8533103", - "1 | Ca args [17/20] : 156742.2726%", - "1 | Ca args [18/20] : b839b219705043c96ec744fdb806c10d8cabdc", - "1 | Ca args [19/20] : 157a7255787ab2c97cd6941f06", - "1 | Ca args [20/20] : 223031.8294%", - "2 | Portfolio : 56522", - "3 | Currency : TICKER-12345", - "4 | Per share [1/2] : POLYX 31693496425641852120896906194770", - "4 | Per share [2/2] : 0.371252", - "5 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "5 | Amount [2/2] : 0.371252", - "6 | Payment at : 2048", - "7 | Expires at : 128", - "8 | Chain : Polymesh", - "9 | Nonce : 0", - "10 | Tip : POLYX 55.555555", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1071, - "name": "Corporateballot_Attach_ballot", - "blob": "1f005449434b45522d31323341416fec21001027000000000000204e000000000000145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c653200d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateballot : Attach ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Range [1/2] : 10000", - "2 | Range [2/2] : 20000", - "3 | Meta [1/5] : Title", - "3 | Meta [2/5] : MotionTitle", - "3 | Meta [3/5] : MotionInfoLink", - "3 | Meta [4/5] : ChoiceTitle1", - "3 | Meta [5/5] : ChoiceTitle2", - "4 | Rcv : False", - "5 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Corporateballot : Attach ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Range [1/2] : 10000", - "2 | Range [2/2] : 20000", - "3 | Meta [1/5] : Title", - "3 | Meta [2/5] : MotionTitle", - "3 | Meta [3/5] : MotionInfoLink", - "3 | Meta [4/5] : ChoiceTitle1", - "3 | Meta [5/5] : ChoiceTitle2", - "4 | Rcv : False", - "5 | Chain : Polymesh", - "6 | Nonce : 100", - "7 | Tip : POLYX 55.555555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1072, - "name": "Corporateballot_Attach_ballot", - "blob": "1f005449434b45522d31323341416fec21001027000000000000204e000000000000145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c653201d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateballot : Attach ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Range [1/2] : 10000", - "2 | Range [2/2] : 20000", - "3 | Meta [1/5] : Title", - "3 | Meta [2/5] : MotionTitle", - "3 | Meta [3/5] : MotionInfoLink", - "3 | Meta [4/5] : ChoiceTitle1", - "3 | Meta [5/5] : ChoiceTitle2", - "4 | Rcv : True" - ], - "output_expert": [ - "0 | Corporateballot : Attach ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Range [1/2] : 10000", - "2 | Range [2/2] : 20000", - "3 | Meta [1/5] : Title", - "3 | Meta [2/5] : MotionTitle", - "3 | Meta [3/5] : MotionInfoLink", - "3 | Meta [4/5] : ChoiceTitle1", - "3 | Meta [5/5] : ChoiceTitle2", - "4 | Rcv : True", - "5 | Chain : Polymesh", - "6 | Nonce : 1", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1073, - "name": "Corporateballot_Attach_ballot", - "blob": "1f005449434b45522d31323341416fec21001027000000000000204e000000000000145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c653201d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateballot : Attach ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Range [1/2] : 10000", - "2 | Range [2/2] : 20000", - "3 | Meta [1/5] : Title", - "3 | Meta [2/5] : MotionTitle", - "3 | Meta [3/5] : MotionInfoLink", - "3 | Meta [4/5] : ChoiceTitle1", - "3 | Meta [5/5] : ChoiceTitle2", - "4 | Rcv : True", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Corporateballot : Attach ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Range [1/2] : 10000", - "2 | Range [2/2] : 20000", - "3 | Meta [1/5] : Title", - "3 | Meta [2/5] : MotionTitle", - "3 | Meta [3/5] : MotionInfoLink", - "3 | Meta [4/5] : ChoiceTitle1", - "3 | Meta [5/5] : ChoiceTitle2", - "4 | Rcv : True", - "5 | Chain : Polymesh", - "6 | Nonce : 1", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1074, - "name": "Corporateballot_Attach_ballot", - "blob": "1f005449434b45522d31323341416fec21001027000000000000204e000000000000145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c653200d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateballot : Attach ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Range [1/2] : 10000", - "2 | Range [2/2] : 20000", - "3 | Meta [1/5] : Title", - "3 | Meta [2/5] : MotionTitle", - "3 | Meta [3/5] : MotionInfoLink", - "3 | Meta [4/5] : ChoiceTitle1", - "3 | Meta [5/5] : ChoiceTitle2", - "4 | Rcv : False" - ], - "output_expert": [ - "0 | Corporateballot : Attach ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Range [1/2] : 10000", - "2 | Range [2/2] : 20000", - "3 | Meta [1/5] : Title", - "3 | Meta [2/5] : MotionTitle", - "3 | Meta [3/5] : MotionInfoLink", - "3 | Meta [4/5] : ChoiceTitle1", - "3 | Meta [5/5] : ChoiceTitle2", - "4 | Rcv : False", - "5 | Chain : Polymesh", - "6 | Nonce : 50283", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1075, - "name": "Corporateballot_Attach_ballot", - "blob": "1f005449434b45522d31323341416fec21001027000000000000204e000000000000145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c653201d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateballot : Attach ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Range [1/2] : 10000", - "2 | Range [2/2] : 20000", - "3 | Meta [1/5] : Title", - "3 | Meta [2/5] : MotionTitle", - "3 | Meta [3/5] : MotionInfoLink", - "3 | Meta [4/5] : ChoiceTitle1", - "3 | Meta [5/5] : ChoiceTitle2", - "4 | Rcv : True" - ], - "output_expert": [ - "0 | Corporateballot : Attach ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Range [1/2] : 10000", - "2 | Range [2/2] : 20000", - "3 | Meta [1/5] : Title", - "3 | Meta [2/5] : MotionTitle", - "3 | Meta [3/5] : MotionInfoLink", - "3 | Meta [4/5] : ChoiceTitle1", - "3 | Meta [5/5] : ChoiceTitle2", - "4 | Rcv : True", - "5 | Chain : Polymesh", - "6 | Nonce : 2339", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1076, - "name": "Corporateballot_Vote", - "blob": "1f015449434b45522d31323341416fec210008ee0c5201000000000000000000000000011713fd23670000000000000000000000000001490ed5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateballot : Vote", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Votes [1/4] : POLYX 22.154478", - "2 | Votes [2/4] : 4887", - "2 | Votes [3/4] : POLYX 6.759421", - "2 | Votes [4/4] : 3657", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Corporateballot : Vote", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Votes [1/4] : POLYX 22.154478", - "2 | Votes [2/4] : 4887", - "2 | Votes [3/4] : POLYX 6.759421", - "2 | Votes [4/4] : 3657", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1077, - "name": "Corporateballot_Vote", - "blob": "1f015449434b45522d31323341416fec210000d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateballot : Vote", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Votes : ", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Corporateballot : Vote", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Votes : ", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1078, - "name": "Corporateballot_Vote", - "blob": "1f015449434b45522d31323341416fec210000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateballot : Vote", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Votes : ", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Corporateballot : Vote", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Votes : ", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1079, - "name": "Corporateballot_Vote", - "blob": "1f015449434b45522d31323341416fec210008ee0c5201000000000000000000000000011713fd23670000000000000000000000000001490ed503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateballot : Vote", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Votes [1/4] : POLYX 22.154478", - "2 | Votes [2/4] : 4887", - "2 | Votes [3/4] : POLYX 6.759421", - "2 | Votes [4/4] : 3657", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Corporateballot : Vote", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Votes [1/4] : POLYX 22.154478", - "2 | Votes [2/4] : 4887", - "2 | Votes [3/4] : POLYX 6.759421", - "2 | Votes [4/4] : 3657", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1080, - "name": "Corporateballot_Vote", - "blob": "1f015449434b45522d31323341416fec210008ee0c5201000000000000000000000000011713fd23670000000000000000000000000001490ed503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateballot : Vote", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Votes [1/4] : POLYX 22.154478", - "2 | Votes [2/4] : 4887", - "2 | Votes [3/4] : POLYX 6.759421", - "2 | Votes [4/4] : 3657", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Corporateballot : Vote", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Votes [1/4] : POLYX 22.154478", - "2 | Votes [2/4] : 4887", - "2 | Votes [3/4] : POLYX 6.759421", - "2 | Votes [4/4] : 3657", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1081, - "name": "Corporateballot_Change_end", - "blob": "1f025449434b45522d31323341416fec21008000000000000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateballot : Change end", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | End : 128", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Corporateballot : Change end", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | End : 128", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1082, - "name": "Corporateballot_Change_end", - "blob": "1f025449434b45522d31323341416fec21000008000000000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateballot : Change end", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | End : 2048", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Corporateballot : Change end", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | End : 2048", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1083, - "name": "Corporateballot_Change_end", - "blob": "1f025449434b45522d31323341416fec21000008000000000000d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateballot : Change end", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | End : 2048", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Corporateballot : Change end", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | End : 2048", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1084, - "name": "Corporateballot_Change_end", - "blob": "1f025449434b45522d31323341416fec21000001000000000000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateballot : Change end", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | End : 256", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Corporateballot : Change end", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | End : 256", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1085, - "name": "Corporateballot_Change_end", - "blob": "1f025449434b45522d31323341416fec21000001000000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateballot : Change end", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | End : 256", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Corporateballot : Change end", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | End : 256", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1086, - "name": "Corporateballot_Change_meta", - "blob": "1f035449434b45522d31323341416fec2100145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c6532d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateballot : Change meta", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Meta [1/5] : Title", - "2 | Meta [2/5] : MotionTitle", - "2 | Meta [3/5] : MotionInfoLink", - "2 | Meta [4/5] : ChoiceTitle1", - "2 | Meta [5/5] : ChoiceTitle2", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Corporateballot : Change meta", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Meta [1/5] : Title", - "2 | Meta [2/5] : MotionTitle", - "2 | Meta [3/5] : MotionInfoLink", - "2 | Meta [4/5] : ChoiceTitle1", - "2 | Meta [5/5] : ChoiceTitle2", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1087, - "name": "Corporateballot_Change_meta", - "blob": "1f035449434b45522d31323341416fec2100145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c6532d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateballot : Change meta", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Meta [1/5] : Title", - "2 | Meta [2/5] : MotionTitle", - "2 | Meta [3/5] : MotionInfoLink", - "2 | Meta [4/5] : ChoiceTitle1", - "2 | Meta [5/5] : ChoiceTitle2", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Corporateballot : Change meta", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Meta [1/5] : Title", - "2 | Meta [2/5] : MotionTitle", - "2 | Meta [3/5] : MotionInfoLink", - "2 | Meta [4/5] : ChoiceTitle1", - "2 | Meta [5/5] : ChoiceTitle2", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1088, - "name": "Corporateballot_Change_meta", - "blob": "1f035449434b45522d31323341416fec2100145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c6532d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateballot : Change meta", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Meta [1/5] : Title", - "2 | Meta [2/5] : MotionTitle", - "2 | Meta [3/5] : MotionInfoLink", - "2 | Meta [4/5] : ChoiceTitle1", - "2 | Meta [5/5] : ChoiceTitle2", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Corporateballot : Change meta", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Meta [1/5] : Title", - "2 | Meta [2/5] : MotionTitle", - "2 | Meta [3/5] : MotionInfoLink", - "2 | Meta [4/5] : ChoiceTitle1", - "2 | Meta [5/5] : ChoiceTitle2", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1089, - "name": "Corporateballot_Change_meta", - "blob": "1f035449434b45522d31323341416fec2100145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c6532d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateballot : Change meta", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Meta [1/5] : Title", - "2 | Meta [2/5] : MotionTitle", - "2 | Meta [3/5] : MotionInfoLink", - "2 | Meta [4/5] : ChoiceTitle1", - "2 | Meta [5/5] : ChoiceTitle2", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Corporateballot : Change meta", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Meta [1/5] : Title", - "2 | Meta [2/5] : MotionTitle", - "2 | Meta [3/5] : MotionInfoLink", - "2 | Meta [4/5] : ChoiceTitle1", - "2 | Meta [5/5] : ChoiceTitle2", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1090, - "name": "Corporateballot_Change_meta", - "blob": "1f035449434b45522d31323341416fec2100145469746c65042c4d6f74696f6e5469746c65384d6f74696f6e496e666f4c696e6b083043686f6963655469746c65313043686f6963655469746c6532d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateballot : Change meta", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Meta [1/5] : Title", - "2 | Meta [2/5] : MotionTitle", - "2 | Meta [3/5] : MotionInfoLink", - "2 | Meta [4/5] : ChoiceTitle1", - "2 | Meta [5/5] : ChoiceTitle2", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Corporateballot : Change meta", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Meta [1/5] : Title", - "2 | Meta [2/5] : MotionTitle", - "2 | Meta [3/5] : MotionInfoLink", - "2 | Meta [4/5] : ChoiceTitle1", - "2 | Meta [5/5] : ChoiceTitle2", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1091, - "name": "Corporateballot_Change_rcv", - "blob": "1f045449434b45522d31323341416fec210000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateballot : Change rcv", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Rcv : False", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Corporateballot : Change rcv", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Rcv : False", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1092, - "name": "Corporateballot_Change_rcv", - "blob": "1f045449434b45522d31323341416fec210000d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateballot : Change rcv", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Rcv : False", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Corporateballot : Change rcv", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Rcv : False", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1093, - "name": "Corporateballot_Change_rcv", - "blob": "1f045449434b45522d31323341416fec210001d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateballot : Change rcv", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Rcv : True", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Corporateballot : Change rcv", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Rcv : True", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1094, - "name": "Corporateballot_Change_rcv", - "blob": "1f045449434b45522d31323341416fec210001d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateballot : Change rcv", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Rcv : True" - ], - "output_expert": [ - "0 | Corporateballot : Change rcv", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Rcv : True", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1095, - "name": "Corporateballot_Change_rcv", - "blob": "1f045449434b45522d31323341416fec210000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateballot : Change rcv", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Rcv : False", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Corporateballot : Change rcv", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Rcv : False", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1096, - "name": "Corporateballot_Remove_ballot", - "blob": "1f055449434b45522d31323341416fec2100d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateballot : Remove ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215" - ], - "output_expert": [ - "0 | Corporateballot : Remove ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1097, - "name": "Corporateballot_Remove_ballot", - "blob": "1f055449434b45522d31323341416fec2100d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateballot : Remove ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215" - ], - "output_expert": [ - "0 | Corporateballot : Remove ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1098, - "name": "Corporateballot_Remove_ballot", - "blob": "1f055449434b45522d31323341416fec2100d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateballot : Remove ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Corporateballot : Remove ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1099, - "name": "Corporateballot_Remove_ballot", - "blob": "1f055449434b45522d31323341416fec2100d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateballot : Remove ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Corporateballot : Remove ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1100, - "name": "Corporateballot_Remove_ballot", - "blob": "1f055449434b45522d31323341416fec2100d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Corporateballot : Remove ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Corporateballot : Remove ballot", - "1 | Ca id [1/2] : TICKER-123AA", - "1 | Ca id [2/2] : 2223215", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1101, - "name": "Pips_Set_prune_historical_pips", - "blob": "210001d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Set prune historical pips", - "1 | Prune : True" - ], - "output_expert": [ - "0 | Pips : Set prune historical pips", - "1 | Prune : True", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1102, - "name": "Pips_Set_prune_historical_pips", - "blob": "210000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Set prune historical pips", - "1 | Prune : False" - ], - "output_expert": [ - "0 | Pips : Set prune historical pips", - "1 | Prune : False", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1103, - "name": "Pips_Set_prune_historical_pips", - "blob": "210000d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Set prune historical pips", - "1 | Prune : False", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Pips : Set prune historical pips", - "1 | Prune : False", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1104, - "name": "Pips_Set_prune_historical_pips", - "blob": "210001d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Set prune historical pips", - "1 | Prune : True", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Pips : Set prune historical pips", - "1 | Prune : True", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1105, - "name": "Pips_Set_prune_historical_pips", - "blob": "210001d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Set prune historical pips", - "1 | Prune : True", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Pips : Set prune historical pips", - "1 | Prune : True", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1106, - "name": "Pips_Set_min_proposal_deposit", - "blob": "2101345fe7fc9c23bfb62334c8ca2c746feed503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Set min proposal deposit", - "1 | Deposit [1/2] : POLYX 31693496425641852120896906194770", - "1 | Deposit [2/2] : 0.371252", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Pips : Set min proposal deposit", - "1 | Deposit [1/2] : POLYX 31693496425641852120896906194770", - "1 | Deposit [2/2] : 0.371252", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1107, - "name": "Pips_Set_min_proposal_deposit", - "blob": "2101345fe7fc9c23bfb62334c8ca2c746feed503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Set min proposal deposit", - "1 | Deposit [1/2] : POLYX 31693496425641852120896906194770", - "1 | Deposit [2/2] : 0.371252", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Pips : Set min proposal deposit", - "1 | Deposit [1/2] : POLYX 31693496425641852120896906194770", - "1 | Deposit [2/2] : 0.371252", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1108, - "name": "Pips_Set_min_proposal_deposit", - "blob": "2101345fe7fc9c23bfb62334c8ca2c746feed503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Set min proposal deposit", - "1 | Deposit [1/2] : POLYX 31693496425641852120896906194770", - "1 | Deposit [2/2] : 0.371252", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Pips : Set min proposal deposit", - "1 | Deposit [1/2] : POLYX 31693496425641852120896906194770", - "1 | Deposit [2/2] : 0.371252", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1109, - "name": "Pips_Set_min_proposal_deposit", - "blob": "2101345fe7fc9c23bfb62334c8ca2c746feed5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Set min proposal deposit", - "1 | Deposit [1/2] : POLYX 31693496425641852120896906194770", - "1 | Deposit [2/2] : 0.371252", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Pips : Set min proposal deposit", - "1 | Deposit [1/2] : POLYX 31693496425641852120896906194770", - "1 | Deposit [2/2] : 0.371252", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1110, - "name": "Pips_Set_min_proposal_deposit", - "blob": "2101345fe7fc9c23bfb62334c8ca2c746feed503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Set min proposal deposit", - "1 | Deposit [1/2] : POLYX 31693496425641852120896906194770", - "1 | Deposit [2/2] : 0.371252", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Pips : Set min proposal deposit", - "1 | Deposit [1/2] : POLYX 31693496425641852120896906194770", - "1 | Deposit [2/2] : 0.371252", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1111, - "name": "Pips_Set_default_enactment_period", - "blob": "2102ff030000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Set default enactment period", - "1 | Duration : 1023", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Pips : Set default enactment period", - "1 | Duration : 1023", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1112, - "name": "Pips_Set_default_enactment_period", - "blob": "21027b000000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Set default enactment period", - "1 | Duration : 123", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Pips : Set default enactment period", - "1 | Duration : 123", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1113, - "name": "Pips_Set_default_enactment_period", - "blob": "2102b3e30100d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Set default enactment period", - "1 | Duration : 123827", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Pips : Set default enactment period", - "1 | Duration : 123827", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1114, - "name": "Pips_Set_default_enactment_period", - "blob": "2102ac350000d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Set default enactment period", - "1 | Duration : 13740" - ], - "output_expert": [ - "0 | Pips : Set default enactment period", - "1 | Duration : 13740", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1115, - "name": "Pips_Set_default_enactment_period", - "blob": "2102b3e30100d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Set default enactment period", - "1 | Duration : 123827", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Pips : Set default enactment period", - "1 | Duration : 123827", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1116, - "name": "Pips_Set_pending_pip_expiry", - "blob": "210300a1860100d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Set pending pip expiry", - "1 | Expiry : 100001", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Pips : Set pending pip expiry", - "1 | Expiry : 100001", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1117, - "name": "Pips_Set_pending_pip_expiry", - "blob": "210301d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Set pending pip expiry", - "1 | Expiry : None", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Pips : Set pending pip expiry", - "1 | Expiry : None", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1118, - "name": "Pips_Set_pending_pip_expiry", - "blob": "210300a1860100d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Set pending pip expiry", - "1 | Expiry : 100001", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Pips : Set pending pip expiry", - "1 | Expiry : 100001", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1119, - "name": "Pips_Set_pending_pip_expiry", - "blob": "210300a1860100d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Set pending pip expiry", - "1 | Expiry : 100001", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Pips : Set pending pip expiry", - "1 | Expiry : 100001", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1120, - "name": "Pips_Set_pending_pip_expiry", - "blob": "210300a1860100d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Set pending pip expiry", - "1 | Expiry : 100001", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Pips : Set pending pip expiry", - "1 | Expiry : 100001", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1121, - "name": "Pips_Set_max_pip_skip_count", - "blob": "210400d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Set max pip skip count", - "1 | Max : 0", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Pips : Set max pip skip count", - "1 | Max : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1122, - "name": "Pips_Set_max_pip_skip_count", - "blob": "210434d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Set max pip skip count", - "1 | Max : 52", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Pips : Set max pip skip count", - "1 | Max : 52", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1123, - "name": "Pips_Set_max_pip_skip_count", - "blob": "210434d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Set max pip skip count", - "1 | Max : 52", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Pips : Set max pip skip count", - "1 | Max : 52", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1124, - "name": "Pips_Set_max_pip_skip_count", - "blob": "210434d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Set max pip skip count", - "1 | Max : 52", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Pips : Set max pip skip count", - "1 | Max : 52", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1125, - "name": "Pips_Set_max_pip_skip_count", - "blob": "2104ffd503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Set max pip skip count", - "1 | Max : 255", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Pips : Set max pip skip count", - "1 | Max : 255", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1126, - "name": "Pips_Set_active_pip_limit", - "blob": "210534300000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Set active pip limit", - "1 | Limit : 12340" - ], - "output_expert": [ - "0 | Pips : Set active pip limit", - "1 | Limit : 12340", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1127, - "name": "Pips_Set_active_pip_limit", - "blob": "210534300000d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Set active pip limit", - "1 | Limit : 12340", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Pips : Set active pip limit", - "1 | Limit : 12340", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1128, - "name": "Pips_Set_active_pip_limit", - "blob": "2105f7010000d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Set active pip limit", - "1 | Limit : 503", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Pips : Set active pip limit", - "1 | Limit : 503", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1129, - "name": "Pips_Set_active_pip_limit", - "blob": "21059d1c0000d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Set active pip limit", - "1 | Limit : 7325", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Pips : Set active pip limit", - "1 | Limit : 7325", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1130, - "name": "Pips_Set_active_pip_limit", - "blob": "210534300000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Set active pip limit", - "1 | Limit : 12340", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Pips : Set active pip limit", - "1 | Limit : 12340", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1131, - "name": "Pips_Propose", - "blob": "21060000083434345fe7fc9c23bfb62334c8ca2c746fee014468747470733a2f2f6d7975726c2e75726c0154546869732069732061206465736372697074696f6ed50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Propose", - "1 | Proposal [1/2] : Remark", - "1 | Proposal [2/2] : 3434", - "2 | Deposit [1/2] : POLYX 31693496425641852120896906194770", - "2 | Deposit [2/2] : 0.371252", - "3 | Url : https://myurl.url", - "4 | Description : This is a description", - "5 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Pips : Propose", - "1 | Proposal [1/2] : Remark", - "1 | Proposal [2/2] : 3434", - "2 | Deposit [1/2] : POLYX 31693496425641852120896906194770", - "2 | Deposit [2/2] : 0.371252", - "3 | Url : https://myurl.url", - "4 | Description : This is a description", - "5 | Chain : Polymesh", - "6 | Nonce : 100", - "7 | Tip : POLYX 0.000987", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1132, - "name": "Pips_Propose", - "blob": "21060000083434345fe7fc9c23bfb62334c8ca2c746fee014468747470733a2f2f6d7975726c2e75726c0154546869732069732061206465736372697074696f6ed503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Propose", - "1 | Proposal [1/2] : Remark", - "1 | Proposal [2/2] : 3434", - "2 | Deposit [1/2] : POLYX 31693496425641852120896906194770", - "2 | Deposit [2/2] : 0.371252", - "3 | Url : https://myurl.url", - "4 | Description : This is a description", - "5 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Pips : Propose", - "1 | Proposal [1/2] : Remark", - "1 | Proposal [2/2] : 3434", - "2 | Deposit [1/2] : POLYX 31693496425641852120896906194770", - "2 | Deposit [2/2] : 0.371252", - "3 | Url : https://myurl.url", - "4 | Description : This is a description", - "5 | Chain : Polymesh", - "6 | Nonce : 0", - "7 | Tip : POLYX 0.000987", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1133, - "name": "Pips_Propose", - "blob": "21060000083434345fe7fc9c23bfb62334c8ca2c746fee014468747470733a2f2f6d7975726c2e75726c0154546869732069732061206465736372697074696f6ed5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Propose", - "1 | Proposal [1/2] : Remark", - "1 | Proposal [2/2] : 3434", - "2 | Deposit [1/2] : POLYX 31693496425641852120896906194770", - "2 | Deposit [2/2] : 0.371252", - "3 | Url : https://myurl.url", - "4 | Description : This is a description" - ], - "output_expert": [ - "0 | Pips : Propose", - "1 | Proposal [1/2] : Remark", - "1 | Proposal [2/2] : 3434", - "2 | Deposit [1/2] : POLYX 31693496425641852120896906194770", - "2 | Deposit [2/2] : 0.371252", - "3 | Url : https://myurl.url", - "4 | Description : This is a description", - "5 | Chain : Polymesh", - "6 | Nonce : 2339", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1134, - "name": "Pips_Propose", - "blob": "21060000083434345fe7fc9c23bfb62334c8ca2c746fee014468747470733a2f2f6d7975726c2e75726c0154546869732069732061206465736372697074696f6ed503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Propose", - "1 | Proposal [1/2] : Remark", - "1 | Proposal [2/2] : 3434", - "2 | Deposit [1/2] : POLYX 31693496425641852120896906194770", - "2 | Deposit [2/2] : 0.371252", - "3 | Url : https://myurl.url", - "4 | Description : This is a description", - "5 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Pips : Propose", - "1 | Proposal [1/2] : Remark", - "1 | Proposal [2/2] : 3434", - "2 | Deposit [1/2] : POLYX 31693496425641852120896906194770", - "2 | Deposit [2/2] : 0.371252", - "3 | Url : https://myurl.url", - "4 | Description : This is a description", - "5 | Chain : Polymesh", - "6 | Nonce : 50283", - "7 | Tip : POLYX 1234.56789", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1135, - "name": "Pips_Propose", - "blob": "21060000083434345fe7fc9c23bfb62334c8ca2c746fee014468747470733a2f2f6d7975726c2e75726c0154546869732069732061206465736372697074696f6ed503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Propose", - "1 | Proposal [1/2] : Remark", - "1 | Proposal [2/2] : 3434", - "2 | Deposit [1/2] : POLYX 31693496425641852120896906194770", - "2 | Deposit [2/2] : 0.371252", - "3 | Url : https://myurl.url", - "4 | Description : This is a description", - "5 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Pips : Propose", - "1 | Proposal [1/2] : Remark", - "1 | Proposal [2/2] : 3434", - "2 | Deposit [1/2] : POLYX 31693496425641852120896906194770", - "2 | Deposit [2/2] : 0.371252", - "3 | Url : https://myurl.url", - "4 | Description : This is a description", - "5 | Chain : Polymesh", - "6 | Nonce : 50283", - "7 | Tip : POLYX 0.000987", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1136, - "name": "Pips_Vote", - "blob": "2107db03000000345fe7fc9c23bfb62334c8ca2c746feed503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Vote", - "1 | Id : 987", - "2 | Aye or nay : False", - "3 | Deposit [1/2] : POLYX 31693496425641852120896906194770", - "3 | Deposit [2/2] : 0.371252", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Pips : Vote", - "1 | Id : 987", - "2 | Aye or nay : False", - "3 | Deposit [1/2] : POLYX 31693496425641852120896906194770", - "3 | Deposit [2/2] : 0.371252", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1137, - "name": "Pips_Vote", - "blob": "2107db03000000345fe7fc9c23bfb62334c8ca2c746feed503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Vote", - "1 | Id : 987", - "2 | Aye or nay : False", - "3 | Deposit [1/2] : POLYX 31693496425641852120896906194770", - "3 | Deposit [2/2] : 0.371252", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Pips : Vote", - "1 | Id : 987", - "2 | Aye or nay : False", - "3 | Deposit [1/2] : POLYX 31693496425641852120896906194770", - "3 | Deposit [2/2] : 0.371252", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1138, - "name": "Pips_Vote", - "blob": "21073530000001345fe7fc9c23bfb62334c8ca2c746feed5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Vote", - "1 | Id : 12341", - "2 | Aye or nay : True", - "3 | Deposit [1/2] : POLYX 31693496425641852120896906194770", - "3 | Deposit [2/2] : 0.371252", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Pips : Vote", - "1 | Id : 12341", - "2 | Aye or nay : True", - "3 | Deposit [1/2] : POLYX 31693496425641852120896906194770", - "3 | Deposit [2/2] : 0.371252", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1139, - "name": "Pips_Vote", - "blob": "2107775b000000345fe7fc9c23bfb62334c8ca2c746feed503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Vote", - "1 | Id : 23415", - "2 | Aye or nay : False", - "3 | Deposit [1/2] : POLYX 31693496425641852120896906194770", - "3 | Deposit [2/2] : 0.371252", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Pips : Vote", - "1 | Id : 23415", - "2 | Aye or nay : False", - "3 | Deposit [1/2] : POLYX 31693496425641852120896906194770", - "3 | Deposit [2/2] : 0.371252", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1140, - "name": "Pips_Vote", - "blob": "2107db03000001345fe7fc9c23bfb62334c8ca2c746feed5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Vote", - "1 | Id : 987", - "2 | Aye or nay : True", - "3 | Deposit [1/2] : POLYX 31693496425641852120896906194770", - "3 | Deposit [2/2] : 0.371252", - "4 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Pips : Vote", - "1 | Id : 987", - "2 | Aye or nay : True", - "3 | Deposit [1/2] : POLYX 31693496425641852120896906194770", - "3 | Deposit [2/2] : 0.371252", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1141, - "name": "Pips_Approve_committee_proposal", - "blob": "210800000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Approve committee proposal", - "1 | Id : 0", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Pips : Approve committee proposal", - "1 | Id : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1142, - "name": "Pips_Approve_committee_proposal", - "blob": "210835300000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Approve committee proposal", - "1 | Id : 12341", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Pips : Approve committee proposal", - "1 | Id : 12341", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1143, - "name": "Pips_Approve_committee_proposal", - "blob": "210800000000d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Approve committee proposal", - "1 | Id : 0" - ], - "output_expert": [ - "0 | Pips : Approve committee proposal", - "1 | Id : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1144, - "name": "Pips_Approve_committee_proposal", - "blob": "2108775b0000d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Approve committee proposal", - "1 | Id : 23415" - ], - "output_expert": [ - "0 | Pips : Approve committee proposal", - "1 | Id : 23415", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1145, - "name": "Pips_Approve_committee_proposal", - "blob": "210800000000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Approve committee proposal", - "1 | Id : 0", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Pips : Approve committee proposal", - "1 | Id : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1146, - "name": "Pips_Reject_proposal", - "blob": "210935300000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Reject proposal", - "1 | Id : 12341" - ], - "output_expert": [ - "0 | Pips : Reject proposal", - "1 | Id : 12341", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1147, - "name": "Pips_Reject_proposal", - "blob": "210935300000d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Reject proposal", - "1 | Id : 12341", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Pips : Reject proposal", - "1 | Id : 12341", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1148, - "name": "Pips_Reject_proposal", - "blob": "210935300000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Reject proposal", - "1 | Id : 12341", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Pips : Reject proposal", - "1 | Id : 12341", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1149, - "name": "Pips_Reject_proposal", - "blob": "2109db030000d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Reject proposal", - "1 | Id : 987", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Pips : Reject proposal", - "1 | Id : 987", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1150, - "name": "Pips_Reject_proposal", - "blob": "210935300000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Reject proposal", - "1 | Id : 12341", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Pips : Reject proposal", - "1 | Id : 12341", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1151, - "name": "Pips_Prune_proposal", - "blob": "210a35300000d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Prune proposal", - "1 | Id : 12341" - ], - "output_expert": [ - "0 | Pips : Prune proposal", - "1 | Id : 12341", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1152, - "name": "Pips_Prune_proposal", - "blob": "210a00000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Prune proposal", - "1 | Id : 0", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Pips : Prune proposal", - "1 | Id : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1153, - "name": "Pips_Prune_proposal", - "blob": "210a00000000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Prune proposal", - "1 | Id : 0" - ], - "output_expert": [ - "0 | Pips : Prune proposal", - "1 | Id : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1154, - "name": "Pips_Prune_proposal", - "blob": "210a00000000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Prune proposal", - "1 | Id : 0", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Pips : Prune proposal", - "1 | Id : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1155, - "name": "Pips_Prune_proposal", - "blob": "210adb030000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Prune proposal", - "1 | Id : 987", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Pips : Prune proposal", - "1 | Id : 987", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1156, - "name": "Pips_Reschedule_execution", - "blob": "210bdb0300000123620000d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Reschedule execution", - "1 | Id : 987", - "2 | Until : 25123", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Pips : Reschedule execution", - "1 | Id : 987", - "2 | Until : 25123", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1157, - "name": "Pips_Reschedule_execution", - "blob": "210b3530000001149d1d21d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Reschedule execution", - "1 | Id : 12341", - "2 | Until : 555588884", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Pips : Reschedule execution", - "1 | Id : 12341", - "2 | Until : 555588884", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1158, - "name": "Pips_Reschedule_execution", - "blob": "210b353000000123620000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Reschedule execution", - "1 | Id : 12341", - "2 | Until : 25123", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Pips : Reschedule execution", - "1 | Id : 12341", - "2 | Until : 25123", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1159, - "name": "Pips_Reschedule_execution", - "blob": "210b775b000001149d1d21d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Reschedule execution", - "1 | Id : 23415", - "2 | Until : 555588884", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Pips : Reschedule execution", - "1 | Id : 23415", - "2 | Until : 555588884", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1160, - "name": "Pips_Reschedule_execution", - "blob": "210b3530000001149d1d21d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Reschedule execution", - "1 | Id : 12341", - "2 | Until : 555588884", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Pips : Reschedule execution", - "1 | Id : 12341", - "2 | Until : 555588884", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1161, - "name": "Pips_Clear_snapshot", - "blob": "210cd503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Clear snapshot", - "1 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Pips : Clear snapshot", - "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Tip : POLYX 5552342.355555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1162, - "name": "Pips_Clear_snapshot", - "blob": "210cd50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Clear snapshot", - "1 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Pips : Clear snapshot", - "1 | Chain : Polymesh", - "2 | Nonce : 100", - "3 | Tip : POLYX 55.555555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1163, - "name": "Pips_Clear_snapshot", - "blob": "210cd503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Clear snapshot" - ], - "output_expert": [ - "0 | Pips : Clear snapshot", - "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "5 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1164, - "name": "Pips_Clear_snapshot", - "blob": "210cd503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Clear snapshot", - "1 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "1 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Pips : Clear snapshot", - "1 | Chain : Polymesh", - "2 | Nonce : 100", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1165, - "name": "Pips_Clear_snapshot", - "blob": "210cd503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Clear snapshot" - ], - "output_expert": [ - "0 | Pips : Clear snapshot", - "1 | Chain : Polymesh", - "2 | Nonce : 50283", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "5 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1166, - "name": "Pips_Snapshot", - "blob": "210dd50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Snapshot", - "1 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Pips : Snapshot", - "1 | Chain : Polymesh", - "2 | Nonce : 100", - "3 | Tip : POLYX 5552342.355555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1167, - "name": "Pips_Snapshot", - "blob": "210dd5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Snapshot", - "1 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Pips : Snapshot", - "1 | Chain : Polymesh", - "2 | Nonce : 2339", - "3 | Tip : POLYX 5552342.355555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1168, - "name": "Pips_Snapshot", - "blob": "210dd5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Snapshot", - "1 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Pips : Snapshot", - "1 | Chain : Polymesh", - "2 | Nonce : 0", - "3 | Tip : POLYX 1234.56789", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1169, - "name": "Pips_Snapshot", - "blob": "210dd5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Snapshot", - "1 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Pips : Snapshot", - "1 | Chain : Polymesh", - "2 | Nonce : 2339", - "3 | Tip : POLYX 5552342.355555", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1170, - "name": "Pips_Snapshot", - "blob": "210dd50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Snapshot" - ], - "output_expert": [ - "0 | Pips : Snapshot", - "1 | Chain : Polymesh", - "2 | Nonce : 100", - "3 | Era Phase : 61", - "4 | Era Period : 64", - "5 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "5 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1171, - "name": "Pips_Enact_snapshot_results", - "blob": "210e0893150000007510000002d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Enact snapshot results", - "1 | Results [1/4] : 5523", - "1 | Results [2/4] : Approve", - "1 | Results [3/4] : 4213", - "1 | Results [4/4] : Skip", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Pips : Enact snapshot results", - "1 | Results [1/4] : 5523", - "1 | Results [2/4] : Approve", - "1 | Results [3/4] : 4213", - "1 | Results [4/4] : Skip", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1172, - "name": "Pips_Enact_snapshot_results", - "blob": "210e0893150000007510000002d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Enact snapshot results", - "1 | Results [1/4] : 5523", - "1 | Results [2/4] : Approve", - "1 | Results [3/4] : 4213", - "1 | Results [4/4] : Skip", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Pips : Enact snapshot results", - "1 | Results [1/4] : 5523", - "1 | Results [2/4] : Approve", - "1 | Results [3/4] : 4213", - "1 | Results [4/4] : Skip", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1173, - "name": "Pips_Enact_snapshot_results", - "blob": "210e0893150000007510000002d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Enact snapshot results", - "1 | Results [1/4] : 5523", - "1 | Results [2/4] : Approve", - "1 | Results [3/4] : 4213", - "1 | Results [4/4] : Skip", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Pips : Enact snapshot results", - "1 | Results [1/4] : 5523", - "1 | Results [2/4] : Approve", - "1 | Results [3/4] : 4213", - "1 | Results [4/4] : Skip", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1174, - "name": "Pips_Enact_snapshot_results", - "blob": "210e0893150000007510000002d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Enact snapshot results", - "1 | Results [1/4] : 5523", - "1 | Results [2/4] : Approve", - "1 | Results [3/4] : 4213", - "1 | Results [4/4] : Skip", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Pips : Enact snapshot results", - "1 | Results [1/4] : 5523", - "1 | Results [2/4] : Approve", - "1 | Results [3/4] : 4213", - "1 | Results [4/4] : Skip", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1175, - "name": "Pips_Enact_snapshot_results", - "blob": "210e0893150000007510000002d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Enact snapshot results", - "1 | Results [1/4] : 5523", - "1 | Results [2/4] : Approve", - "1 | Results [3/4] : 4213", - "1 | Results [4/4] : Skip", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Pips : Enact snapshot results", - "1 | Results [1/4] : 5523", - "1 | Results [2/4] : Approve", - "1 | Results [3/4] : 4213", - "1 | Results [4/4] : Skip", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1176, - "name": "Pips_Execute_scheduled_pip", - "blob": "210fdb030000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Execute scheduled pip", - "1 | Id : 987" - ], - "output_expert": [ - "0 | Pips : Execute scheduled pip", - "1 | Id : 987", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1177, - "name": "Pips_Execute_scheduled_pip", - "blob": "210fdb030000d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Execute scheduled pip", - "1 | Id : 987", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Pips : Execute scheduled pip", - "1 | Id : 987", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1178, - "name": "Pips_Execute_scheduled_pip", - "blob": "210f775b0000d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Execute scheduled pip", - "1 | Id : 23415", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Pips : Execute scheduled pip", - "1 | Id : 23415", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1179, - "name": "Pips_Execute_scheduled_pip", - "blob": "210f775b0000d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Execute scheduled pip", - "1 | Id : 23415" - ], - "output_expert": [ - "0 | Pips : Execute scheduled pip", - "1 | Id : 23415", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1180, - "name": "Pips_Execute_scheduled_pip", - "blob": "210f00000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Execute scheduled pip", - "1 | Id : 0", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Pips : Execute scheduled pip", - "1 | Id : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1181, - "name": "Pips_Expire_scheduled_pip", - "blob": "211031c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecdb030000d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Expire scheduled pip", - "1 | Did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Did [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Id : 987" - ], - "output_expert": [ - "0 | Pips : Expire scheduled pip", - "1 | Did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Did [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Id : 987", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1182, - "name": "Pips_Expire_scheduled_pip", - "blob": "211031c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec35300000d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Expire scheduled pip", - "1 | Did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Did [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Id : 12341" - ], - "output_expert": [ - "0 | Pips : Expire scheduled pip", - "1 | Did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Did [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Id : 12341", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1183, - "name": "Pips_Expire_scheduled_pip", - "blob": "211031c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec00000000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Expire scheduled pip", - "1 | Did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Did [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Id : 0" - ], - "output_expert": [ - "0 | Pips : Expire scheduled pip", - "1 | Did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Did [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Id : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1184, - "name": "Pips_Expire_scheduled_pip", - "blob": "211031c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec00000000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Expire scheduled pip", - "1 | Did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Did [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Id : 0" - ], - "output_expert": [ - "0 | Pips : Expire scheduled pip", - "1 | Did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Did [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Id : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1185, - "name": "Pips_Expire_scheduled_pip", - "blob": "211031c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecdb030000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Pips : Expire scheduled pip", - "1 | Did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Did [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Id : 987", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Pips : Expire scheduled pip", - "1 | Did [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Did [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Id : 987", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1186, - "name": "Portfolio_Create_portfolio", - "blob": "220034506f7274666f6c696f4e616d65d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Create portfolio", - "1 | Name : PortfolioName", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Portfolio : Create portfolio", - "1 | Name : PortfolioName", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1187, - "name": "Portfolio_Create_portfolio", - "blob": "220034506f7274666f6c696f4e616d65d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Create portfolio", - "1 | Name : PortfolioName" - ], - "output_expert": [ - "0 | Portfolio : Create portfolio", - "1 | Name : PortfolioName", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1188, - "name": "Portfolio_Create_portfolio", - "blob": "220034506f7274666f6c696f4e616d65d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Create portfolio", - "1 | Name : PortfolioName", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Portfolio : Create portfolio", - "1 | Name : PortfolioName", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1189, - "name": "Portfolio_Create_portfolio", - "blob": "220034506f7274666f6c696f4e616d65d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Create portfolio", - "1 | Name : PortfolioName", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Portfolio : Create portfolio", - "1 | Name : PortfolioName", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1190, - "name": "Portfolio_Create_portfolio", - "blob": "220034506f7274666f6c696f4e616d65d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Create portfolio", - "1 | Name : PortfolioName", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Portfolio : Create portfolio", - "1 | Name : PortfolioName", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1191, - "name": "Portfolio_Delete_portfolio", - "blob": "22010000000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Delete portfolio", - "1 | Num : 0", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Portfolio : Delete portfolio", - "1 | Num : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1192, - "name": "Portfolio_Delete_portfolio", - "blob": "22010000000000000000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Delete portfolio", - "1 | Num : 0" - ], - "output_expert": [ - "0 | Portfolio : Delete portfolio", - "1 | Num : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1193, - "name": "Portfolio_Delete_portfolio", - "blob": "2201ff03000000000000d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Delete portfolio", - "1 | Num : 1023", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Portfolio : Delete portfolio", - "1 | Num : 1023", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1194, - "name": "Portfolio_Delete_portfolio", - "blob": "2201ff03000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Delete portfolio", - "1 | Num : 1023", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Portfolio : Delete portfolio", - "1 | Num : 1023", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1195, - "name": "Portfolio_Delete_portfolio", - "blob": "22017b00000000000000d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Delete portfolio", - "1 | Num : 123", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Portfolio : Delete portfolio", - "1 | Num : 123", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1196, - "name": "Portfolio_Rename_portfolio", - "blob": "2202b3e301000000000034506f7274666f6c696f4e616d65d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Rename portfolio", - "1 | Num : 123827", - "2 | To name : PortfolioName", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Portfolio : Rename portfolio", - "1 | Num : 123827", - "2 | To name : PortfolioName", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1197, - "name": "Portfolio_Rename_portfolio", - "blob": "2202ac3500000000000034506f7274666f6c696f4e616d65d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Rename portfolio", - "1 | Num : 13740", - "2 | To name : PortfolioName", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Portfolio : Rename portfolio", - "1 | Num : 13740", - "2 | To name : PortfolioName", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1198, - "name": "Portfolio_Rename_portfolio", - "blob": "2202ff0300000000000034506f7274666f6c696f4e616d65d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Rename portfolio", - "1 | Num : 1023", - "2 | To name : PortfolioName" - ], - "output_expert": [ - "0 | Portfolio : Rename portfolio", - "1 | Num : 1023", - "2 | To name : PortfolioName", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1199, - "name": "Portfolio_Rename_portfolio", - "blob": "2202000000000000000034506f7274666f6c696f4e616d65d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Rename portfolio", - "1 | Num : 0", - "2 | To name : PortfolioName", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Portfolio : Rename portfolio", - "1 | Num : 0", - "2 | To name : PortfolioName", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1200, - "name": "Portfolio_Rename_portfolio", - "blob": "2202250100000000000034506f7274666f6c696f4e616d65d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Rename portfolio", - "1 | Num : 293", - "2 | To name : PortfolioName", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Portfolio : Rename portfolio", - "1 | Num : 293", - "2 | To name : PortfolioName", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1201, - "name": "Portfolio_Quit_portfolio_custody", - "blob": "22030e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e2010000000000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Quit portfolio custody", - "1 | Pid [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | Pid [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | Pid [3/3] : 123456", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Portfolio : Quit portfolio custody", - "1 | Pid [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | Pid [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | Pid [3/3] : 123456", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1202, - "name": "Portfolio_Quit_portfolio_custody", - "blob": "22030e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e2010000000000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Quit portfolio custody", - "1 | Pid [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | Pid [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | Pid [3/3] : 123456", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Portfolio : Quit portfolio custody", - "1 | Pid [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | Pid [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | Pid [3/3] : 123456", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1203, - "name": "Portfolio_Quit_portfolio_custody", - "blob": "22030e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e2010000000000d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Quit portfolio custody", - "1 | Pid [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | Pid [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | Pid [3/3] : 123456", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Portfolio : Quit portfolio custody", - "1 | Pid [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | Pid [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | Pid [3/3] : 123456", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1204, - "name": "Portfolio_Quit_portfolio_custody", - "blob": "22030e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e2010000000000d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Quit portfolio custody", - "1 | Pid [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | Pid [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | Pid [3/3] : 123456", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Portfolio : Quit portfolio custody", - "1 | Pid [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | Pid [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | Pid [3/3] : 123456", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1205, - "name": "Portfolio_Quit_portfolio_custody", - "blob": "22030e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e2010000000000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Quit portfolio custody", - "1 | Pid [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | Pid [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | Pid [3/3] : 123456", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Portfolio : Quit portfolio custody", - "1 | Pid [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | Pid [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | Pid [3/3] : 123456", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1206, - "name": "Portfolio_Accept_portfolio_custody", - "blob": "22040000000000000000d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Accept portfolio custody", - "1 | Auth id : 0", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Portfolio : Accept portfolio custody", - "1 | Auth id : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1207, - "name": "Portfolio_Accept_portfolio_custody", - "blob": "22046400000000000000d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Accept portfolio custody", - "1 | Auth id : 100", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Portfolio : Accept portfolio custody", - "1 | Auth id : 100", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1208, - "name": "Portfolio_Accept_portfolio_custody", - "blob": "22040100000000000000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Accept portfolio custody", - "1 | Auth id : 1" - ], - "output_expert": [ - "0 | Portfolio : Accept portfolio custody", - "1 | Auth id : 1", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1209, - "name": "Portfolio_Accept_portfolio_custody", - "blob": "22046400000000000000d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Accept portfolio custody", - "1 | Auth id : 100" - ], - "output_expert": [ - "0 | Portfolio : Accept portfolio custody", - "1 | Auth id : 100", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1210, - "name": "Portfolio_Accept_portfolio_custody", - "blob": "22040000000000000000d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Accept portfolio custody", - "1 | Auth id : 0" - ], - "output_expert": [ - "0 | Portfolio : Accept portfolio custody", - "1 | Auth id : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1211, - "name": "Portfolio_Move_portfolio_funds", - "blob": "22050e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e20100000000000e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e201000000000008005449434b45522d3334353637e76310a78ff5d3005a7d060bfe449e86010000000000000000000000000000000000000000000000000000000000000000015449434b45522d31323334350c630e1ac47fef5c421b6320047a6155d721a7aa686c54d71401e0056f26ad71f1f6f5a75d095d9ee15bef10ba433b0d86b44780eb36f7de3293d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Move portfolio funds", - "1 | From [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | From [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | From [3/3] : 123456", - "2 | To [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | To [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | To [3/3] : 123456", - "3 | Funds [1/11] : TICKER-34567", - "3 | Funds [2/11] : 178938333670045737290178011758783.9149", - "3 | Funds [3/11] : 83", - "3 | Funds [4/11] : 0x000000000000000000000000000000000000", - "3 | Funds [5/11] : 0000000000000000000000000000", - "3 | Funds [6/11] : TICKER-12345", - "3 | Funds [7/11] : 4781960236390551139", - "3 | Funds [8/11] : 15516415267858047771", - "3 | Funds [9/11] : 1501761825340565281", - "3 | Funds [10/11] : 0xe0056f26ad71f1f6f5a75d095d9ee15bef10", - "3 | Funds [11/11] : ba433b0d86b44780eb36f7de3293", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Portfolio : Move portfolio funds", - "1 | From [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | From [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | From [3/3] : 123456", - "2 | To [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | To [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | To [3/3] : 123456", - "3 | Funds [1/11] : TICKER-34567", - "3 | Funds [2/11] : 178938333670045737290178011758783.9149", - "3 | Funds [3/11] : 83", - "3 | Funds [4/11] : 0x000000000000000000000000000000000000", - "3 | Funds [5/11] : 0000000000000000000000000000", - "3 | Funds [6/11] : TICKER-12345", - "3 | Funds [7/11] : 4781960236390551139", - "3 | Funds [8/11] : 15516415267858047771", - "3 | Funds [9/11] : 1501761825340565281", - "3 | Funds [10/11] : 0xe0056f26ad71f1f6f5a75d095d9ee15bef10", - "3 | Funds [11/11] : ba433b0d86b44780eb36f7de3293", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1212, - "name": "Portfolio_Move_portfolio_funds", - "blob": "22050e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e20100000000000e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e201000000000008005449434b45522d3334353637e76310a78ff5d3005a7d060bfe449e86010000000000000000000000000000000000000000000000000000000000000000015449434b45522d31323334350c630e1ac47fef5c421b6320047a6155d721a7aa686c54d71401e0056f26ad71f1f6f5a75d095d9ee15bef10ba433b0d86b44780eb36f7de3293d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Move portfolio funds", - "1 | From [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | From [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | From [3/3] : 123456", - "2 | To [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | To [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | To [3/3] : 123456", - "3 | Funds [1/11] : TICKER-34567", - "3 | Funds [2/11] : 178938333670045737290178011758783.9149", - "3 | Funds [3/11] : 83", - "3 | Funds [4/11] : 0x000000000000000000000000000000000000", - "3 | Funds [5/11] : 0000000000000000000000000000", - "3 | Funds [6/11] : TICKER-12345", - "3 | Funds [7/11] : 4781960236390551139", - "3 | Funds [8/11] : 15516415267858047771", - "3 | Funds [9/11] : 1501761825340565281", - "3 | Funds [10/11] : 0xe0056f26ad71f1f6f5a75d095d9ee15bef10", - "3 | Funds [11/11] : ba433b0d86b44780eb36f7de3293", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Portfolio : Move portfolio funds", - "1 | From [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | From [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | From [3/3] : 123456", - "2 | To [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | To [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | To [3/3] : 123456", - "3 | Funds [1/11] : TICKER-34567", - "3 | Funds [2/11] : 178938333670045737290178011758783.9149", - "3 | Funds [3/11] : 83", - "3 | Funds [4/11] : 0x000000000000000000000000000000000000", - "3 | Funds [5/11] : 0000000000000000000000000000", - "3 | Funds [6/11] : TICKER-12345", - "3 | Funds [7/11] : 4781960236390551139", - "3 | Funds [8/11] : 15516415267858047771", - "3 | Funds [9/11] : 1501761825340565281", - "3 | Funds [10/11] : 0xe0056f26ad71f1f6f5a75d095d9ee15bef10", - "3 | Funds [11/11] : ba433b0d86b44780eb36f7de3293", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1213, - "name": "Portfolio_Move_portfolio_funds", - "blob": "22050e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e20100000000000e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e201000000000000d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Move portfolio funds", - "1 | From [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | From [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | From [3/3] : 123456", - "2 | To [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | To [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | To [3/3] : 123456", - "3 | Funds : ", - "4 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Portfolio : Move portfolio funds", - "1 | From [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | From [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | From [3/3] : 123456", - "2 | To [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | To [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | To [3/3] : 123456", - "3 | Funds : ", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1214, - "name": "Portfolio_Move_portfolio_funds", - "blob": "22050e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e20100000000000e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e201000000000000d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Move portfolio funds", - "1 | From [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | From [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | From [3/3] : 123456", - "2 | To [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | To [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | To [3/3] : 123456", - "3 | Funds : " - ], - "output_expert": [ - "0 | Portfolio : Move portfolio funds", - "1 | From [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | From [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | From [3/3] : 123456", - "2 | To [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | To [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | To [3/3] : 123456", - "3 | Funds : ", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1215, - "name": "Portfolio_Move_portfolio_funds", - "blob": "22050e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e20100000000000e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e201000000000000d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Move portfolio funds", - "1 | From [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | From [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | From [3/3] : 123456", - "2 | To [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | To [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | To [3/3] : 123456", - "3 | Funds : ", - "4 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Portfolio : Move portfolio funds", - "1 | From [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | From [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | From [3/3] : 123456", - "2 | To [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | To [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | To [3/3] : 123456", - "3 | Funds : ", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1216, - "name": "Portfolio_Pre_approve_portfolio", - "blob": "22065449434b45522d31323334350e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e2010000000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Pre approve portfolio", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio id [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio id [3/3] : 123456", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Portfolio : Pre approve portfolio", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio id [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio id [3/3] : 123456", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1217, - "name": "Portfolio_Pre_approve_portfolio", - "blob": "22065449434b45522d31323334350e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e2010000000000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Pre approve portfolio", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio id [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio id [3/3] : 123456", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Portfolio : Pre approve portfolio", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio id [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio id [3/3] : 123456", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1218, - "name": "Portfolio_Pre_approve_portfolio", - "blob": "22065449434b45522d31323334350e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e2010000000000d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Pre approve portfolio", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio id [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio id [3/3] : 123456", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Portfolio : Pre approve portfolio", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio id [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio id [3/3] : 123456", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1219, - "name": "Portfolio_Pre_approve_portfolio", - "blob": "22065449434b45522d31323334350e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e2010000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Pre approve portfolio", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio id [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio id [3/3] : 123456", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Portfolio : Pre approve portfolio", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio id [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio id [3/3] : 123456", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1220, - "name": "Portfolio_Pre_approve_portfolio", - "blob": "22065449434b45522d31323334350e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e2010000000000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Pre approve portfolio", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio id [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio id [3/3] : 123456", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Portfolio : Pre approve portfolio", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio id [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio id [3/3] : 123456", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1221, - "name": "Portfolio_Remove_portfolio_pre_approval", - "blob": "22075449434b45522d31323334350e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e2010000000000d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Remove portfolio pre approval", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio id [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio id [3/3] : 123456", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Portfolio : Remove portfolio pre approval", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio id [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio id [3/3] : 123456", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1222, - "name": "Portfolio_Remove_portfolio_pre_approval", - "blob": "22075449434b45522d31323334350e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e2010000000000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Remove portfolio pre approval", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio id [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio id [3/3] : 123456", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Portfolio : Remove portfolio pre approval", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio id [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio id [3/3] : 123456", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1223, - "name": "Portfolio_Remove_portfolio_pre_approval", - "blob": "22075449434b45522d31323334350e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e2010000000000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Remove portfolio pre approval", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio id [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio id [3/3] : 123456", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Portfolio : Remove portfolio pre approval", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio id [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio id [3/3] : 123456", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1224, - "name": "Portfolio_Remove_portfolio_pre_approval", - "blob": "22075449434b45522d31323334350e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e2010000000000d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Remove portfolio pre approval", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio id [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio id [3/3] : 123456", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Portfolio : Remove portfolio pre approval", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio id [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio id [3/3] : 123456", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1225, - "name": "Portfolio_Remove_portfolio_pre_approval", - "blob": "22075449434b45522d31323334350e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e2010000000000d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Remove portfolio pre approval", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio id [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio id [3/3] : 123456" - ], - "output_expert": [ - "0 | Portfolio : Remove portfolio pre approval", - "1 | Ticker : TICKER-12345", - "2 | Portfolio id [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio id [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio id [3/3] : 123456", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1226, - "name": "Portfolio_Allow_identity_to_create_portfolios", - "blob": "220831c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Allow identity to create portfolios", - "1 | Trusted identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Trusted identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Portfolio : Allow identity to create portfolios", - "1 | Trusted identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Trusted identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1227, - "name": "Portfolio_Allow_identity_to_create_portfolios", - "blob": "220831c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Allow identity to create portfolios", - "1 | Trusted identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Trusted identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Portfolio : Allow identity to create portfolios", - "1 | Trusted identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Trusted identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1228, - "name": "Portfolio_Allow_identity_to_create_portfolios", - "blob": "220831c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Allow identity to create portfolios", - "1 | Trusted identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Trusted identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Portfolio : Allow identity to create portfolios", - "1 | Trusted identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Trusted identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1229, - "name": "Portfolio_Allow_identity_to_create_portfolios", - "blob": "220831c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Allow identity to create portfolios", - "1 | Trusted identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Trusted identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Portfolio : Allow identity to create portfolios", - "1 | Trusted identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Trusted identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1230, - "name": "Portfolio_Allow_identity_to_create_portfolios", - "blob": "220831c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Allow identity to create portfolios", - "1 | Trusted identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Trusted identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Portfolio : Allow identity to create portfolios", - "1 | Trusted identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Trusted identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1231, - "name": "Portfolio_Revoke_create_portfolios_permission", - "blob": "220931c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Revoke create portfolios permission", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Portfolio : Revoke create portfolios permission", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1232, - "name": "Portfolio_Revoke_create_portfolios_permission", - "blob": "220931c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Revoke create portfolios permission", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Portfolio : Revoke create portfolios permission", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1233, - "name": "Portfolio_Revoke_create_portfolios_permission", - "blob": "220931c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Revoke create portfolios permission", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec" - ], - "output_expert": [ - "0 | Portfolio : Revoke create portfolios permission", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1234, - "name": "Portfolio_Revoke_create_portfolios_permission", - "blob": "220931c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Revoke create portfolios permission", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Portfolio : Revoke create portfolios permission", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1235, - "name": "Portfolio_Revoke_create_portfolios_permission", - "blob": "220931c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Revoke create portfolios permission", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Portfolio : Revoke create portfolios permission", - "1 | Identity [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Identity [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1236, - "name": "Portfolio_Create_custody_portfolio", - "blob": "220a31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec34506f7274666f6c696f4e616d65d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Create custody portfolio", - "1 | Portfolio owner id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Portfolio owner id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Portfolio name : PortfolioName", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Portfolio : Create custody portfolio", - "1 | Portfolio owner id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Portfolio owner id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Portfolio name : PortfolioName", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1237, - "name": "Portfolio_Create_custody_portfolio", - "blob": "220a31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec34506f7274666f6c696f4e616d65d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Create custody portfolio", - "1 | Portfolio owner id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Portfolio owner id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Portfolio name : PortfolioName" - ], - "output_expert": [ - "0 | Portfolio : Create custody portfolio", - "1 | Portfolio owner id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Portfolio owner id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Portfolio name : PortfolioName", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1238, - "name": "Portfolio_Create_custody_portfolio", - "blob": "220a31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec34506f7274666f6c696f4e616d65d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Create custody portfolio", - "1 | Portfolio owner id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Portfolio owner id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Portfolio name : PortfolioName", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Portfolio : Create custody portfolio", - "1 | Portfolio owner id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Portfolio owner id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Portfolio name : PortfolioName", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1239, - "name": "Portfolio_Create_custody_portfolio", - "blob": "220a31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec34506f7274666f6c696f4e616d65d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Create custody portfolio", - "1 | Portfolio owner id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Portfolio owner id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Portfolio name : PortfolioName" - ], - "output_expert": [ - "0 | Portfolio : Create custody portfolio", - "1 | Portfolio owner id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Portfolio owner id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Portfolio name : PortfolioName", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1240, - "name": "Portfolio_Create_custody_portfolio", - "blob": "220a31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec34506f7274666f6c696f4e616d65d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Portfolio : Create custody portfolio", - "1 | Portfolio owner id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Portfolio owner id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Portfolio name : PortfolioName", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Portfolio : Create custody portfolio", - "1 | Portfolio owner id [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "1 | Portfolio owner id [2/2] : 258ab3f4314e37a4eb089601ec", - "2 | Portfolio name : PortfolioName", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1241, - "name": "Protocolfee_Change_coefficient", - "blob": "2300f4010000f4010000d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Protocolfee : Change coefficient", - "1 | Coefficient [1/2] : 500", - "1 | Coefficient [2/2] : 500", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Protocolfee : Change coefficient", - "1 | Coefficient [1/2] : 500", - "1 | Coefficient [2/2] : 500", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1242, - "name": "Protocolfee_Change_coefficient", - "blob": "2300f4010000f4010000d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Protocolfee : Change coefficient", - "1 | Coefficient [1/2] : 500", - "1 | Coefficient [2/2] : 500", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Protocolfee : Change coefficient", - "1 | Coefficient [1/2] : 500", - "1 | Coefficient [2/2] : 500", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1243, - "name": "Protocolfee_Change_coefficient", - "blob": "2300f4010000f4010000d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Protocolfee : Change coefficient", - "1 | Coefficient [1/2] : 500", - "1 | Coefficient [2/2] : 500", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Protocolfee : Change coefficient", - "1 | Coefficient [1/2] : 500", - "1 | Coefficient [2/2] : 500", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1244, - "name": "Protocolfee_Change_coefficient", - "blob": "2300f4010000f4010000d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Protocolfee : Change coefficient", - "1 | Coefficient [1/2] : 500", - "1 | Coefficient [2/2] : 500" - ], - "output_expert": [ - "0 | Protocolfee : Change coefficient", - "1 | Coefficient [1/2] : 500", - "1 | Coefficient [2/2] : 500", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1245, - "name": "Protocolfee_Change_coefficient", - "blob": "2300f4010000f4010000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Protocolfee : Change coefficient", - "1 | Coefficient [1/2] : 500", - "1 | Coefficient [2/2] : 500", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Protocolfee : Change coefficient", - "1 | Coefficient [1/2] : 500", - "1 | Coefficient [2/2] : 500", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1246, - "name": "Settlement_Create_venue", - "blob": "25003856656e756544657461696c735f412096c9a2216d28c14c47af46d21364f3bcf703596e719406b4d4afb0888082a1641036b0511c39bdfde776ff9d12ec5010bcaefdf3cd4f3eea28086e7cf20d653d06a6a4d916a5af88c31c154aff8cb10bafafc727284c8f146a0e179b2d62507c866496b627cea02869fff6bb8500fa155fddc88013dd7d6d1dd3e69775c0e96644d2224a4d3db130288cc701d703ff59e19751689074e3012b821d1a34549f0308dd2973c24b277af7aa79f7d942374d6d7c9ea76219384e14f92232f053374b60277ddc94f00fc747f34543992302f4b7da84a78bcef531eb27b0fe25bc5e1ba438c1c4fa14bdaae5a1e8f6cc2f418426107a90157e354ccb36974d65e30c2e03d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Create venue", - "1 | Details : VenueDetails_A", - "2 | Signers [1/16] : 2FrdBZg1vFwqRqa5NuyQei9H9DpuiWcgx2Ls5j", - "2 | Signers [2/16] : wB9nsebaPf", - "2 | Signers [3/16] : 2CpB7cDRsXpAwuc32T15Q5efnz3FoXkgyspsPS", - "2 | Signers [4/16] : hitY1tD1Pe", - "2 | Signers [5/16] : 2Cbdtn5W6aUfZhj5Jz7xZjwU8sGnnRM9PddoZ8", - "2 | Signers [6/16] : hMZTaEWCiU", - "2 | Signers [7/16] : 2FV8QAm95JQTC7ioBiZW9F2APfYzWALGDXWgFW", - "2 | Signers [8/16] : VZ7nfQyFq4", - "2 | Signers [9/16] : 2E19nHb7njmgNvtVEdCfosndMc4bRjSgdpYhsN", - "2 | Signers [10/16] : UK8gPpEZS4", - "2 | Signers [11/16] : 2CeYBeytGbFCXkisuL4zaxyraQs3UVHfxGKFXe", - "2 | Signers [12/16] : s6UfmnyYrD", - "2 | Signers [13/16] : 2EczRxEs9gGH9kD56B3diqzvaTupYjgvQbrZ23", - "2 | Signers [14/16] : BcQbd1PE4Z", - "2 | Signers [15/16] : 2GAEpHRtLiUgNGpuQ1YL6Xp23BUvRDAZ5EpoQc", - "2 | Signers [16/16] : E2fWN2WFcW", - "3 | Typ : Exchange", - "4 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Settlement : Create venue", - "1 | Details : VenueDetails_A", - "2 | Signers [1/16] : 2FrdBZg1vFwqRqa5NuyQei9H9DpuiWcgx2Ls5j", - "2 | Signers [2/16] : wB9nsebaPf", - "2 | Signers [3/16] : 2CpB7cDRsXpAwuc32T15Q5efnz3FoXkgyspsPS", - "2 | Signers [4/16] : hitY1tD1Pe", - "2 | Signers [5/16] : 2Cbdtn5W6aUfZhj5Jz7xZjwU8sGnnRM9PddoZ8", - "2 | Signers [6/16] : hMZTaEWCiU", - "2 | Signers [7/16] : 2FV8QAm95JQTC7ioBiZW9F2APfYzWALGDXWgFW", - "2 | Signers [8/16] : VZ7nfQyFq4", - "2 | Signers [9/16] : 2E19nHb7njmgNvtVEdCfosndMc4bRjSgdpYhsN", - "2 | Signers [10/16] : UK8gPpEZS4", - "2 | Signers [11/16] : 2CeYBeytGbFCXkisuL4zaxyraQs3UVHfxGKFXe", - "2 | Signers [12/16] : s6UfmnyYrD", - "2 | Signers [13/16] : 2EczRxEs9gGH9kD56B3diqzvaTupYjgvQbrZ23", - "2 | Signers [14/16] : BcQbd1PE4Z", - "2 | Signers [15/16] : 2GAEpHRtLiUgNGpuQ1YL6Xp23BUvRDAZ5EpoQc", - "2 | Signers [16/16] : E2fWN2WFcW", - "3 | Typ : Exchange", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1247, - "name": "Settlement_Create_venue", - "blob": "25003856656e756544657461696c735f4124ba09ae5a1a06d6a5096e8fff1812b427b7b8472f8afd3f28a205cca623b2a62894667ff8cef58cc65f6a3fabe6d4738e6d923d558a0a9b19ad9893733082835bba966ea6ca4234843141fdd009bb8745df4e0cf51e7c8a9db5ae5d37c16fed2f360d0e343f81176e30f6f89c55f0b0ddc12c86dfac9f66b1a1f0c1b87b4c744866a090e9a0d5470f2e3df13a7a22d9c61699eefba5f2ba435d1df694ced2f34336b1dc398b1188204c2633a177ac9fa439065c2db553f0dbab3c19af63caff096ae17d5b2fee7a239ecd4b19d396b2f284a26e25852d5fe41d273a91ee623d1fbefb2815fc037d35ccae79237555457ac51f50518f27dd431386c3848b5f4f106e781d3e6c8b0ed98969bae24573501d89648c212ebe0fb7cc201cf109d7e83701d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Create venue", - "1 | Details : VenueDetails_A", - "2 | Signers [1/18] : 2GeqtHba1JjAWsSUbehiiC3hfNg7nryrD7maiR", - "2 | Signers [2/18] : YZxQ8GhhFE", - "2 | Signers [3/18] : 2FoVdyon9MokPTbsT1yGPVp2UdbqXDGib5WQjb", - "2 | Signers [4/18] : HEKyFaXmih", - "2 | Signers [5/18] : 2GfZhNbZPUSAiWgibrRb8pXzYRbFQZVPmxo7zG", - "2 | Signers [6/18] : udMxQ81jJD", - "2 | Signers [7/18] : 2DfnZpc7sbmiusf76kku8GMasZEhksda6Mi7q8", - "2 | Signers [8/18] : ZbfGFBLQgo", - "2 | Signers [9/18] : 2EmUggSH8DLLFzsa1r9hFQSvFixNVRjJW3Fj5m", - "2 | Signers [10/18] : b58HL5zbjB", - "2 | Signers [11/18] : 2DgdXLma4sAWPvkDA1gjs9zc8Azw3iy4MyhgNT", - "2 | Signers [12/18] : U63qDZtqU9", - "2 | Signers [13/18] : 2Es4AQ2Ao3NpSqwnyBKTPMBS7Eaf7JAHuwKQUi", - "2 | Signers [14/18] : BKh1LwbpYm", - "2 | Signers [15/18] : 2GmKovTufMs9PAVKDskoethS2tYrChoekWhVEc", - "2 | Signers [16/18] : gRNSvSiUhV", - "2 | Signers [17/18] : 2Ewm3vvCToummsrGVFwg4ETPgpfPfuSeuYGLSe", - "2 | Signers [18/18] : 9b6pmP9zLV", - "3 | Typ : Distribution", - "4 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Settlement : Create venue", - "1 | Details : VenueDetails_A", - "2 | Signers [1/18] : 2GeqtHba1JjAWsSUbehiiC3hfNg7nryrD7maiR", - "2 | Signers [2/18] : YZxQ8GhhFE", - "2 | Signers [3/18] : 2FoVdyon9MokPTbsT1yGPVp2UdbqXDGib5WQjb", - "2 | Signers [4/18] : HEKyFaXmih", - "2 | Signers [5/18] : 2GfZhNbZPUSAiWgibrRb8pXzYRbFQZVPmxo7zG", - "2 | Signers [6/18] : udMxQ81jJD", - "2 | Signers [7/18] : 2DfnZpc7sbmiusf76kku8GMasZEhksda6Mi7q8", - "2 | Signers [8/18] : ZbfGFBLQgo", - "2 | Signers [9/18] : 2EmUggSH8DLLFzsa1r9hFQSvFixNVRjJW3Fj5m", - "2 | Signers [10/18] : b58HL5zbjB", - "2 | Signers [11/18] : 2DgdXLma4sAWPvkDA1gjs9zc8Azw3iy4MyhgNT", - "2 | Signers [12/18] : U63qDZtqU9", - "2 | Signers [13/18] : 2Es4AQ2Ao3NpSqwnyBKTPMBS7Eaf7JAHuwKQUi", - "2 | Signers [14/18] : BKh1LwbpYm", - "2 | Signers [15/18] : 2GmKovTufMs9PAVKDskoethS2tYrChoekWhVEc", - "2 | Signers [16/18] : gRNSvSiUhV", - "2 | Signers [17/18] : 2Ewm3vvCToummsrGVFwg4ETPgpfPfuSeuYGLSe", - "2 | Signers [18/18] : 9b6pmP9zLV", - "3 | Typ : Distribution", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1248, - "name": "Settlement_Create_venue", - "blob": "25003856656e756544657461696c735f41040247edc9fb8eca4b72159b9d38906edad72d519a6947c25060104e350aa15f3c00d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Create venue", - "1 | Details : VenueDetails_A", - "2 | Signers [1/2] : 2CVuZmPB18shdgAGpGPAezrmLe9FvG73KtQqfz", - "2 | Signers [2/2] : sCa3yT4Vtd", - "3 | Typ : Other", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Settlement : Create venue", - "1 | Details : VenueDetails_A", - "2 | Signers [1/2] : 2CVuZmPB18shdgAGpGPAezrmLe9FvG73KtQqfz", - "2 | Signers [2/2] : sCa3yT4Vtd", - "3 | Typ : Other", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1249, - "name": "Settlement_Create_venue", - "blob": "25003856656e756544657461696c735f4124ba09ae5a1a06d6a5096e8fff1812b427b7b8472f8afd3f28a205cca623b2a62894667ff8cef58cc65f6a3fabe6d4738e6d923d558a0a9b19ad9893733082835bba966ea6ca4234843141fdd009bb8745df4e0cf51e7c8a9db5ae5d37c16fed2f360d0e343f81176e30f6f89c55f0b0ddc12c86dfac9f66b1a1f0c1b87b4c744866a090e9a0d5470f2e3df13a7a22d9c61699eefba5f2ba435d1df694ced2f34336b1dc398b1188204c2633a177ac9fa439065c2db553f0dbab3c19af63caff096ae17d5b2fee7a239ecd4b19d396b2f284a26e25852d5fe41d273a91ee623d1fbefb2815fc037d35ccae79237555457ac51f50518f27dd431386c3848b5f4f106e781d3e6c8b0ed98969bae24573501d89648c212ebe0fb7cc201cf109d7e83701d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Create venue", - "1 | Details : VenueDetails_A", - "2 | Signers [1/18] : 2GeqtHba1JjAWsSUbehiiC3hfNg7nryrD7maiR", - "2 | Signers [2/18] : YZxQ8GhhFE", - "2 | Signers [3/18] : 2FoVdyon9MokPTbsT1yGPVp2UdbqXDGib5WQjb", - "2 | Signers [4/18] : HEKyFaXmih", - "2 | Signers [5/18] : 2GfZhNbZPUSAiWgibrRb8pXzYRbFQZVPmxo7zG", - "2 | Signers [6/18] : udMxQ81jJD", - "2 | Signers [7/18] : 2DfnZpc7sbmiusf76kku8GMasZEhksda6Mi7q8", - "2 | Signers [8/18] : ZbfGFBLQgo", - "2 | Signers [9/18] : 2EmUggSH8DLLFzsa1r9hFQSvFixNVRjJW3Fj5m", - "2 | Signers [10/18] : b58HL5zbjB", - "2 | Signers [11/18] : 2DgdXLma4sAWPvkDA1gjs9zc8Azw3iy4MyhgNT", - "2 | Signers [12/18] : U63qDZtqU9", - "2 | Signers [13/18] : 2Es4AQ2Ao3NpSqwnyBKTPMBS7Eaf7JAHuwKQUi", - "2 | Signers [14/18] : BKh1LwbpYm", - "2 | Signers [15/18] : 2GmKovTufMs9PAVKDskoethS2tYrChoekWhVEc", - "2 | Signers [16/18] : gRNSvSiUhV", - "2 | Signers [17/18] : 2Ewm3vvCToummsrGVFwg4ETPgpfPfuSeuYGLSe", - "2 | Signers [18/18] : 9b6pmP9zLV", - "3 | Typ : Distribution", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Settlement : Create venue", - "1 | Details : VenueDetails_A", - "2 | Signers [1/18] : 2GeqtHba1JjAWsSUbehiiC3hfNg7nryrD7maiR", - "2 | Signers [2/18] : YZxQ8GhhFE", - "2 | Signers [3/18] : 2FoVdyon9MokPTbsT1yGPVp2UdbqXDGib5WQjb", - "2 | Signers [4/18] : HEKyFaXmih", - "2 | Signers [5/18] : 2GfZhNbZPUSAiWgibrRb8pXzYRbFQZVPmxo7zG", - "2 | Signers [6/18] : udMxQ81jJD", - "2 | Signers [7/18] : 2DfnZpc7sbmiusf76kku8GMasZEhksda6Mi7q8", - "2 | Signers [8/18] : ZbfGFBLQgo", - "2 | Signers [9/18] : 2EmUggSH8DLLFzsa1r9hFQSvFixNVRjJW3Fj5m", - "2 | Signers [10/18] : b58HL5zbjB", - "2 | Signers [11/18] : 2DgdXLma4sAWPvkDA1gjs9zc8Azw3iy4MyhgNT", - "2 | Signers [12/18] : U63qDZtqU9", - "2 | Signers [13/18] : 2Es4AQ2Ao3NpSqwnyBKTPMBS7Eaf7JAHuwKQUi", - "2 | Signers [14/18] : BKh1LwbpYm", - "2 | Signers [15/18] : 2GmKovTufMs9PAVKDskoethS2tYrChoekWhVEc", - "2 | Signers [16/18] : gRNSvSiUhV", - "2 | Signers [17/18] : 2Ewm3vvCToummsrGVFwg4ETPgpfPfuSeuYGLSe", - "2 | Signers [18/18] : 9b6pmP9zLV", - "3 | Typ : Distribution", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1250, - "name": "Settlement_Create_venue", - "blob": "25003856656e756544657461696c735f411c48210f7be71c1cab71d20cccb72834335a1696b29c3aa5ea73bf8ae95772c70b62c860d4534bc9c1d2134951096319dc25806f5f2987ac256c8a24b03bf8ef1820d202265cd40341d2fc555ed5024fc4b787e85a5f5d1d769007abb76a73d464e81c2bda659a4eb9482ab49c307c2d95eda1b220e9931026d3e422c170c7fc671212f015ac66558769be1ed742ef04b93a1700d893e510bdb7dffff6cce3d87e84f3c2eb79bcc2111450e245b5f5cb02d0570ac35b6b4aa8af63451efeb12c4c80b7bf99d52609a269aa7a2636f87790bc65d6cd2d40f518d71d7ced9726371901d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Create venue", - "1 | Details : VenueDetails_A", - "2 | Signers [1/14] : 2E5VNVTAETmygNYbRYgsaywc4YfnchZfAkbFgL", - "2 | Signers [2/14] : jYGUQX57Eq", - "2 | Signers [3/14] : 2EgSKX5AwDhDDLCd74LwDRr7FFTm5fRxfFAiU9", - "2 | Signers [4/14] : zP5WVyA5NV", - "2 | Signers [5/14] : 2DBx296b9Fnsp8ATWqDNGY8L8Wu4RubMjQkWxT", - "2 | Signers [6/14] : 7BcU3kFLRT", - "2 | Signers [7/14] : 2HhFad5Aqf1LaE9sGU4449xGpTDWFsAC6YqDgC", - "2 | Signers [8/14] : ShRyBdUBFN", - "2 | Signers [9/14] : 2CrcbBuNfvsKazMtHSjacvKRDjAZtVcmtwz7CA", - "2 | Signers [10/14] : MyJ8Q5gNQb", - "2 | Signers [11/14] : 2FTEqRTUSXcpDJJAgXD4ASAQzs728cX5KKvdcJ", - "2 | Signers [12/14] : 5shudehpMQ", - "2 | Signers [13/14] : 2FMgpKAHXwLLwzGJdkg25tQZj7nuFpMBxWytrh", - "2 | Signers [14/14] : ers3RsoL7Z", - "3 | Typ : Distribution" - ], - "output_expert": [ - "0 | Settlement : Create venue", - "1 | Details : VenueDetails_A", - "2 | Signers [1/14] : 2E5VNVTAETmygNYbRYgsaywc4YfnchZfAkbFgL", - "2 | Signers [2/14] : jYGUQX57Eq", - "2 | Signers [3/14] : 2EgSKX5AwDhDDLCd74LwDRr7FFTm5fRxfFAiU9", - "2 | Signers [4/14] : zP5WVyA5NV", - "2 | Signers [5/14] : 2DBx296b9Fnsp8ATWqDNGY8L8Wu4RubMjQkWxT", - "2 | Signers [6/14] : 7BcU3kFLRT", - "2 | Signers [7/14] : 2HhFad5Aqf1LaE9sGU4449xGpTDWFsAC6YqDgC", - "2 | Signers [8/14] : ShRyBdUBFN", - "2 | Signers [9/14] : 2CrcbBuNfvsKazMtHSjacvKRDjAZtVcmtwz7CA", - "2 | Signers [10/14] : MyJ8Q5gNQb", - "2 | Signers [11/14] : 2FTEqRTUSXcpDJJAgXD4ASAQzs728cX5KKvdcJ", - "2 | Signers [12/14] : 5shudehpMQ", - "2 | Signers [13/14] : 2FMgpKAHXwLLwzGJdkg25tQZj7nuFpMBxWytrh", - "2 | Signers [14/14] : ers3RsoL7Z", - "3 | Typ : Distribution", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1251, - "name": "Settlement_Update_venue_details", - "blob": "250123090000000000003856656e756544657461696c735f41d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Update venue details", - "1 | Id : 2339", - "2 | Details : VenueDetails_A", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Settlement : Update venue details", - "1 | Id : 2339", - "2 | Details : VenueDetails_A", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1252, - "name": "Settlement_Update_venue_details", - "blob": "250164000000000000003856656e756544657461696c735f41d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Update venue details", - "1 | Id : 100", - "2 | Details : VenueDetails_A", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Settlement : Update venue details", - "1 | Id : 100", - "2 | Details : VenueDetails_A", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1253, - "name": "Settlement_Update_venue_details", - "blob": "25016bc40000000000003856656e756544657461696c735f41d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Update venue details", - "1 | Id : 50283", - "2 | Details : VenueDetails_A", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Settlement : Update venue details", - "1 | Id : 50283", - "2 | Details : VenueDetails_A", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1254, - "name": "Settlement_Update_venue_details", - "blob": "25016bc40000000000003856656e756544657461696c735f41d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Update venue details", - "1 | Id : 50283", - "2 | Details : VenueDetails_A", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Settlement : Update venue details", - "1 | Id : 50283", - "2 | Details : VenueDetails_A", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1255, - "name": "Settlement_Update_venue_details", - "blob": "25016bc40000000000003856656e756544657461696c735f41d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Update venue details", - "1 | Id : 50283", - "2 | Details : VenueDetails_A", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Settlement : Update venue details", - "1 | Id : 50283", - "2 | Details : VenueDetails_A", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1256, - "name": "Settlement_Update_venue_type", - "blob": "2502230900000000000003d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Update venue type", - "1 | Id : 2339", - "2 | Typ : Exchange" - ], - "output_expert": [ - "0 | Settlement : Update venue type", - "1 | Id : 2339", - "2 | Typ : Exchange", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1257, - "name": "Settlement_Update_venue_type", - "blob": "2502000000000000000002d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Update venue type", - "1 | Id : 0", - "2 | Typ : Sto", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Settlement : Update venue type", - "1 | Id : 0", - "2 | Typ : Sto", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1258, - "name": "Settlement_Update_venue_type", - "blob": "2502000000000000000003d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Update venue type", - "1 | Id : 0", - "2 | Typ : Exchange", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Settlement : Update venue type", - "1 | Id : 0", - "2 | Typ : Exchange", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1259, - "name": "Settlement_Update_venue_type", - "blob": "2502640000000000000003d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Update venue type", - "1 | Id : 100", - "2 | Typ : Exchange", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Settlement : Update venue type", - "1 | Id : 100", - "2 | Typ : Exchange", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1260, - "name": "Settlement_Update_venue_type", - "blob": "2502640000000000000003d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Update venue type", - "1 | Id : 100", - "2 | Typ : Exchange", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Settlement : Update venue type", - "1 | Id : 100", - "2 | Typ : Exchange", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1261, - "name": "Settlement_Affirm_with_receipts", - "blob": "2503010000000000000008282aec651f9f904655d0c34c97f6cf5da7db026aeffa150780b1510ce5be1344a3a8b17e6c10ea866ec873ea40bde9dbab526c8fb7408c98010d1de0c9f1088ffd4f5bb1ce11f196f58e6dff6cea24eaaf0117238e2428f2a01d8210e7e726854bb2374a25f856056db73ba2c5f09811b89ad53c5bfb15d30b01e89cfcf1dedf19e0c741915a4d9b1ea979ea76f288e4df5c075e857640006e00b77e28ecfcfa1f68907517046bdfbe496fcd27860beb83ccc583a78c29aecc98d9e26cd83e37b53cb46a5bf5192e61a375b02fb48e537fcb00caa4f7731ba3d7932e2275243a5a702ceb18df4d8e9027f0c590227bddec8cf2513480236ae8684d7b5105433a50abf62e461e4f16af5a22a5686c4e51c7399501c564bc45202525d53637a09959c4357d92ff7b2f8b7afedbf33ee72901523d3e00d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Affirm with receipts", - "1 | Id : 1", - "2 | Receipt details [1/22] : 5084738936504068648", - "2 | Receipt details [2/22] : 6759892695394799701", - "2 | Receipt details [3/22] : 510590038959119271", - "2 | Receipt details [4/22] : 2FMeuVia72JF8npWvKPd3DFroPTPmYTHQPxdQV", - "2 | Receipt details [5/22] : GgvrZD8SbB", - "2 | Receipt details [6/22] : 0d1de0c9f1088ffd4f5bb1ce11f196f58e6dff", - "2 | Receipt details [7/22] : 6cea24eaaf0117238e2428f2a01d8210e7e726", - "2 | Receipt details [8/22] : 854bb2374a25f856056db73ba2c5f09811b89a", - "2 | Receipt details [9/22] : d53c5bfb15d30b", - "2 | Receipt details [10/22] : e89cfcf1dedf19e0c741915a4d9b1ea979ea76", - "2 | Receipt details [11/22] : f288e4df5c075e857640006e00", - "2 | Receipt details [12/22] : 7502991468423315127", - "2 | Receipt details [13/22] : 5313930261066904976", - "2 | Receipt details [14/22] : 14736880840414317935", - "2 | Receipt details [15/22] : 2GutePbthHNWKoxobjKmReBTGCZMk43hRop2bi", - "2 | Receipt details [16/22] : snNk7Uz8Nx", - "2 | Receipt details [17/22] : caa4f7731ba3d7932e2275243a5a702ceb18df", - "2 | Receipt details [18/22] : 4d8e9027f0c590227bddec8cf2513480236ae8", - "2 | Receipt details [19/22] : 684d7b5105433a50abf62e461e4f16af5a22a5", - "2 | Receipt details [20/22] : 686c4e51c73995", - "2 | Receipt details [21/22] : c564bc45202525d53637a09959c4357d92ff7b", - "2 | Receipt details [22/22] : 2f8b7afedbf33ee72901523d3e", - "3 | Portfolios : ", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Settlement : Affirm with receipts", - "1 | Id : 1", - "2 | Receipt details [1/22] : 5084738936504068648", - "2 | Receipt details [2/22] : 6759892695394799701", - "2 | Receipt details [3/22] : 510590038959119271", - "2 | Receipt details [4/22] : 2FMeuVia72JF8npWvKPd3DFroPTPmYTHQPxdQV", - "2 | Receipt details [5/22] : GgvrZD8SbB", - "2 | Receipt details [6/22] : 0d1de0c9f1088ffd4f5bb1ce11f196f58e6dff", - "2 | Receipt details [7/22] : 6cea24eaaf0117238e2428f2a01d8210e7e726", - "2 | Receipt details [8/22] : 854bb2374a25f856056db73ba2c5f09811b89a", - "2 | Receipt details [9/22] : d53c5bfb15d30b", - "2 | Receipt details [10/22] : e89cfcf1dedf19e0c741915a4d9b1ea979ea76", - "2 | Receipt details [11/22] : f288e4df5c075e857640006e00", - "2 | Receipt details [12/22] : 7502991468423315127", - "2 | Receipt details [13/22] : 5313930261066904976", - "2 | Receipt details [14/22] : 14736880840414317935", - "2 | Receipt details [15/22] : 2GutePbthHNWKoxobjKmReBTGCZMk43hRop2bi", - "2 | Receipt details [16/22] : snNk7Uz8Nx", - "2 | Receipt details [17/22] : caa4f7731ba3d7932e2275243a5a702ceb18df", - "2 | Receipt details [18/22] : 4d8e9027f0c590227bddec8cf2513480236ae8", - "2 | Receipt details [19/22] : 684d7b5105433a50abf62e461e4f16af5a22a5", - "2 | Receipt details [20/22] : 686c4e51c73995", - "2 | Receipt details [21/22] : c564bc45202525d53637a09959c4357d92ff7b", - "2 | Receipt details [22/22] : 2f8b7afedbf33ee72901523d3e", - "3 | Portfolios : ", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1262, - "name": "Settlement_Affirm_with_receipts", - "blob": "2503640000000000000008282aec651f9f904655d0c34c97f6cf5da7db026aeffa150780b1510ce5be1344a3a8b17e6c10ea866ec873ea40bde9dbab526c8fb7408c98010d1de0c9f1088ffd4f5bb1ce11f196f58e6dff6cea24eaaf0117238e2428f2a01d8210e7e726854bb2374a25f856056db73ba2c5f09811b89ad53c5bfb15d30b01e89cfcf1dedf19e0c741915a4d9b1ea979ea76f288e4df5c075e857640006e00b77e28ecfcfa1f68907517046bdfbe496fcd27860beb83ccc583a78c29aecc98d9e26cd83e37b53cb46a5bf5192e61a375b02fb48e537fcb00caa4f7731ba3d7932e2275243a5a702ceb18df4d8e9027f0c590227bddec8cf2513480236ae8684d7b5105433a50abf62e461e4f16af5a22a5686c4e51c7399501c564bc45202525d53637a09959c4357d92ff7b2f8b7afedbf33ee72901523d3e00d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Affirm with receipts", - "1 | Id : 100", - "2 | Receipt details [1/22] : 5084738936504068648", - "2 | Receipt details [2/22] : 6759892695394799701", - "2 | Receipt details [3/22] : 510590038959119271", - "2 | Receipt details [4/22] : 2FMeuVia72JF8npWvKPd3DFroPTPmYTHQPxdQV", - "2 | Receipt details [5/22] : GgvrZD8SbB", - "2 | Receipt details [6/22] : 0d1de0c9f1088ffd4f5bb1ce11f196f58e6dff", - "2 | Receipt details [7/22] : 6cea24eaaf0117238e2428f2a01d8210e7e726", - "2 | Receipt details [8/22] : 854bb2374a25f856056db73ba2c5f09811b89a", - "2 | Receipt details [9/22] : d53c5bfb15d30b", - "2 | Receipt details [10/22] : e89cfcf1dedf19e0c741915a4d9b1ea979ea76", - "2 | Receipt details [11/22] : f288e4df5c075e857640006e00", - "2 | Receipt details [12/22] : 7502991468423315127", - "2 | Receipt details [13/22] : 5313930261066904976", - "2 | Receipt details [14/22] : 14736880840414317935", - "2 | Receipt details [15/22] : 2GutePbthHNWKoxobjKmReBTGCZMk43hRop2bi", - "2 | Receipt details [16/22] : snNk7Uz8Nx", - "2 | Receipt details [17/22] : caa4f7731ba3d7932e2275243a5a702ceb18df", - "2 | Receipt details [18/22] : 4d8e9027f0c590227bddec8cf2513480236ae8", - "2 | Receipt details [19/22] : 684d7b5105433a50abf62e461e4f16af5a22a5", - "2 | Receipt details [20/22] : 686c4e51c73995", - "2 | Receipt details [21/22] : c564bc45202525d53637a09959c4357d92ff7b", - "2 | Receipt details [22/22] : 2f8b7afedbf33ee72901523d3e", - "3 | Portfolios : ", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Settlement : Affirm with receipts", - "1 | Id : 100", - "2 | Receipt details [1/22] : 5084738936504068648", - "2 | Receipt details [2/22] : 6759892695394799701", - "2 | Receipt details [3/22] : 510590038959119271", - "2 | Receipt details [4/22] : 2FMeuVia72JF8npWvKPd3DFroPTPmYTHQPxdQV", - "2 | Receipt details [5/22] : GgvrZD8SbB", - "2 | Receipt details [6/22] : 0d1de0c9f1088ffd4f5bb1ce11f196f58e6dff", - "2 | Receipt details [7/22] : 6cea24eaaf0117238e2428f2a01d8210e7e726", - "2 | Receipt details [8/22] : 854bb2374a25f856056db73ba2c5f09811b89a", - "2 | Receipt details [9/22] : d53c5bfb15d30b", - "2 | Receipt details [10/22] : e89cfcf1dedf19e0c741915a4d9b1ea979ea76", - "2 | Receipt details [11/22] : f288e4df5c075e857640006e00", - "2 | Receipt details [12/22] : 7502991468423315127", - "2 | Receipt details [13/22] : 5313930261066904976", - "2 | Receipt details [14/22] : 14736880840414317935", - "2 | Receipt details [15/22] : 2GutePbthHNWKoxobjKmReBTGCZMk43hRop2bi", - "2 | Receipt details [16/22] : snNk7Uz8Nx", - "2 | Receipt details [17/22] : caa4f7731ba3d7932e2275243a5a702ceb18df", - "2 | Receipt details [18/22] : 4d8e9027f0c590227bddec8cf2513480236ae8", - "2 | Receipt details [19/22] : 684d7b5105433a50abf62e461e4f16af5a22a5", - "2 | Receipt details [20/22] : 686c4e51c73995", - "2 | Receipt details [21/22] : c564bc45202525d53637a09959c4357d92ff7b", - "2 | Receipt details [22/22] : 2f8b7afedbf33ee72901523d3e", - "3 | Portfolios : ", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1263, - "name": "Settlement_Affirm_with_receipts", - "blob": "2503230900000000000008282aec651f9f904655d0c34c97f6cf5da7db026aeffa150780b1510ce5be1344a3a8b17e6c10ea866ec873ea40bde9dbab526c8fb7408c98010d1de0c9f1088ffd4f5bb1ce11f196f58e6dff6cea24eaaf0117238e2428f2a01d8210e7e726854bb2374a25f856056db73ba2c5f09811b89ad53c5bfb15d30b01e89cfcf1dedf19e0c741915a4d9b1ea979ea76f288e4df5c075e857640006e00b77e28ecfcfa1f68907517046bdfbe496fcd27860beb83ccc583a78c29aecc98d9e26cd83e37b53cb46a5bf5192e61a375b02fb48e537fcb00caa4f7731ba3d7932e2275243a5a702ceb18df4d8e9027f0c590227bddec8cf2513480236ae8684d7b5105433a50abf62e461e4f16af5a22a5686c4e51c7399501c564bc45202525d53637a09959c4357d92ff7b2f8b7afedbf33ee72901523d3e08dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebaba1e8b917895a773d353a68d6170140e20100000000000a812c840a4ca01bd77aa82b2712655136d1ae5482b754122c7a76b6cef180170140e2010000000000d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Affirm with receipts", - "1 | Id : 2339", - "2 | Receipt details [1/22] : 5084738936504068648", - "2 | Receipt details [2/22] : 6759892695394799701", - "2 | Receipt details [3/22] : 510590038959119271", - "2 | Receipt details [4/22] : 2FMeuVia72JF8npWvKPd3DFroPTPmYTHQPxdQV", - "2 | Receipt details [5/22] : GgvrZD8SbB", - "2 | Receipt details [6/22] : 0d1de0c9f1088ffd4f5bb1ce11f196f58e6dff", - "2 | Receipt details [7/22] : 6cea24eaaf0117238e2428f2a01d8210e7e726", - "2 | Receipt details [8/22] : 854bb2374a25f856056db73ba2c5f09811b89a", - "2 | Receipt details [9/22] : d53c5bfb15d30b", - "2 | Receipt details [10/22] : e89cfcf1dedf19e0c741915a4d9b1ea979ea76", - "2 | Receipt details [11/22] : f288e4df5c075e857640006e00", - "2 | Receipt details [12/22] : 7502991468423315127", - "2 | Receipt details [13/22] : 5313930261066904976", - "2 | Receipt details [14/22] : 14736880840414317935", - "2 | Receipt details [15/22] : 2GutePbthHNWKoxobjKmReBTGCZMk43hRop2bi", - "2 | Receipt details [16/22] : snNk7Uz8Nx", - "2 | Receipt details [17/22] : caa4f7731ba3d7932e2275243a5a702ceb18df", - "2 | Receipt details [18/22] : 4d8e9027f0c590227bddec8cf2513480236ae8", - "2 | Receipt details [19/22] : 684d7b5105433a50abf62e461e4f16af5a22a5", - "2 | Receipt details [20/22] : 686c4e51c73995", - "2 | Receipt details [21/22] : c564bc45202525d53637a09959c4357d92ff7b", - "2 | Receipt details [22/22] : 2f8b7afedbf33ee72901523d3e", - "3 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "3 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "3 | Portfolios [3/6] : 123456", - "3 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "3 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "3 | Portfolios [6/6] : 123456", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Settlement : Affirm with receipts", - "1 | Id : 2339", - "2 | Receipt details [1/22] : 5084738936504068648", - "2 | Receipt details [2/22] : 6759892695394799701", - "2 | Receipt details [3/22] : 510590038959119271", - "2 | Receipt details [4/22] : 2FMeuVia72JF8npWvKPd3DFroPTPmYTHQPxdQV", - "2 | Receipt details [5/22] : GgvrZD8SbB", - "2 | Receipt details [6/22] : 0d1de0c9f1088ffd4f5bb1ce11f196f58e6dff", - "2 | Receipt details [7/22] : 6cea24eaaf0117238e2428f2a01d8210e7e726", - "2 | Receipt details [8/22] : 854bb2374a25f856056db73ba2c5f09811b89a", - "2 | Receipt details [9/22] : d53c5bfb15d30b", - "2 | Receipt details [10/22] : e89cfcf1dedf19e0c741915a4d9b1ea979ea76", - "2 | Receipt details [11/22] : f288e4df5c075e857640006e00", - "2 | Receipt details [12/22] : 7502991468423315127", - "2 | Receipt details [13/22] : 5313930261066904976", - "2 | Receipt details [14/22] : 14736880840414317935", - "2 | Receipt details [15/22] : 2GutePbthHNWKoxobjKmReBTGCZMk43hRop2bi", - "2 | Receipt details [16/22] : snNk7Uz8Nx", - "2 | Receipt details [17/22] : caa4f7731ba3d7932e2275243a5a702ceb18df", - "2 | Receipt details [18/22] : 4d8e9027f0c590227bddec8cf2513480236ae8", - "2 | Receipt details [19/22] : 684d7b5105433a50abf62e461e4f16af5a22a5", - "2 | Receipt details [20/22] : 686c4e51c73995", - "2 | Receipt details [21/22] : c564bc45202525d53637a09959c4357d92ff7b", - "2 | Receipt details [22/22] : 2f8b7afedbf33ee72901523d3e", - "3 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "3 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "3 | Portfolios [3/6] : 123456", - "3 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "3 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "3 | Portfolios [6/6] : 123456", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1264, - "name": "Settlement_Affirm_with_receipts", - "blob": "2503640000000000000008282aec651f9f904655d0c34c97f6cf5da7db026aeffa150780b1510ce5be1344a3a8b17e6c10ea866ec873ea40bde9dbab526c8fb7408c98010d1de0c9f1088ffd4f5bb1ce11f196f58e6dff6cea24eaaf0117238e2428f2a01d8210e7e726854bb2374a25f856056db73ba2c5f09811b89ad53c5bfb15d30b01e89cfcf1dedf19e0c741915a4d9b1ea979ea76f288e4df5c075e857640006e00b77e28ecfcfa1f68907517046bdfbe496fcd27860beb83ccc583a78c29aecc98d9e26cd83e37b53cb46a5bf5192e61a375b02fb48e537fcb00caa4f7731ba3d7932e2275243a5a702ceb18df4d8e9027f0c590227bddec8cf2513480236ae8684d7b5105433a50abf62e461e4f16af5a22a5686c4e51c7399501c564bc45202525d53637a09959c4357d92ff7b2f8b7afedbf33ee72901523d3e08dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebaba1e8b917895a773d353a68d6170140e20100000000000a812c840a4ca01bd77aa82b2712655136d1ae5482b754122c7a76b6cef180170140e2010000000000d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Affirm with receipts", - "1 | Id : 100", - "2 | Receipt details [1/22] : 5084738936504068648", - "2 | Receipt details [2/22] : 6759892695394799701", - "2 | Receipt details [3/22] : 510590038959119271", - "2 | Receipt details [4/22] : 2FMeuVia72JF8npWvKPd3DFroPTPmYTHQPxdQV", - "2 | Receipt details [5/22] : GgvrZD8SbB", - "2 | Receipt details [6/22] : 0d1de0c9f1088ffd4f5bb1ce11f196f58e6dff", - "2 | Receipt details [7/22] : 6cea24eaaf0117238e2428f2a01d8210e7e726", - "2 | Receipt details [8/22] : 854bb2374a25f856056db73ba2c5f09811b89a", - "2 | Receipt details [9/22] : d53c5bfb15d30b", - "2 | Receipt details [10/22] : e89cfcf1dedf19e0c741915a4d9b1ea979ea76", - "2 | Receipt details [11/22] : f288e4df5c075e857640006e00", - "2 | Receipt details [12/22] : 7502991468423315127", - "2 | Receipt details [13/22] : 5313930261066904976", - "2 | Receipt details [14/22] : 14736880840414317935", - "2 | Receipt details [15/22] : 2GutePbthHNWKoxobjKmReBTGCZMk43hRop2bi", - "2 | Receipt details [16/22] : snNk7Uz8Nx", - "2 | Receipt details [17/22] : caa4f7731ba3d7932e2275243a5a702ceb18df", - "2 | Receipt details [18/22] : 4d8e9027f0c590227bddec8cf2513480236ae8", - "2 | Receipt details [19/22] : 684d7b5105433a50abf62e461e4f16af5a22a5", - "2 | Receipt details [20/22] : 686c4e51c73995", - "2 | Receipt details [21/22] : c564bc45202525d53637a09959c4357d92ff7b", - "2 | Receipt details [22/22] : 2f8b7afedbf33ee72901523d3e", - "3 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "3 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "3 | Portfolios [3/6] : 123456", - "3 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "3 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "3 | Portfolios [6/6] : 123456", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Settlement : Affirm with receipts", - "1 | Id : 100", - "2 | Receipt details [1/22] : 5084738936504068648", - "2 | Receipt details [2/22] : 6759892695394799701", - "2 | Receipt details [3/22] : 510590038959119271", - "2 | Receipt details [4/22] : 2FMeuVia72JF8npWvKPd3DFroPTPmYTHQPxdQV", - "2 | Receipt details [5/22] : GgvrZD8SbB", - "2 | Receipt details [6/22] : 0d1de0c9f1088ffd4f5bb1ce11f196f58e6dff", - "2 | Receipt details [7/22] : 6cea24eaaf0117238e2428f2a01d8210e7e726", - "2 | Receipt details [8/22] : 854bb2374a25f856056db73ba2c5f09811b89a", - "2 | Receipt details [9/22] : d53c5bfb15d30b", - "2 | Receipt details [10/22] : e89cfcf1dedf19e0c741915a4d9b1ea979ea76", - "2 | Receipt details [11/22] : f288e4df5c075e857640006e00", - "2 | Receipt details [12/22] : 7502991468423315127", - "2 | Receipt details [13/22] : 5313930261066904976", - "2 | Receipt details [14/22] : 14736880840414317935", - "2 | Receipt details [15/22] : 2GutePbthHNWKoxobjKmReBTGCZMk43hRop2bi", - "2 | Receipt details [16/22] : snNk7Uz8Nx", - "2 | Receipt details [17/22] : caa4f7731ba3d7932e2275243a5a702ceb18df", - "2 | Receipt details [18/22] : 4d8e9027f0c590227bddec8cf2513480236ae8", - "2 | Receipt details [19/22] : 684d7b5105433a50abf62e461e4f16af5a22a5", - "2 | Receipt details [20/22] : 686c4e51c73995", - "2 | Receipt details [21/22] : c564bc45202525d53637a09959c4357d92ff7b", - "2 | Receipt details [22/22] : 2f8b7afedbf33ee72901523d3e", - "3 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "3 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "3 | Portfolios [3/6] : 123456", - "3 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "3 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "3 | Portfolios [6/6] : 123456", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1265, - "name": "Settlement_Affirm_with_receipts", - "blob": "250323090000000000000000d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Affirm with receipts", - "1 | Id : 2339", - "2 | Receipt details : ", - "3 | Portfolios : ", - "4 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Settlement : Affirm with receipts", - "1 | Id : 2339", - "2 | Receipt details : ", - "3 | Portfolios : ", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1266, - "name": "Settlement_Set_venue_filtering", - "blob": "25045449434b45522d313233343500d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Set venue filtering", - "1 | Ticker : TICKER-12345", - "2 | Enabled : False", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Settlement : Set venue filtering", - "1 | Ticker : TICKER-12345", - "2 | Enabled : False", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1267, - "name": "Settlement_Set_venue_filtering", - "blob": "25045449434b45522d313233343501d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Set venue filtering", - "1 | Ticker : TICKER-12345", - "2 | Enabled : True", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Settlement : Set venue filtering", - "1 | Ticker : TICKER-12345", - "2 | Enabled : True", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1268, - "name": "Settlement_Set_venue_filtering", - "blob": "25045449434b45522d313233343501d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Set venue filtering", - "1 | Ticker : TICKER-12345", - "2 | Enabled : True", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Settlement : Set venue filtering", - "1 | Ticker : TICKER-12345", - "2 | Enabled : True", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1269, - "name": "Settlement_Set_venue_filtering", - "blob": "25045449434b45522d313233343500d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Set venue filtering", - "1 | Ticker : TICKER-12345", - "2 | Enabled : False", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Settlement : Set venue filtering", - "1 | Ticker : TICKER-12345", - "2 | Enabled : False", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1270, - "name": "Settlement_Set_venue_filtering", - "blob": "25045449434b45522d313233343500d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Set venue filtering", - "1 | Ticker : TICKER-12345", - "2 | Enabled : False", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Settlement : Set venue filtering", - "1 | Ticker : TICKER-12345", - "2 | Enabled : False", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1271, - "name": "Settlement_Allow_venues", - "blob": "25055449434b45522d313233343510d007000000000000000000000000000008442000000000001e6d080000000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Allow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues [1/4] : 2000", - "2 | Venues [2/4] : 0", - "2 | Venues [3/4] : 2114568", - "2 | Venues [4/4] : 552222", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Settlement : Allow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues [1/4] : 2000", - "2 | Venues [2/4] : 0", - "2 | Venues [3/4] : 2114568", - "2 | Venues [4/4] : 552222", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1272, - "name": "Settlement_Allow_venues", - "blob": "25055449434b45522d31323334350c000000000000000008442000000000001e6d080000000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Allow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues [1/3] : 0", - "2 | Venues [2/3] : 2114568", - "2 | Venues [3/3] : 552222", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Settlement : Allow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues [1/3] : 0", - "2 | Venues [2/3] : 2114568", - "2 | Venues [3/3] : 552222", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1273, - "name": "Settlement_Allow_venues", - "blob": "25055449434b45522d313233343510d007000000000000000000000000000008442000000000001e6d080000000000d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Allow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues [1/4] : 2000", - "2 | Venues [2/4] : 0", - "2 | Venues [3/4] : 2114568", - "2 | Venues [4/4] : 552222", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Settlement : Allow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues [1/4] : 2000", - "2 | Venues [2/4] : 0", - "2 | Venues [3/4] : 2114568", - "2 | Venues [4/4] : 552222", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1274, - "name": "Settlement_Allow_venues", - "blob": "25055449434b45522d313233343510d007000000000000000000000000000008442000000000001e6d080000000000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Allow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues [1/4] : 2000", - "2 | Venues [2/4] : 0", - "2 | Venues [3/4] : 2114568", - "2 | Venues [4/4] : 552222", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Settlement : Allow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues [1/4] : 2000", - "2 | Venues [2/4] : 0", - "2 | Venues [3/4] : 2114568", - "2 | Venues [4/4] : 552222", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1275, - "name": "Settlement_Allow_venues", - "blob": "25055449434b45522d313233343510d007000000000000000000000000000008442000000000001e6d080000000000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Allow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues [1/4] : 2000", - "2 | Venues [2/4] : 0", - "2 | Venues [3/4] : 2114568", - "2 | Venues [4/4] : 552222", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Settlement : Allow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues [1/4] : 2000", - "2 | Venues [2/4] : 0", - "2 | Venues [3/4] : 2114568", - "2 | Venues [4/4] : 552222", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1276, - "name": "Settlement_Disallow_venues", - "blob": "25065449434b45522d31323334350c000000000000000008442000000000001e6d080000000000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Disallow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues [1/3] : 0", - "2 | Venues [2/3] : 2114568", - "2 | Venues [3/3] : 552222", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Settlement : Disallow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues [1/3] : 0", - "2 | Venues [2/3] : 2114568", - "2 | Venues [3/3] : 552222", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1277, - "name": "Settlement_Disallow_venues", - "blob": "25065449434b45522d3132333435040844200000000000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Disallow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues : 2114568", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Settlement : Disallow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues : 2114568", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1278, - "name": "Settlement_Disallow_venues", - "blob": "25065449434b45522d3132333435040844200000000000d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Disallow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues : 2114568", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Settlement : Disallow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues : 2114568", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1279, - "name": "Settlement_Disallow_venues", - "blob": "25065449434b45522d3132333435040844200000000000d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Disallow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues : 2114568", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Settlement : Disallow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues : 2114568", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1280, - "name": "Settlement_Disallow_venues", - "blob": "25065449434b45522d3132333435040844200000000000d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Disallow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues : 2114568", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Settlement : Disallow venues", - "1 | Ticker : TICKER-12345", - "2 | Venues : 2114568", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1281, - "name": "Settlement_Update_venue_signers", - "blob": "25076bc40000000000001cd8a98ec1754def3fe27883f46c1d5e2d44b7a6e3356442e484d8b9adc2de83515a7b70e775d9ec2e2cbaf6bde18355dcb566950b99f1d336e47c58547cde3f00be84f84c7f433b8698f888ffd9bb1fa469adfc2512ddd72ee1fca1eec49d977126cc124e4fe7e03f78af6e1aae5d230460e80716553cc571a77361c6ab07383e543724430cc713a3d963ef588657eb5933516e8f3dfb4d381fd1c1646640985646d23cfaa492501fe5441b6ebdc71c8a42c4842937832a43e9956257a1bb581912ed1f1f411d64f62c7c37d3c27fd982800a1cb3ec3648e2498e8cb010473a6f01d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Update venue signers", - "1 | Id : 50283", - "2 | Signers [1/14] : 2HLzpDTeVuWvNMRmdXAfZVvUHykP9Vm4fuqGy8", - "2 | Signers [2/14] : eZRjVvTN2J", - "2 | Signers [3/14] : 2EVZ5hm347oGHzHHBwXJgF3Xdra45L2uCLRQy9", - "2 | Signers [4/14] : U6TX2V9yKk", - "2 | Signers [5/14] : 2GkihcYpKKcu7rtxnh95pW9rYb4RMSsJEh1xPS", - "2 | Signers [6/14] : yKiZQrH4Gb", - "2 | Signers [7/14] : 2DKnYWmW9SoLRwqJGArvBXAvspEEbA9AptFk4u", - "2 | Signers [8/14] : oGdFnCHWKh", - "2 | Signers [9/14] : 2EMLWGYAFLdzq37dfi99sw8t7BBCK4zivmrTaH", - "2 | Signers [10/14] : 8jwXtDHMgh", - "2 | Signers [11/14] : 2E3mudwSEpUQCw2PyiTfjh5qN4UhHsyEqTan9G", - "2 | Signers [12/14] : Nw29iFnhGN", - "2 | Signers [13/14] : 2CsjQQZoijLvpu8SAWTUhUyvQVzYfQbEsrLNBi", - "2 | Signers [14/14] : gXReuAwHsN", - "3 | Add signers : True", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Settlement : Update venue signers", - "1 | Id : 50283", - "2 | Signers [1/14] : 2HLzpDTeVuWvNMRmdXAfZVvUHykP9Vm4fuqGy8", - "2 | Signers [2/14] : eZRjVvTN2J", - "2 | Signers [3/14] : 2EVZ5hm347oGHzHHBwXJgF3Xdra45L2uCLRQy9", - "2 | Signers [4/14] : U6TX2V9yKk", - "2 | Signers [5/14] : 2GkihcYpKKcu7rtxnh95pW9rYb4RMSsJEh1xPS", - "2 | Signers [6/14] : yKiZQrH4Gb", - "2 | Signers [7/14] : 2DKnYWmW9SoLRwqJGArvBXAvspEEbA9AptFk4u", - "2 | Signers [8/14] : oGdFnCHWKh", - "2 | Signers [9/14] : 2EMLWGYAFLdzq37dfi99sw8t7BBCK4zivmrTaH", - "2 | Signers [10/14] : 8jwXtDHMgh", - "2 | Signers [11/14] : 2E3mudwSEpUQCw2PyiTfjh5qN4UhHsyEqTan9G", - "2 | Signers [12/14] : Nw29iFnhGN", - "2 | Signers [13/14] : 2CsjQQZoijLvpu8SAWTUhUyvQVzYfQbEsrLNBi", - "2 | Signers [14/14] : gXReuAwHsN", - "3 | Add signers : True", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1282, - "name": "Settlement_Update_venue_signers", - "blob": "2507000000000000000004f08b83a6d53348ae7f0d95c17aede87f42f2f32cc5825d00d38c265d30597b2e00d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Update venue signers", - "1 | Id : 0", - "2 | Signers [1/2] : 2HtK3EddN3XakicsaDCAH8xVqHvvaLvjBc8H3D", - "2 | Signers [2/2] : d53t89oAnj", - "3 | Add signers : False", - "4 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Settlement : Update venue signers", - "1 | Id : 0", - "2 | Signers [1/2] : 2HtK3EddN3XakicsaDCAH8xVqHvvaLvjBc8H3D", - "2 | Signers [2/2] : d53t89oAnj", - "3 | Add signers : False", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1283, - "name": "Settlement_Update_venue_signers", - "blob": "25072309000000000000040247edc9fb8eca4b72159b9d38906edad72d519a6947c25060104e350aa15f3c00d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Update venue signers", - "1 | Id : 2339", - "2 | Signers [1/2] : 2CVuZmPB18shdgAGpGPAezrmLe9FvG73KtQqfz", - "2 | Signers [2/2] : sCa3yT4Vtd", - "3 | Add signers : False", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Settlement : Update venue signers", - "1 | Id : 2339", - "2 | Signers [1/2] : 2CVuZmPB18shdgAGpGPAezrmLe9FvG73KtQqfz", - "2 | Signers [2/2] : sCa3yT4Vtd", - "3 | Add signers : False", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1284, - "name": "Settlement_Update_venue_signers", - "blob": "25076bc4000000000000040247edc9fb8eca4b72159b9d38906edad72d519a6947c25060104e350aa15f3c01d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Update venue signers", - "1 | Id : 50283", - "2 | Signers [1/2] : 2CVuZmPB18shdgAGpGPAezrmLe9FvG73KtQqfz", - "2 | Signers [2/2] : sCa3yT4Vtd", - "3 | Add signers : True" - ], - "output_expert": [ - "0 | Settlement : Update venue signers", - "1 | Id : 50283", - "2 | Signers [1/2] : 2CVuZmPB18shdgAGpGPAezrmLe9FvG73KtQqfz", - "2 | Signers [2/2] : sCa3yT4Vtd", - "3 | Add signers : True", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1285, - "name": "Settlement_Update_venue_signers", - "blob": "2507230900000000000024ba09ae5a1a06d6a5096e8fff1812b427b7b8472f8afd3f28a205cca623b2a62894667ff8cef58cc65f6a3fabe6d4738e6d923d558a0a9b19ad9893733082835bba966ea6ca4234843141fdd009bb8745df4e0cf51e7c8a9db5ae5d37c16fed2f360d0e343f81176e30f6f89c55f0b0ddc12c86dfac9f66b1a1f0c1b87b4c744866a090e9a0d5470f2e3df13a7a22d9c61699eefba5f2ba435d1df694ced2f34336b1dc398b1188204c2633a177ac9fa439065c2db553f0dbab3c19af63caff096ae17d5b2fee7a239ecd4b19d396b2f284a26e25852d5fe41d273a91ee623d1fbefb2815fc037d35ccae79237555457ac51f50518f27dd431386c3848b5f4f106e781d3e6c8b0ed98969bae24573501d89648c212ebe0fb7cc201cf109d7e83701d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Update venue signers", - "1 | Id : 2339", - "2 | Signers [1/18] : 2GeqtHba1JjAWsSUbehiiC3hfNg7nryrD7maiR", - "2 | Signers [2/18] : YZxQ8GhhFE", - "2 | Signers [3/18] : 2FoVdyon9MokPTbsT1yGPVp2UdbqXDGib5WQjb", - "2 | Signers [4/18] : HEKyFaXmih", - "2 | Signers [5/18] : 2GfZhNbZPUSAiWgibrRb8pXzYRbFQZVPmxo7zG", - "2 | Signers [6/18] : udMxQ81jJD", - "2 | Signers [7/18] : 2DfnZpc7sbmiusf76kku8GMasZEhksda6Mi7q8", - "2 | Signers [8/18] : ZbfGFBLQgo", - "2 | Signers [9/18] : 2EmUggSH8DLLFzsa1r9hFQSvFixNVRjJW3Fj5m", - "2 | Signers [10/18] : b58HL5zbjB", - "2 | Signers [11/18] : 2DgdXLma4sAWPvkDA1gjs9zc8Azw3iy4MyhgNT", - "2 | Signers [12/18] : U63qDZtqU9", - "2 | Signers [13/18] : 2Es4AQ2Ao3NpSqwnyBKTPMBS7Eaf7JAHuwKQUi", - "2 | Signers [14/18] : BKh1LwbpYm", - "2 | Signers [15/18] : 2GmKovTufMs9PAVKDskoethS2tYrChoekWhVEc", - "2 | Signers [16/18] : gRNSvSiUhV", - "2 | Signers [17/18] : 2Ewm3vvCToummsrGVFwg4ETPgpfPfuSeuYGLSe", - "2 | Signers [18/18] : 9b6pmP9zLV", - "3 | Add signers : True" - ], - "output_expert": [ - "0 | Settlement : Update venue signers", - "1 | Id : 2339", - "2 | Signers [1/18] : 2GeqtHba1JjAWsSUbehiiC3hfNg7nryrD7maiR", - "2 | Signers [2/18] : YZxQ8GhhFE", - "2 | Signers [3/18] : 2FoVdyon9MokPTbsT1yGPVp2UdbqXDGib5WQjb", - "2 | Signers [4/18] : HEKyFaXmih", - "2 | Signers [5/18] : 2GfZhNbZPUSAiWgibrRb8pXzYRbFQZVPmxo7zG", - "2 | Signers [6/18] : udMxQ81jJD", - "2 | Signers [7/18] : 2DfnZpc7sbmiusf76kku8GMasZEhksda6Mi7q8", - "2 | Signers [8/18] : ZbfGFBLQgo", - "2 | Signers [9/18] : 2EmUggSH8DLLFzsa1r9hFQSvFixNVRjJW3Fj5m", - "2 | Signers [10/18] : b58HL5zbjB", - "2 | Signers [11/18] : 2DgdXLma4sAWPvkDA1gjs9zc8Azw3iy4MyhgNT", - "2 | Signers [12/18] : U63qDZtqU9", - "2 | Signers [13/18] : 2Es4AQ2Ao3NpSqwnyBKTPMBS7Eaf7JAHuwKQUi", - "2 | Signers [14/18] : BKh1LwbpYm", - "2 | Signers [15/18] : 2GmKovTufMs9PAVKDskoethS2tYrChoekWhVEc", - "2 | Signers [16/18] : gRNSvSiUhV", - "2 | Signers [17/18] : 2Ewm3vvCToummsrGVFwg4ETPgpfPfuSeuYGLSe", - "2 | Signers [18/18] : 9b6pmP9zLV", - "3 | Add signers : True", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1286, - "name": "Settlement_Execute_manual_instruction", - "blob": "25086400000000000000009d1c00009d1c0000000000000148f66f0363d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Execute manual instruction", - "1 | Id : 100", - "2 | Portfolio : None", - "3 | Fungible transfers : 7325", - "4 | Nfts transfers : 7325", - "5 | Offchain transfers : 0", - "6 | Weight limit [1/2] : 18", - "6 | Weight limit [2/2] : 415292413", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Settlement : Execute manual instruction", - "1 | Id : 100", - "2 | Portfolio : None", - "3 | Fungible transfers : 7325", - "4 | Nfts transfers : 7325", - "5 | Offchain transfers : 0", - "6 | Weight limit [1/2] : 18", - "6 | Weight limit [2/2] : 415292413", - "7 | Chain : Polymesh", - "8 | Nonce : 0", - "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "9 | Tip [2/2] : 3.456789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1287, - "name": "Settlement_Execute_manual_instruction", - "blob": "2508230900000000000001c6d0f141caeb22ecf67b4a3d34fd4f806d7132eb4d269f9dbc039de28c3e08aa01462efcf3f22523e5d3040000f7010000000000000148f66f0363d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Execute manual instruction", - "1 | Id : 2339", - "2 | Portfolio [1/3] : c6d0f141caeb22ecf67b4a3d34fd4f806d7132", - "2 | Portfolio [2/3] : eb4d269f9dbc039de28c3e08aa", - "2 | Portfolio [3/3] : 16511082384276074054", - "3 | Fungible transfers : 1235", - "4 | Nfts transfers : 503", - "5 | Offchain transfers : 0", - "6 | Weight limit [1/2] : 18", - "6 | Weight limit [2/2] : 415292413", - "7 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Settlement : Execute manual instruction", - "1 | Id : 2339", - "2 | Portfolio [1/3] : c6d0f141caeb22ecf67b4a3d34fd4f806d7132", - "2 | Portfolio [2/3] : eb4d269f9dbc039de28c3e08aa", - "2 | Portfolio [3/3] : 16511082384276074054", - "3 | Fungible transfers : 1235", - "4 | Nfts transfers : 503", - "5 | Offchain transfers : 0", - "6 | Weight limit [1/2] : 18", - "6 | Weight limit [2/2] : 415292413", - "7 | Chain : Polymesh", - "8 | Nonce : 100", - "9 | Tip : POLYX 55.555555", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1288, - "name": "Settlement_Execute_manual_instruction", - "blob": "2508230900000000000001cd0dd2341eba0d9c0488852cd3bd3ea3571393e3cbbc002dba42809dab4dfb83009d1c00009d1c0000d304000000d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Execute manual instruction", - "1 | Id : 2339", - "2 | Portfolio [1/3] : cd0dd2341eba0d9c0488852cd3bd3ea3571393", - "2 | Portfolio [2/3] : e3cbbc002dba42809dab4dfb83", - "2 | Portfolio [3/3] : Default", - "3 | Fungible transfers : 7325", - "4 | Nfts transfers : 7325", - "5 | Offchain transfers : 1235", - "6 | Weight limit : None", - "7 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Settlement : Execute manual instruction", - "1 | Id : 2339", - "2 | Portfolio [1/3] : cd0dd2341eba0d9c0488852cd3bd3ea3571393", - "2 | Portfolio [2/3] : e3cbbc002dba42809dab4dfb83", - "2 | Portfolio [3/3] : Default", - "3 | Fungible transfers : 7325", - "4 | Nfts transfers : 7325", - "5 | Offchain transfers : 1235", - "6 | Weight limit : None", - "7 | Chain : Polymesh", - "8 | Nonce : 100", - "9 | Tip : POLYX 5552342.355555", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1289, - "name": "Settlement_Execute_manual_instruction", - "blob": "2508000000000000000000f701000034300000d304000000d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Execute manual instruction", - "1 | Id : 0", - "2 | Portfolio : None", - "3 | Fungible transfers : 503", - "4 | Nfts transfers : 12340", - "5 | Offchain transfers : 1235", - "6 | Weight limit : None", - "7 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Settlement : Execute manual instruction", - "1 | Id : 0", - "2 | Portfolio : None", - "3 | Fungible transfers : 503", - "4 | Nfts transfers : 12340", - "5 | Offchain transfers : 1235", - "6 | Weight limit : None", - "7 | Chain : Polymesh", - "8 | Nonce : 0", - "9 | Tip : POLYX 0.000987", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1290, - "name": "Settlement_Execute_manual_instruction", - "blob": "2508010000000000000001cd0dd2341eba0d9c0488852cd3bd3ea3571393e3cbbc002dba42809dab4dfb83009d1c000034300000f701000000d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Execute manual instruction", - "1 | Id : 1", - "2 | Portfolio [1/3] : cd0dd2341eba0d9c0488852cd3bd3ea3571393", - "2 | Portfolio [2/3] : e3cbbc002dba42809dab4dfb83", - "2 | Portfolio [3/3] : Default", - "3 | Fungible transfers : 7325", - "4 | Nfts transfers : 12340", - "5 | Offchain transfers : 503", - "6 | Weight limit : None", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Settlement : Execute manual instruction", - "1 | Id : 1", - "2 | Portfolio [1/3] : cd0dd2341eba0d9c0488852cd3bd3ea3571393", - "2 | Portfolio [2/3] : e3cbbc002dba42809dab4dfb83", - "2 | Portfolio [3/3] : Default", - "3 | Fungible transfers : 7325", - "4 | Nfts transfers : 12340", - "5 | Offchain transfers : 503", - "6 | Weight limit : None", - "7 | Chain : Polymesh", - "8 | Nonce : 0", - "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "9 | Tip [2/2] : 3.456789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1291, - "name": "Settlement_Add_instruction", - "blob": "25096bc4000000000000020db1dfcc0180000000000000000100010000000000000402aea268664aa8dbd5aa3c8ce5b7bfb680bd11d430a6ac8d39f586a4a1fa75b44c50c0ac926a09bc7b17909f4e0fd3e0405ed3eb8f422ffb2a0c6553e8ec95e4c25449434b45522d333435363757bd992aeb31b2f4eb661bf21239116a01bfc0a4e8f733a301acf85c30c9319a53556e73bd4c75f931c2e6b4b508b9272cd50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Add instruction", - "1 | Venue id : 50283", - "2 | Settlement type : 3437211917", - "3 | Trade date : 128", - "4 | Value date : 256", - "5 | Legs [1/7] : aea268664aa8dbd5aa3c8ce5b7bfb680bd11d4", - "5 | Legs [2/7] : 30a6ac8d39f586a4a1fa75b44c", - "5 | Legs [3/7] : 50c0ac926a09bc7b17909f4e0fd3e0405ed3eb", - "5 | Legs [4/7] : 8f422ffb2a0c6553e8ec95e4c2", - "5 | Legs [5/7] : TICKER-34567", - "5 | Legs [6/7] : 140987594198179007407354230526308.8919", - "5 | Legs [7/7] : 91", - "6 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "6 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "7 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Settlement : Add instruction", - "1 | Venue id : 50283", - "2 | Settlement type : 3437211917", - "3 | Trade date : 128", - "4 | Value date : 256", - "5 | Legs [1/7] : aea268664aa8dbd5aa3c8ce5b7bfb680bd11d4", - "5 | Legs [2/7] : 30a6ac8d39f586a4a1fa75b44c", - "5 | Legs [3/7] : 50c0ac926a09bc7b17909f4e0fd3e0405ed3eb", - "5 | Legs [4/7] : 8f422ffb2a0c6553e8ec95e4c2", - "5 | Legs [5/7] : TICKER-34567", - "5 | Legs [6/7] : 140987594198179007407354230526308.8919", - "5 | Legs [7/7] : 91", - "6 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "6 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "7 | Chain : Polymesh", - "8 | Nonce : 100", - "9 | Tip : POLYX 5552342.355555", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1292, - "name": "Settlement_Add_instruction", - "blob": "250964000000000000000106d1c82a0100010000000000000100010000000000000402aea268664aa8dbd5aa3c8ce5b7bfb680bd11d430a6ac8d39f586a4a1fa75b44c50c0ac926a09bc7b17909f4e0fd3e0405ed3eb8f422ffb2a0c6553e8ec95e4c25449434b45522d333435363757bd992aeb31b2f4eb661bf21239116a01bfc0a4e8f733a301acf85c30c9319a53556e73bd4c75f931c2e6b4b508b9272cd5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Add instruction", - "1 | Venue id : 100", - "2 | Settlement type : 717803782", - "3 | Trade date : 256", - "4 | Value date : 256", - "5 | Legs [1/7] : aea268664aa8dbd5aa3c8ce5b7bfb680bd11d4", - "5 | Legs [2/7] : 30a6ac8d39f586a4a1fa75b44c", - "5 | Legs [3/7] : 50c0ac926a09bc7b17909f4e0fd3e0405ed3eb", - "5 | Legs [4/7] : 8f422ffb2a0c6553e8ec95e4c2", - "5 | Legs [5/7] : TICKER-34567", - "5 | Legs [6/7] : 140987594198179007407354230526308.8919", - "5 | Legs [7/7] : 91", - "6 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "6 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "7 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Settlement : Add instruction", - "1 | Venue id : 100", - "2 | Settlement type : 717803782", - "3 | Trade date : 256", - "4 | Value date : 256", - "5 | Legs [1/7] : aea268664aa8dbd5aa3c8ce5b7bfb680bd11d4", - "5 | Legs [2/7] : 30a6ac8d39f586a4a1fa75b44c", - "5 | Legs [3/7] : 50c0ac926a09bc7b17909f4e0fd3e0405ed3eb", - "5 | Legs [4/7] : 8f422ffb2a0c6553e8ec95e4c2", - "5 | Legs [5/7] : TICKER-34567", - "5 | Legs [6/7] : 140987594198179007407354230526308.8919", - "5 | Legs [7/7] : 91", - "6 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "6 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "7 | Chain : Polymesh", - "8 | Nonce : 0", - "9 | Tip : POLYX 1234.56789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1293, - "name": "Settlement_Add_instruction", - "blob": "25090100000000000000020db1dfcc0100080000000000000180000000000000000400ca77204458f6e088935b8cf2edc4a6551165ef6f9f3de2da473290a0e3a039860051d7e249ba7e3f5573b394e8270e3ac2c107e5873929d289e4b17df31989299f019fb553a5ab807ff55449434b45522d33343536377794cf358990bc7a3dadd7754123880b01bfc0a4e8f733a301acf85c30c9319a53556e73bd4c75f931c2e6b4b508b9272cd5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Add instruction", - "1 | Venue id : 1", - "2 | Settlement type : 3437211917", - "3 | Trade date : 2048", - "4 | Value date : 128", - "5 | Legs [1/9] : ca77204458f6e088935b8cf2edc4a6551165ef", - "5 | Legs [2/9] : 6f9f3de2da473290a0e3a03986", - "5 | Legs [3/9] : Default", - "5 | Legs [4/9] : 51d7e249ba7e3f5573b394e8270e3ac2c107e5", - "5 | Legs [5/9] : 873929d289e4b17df31989299f", - "5 | Legs [6/9] : 17689999336036087199", - "5 | Legs [7/9] : TICKER-34567", - "5 | Legs [8/9] : 15328375397031985698880352843511.86239", - "5 | Legs [9/9] : 1", - "6 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "6 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Settlement : Add instruction", - "1 | Venue id : 1", - "2 | Settlement type : 3437211917", - "3 | Trade date : 2048", - "4 | Value date : 128", - "5 | Legs [1/9] : ca77204458f6e088935b8cf2edc4a6551165ef", - "5 | Legs [2/9] : 6f9f3de2da473290a0e3a03986", - "5 | Legs [3/9] : Default", - "5 | Legs [4/9] : 51d7e249ba7e3f5573b394e8270e3ac2c107e5", - "5 | Legs [5/9] : 873929d289e4b17df31989299f", - "5 | Legs [6/9] : 17689999336036087199", - "5 | Legs [7/9] : TICKER-34567", - "5 | Legs [8/9] : 15328375397031985698880352843511.86239", - "5 | Legs [9/9] : 1", - "6 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "6 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "7 | Chain : Polymesh", - "8 | Nonce : 1", - "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "9 | Tip [2/2] : 3.456789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1294, - "name": "Settlement_Add_instruction", - "blob": "250923090000000000000106d1c82a0180000000000000000100080000000000000402aea268664aa8dbd5aa3c8ce5b7bfb680bd11d430a6ac8d39f586a4a1fa75b44c50c0ac926a09bc7b17909f4e0fd3e0405ed3eb8f422ffb2a0c6553e8ec95e4c25449434b45522d333435363757bd992aeb31b2f4eb661bf21239116a01bfc0a4e8f733a301acf85c30c9319a53556e73bd4c75f931c2e6b4b508b9272cd5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Add instruction", - "1 | Venue id : 2339", - "2 | Settlement type : 717803782", - "3 | Trade date : 128", - "4 | Value date : 2048", - "5 | Legs [1/7] : aea268664aa8dbd5aa3c8ce5b7bfb680bd11d4", - "5 | Legs [2/7] : 30a6ac8d39f586a4a1fa75b44c", - "5 | Legs [3/7] : 50c0ac926a09bc7b17909f4e0fd3e0405ed3eb", - "5 | Legs [4/7] : 8f422ffb2a0c6553e8ec95e4c2", - "5 | Legs [5/7] : TICKER-34567", - "5 | Legs [6/7] : 140987594198179007407354230526308.8919", - "5 | Legs [7/7] : 91", - "6 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "6 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "7 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Settlement : Add instruction", - "1 | Venue id : 2339", - "2 | Settlement type : 717803782", - "3 | Trade date : 128", - "4 | Value date : 2048", - "5 | Legs [1/7] : aea268664aa8dbd5aa3c8ce5b7bfb680bd11d4", - "5 | Legs [2/7] : 30a6ac8d39f586a4a1fa75b44c", - "5 | Legs [3/7] : 50c0ac926a09bc7b17909f4e0fd3e0405ed3eb", - "5 | Legs [4/7] : 8f422ffb2a0c6553e8ec95e4c2", - "5 | Legs [5/7] : TICKER-34567", - "5 | Legs [6/7] : 140987594198179007407354230526308.8919", - "5 | Legs [7/7] : 91", - "6 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "6 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "7 | Chain : Polymesh", - "8 | Nonce : 1", - "9 | Tip : POLYX 1234.56789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1295, - "name": "Settlement_Add_instruction", - "blob": "25096bc4000000000000000100010000000000000100080000000000000400ca77204458f6e088935b8cf2edc4a6551165ef6f9f3de2da473290a0e3a039860051d7e249ba7e3f5573b394e8270e3ac2c107e5873929d289e4b17df31989299f019fb553a5ab807ff55449434b45522d33343536377794cf358990bc7a3dadd7754123880b01bfc0a4e8f733a301acf85c30c9319a53556e73bd4c75f931c2e6b4b508b9272cd503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Add instruction", - "1 | Venue id : 50283", - "2 | Settlement type : SettleOnAffirmation", - "3 | Trade date : 256", - "4 | Value date : 2048", - "5 | Legs [1/9] : ca77204458f6e088935b8cf2edc4a6551165ef", - "5 | Legs [2/9] : 6f9f3de2da473290a0e3a03986", - "5 | Legs [3/9] : Default", - "5 | Legs [4/9] : 51d7e249ba7e3f5573b394e8270e3ac2c107e5", - "5 | Legs [5/9] : 873929d289e4b17df31989299f", - "5 | Legs [6/9] : 17689999336036087199", - "5 | Legs [7/9] : TICKER-34567", - "5 | Legs [8/9] : 15328375397031985698880352843511.86239", - "5 | Legs [9/9] : 1", - "6 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "6 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c" - ], - "output_expert": [ - "0 | Settlement : Add instruction", - "1 | Venue id : 50283", - "2 | Settlement type : SettleOnAffirmation", - "3 | Trade date : 256", - "4 | Value date : 2048", - "5 | Legs [1/9] : ca77204458f6e088935b8cf2edc4a6551165ef", - "5 | Legs [2/9] : 6f9f3de2da473290a0e3a03986", - "5 | Legs [3/9] : Default", - "5 | Legs [4/9] : 51d7e249ba7e3f5573b394e8270e3ac2c107e5", - "5 | Legs [5/9] : 873929d289e4b17df31989299f", - "5 | Legs [6/9] : 17689999336036087199", - "5 | Legs [7/9] : TICKER-34567", - "5 | Legs [8/9] : 15328375397031985698880352843511.86239", - "5 | Legs [9/9] : 1", - "6 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "6 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "7 | Chain : Polymesh", - "8 | Nonce : 0", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1296, - "name": "Settlement_Add_and_affirm_instruction", - "blob": "250a0000000000000000000100080000000000000180000000000000000400ca77204458f6e088935b8cf2edc4a6551165ef6f9f3de2da473290a0e3a039860051d7e249ba7e3f5573b394e8270e3ac2c107e5873929d289e4b17df31989299f019fb553a5ab807ff55449434b45522d33343536377794cf358990bc7a3dadd7754123880b0001bfc0a4e8f733a301acf85c30c9319a53556e73bd4c75f931c2e6b4b508b9272cd503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Add and affirm instruction", - "1 | Venue id : 0", - "2 | Settlement type : SettleOnAffirmation", - "3 | Trade date : 2048", - "4 | Value date : 128", - "5 | Legs [1/9] : ca77204458f6e088935b8cf2edc4a6551165ef", - "5 | Legs [2/9] : 6f9f3de2da473290a0e3a03986", - "5 | Legs [3/9] : Default", - "5 | Legs [4/9] : 51d7e249ba7e3f5573b394e8270e3ac2c107e5", - "5 | Legs [5/9] : 873929d289e4b17df31989299f", - "5 | Legs [6/9] : 17689999336036087199", - "5 | Legs [7/9] : TICKER-34567", - "5 | Legs [8/9] : 15328375397031985698880352843511.86239", - "5 | Legs [9/9] : 1", - "6 | Portfolios : ", - "7 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "7 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "8 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Settlement : Add and affirm instruction", - "1 | Venue id : 0", - "2 | Settlement type : SettleOnAffirmation", - "3 | Trade date : 2048", - "4 | Value date : 128", - "5 | Legs [1/9] : ca77204458f6e088935b8cf2edc4a6551165ef", - "5 | Legs [2/9] : 6f9f3de2da473290a0e3a03986", - "5 | Legs [3/9] : Default", - "5 | Legs [4/9] : 51d7e249ba7e3f5573b394e8270e3ac2c107e5", - "5 | Legs [5/9] : 873929d289e4b17df31989299f", - "5 | Legs [6/9] : 17689999336036087199", - "5 | Legs [7/9] : TICKER-34567", - "5 | Legs [8/9] : 15328375397031985698880352843511.86239", - "5 | Legs [9/9] : 1", - "6 | Portfolios : ", - "7 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "7 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "8 | Chain : Polymesh", - "9 | Nonce : 50283", - "10 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "10 | Tip [2/2] : 3.456789", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1297, - "name": "Settlement_Add_and_affirm_instruction", - "blob": "250a23090000000000000106d1c82a0100080000000000000100010000000000000008dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebaba1e8b917895a773d353a68d6170140e20100000000000a812c840a4ca01bd77aa82b2712655136d1ae5482b754122c7a76b6cef180170140e201000000000001bfc0a4e8f733a301acf85c30c9319a53556e73bd4c75f931c2e6b4b508b9272cd503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Add and affirm instruction", - "1 | Venue id : 2339", - "2 | Settlement type : 717803782", - "3 | Trade date : 2048", - "4 | Value date : 256", - "5 | Legs : ", - "6 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "6 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "6 | Portfolios [3/6] : 123456", - "6 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "6 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "6 | Portfolios [6/6] : 123456", - "7 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "7 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "8 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Settlement : Add and affirm instruction", - "1 | Venue id : 2339", - "2 | Settlement type : 717803782", - "3 | Trade date : 2048", - "4 | Value date : 256", - "5 | Legs : ", - "6 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "6 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "6 | Portfolios [3/6] : 123456", - "6 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "6 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "6 | Portfolios [6/6] : 123456", - "7 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "7 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "8 | Chain : Polymesh", - "9 | Nonce : 50283", - "10 | Tip : POLYX 0.000987", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1298, - "name": "Settlement_Add_and_affirm_instruction", - "blob": "250a01000000000000000106d1c82a0100010000000000000100010000000000000400ca77204458f6e088935b8cf2edc4a6551165ef6f9f3de2da473290a0e3a039860051d7e249ba7e3f5573b394e8270e3ac2c107e5873929d289e4b17df31989299f019fb553a5ab807ff55449434b45522d33343536377794cf358990bc7a3dadd7754123880b0001bfc0a4e8f733a301acf85c30c9319a53556e73bd4c75f931c2e6b4b508b9272cd5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Add and affirm instruction", - "1 | Venue id : 1", - "2 | Settlement type : 717803782", - "3 | Trade date : 256", - "4 | Value date : 256", - "5 | Legs [1/9] : ca77204458f6e088935b8cf2edc4a6551165ef", - "5 | Legs [2/9] : 6f9f3de2da473290a0e3a03986", - "5 | Legs [3/9] : Default", - "5 | Legs [4/9] : 51d7e249ba7e3f5573b394e8270e3ac2c107e5", - "5 | Legs [5/9] : 873929d289e4b17df31989299f", - "5 | Legs [6/9] : 17689999336036087199", - "5 | Legs [7/9] : TICKER-34567", - "5 | Legs [8/9] : 15328375397031985698880352843511.86239", - "5 | Legs [9/9] : 1", - "6 | Portfolios : ", - "7 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "7 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "8 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Settlement : Add and affirm instruction", - "1 | Venue id : 1", - "2 | Settlement type : 717803782", - "3 | Trade date : 256", - "4 | Value date : 256", - "5 | Legs [1/9] : ca77204458f6e088935b8cf2edc4a6551165ef", - "5 | Legs [2/9] : 6f9f3de2da473290a0e3a03986", - "5 | Legs [3/9] : Default", - "5 | Legs [4/9] : 51d7e249ba7e3f5573b394e8270e3ac2c107e5", - "5 | Legs [5/9] : 873929d289e4b17df31989299f", - "5 | Legs [6/9] : 17689999336036087199", - "5 | Legs [7/9] : TICKER-34567", - "5 | Legs [8/9] : 15328375397031985698880352843511.86239", - "5 | Legs [9/9] : 1", - "6 | Portfolios : ", - "7 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "7 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "8 | Chain : Polymesh", - "9 | Nonce : 2339", - "10 | Tip : POLYX 1234.56789", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1299, - "name": "Settlement_Add_and_affirm_instruction", - "blob": "250a6bc4000000000000000100080000000000000180000000000000000400ca77204458f6e088935b8cf2edc4a6551165ef6f9f3de2da473290a0e3a039860051d7e249ba7e3f5573b394e8270e3ac2c107e5873929d289e4b17df31989299f019fb553a5ab807ff55449434b45522d33343536377794cf358990bc7a3dadd7754123880b0001bfc0a4e8f733a301acf85c30c9319a53556e73bd4c75f931c2e6b4b508b9272cd503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Add and affirm instruction", - "1 | Venue id : 50283", - "2 | Settlement type : SettleOnAffirmation", - "3 | Trade date : 2048", - "4 | Value date : 128", - "5 | Legs [1/9] : ca77204458f6e088935b8cf2edc4a6551165ef", - "5 | Legs [2/9] : 6f9f3de2da473290a0e3a03986", - "5 | Legs [3/9] : Default", - "5 | Legs [4/9] : 51d7e249ba7e3f5573b394e8270e3ac2c107e5", - "5 | Legs [5/9] : 873929d289e4b17df31989299f", - "5 | Legs [6/9] : 17689999336036087199", - "5 | Legs [7/9] : TICKER-34567", - "5 | Legs [8/9] : 15328375397031985698880352843511.86239", - "5 | Legs [9/9] : 1", - "6 | Portfolios : ", - "7 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "7 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "8 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Settlement : Add and affirm instruction", - "1 | Venue id : 50283", - "2 | Settlement type : SettleOnAffirmation", - "3 | Trade date : 2048", - "4 | Value date : 128", - "5 | Legs [1/9] : ca77204458f6e088935b8cf2edc4a6551165ef", - "5 | Legs [2/9] : 6f9f3de2da473290a0e3a03986", - "5 | Legs [3/9] : Default", - "5 | Legs [4/9] : 51d7e249ba7e3f5573b394e8270e3ac2c107e5", - "5 | Legs [5/9] : 873929d289e4b17df31989299f", - "5 | Legs [6/9] : 17689999336036087199", - "5 | Legs [7/9] : TICKER-34567", - "5 | Legs [8/9] : 15328375397031985698880352843511.86239", - "5 | Legs [9/9] : 1", - "6 | Portfolios : ", - "7 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "7 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "8 | Chain : Polymesh", - "9 | Nonce : 50283", - "10 | Tip : POLYX 55.555555", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1300, - "name": "Settlement_Add_and_affirm_instruction", - "blob": "250a0100000000000000020db1dfcc0100080000000000000100080000000000000402aea268664aa8dbd5aa3c8ce5b7bfb680bd11d430a6ac8d39f586a4a1fa75b44c50c0ac926a09bc7b17909f4e0fd3e0405ed3eb8f422ffb2a0c6553e8ec95e4c25449434b45522d333435363757bd992aeb31b2f4eb661bf21239116a0001bfc0a4e8f733a301acf85c30c9319a53556e73bd4c75f931c2e6b4b508b9272cd503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Add and affirm instruction", - "1 | Venue id : 1", - "2 | Settlement type : 3437211917", - "3 | Trade date : 2048", - "4 | Value date : 2048", - "5 | Legs [1/7] : aea268664aa8dbd5aa3c8ce5b7bfb680bd11d4", - "5 | Legs [2/7] : 30a6ac8d39f586a4a1fa75b44c", - "5 | Legs [3/7] : 50c0ac926a09bc7b17909f4e0fd3e0405ed3eb", - "5 | Legs [4/7] : 8f422ffb2a0c6553e8ec95e4c2", - "5 | Legs [5/7] : TICKER-34567", - "5 | Legs [6/7] : 140987594198179007407354230526308.8919", - "5 | Legs [7/7] : 91", - "6 | Portfolios : ", - "7 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "7 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c" - ], - "output_expert": [ - "0 | Settlement : Add and affirm instruction", - "1 | Venue id : 1", - "2 | Settlement type : 3437211917", - "3 | Trade date : 2048", - "4 | Value date : 2048", - "5 | Legs [1/7] : aea268664aa8dbd5aa3c8ce5b7bfb680bd11d4", - "5 | Legs [2/7] : 30a6ac8d39f586a4a1fa75b44c", - "5 | Legs [3/7] : 50c0ac926a09bc7b17909f4e0fd3e0405ed3eb", - "5 | Legs [4/7] : 8f422ffb2a0c6553e8ec95e4c2", - "5 | Legs [5/7] : TICKER-34567", - "5 | Legs [6/7] : 140987594198179007407354230526308.8919", - "5 | Legs [7/7] : 91", - "6 | Portfolios : ", - "7 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "7 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "8 | Chain : Polymesh", - "9 | Nonce : 50283", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1301, - "name": "Settlement_Affirm_instruction", - "blob": "250b230900000000000000d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Affirm instruction", - "1 | Id : 2339", - "2 | Portfolios : ", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Settlement : Affirm instruction", - "1 | Id : 2339", - "2 | Portfolios : ", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1302, - "name": "Settlement_Affirm_instruction", - "blob": "250b230900000000000008dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebaba1e8b917895a773d353a68d6170140e20100000000000a812c840a4ca01bd77aa82b2712655136d1ae5482b754122c7a76b6cef180170140e2010000000000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Affirm instruction", - "1 | Id : 2339", - "2 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "2 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "2 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "2 | Portfolios [6/6] : 123456" - ], - "output_expert": [ - "0 | Settlement : Affirm instruction", - "1 | Id : 2339", - "2 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "2 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "2 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "2 | Portfolios [6/6] : 123456", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1303, - "name": "Settlement_Affirm_instruction", - "blob": "250b6bc400000000000000d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Affirm instruction", - "1 | Id : 50283", - "2 | Portfolios : ", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Settlement : Affirm instruction", - "1 | Id : 50283", - "2 | Portfolios : ", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1304, - "name": "Settlement_Affirm_instruction", - "blob": "250b640000000000000008dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebaba1e8b917895a773d353a68d6170140e20100000000000a812c840a4ca01bd77aa82b2712655136d1ae5482b754122c7a76b6cef180170140e2010000000000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Affirm instruction", - "1 | Id : 100", - "2 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "2 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "2 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "2 | Portfolios [6/6] : 123456", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Settlement : Affirm instruction", - "1 | Id : 100", - "2 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "2 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "2 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "2 | Portfolios [6/6] : 123456", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1305, - "name": "Settlement_Affirm_instruction", - "blob": "250b6bc400000000000000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Affirm instruction", - "1 | Id : 50283", - "2 | Portfolios : ", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Settlement : Affirm instruction", - "1 | Id : 50283", - "2 | Portfolios : ", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1306, - "name": "Settlement_Withdraw_affirmation", - "blob": "250c230900000000000008dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebaba1e8b917895a773d353a68d6170140e20100000000000a812c840a4ca01bd77aa82b2712655136d1ae5482b754122c7a76b6cef180170140e2010000000000d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Withdraw affirmation", - "1 | Id : 2339", - "2 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "2 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "2 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "2 | Portfolios [6/6] : 123456", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Settlement : Withdraw affirmation", - "1 | Id : 2339", - "2 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "2 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "2 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "2 | Portfolios [6/6] : 123456", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1307, - "name": "Settlement_Withdraw_affirmation", - "blob": "250c230900000000000000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Withdraw affirmation", - "1 | Id : 2339", - "2 | Portfolios : ", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Settlement : Withdraw affirmation", - "1 | Id : 2339", - "2 | Portfolios : ", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1308, - "name": "Settlement_Withdraw_affirmation", - "blob": "250c010000000000000008dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebaba1e8b917895a773d353a68d6170140e20100000000000a812c840a4ca01bd77aa82b2712655136d1ae5482b754122c7a76b6cef180170140e2010000000000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Withdraw affirmation", - "1 | Id : 1", - "2 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "2 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "2 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "2 | Portfolios [6/6] : 123456" - ], - "output_expert": [ - "0 | Settlement : Withdraw affirmation", - "1 | Id : 1", - "2 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "2 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "2 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "2 | Portfolios [6/6] : 123456", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1309, - "name": "Settlement_Withdraw_affirmation", - "blob": "250c230900000000000008dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebaba1e8b917895a773d353a68d6170140e20100000000000a812c840a4ca01bd77aa82b2712655136d1ae5482b754122c7a76b6cef180170140e2010000000000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Withdraw affirmation", - "1 | Id : 2339", - "2 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "2 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "2 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "2 | Portfolios [6/6] : 123456", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Settlement : Withdraw affirmation", - "1 | Id : 2339", - "2 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "2 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "2 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "2 | Portfolios [6/6] : 123456", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1310, - "name": "Settlement_Withdraw_affirmation", - "blob": "250c000000000000000008dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebaba1e8b917895a773d353a68d6170140e20100000000000a812c840a4ca01bd77aa82b2712655136d1ae5482b754122c7a76b6cef180170140e2010000000000d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Withdraw affirmation", - "1 | Id : 0", - "2 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "2 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "2 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "2 | Portfolios [6/6] : 123456" - ], - "output_expert": [ - "0 | Settlement : Withdraw affirmation", - "1 | Id : 0", - "2 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "2 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "2 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "2 | Portfolios [6/6] : 123456", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1311, - "name": "Settlement_Reject_instruction", - "blob": "250d6bc40000000000000e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e2010000000000d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Reject instruction", - "1 | Id : 50283", - "2 | Portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio [3/3] : 123456", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Settlement : Reject instruction", - "1 | Id : 50283", - "2 | Portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio [3/3] : 123456", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1312, - "name": "Settlement_Reject_instruction", - "blob": "250d6bc40000000000000e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e2010000000000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Reject instruction", - "1 | Id : 50283", - "2 | Portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio [3/3] : 123456" - ], - "output_expert": [ - "0 | Settlement : Reject instruction", - "1 | Id : 50283", - "2 | Portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio [3/3] : 123456", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1313, - "name": "Settlement_Reject_instruction", - "blob": "250d00000000000000000e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e2010000000000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Reject instruction", - "1 | Id : 0", - "2 | Portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio [3/3] : 123456", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Settlement : Reject instruction", - "1 | Id : 0", - "2 | Portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio [3/3] : 123456", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1314, - "name": "Settlement_Reject_instruction", - "blob": "250d01000000000000000e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e2010000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Reject instruction", - "1 | Id : 1", - "2 | Portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio [3/3] : 123456", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Settlement : Reject instruction", - "1 | Id : 1", - "2 | Portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio [3/3] : 123456", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1315, - "name": "Settlement_Reject_instruction", - "blob": "250d64000000000000000e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e2010000000000d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Reject instruction", - "1 | Id : 100", - "2 | Portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio [3/3] : 123456", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Settlement : Reject instruction", - "1 | Id : 100", - "2 | Portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio [3/3] : 123456", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1316, - "name": "Settlement_Execute_scheduled_instruction", - "blob": "250e64000000000000001359aca23b925c6f9e131da1208579bd4c0ed503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Execute scheduled instruction", - "1 | Id : 100", - "2 | Weight limit [1/2] : 11416445363542994009", - "2 | Weight limit [2/2] : 1030406744383201565", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Settlement : Execute scheduled instruction", - "1 | Id : 100", - "2 | Weight limit [1/2] : 11416445363542994009", - "2 | Weight limit [2/2] : 1030406744383201565", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1317, - "name": "Settlement_Execute_scheduled_instruction", - "blob": "250e640000000000000085a8cda9d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Execute scheduled instruction", - "1 | Id : 100", - "2 | Weight limit [1/2] : 10785", - "2 | Weight limit [2/2] : 10867", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Settlement : Execute scheduled instruction", - "1 | Id : 100", - "2 | Weight limit [1/2] : 10785", - "2 | Weight limit [2/2] : 10867", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1318, - "name": "Settlement_Execute_scheduled_instruction", - "blob": "250e23090000000000000ba8c717031abc2a403eb3d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Execute scheduled instruction", - "1 | Id : 2339", - "2 | Weight limit [1/2] : 206819907061672", - "2 | Weight limit [2/2] : 751800330" - ], - "output_expert": [ - "0 | Settlement : Execute scheduled instruction", - "1 | Id : 2339", - "2 | Weight limit [1/2] : 206819907061672", - "2 | Weight limit [2/2] : 751800330", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1319, - "name": "Settlement_Execute_scheduled_instruction", - "blob": "250e64000000000000000ba8c717031abc2a403eb3d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Execute scheduled instruction", - "1 | Id : 100", - "2 | Weight limit [1/2] : 206819907061672", - "2 | Weight limit [2/2] : 751800330", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Settlement : Execute scheduled instruction", - "1 | Id : 100", - "2 | Weight limit [1/2] : 206819907061672", - "2 | Weight limit [2/2] : 751800330", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1320, - "name": "Settlement_Execute_scheduled_instruction", - "blob": "250e01000000000000001359aca23b925c6f9e131da1208579bd4c0ed5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Execute scheduled instruction", - "1 | Id : 1", - "2 | Weight limit [1/2] : 11416445363542994009", - "2 | Weight limit [2/2] : 1030406744383201565", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Settlement : Execute scheduled instruction", - "1 | Id : 1", - "2 | Weight limit [1/2] : 11416445363542994009", - "2 | Weight limit [2/2] : 1030406744383201565", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1321, - "name": "Settlement_Affirm_with_receipts_with_count", - "blob": "250f0000000000000000000001078845f6b2f9d31a00000000c2e6106aeeae42c00000000076d9a8ccd5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Affirm with receipts with count", - "1 | Id : 0", - "2 | Receipt details : ", - "3 | Portfolios : ", - "4 | Number of assets [1/7] : 4131751943", - "4 | Number of assets [2/7] : 450099634", - "4 | Number of assets [3/7] : 0", - "4 | Number of assets [4/7] : 1779492546", - "4 | Number of assets [5/7] : 3225595630", - "4 | Number of assets [6/7] : 0", - "4 | Number of assets [7/7] : 3433617782", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Settlement : Affirm with receipts with count", - "1 | Id : 0", - "2 | Receipt details : ", - "3 | Portfolios : ", - "4 | Number of assets [1/7] : 4131751943", - "4 | Number of assets [2/7] : 450099634", - "4 | Number of assets [3/7] : 0", - "4 | Number of assets [4/7] : 1779492546", - "4 | Number of assets [5/7] : 3225595630", - "4 | Number of assets [6/7] : 0", - "4 | Number of assets [7/7] : 3433617782", - "5 | Chain : Polymesh", - "6 | Nonce : 0", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1322, - "name": "Settlement_Affirm_with_receipts_with_count", - "blob": "250f6400000000000000000000d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Affirm with receipts with count", - "1 | Id : 100", - "2 | Receipt details : ", - "3 | Portfolios : ", - "4 | Number of assets : None" - ], - "output_expert": [ - "0 | Settlement : Affirm with receipts with count", - "1 | Id : 100", - "2 | Receipt details : ", - "3 | Portfolios : ", - "4 | Number of assets : None", - "5 | Chain : Polymesh", - "6 | Nonce : 50283", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1323, - "name": "Settlement_Affirm_with_receipts_with_count", - "blob": "250f64000000000000000008dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebaba1e8b917895a773d353a68d6170140e20100000000000a812c840a4ca01bd77aa82b2712655136d1ae5482b754122c7a76b6cef180170140e201000000000001078845f6b2f9d31a00000000c2e6106aeeae42c00000000076d9a8ccd503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Affirm with receipts with count", - "1 | Id : 100", - "2 | Receipt details : ", - "3 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "3 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "3 | Portfolios [3/6] : 123456", - "3 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "3 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "3 | Portfolios [6/6] : 123456", - "4 | Number of assets [1/7] : 4131751943", - "4 | Number of assets [2/7] : 450099634", - "4 | Number of assets [3/7] : 0", - "4 | Number of assets [4/7] : 1779492546", - "4 | Number of assets [5/7] : 3225595630", - "4 | Number of assets [6/7] : 0", - "4 | Number of assets [7/7] : 3433617782", - "5 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Settlement : Affirm with receipts with count", - "1 | Id : 100", - "2 | Receipt details : ", - "3 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "3 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "3 | Portfolios [3/6] : 123456", - "3 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "3 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "3 | Portfolios [6/6] : 123456", - "4 | Number of assets [1/7] : 4131751943", - "4 | Number of assets [2/7] : 450099634", - "4 | Number of assets [3/7] : 0", - "4 | Number of assets [4/7] : 1779492546", - "4 | Number of assets [5/7] : 3225595630", - "4 | Number of assets [6/7] : 0", - "4 | Number of assets [7/7] : 3433617782", - "5 | Chain : Polymesh", - "6 | Nonce : 0", - "7 | Tip : POLYX 0.000987", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1324, - "name": "Settlement_Affirm_with_receipts_with_count", - "blob": "250f010000000000000000000151309483df2e71fc000000005b2804082bbb4594000000001a6cbfafd503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Affirm with receipts with count", - "1 | Id : 1", - "2 | Receipt details : ", - "3 | Portfolios : ", - "4 | Number of assets [1/7] : 2207526993", - "4 | Number of assets [2/7] : 4235275999", - "4 | Number of assets [3/7] : 0", - "4 | Number of assets [4/7] : 134490203", - "4 | Number of assets [5/7] : 2487597867", - "4 | Number of assets [6/7] : 0", - "4 | Number of assets [7/7] : 2948557850", - "5 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Settlement : Affirm with receipts with count", - "1 | Id : 1", - "2 | Receipt details : ", - "3 | Portfolios : ", - "4 | Number of assets [1/7] : 2207526993", - "4 | Number of assets [2/7] : 4235275999", - "4 | Number of assets [3/7] : 0", - "4 | Number of assets [4/7] : 134490203", - "4 | Number of assets [5/7] : 2487597867", - "4 | Number of assets [6/7] : 0", - "4 | Number of assets [7/7] : 2948557850", - "5 | Chain : Polymesh", - "6 | Nonce : 0", - "7 | Tip : POLYX 5552342.355555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1325, - "name": "Settlement_Affirm_with_receipts_with_count", - "blob": "250f00000000000000000008dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebaba1e8b917895a773d353a68d6170140e20100000000000a812c840a4ca01bd77aa82b2712655136d1ae5482b754122c7a76b6cef180170140e2010000000000010ecfc17d0eff56b80000000079ce8c1ba5460af2000000002fc31737d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Affirm with receipts with count", - "1 | Id : 0", - "2 | Receipt details : ", - "3 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "3 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "3 | Portfolios [3/6] : 123456", - "3 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "3 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "3 | Portfolios [6/6] : 123456", - "4 | Number of assets [1/7] : 2109853454", - "4 | Number of assets [2/7] : 3092709134", - "4 | Number of assets [3/7] : 0", - "4 | Number of assets [4/7] : 462212729", - "4 | Number of assets [5/7] : 4060759717", - "4 | Number of assets [6/7] : 0", - "4 | Number of assets [7/7] : 924304175", - "5 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Settlement : Affirm with receipts with count", - "1 | Id : 0", - "2 | Receipt details : ", - "3 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "3 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "3 | Portfolios [3/6] : 123456", - "3 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "3 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "3 | Portfolios [6/6] : 123456", - "4 | Number of assets [1/7] : 2109853454", - "4 | Number of assets [2/7] : 3092709134", - "4 | Number of assets [3/7] : 0", - "4 | Number of assets [4/7] : 462212729", - "4 | Number of assets [5/7] : 4060759717", - "4 | Number of assets [6/7] : 0", - "4 | Number of assets [7/7] : 924304175", - "5 | Chain : Polymesh", - "6 | Nonce : 1", - "7 | Tip : POLYX 0.000987", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1326, - "name": "Settlement_Affirm_instruction_with_count", - "blob": "251001000000000000000001078845f6b2f9d31a00000000c2e6106aeeae42c00000000076d9a8ccd5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Affirm instruction with count", - "1 | Id : 1", - "2 | Portfolios : ", - "3 | Number of assets [1/7] : 4131751943", - "3 | Number of assets [2/7] : 450099634", - "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 1779492546", - "3 | Number of assets [5/7] : 3225595630", - "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 3433617782", - "4 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Settlement : Affirm instruction with count", - "1 | Id : 1", - "2 | Portfolios : ", - "3 | Number of assets [1/7] : 4131751943", - "3 | Number of assets [2/7] : 450099634", - "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 1779492546", - "3 | Number of assets [5/7] : 3225595630", - "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 3433617782", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1327, - "name": "Settlement_Affirm_instruction_with_count", - "blob": "25106bc400000000000008dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebaba1e8b917895a773d353a68d6170140e20100000000000a812c840a4ca01bd77aa82b2712655136d1ae5482b754122c7a76b6cef180170140e201000000000001078845f6b2f9d31a00000000c2e6106aeeae42c00000000076d9a8ccd5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Affirm instruction with count", - "1 | Id : 50283", - "2 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "2 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "2 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "2 | Portfolios [6/6] : 123456", - "3 | Number of assets [1/7] : 4131751943", - "3 | Number of assets [2/7] : 450099634", - "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 1779492546", - "3 | Number of assets [5/7] : 3225595630", - "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 3433617782", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Settlement : Affirm instruction with count", - "1 | Id : 50283", - "2 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "2 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "2 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "2 | Portfolios [6/6] : 123456", - "3 | Number of assets [1/7] : 4131751943", - "3 | Number of assets [2/7] : 450099634", - "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 1779492546", - "3 | Number of assets [5/7] : 3225595630", - "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 3433617782", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1328, - "name": "Settlement_Affirm_instruction_with_count", - "blob": "251064000000000000000001078845f6b2f9d31a00000000c2e6106aeeae42c00000000076d9a8ccd50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Affirm instruction with count", - "1 | Id : 100", - "2 | Portfolios : ", - "3 | Number of assets [1/7] : 4131751943", - "3 | Number of assets [2/7] : 450099634", - "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 1779492546", - "3 | Number of assets [5/7] : 3225595630", - "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 3433617782" - ], - "output_expert": [ - "0 | Settlement : Affirm instruction with count", - "1 | Id : 100", - "2 | Portfolios : ", - "3 | Number of assets [1/7] : 4131751943", - "3 | Number of assets [2/7] : 450099634", - "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 1779492546", - "3 | Number of assets [5/7] : 3225595630", - "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 3433617782", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1329, - "name": "Settlement_Affirm_instruction_with_count", - "blob": "251000000000000000000000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Affirm instruction with count", - "1 | Id : 0", - "2 | Portfolios : ", - "3 | Number of assets : None", - "4 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Settlement : Affirm instruction with count", - "1 | Id : 0", - "2 | Portfolios : ", - "3 | Number of assets : None", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1330, - "name": "Settlement_Affirm_instruction_with_count", - "blob": "25100100000000000000000151309483df2e71fc000000005b2804082bbb4594000000001a6cbfafd503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Affirm instruction with count", - "1 | Id : 1", - "2 | Portfolios : ", - "3 | Number of assets [1/7] : 2207526993", - "3 | Number of assets [2/7] : 4235275999", - "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 134490203", - "3 | Number of assets [5/7] : 2487597867", - "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 2948557850", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Settlement : Affirm instruction with count", - "1 | Id : 1", - "2 | Portfolios : ", - "3 | Number of assets [1/7] : 2207526993", - "3 | Number of assets [2/7] : 4235275999", - "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 134490203", - "3 | Number of assets [5/7] : 2487597867", - "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 2948557850", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1331, - "name": "Settlement_Reject_instruction_with_count", - "blob": "251100000000000000000e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e201000000000001a1ab2b1eaa282b9200000000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Reject instruction with count", - "1 | Id : 0", - "2 | Portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio [3/3] : 123456", - "3 | Number of assets [1/3] : 506178465", - "3 | Number of assets [2/3] : 2452301994", - "3 | Number of assets [3/3] : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Settlement : Reject instruction with count", - "1 | Id : 0", - "2 | Portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio [3/3] : 123456", - "3 | Number of assets [1/3] : 506178465", - "3 | Number of assets [2/3] : 2452301994", - "3 | Number of assets [3/3] : 0", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1332, - "name": "Settlement_Reject_instruction_with_count", - "blob": "251100000000000000000e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e20100000000000105cdf34b1107e74900000000d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Reject instruction with count", - "1 | Id : 0", - "2 | Portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio [3/3] : 123456", - "3 | Number of assets [1/3] : 1274268933", - "3 | Number of assets [2/3] : 1239877393", - "3 | Number of assets [3/3] : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Settlement : Reject instruction with count", - "1 | Id : 0", - "2 | Portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio [3/3] : 123456", - "3 | Number of assets [1/3] : 1274268933", - "3 | Number of assets [2/3] : 1239877393", - "3 | Number of assets [3/3] : 0", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1333, - "name": "Settlement_Reject_instruction_with_count", - "blob": "25116bc40000000000000e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e201000000000001a1ab2b1eaa282b9200000000d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Reject instruction with count", - "1 | Id : 50283", - "2 | Portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio [3/3] : 123456", - "3 | Number of assets [1/3] : 506178465", - "3 | Number of assets [2/3] : 2452301994", - "3 | Number of assets [3/3] : 0", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Settlement : Reject instruction with count", - "1 | Id : 50283", - "2 | Portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio [3/3] : 123456", - "3 | Number of assets [1/3] : 506178465", - "3 | Number of assets [2/3] : 2452301994", - "3 | Number of assets [3/3] : 0", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1334, - "name": "Settlement_Reject_instruction_with_count", - "blob": "251101000000000000000e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e201000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Reject instruction with count", - "1 | Id : 1", - "2 | Portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio [3/3] : 123456", - "3 | Number of assets : None", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Settlement : Reject instruction with count", - "1 | Id : 1", - "2 | Portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio [3/3] : 123456", - "3 | Number of assets : None", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1335, - "name": "Settlement_Reject_instruction_with_count", - "blob": "25116bc40000000000000e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e201000000000001c00cf59ab45ed34b00000000d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Reject instruction with count", - "1 | Id : 50283", - "2 | Portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio [3/3] : 123456", - "3 | Number of assets [1/3] : 2599750848", - "3 | Number of assets [2/3] : 1272143540", - "3 | Number of assets [3/3] : 0", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Settlement : Reject instruction with count", - "1 | Id : 50283", - "2 | Portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Portfolio [3/3] : 123456", - "3 | Number of assets [1/3] : 2599750848", - "3 | Number of assets [2/3] : 1272143540", - "3 | Number of assets [3/3] : 0", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1336, - "name": "Settlement_Withdraw_affirmation_with_count", - "blob": "2512230900000000000008dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebaba1e8b917895a773d353a68d6170140e20100000000000a812c840a4ca01bd77aa82b2712655136d1ae5482b754122c7a76b6cef180170140e201000000000001cca8c762e32d4b5000000000c46053cdfc117b2a000000002e33a663d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Withdraw affirmation with count", - "1 | Id : 2339", - "2 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "2 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "2 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "2 | Portfolios [6/6] : 123456", - "3 | Number of assets [1/7] : 1657252044", - "3 | Number of assets [2/7] : 1347104227", - "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 3444793540", - "3 | Number of assets [5/7] : 712708604", - "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 1671836462", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Settlement : Withdraw affirmation with count", - "1 | Id : 2339", - "2 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "2 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "2 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "2 | Portfolios [6/6] : 123456", - "3 | Number of assets [1/7] : 1657252044", - "3 | Number of assets [2/7] : 1347104227", - "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 3444793540", - "3 | Number of assets [5/7] : 712708604", - "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 1671836462", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1337, - "name": "Settlement_Withdraw_affirmation_with_count", - "blob": "251264000000000000000001f79ccd986388b32900000000b9b992dab9aedf0f000000000fc96708d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Withdraw affirmation with count", - "1 | Id : 100", - "2 | Portfolios : ", - "3 | Number of assets [1/7] : 2563611895", - "3 | Number of assets [2/7] : 699631715", - "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 3667048889", - "3 | Number of assets [5/7] : 266317497", - "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 141019407", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Settlement : Withdraw affirmation with count", - "1 | Id : 100", - "2 | Portfolios : ", - "3 | Number of assets [1/7] : 2563611895", - "3 | Number of assets [2/7] : 699631715", - "3 | Number of assets [3/7] : 0", - "3 | Number of assets [4/7] : 3667048889", - "3 | Number of assets [5/7] : 266317497", - "3 | Number of assets [6/7] : 0", - "3 | Number of assets [7/7] : 141019407", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1338, - "name": "Settlement_Withdraw_affirmation_with_count", - "blob": "251200000000000000000000d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Withdraw affirmation with count", - "1 | Id : 0", - "2 | Portfolios : ", - "3 | Number of assets : None", - "4 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Settlement : Withdraw affirmation with count", - "1 | Id : 0", - "2 | Portfolios : ", - "3 | Number of assets : None", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1339, - "name": "Settlement_Withdraw_affirmation_with_count", - "blob": "25126bc400000000000008dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebaba1e8b917895a773d353a68d6170140e20100000000000a812c840a4ca01bd77aa82b2712655136d1ae5482b754122c7a76b6cef180170140e201000000000000d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Withdraw affirmation with count", - "1 | Id : 50283", - "2 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "2 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "2 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "2 | Portfolios [6/6] : 123456", - "3 | Number of assets : None", - "4 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Settlement : Withdraw affirmation with count", - "1 | Id : 50283", - "2 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "2 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "2 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "2 | Portfolios [6/6] : 123456", - "3 | Number of assets : None", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1340, - "name": "Settlement_Withdraw_affirmation_with_count", - "blob": "2512010000000000000008dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebaba1e8b917895a773d353a68d6170140e20100000000000a812c840a4ca01bd77aa82b2712655136d1ae5482b754122c7a76b6cef180170140e201000000000000d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Withdraw affirmation with count", - "1 | Id : 1", - "2 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "2 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "2 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "2 | Portfolios [6/6] : 123456", - "3 | Number of assets : None", - "4 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Settlement : Withdraw affirmation with count", - "1 | Id : 1", - "2 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "2 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "2 | Portfolios [3/6] : 123456", - "2 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "2 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "2 | Portfolios [6/6] : 123456", - "3 | Number of assets : None", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1341, - "name": "Settlement_Add_instruction_with_mediators", - "blob": "25132309000000000000000100080000000000000100080000000000000400ca77204458f6e088935b8cf2edc4a6551165ef6f9f3de2da473290a0e3a039860051d7e249ba7e3f5573b394e8270e3ac2c107e5873929d289e4b17df31989299f019fb553a5ab807ff55449434b45522d33343536377794cf358990bc7a3dadd7754123880b01bfc0a4e8f733a301acf85c30c9319a53556e73bd4c75f931c2e6b4b508b9272c0892406dcdb80eed1f336075e0e3ef3cb31eee610600a964eca82224c8c1520001b54aa5992855b7e7901af5ec2c13c9d4b0d08a401918e86c8bcdf37305413ff1d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Add instruction with mediators", - "1 | Venue id : 2339", - "2 | Settlement type : SettleOnAffirmation", - "3 | Trade date : 2048", - "4 | Value date : 2048", - "5 | Legs [1/9] : ca77204458f6e088935b8cf2edc4a6551165ef", - "5 | Legs [2/9] : 6f9f3de2da473290a0e3a03986", - "5 | Legs [3/9] : Default", - "5 | Legs [4/9] : 51d7e249ba7e3f5573b394e8270e3ac2c107e5", - "5 | Legs [5/9] : 873929d289e4b17df31989299f", - "5 | Legs [6/9] : 17689999336036087199", - "5 | Legs [7/9] : TICKER-34567", - "5 | Legs [8/9] : 15328375397031985698880352843511.86239", - "5 | Legs [9/9] : 1", - "6 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "6 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "7 | Mediators [1/4] : 92406dcdb80eed1f336075e0e3ef3cb31eee61", - "7 | Mediators [2/4] : 0600a964eca82224c8c1520001", - "7 | Mediators [3/4] : b54aa5992855b7e7901af5ec2c13c9d4b0d08a", - "7 | Mediators [4/4] : 401918e86c8bcdf37305413ff1", - "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "8 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Settlement : Add instruction with mediators", - "1 | Venue id : 2339", - "2 | Settlement type : SettleOnAffirmation", - "3 | Trade date : 2048", - "4 | Value date : 2048", - "5 | Legs [1/9] : ca77204458f6e088935b8cf2edc4a6551165ef", - "5 | Legs [2/9] : 6f9f3de2da473290a0e3a03986", - "5 | Legs [3/9] : Default", - "5 | Legs [4/9] : 51d7e249ba7e3f5573b394e8270e3ac2c107e5", - "5 | Legs [5/9] : 873929d289e4b17df31989299f", - "5 | Legs [6/9] : 17689999336036087199", - "5 | Legs [7/9] : TICKER-34567", - "5 | Legs [8/9] : 15328375397031985698880352843511.86239", - "5 | Legs [9/9] : 1", - "6 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "6 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "7 | Mediators [1/4] : 92406dcdb80eed1f336075e0e3ef3cb31eee61", - "7 | Mediators [2/4] : 0600a964eca82224c8c1520001", - "7 | Mediators [3/4] : b54aa5992855b7e7901af5ec2c13c9d4b0d08a", - "7 | Mediators [4/4] : 401918e86c8bcdf37305413ff1", - "8 | Chain : Polymesh", - "9 | Nonce : 100", - "10 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "10 | Tip [2/2] : 3.456789", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1342, - "name": "Settlement_Add_instruction_with_mediators", - "blob": "25130100000000000000020db1dfcc0100080000000000000180000000000000000001bfc0a4e8f733a301acf85c30c9319a53556e73bd4c75f931c2e6b4b508b9272c086d2b4ca7c297286145a17598b45b6edace764ba4e7c18ed68e3a0277eb9616f6bed2c99443f8fce2c07d744a7863a541481557d237847e0eb687038b075cf6f3d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Add instruction with mediators", - "1 | Venue id : 1", - "2 | Settlement type : 3437211917", - "3 | Trade date : 2048", - "4 | Value date : 128", - "5 | Legs : ", - "6 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "6 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "7 | Mediators [1/4] : 6d2b4ca7c297286145a17598b45b6edace764b", - "7 | Mediators [2/4] : a4e7c18ed68e3a0277eb9616f6", - "7 | Mediators [3/4] : bed2c99443f8fce2c07d744a7863a541481557", - "7 | Mediators [4/4] : d237847e0eb687038b075cf6f3", - "8 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Settlement : Add instruction with mediators", - "1 | Venue id : 1", - "2 | Settlement type : 3437211917", - "3 | Trade date : 2048", - "4 | Value date : 128", - "5 | Legs : ", - "6 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "6 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "7 | Mediators [1/4] : 6d2b4ca7c297286145a17598b45b6edace764b", - "7 | Mediators [2/4] : a4e7c18ed68e3a0277eb9616f6", - "7 | Mediators [3/4] : bed2c99443f8fce2c07d744a7863a541481557", - "7 | Mediators [4/4] : d237847e0eb687038b075cf6f3", - "8 | Chain : Polymesh", - "9 | Nonce : 50283", - "10 | Tip : POLYX 0.000987", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1343, - "name": "Settlement_Add_instruction_with_mediators", - "blob": "251364000000000000000106d1c82a0100010000000000000100010000000000000400ca77204458f6e088935b8cf2edc4a6551165ef6f9f3de2da473290a0e3a039860051d7e249ba7e3f5573b394e8270e3ac2c107e5873929d289e4b17df31989299f019fb553a5ab807ff55449434b45522d33343536377794cf358990bc7a3dadd7754123880b01bfc0a4e8f733a301acf85c30c9319a53556e73bd4c75f931c2e6b4b508b9272c086d2b4ca7c297286145a17598b45b6edace764ba4e7c18ed68e3a0277eb9616f6bed2c99443f8fce2c07d744a7863a541481557d237847e0eb687038b075cf6f3d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Add instruction with mediators", - "1 | Venue id : 100", - "2 | Settlement type : 717803782", - "3 | Trade date : 256", - "4 | Value date : 256", - "5 | Legs [1/9] : ca77204458f6e088935b8cf2edc4a6551165ef", - "5 | Legs [2/9] : 6f9f3de2da473290a0e3a03986", - "5 | Legs [3/9] : Default", - "5 | Legs [4/9] : 51d7e249ba7e3f5573b394e8270e3ac2c107e5", - "5 | Legs [5/9] : 873929d289e4b17df31989299f", - "5 | Legs [6/9] : 17689999336036087199", - "5 | Legs [7/9] : TICKER-34567", - "5 | Legs [8/9] : 15328375397031985698880352843511.86239", - "5 | Legs [9/9] : 1", - "6 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "6 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "7 | Mediators [1/4] : 6d2b4ca7c297286145a17598b45b6edace764b", - "7 | Mediators [2/4] : a4e7c18ed68e3a0277eb9616f6", - "7 | Mediators [3/4] : bed2c99443f8fce2c07d744a7863a541481557", - "7 | Mediators [4/4] : d237847e0eb687038b075cf6f3", - "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "8 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Settlement : Add instruction with mediators", - "1 | Venue id : 100", - "2 | Settlement type : 717803782", - "3 | Trade date : 256", - "4 | Value date : 256", - "5 | Legs [1/9] : ca77204458f6e088935b8cf2edc4a6551165ef", - "5 | Legs [2/9] : 6f9f3de2da473290a0e3a03986", - "5 | Legs [3/9] : Default", - "5 | Legs [4/9] : 51d7e249ba7e3f5573b394e8270e3ac2c107e5", - "5 | Legs [5/9] : 873929d289e4b17df31989299f", - "5 | Legs [6/9] : 17689999336036087199", - "5 | Legs [7/9] : TICKER-34567", - "5 | Legs [8/9] : 15328375397031985698880352843511.86239", - "5 | Legs [9/9] : 1", - "6 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "6 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "7 | Mediators [1/4] : 6d2b4ca7c297286145a17598b45b6edace764b", - "7 | Mediators [2/4] : a4e7c18ed68e3a0277eb9616f6", - "7 | Mediators [3/4] : bed2c99443f8fce2c07d744a7863a541481557", - "7 | Mediators [4/4] : d237847e0eb687038b075cf6f3", - "8 | Chain : Polymesh", - "9 | Nonce : 0", - "10 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "10 | Tip [2/2] : 3.456789", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1344, - "name": "Settlement_Add_instruction_with_mediators", - "blob": "25136bc4000000000000020db1dfcc0100010000000000000180000000000000000402aea268664aa8dbd5aa3c8ce5b7bfb680bd11d430a6ac8d39f586a4a1fa75b44c50c0ac926a09bc7b17909f4e0fd3e0405ed3eb8f422ffb2a0c6553e8ec95e4c25449434b45522d333435363757bd992aeb31b2f4eb661bf21239116a01bfc0a4e8f733a301acf85c30c9319a53556e73bd4c75f931c2e6b4b508b9272c0892406dcdb80eed1f336075e0e3ef3cb31eee610600a964eca82224c8c1520001b54aa5992855b7e7901af5ec2c13c9d4b0d08a401918e86c8bcdf37305413ff1d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Add instruction with mediators", - "1 | Venue id : 50283", - "2 | Settlement type : 3437211917", - "3 | Trade date : 256", - "4 | Value date : 128", - "5 | Legs [1/7] : aea268664aa8dbd5aa3c8ce5b7bfb680bd11d4", - "5 | Legs [2/7] : 30a6ac8d39f586a4a1fa75b44c", - "5 | Legs [3/7] : 50c0ac926a09bc7b17909f4e0fd3e0405ed3eb", - "5 | Legs [4/7] : 8f422ffb2a0c6553e8ec95e4c2", - "5 | Legs [5/7] : TICKER-34567", - "5 | Legs [6/7] : 140987594198179007407354230526308.8919", - "5 | Legs [7/7] : 91", - "6 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "6 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "7 | Mediators [1/4] : 92406dcdb80eed1f336075e0e3ef3cb31eee61", - "7 | Mediators [2/4] : 0600a964eca82224c8c1520001", - "7 | Mediators [3/4] : b54aa5992855b7e7901af5ec2c13c9d4b0d08a", - "7 | Mediators [4/4] : 401918e86c8bcdf37305413ff1", - "8 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Settlement : Add instruction with mediators", - "1 | Venue id : 50283", - "2 | Settlement type : 3437211917", - "3 | Trade date : 256", - "4 | Value date : 128", - "5 | Legs [1/7] : aea268664aa8dbd5aa3c8ce5b7bfb680bd11d4", - "5 | Legs [2/7] : 30a6ac8d39f586a4a1fa75b44c", - "5 | Legs [3/7] : 50c0ac926a09bc7b17909f4e0fd3e0405ed3eb", - "5 | Legs [4/7] : 8f422ffb2a0c6553e8ec95e4c2", - "5 | Legs [5/7] : TICKER-34567", - "5 | Legs [6/7] : 140987594198179007407354230526308.8919", - "5 | Legs [7/7] : 91", - "6 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "6 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "7 | Mediators [1/4] : 92406dcdb80eed1f336075e0e3ef3cb31eee61", - "7 | Mediators [2/4] : 0600a964eca82224c8c1520001", - "7 | Mediators [3/4] : b54aa5992855b7e7901af5ec2c13c9d4b0d08a", - "7 | Mediators [4/4] : 401918e86c8bcdf37305413ff1", - "8 | Chain : Polymesh", - "9 | Nonce : 0", - "10 | Tip : POLYX 55.555555", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1345, - "name": "Settlement_Add_instruction_with_mediators", - "blob": "25136bc40000000000000106d1c82a0180000000000000000180000000000000000400ca77204458f6e088935b8cf2edc4a6551165ef6f9f3de2da473290a0e3a039860051d7e249ba7e3f5573b394e8270e3ac2c107e5873929d289e4b17df31989299f019fb553a5ab807ff55449434b45522d33343536377794cf358990bc7a3dadd7754123880b01bfc0a4e8f733a301acf85c30c9319a53556e73bd4c75f931c2e6b4b508b9272c0c497c261273e2f40565c4ab974d38565c0c6fe090ff04fc9a85318bbb1cf1f94cbb193beb3e7c0fb35c08cbf43a453d18ef025bd367abc9a6fdc2e1ec917e2aa9caffc716103e975517102cf0be7de60cd80dc29982cbbadd28ed724530696ee7d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Add instruction with mediators", - "1 | Venue id : 50283", - "2 | Settlement type : 717803782", - "3 | Trade date : 128", - "4 | Value date : 128", - "5 | Legs [1/9] : ca77204458f6e088935b8cf2edc4a6551165ef", - "5 | Legs [2/9] : 6f9f3de2da473290a0e3a03986", - "5 | Legs [3/9] : Default", - "5 | Legs [4/9] : 51d7e249ba7e3f5573b394e8270e3ac2c107e5", - "5 | Legs [5/9] : 873929d289e4b17df31989299f", - "5 | Legs [6/9] : 17689999336036087199", - "5 | Legs [7/9] : TICKER-34567", - "5 | Legs [8/9] : 15328375397031985698880352843511.86239", - "5 | Legs [9/9] : 1", - "6 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "6 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "7 | Mediators [1/6] : 497c261273e2f40565c4ab974d38565c0c6fe0", - "7 | Mediators [2/6] : 90ff04fc9a85318bbb1cf1f94c", - "7 | Mediators [3/6] : bb193beb3e7c0fb35c08cbf43a453d18ef025b", - "7 | Mediators [4/6] : d367abc9a6fdc2e1ec917e2aa9", - "7 | Mediators [5/6] : caffc716103e975517102cf0be7de60cd80dc2", - "7 | Mediators [6/6] : 9982cbbadd28ed724530696ee7", - "8 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Settlement : Add instruction with mediators", - "1 | Venue id : 50283", - "2 | Settlement type : 717803782", - "3 | Trade date : 128", - "4 | Value date : 128", - "5 | Legs [1/9] : ca77204458f6e088935b8cf2edc4a6551165ef", - "5 | Legs [2/9] : 6f9f3de2da473290a0e3a03986", - "5 | Legs [3/9] : Default", - "5 | Legs [4/9] : 51d7e249ba7e3f5573b394e8270e3ac2c107e5", - "5 | Legs [5/9] : 873929d289e4b17df31989299f", - "5 | Legs [6/9] : 17689999336036087199", - "5 | Legs [7/9] : TICKER-34567", - "5 | Legs [8/9] : 15328375397031985698880352843511.86239", - "5 | Legs [9/9] : 1", - "6 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "6 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "7 | Mediators [1/6] : 497c261273e2f40565c4ab974d38565c0c6fe0", - "7 | Mediators [2/6] : 90ff04fc9a85318bbb1cf1f94c", - "7 | Mediators [3/6] : bb193beb3e7c0fb35c08cbf43a453d18ef025b", - "7 | Mediators [4/6] : d367abc9a6fdc2e1ec917e2aa9", - "7 | Mediators [5/6] : caffc716103e975517102cf0be7de60cd80dc2", - "7 | Mediators [6/6] : 9982cbbadd28ed724530696ee7", - "8 | Chain : Polymesh", - "9 | Nonce : 1", - "10 | Tip : POLYX 55.555555", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1346, - "name": "Settlement_Add_and_affirm_with_mediators", - "blob": "25146bc40000000000000106d1c82a0100080000000000000100010000000000000008dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebaba1e8b917895a773d353a68d6170140e20100000000000a812c840a4ca01bd77aa82b2712655136d1ae5482b754122c7a76b6cef180170140e201000000000001bfc0a4e8f733a301acf85c30c9319a53556e73bd4c75f931c2e6b4b508b9272c086d2b4ca7c297286145a17598b45b6edace764ba4e7c18ed68e3a0277eb9616f6bed2c99443f8fce2c07d744a7863a541481557d237847e0eb687038b075cf6f3d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Add and affirm with mediators", - "1 | Venue id : 50283", - "2 | Settlement type : 717803782", - "3 | Trade date : 2048", - "4 | Value date : 256", - "5 | Legs : ", - "6 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "6 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "6 | Portfolios [3/6] : 123456", - "6 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "6 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "6 | Portfolios [6/6] : 123456", - "7 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "7 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "8 | Mediators [1/4] : 6d2b4ca7c297286145a17598b45b6edace764b", - "8 | Mediators [2/4] : a4e7c18ed68e3a0277eb9616f6", - "8 | Mediators [3/4] : bed2c99443f8fce2c07d744a7863a541481557", - "8 | Mediators [4/4] : d237847e0eb687038b075cf6f3" - ], - "output_expert": [ - "0 | Settlement : Add and affirm with mediators", - "1 | Venue id : 50283", - "2 | Settlement type : 717803782", - "3 | Trade date : 2048", - "4 | Value date : 256", - "5 | Legs : ", - "6 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "6 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "6 | Portfolios [3/6] : 123456", - "6 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "6 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "6 | Portfolios [6/6] : 123456", - "7 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "7 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "8 | Mediators [1/4] : 6d2b4ca7c297286145a17598b45b6edace764b", - "8 | Mediators [2/4] : a4e7c18ed68e3a0277eb9616f6", - "8 | Mediators [3/4] : bed2c99443f8fce2c07d744a7863a541481557", - "8 | Mediators [4/4] : d237847e0eb687038b075cf6f3", - "9 | Chain : Polymesh", - "10 | Nonce : 50283", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1347, - "name": "Settlement_Add_and_affirm_with_mediators", - "blob": "25146400000000000000020db1dfcc0100010000000000000100010000000000000400ca77204458f6e088935b8cf2edc4a6551165ef6f9f3de2da473290a0e3a039860051d7e249ba7e3f5573b394e8270e3ac2c107e5873929d289e4b17df31989299f019fb553a5ab807ff55449434b45522d33343536377794cf358990bc7a3dadd7754123880b08dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebaba1e8b917895a773d353a68d6170140e20100000000000a812c840a4ca01bd77aa82b2712655136d1ae5482b754122c7a76b6cef180170140e201000000000001bfc0a4e8f733a301acf85c30c9319a53556e73bd4c75f931c2e6b4b508b9272c0892406dcdb80eed1f336075e0e3ef3cb31eee610600a964eca82224c8c1520001b54aa5992855b7e7901af5ec2c13c9d4b0d08a401918e86c8bcdf37305413ff1d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Add and affirm with mediators", - "1 | Venue id : 100", - "2 | Settlement type : 3437211917", - "3 | Trade date : 256", - "4 | Value date : 256", - "5 | Legs [1/9] : ca77204458f6e088935b8cf2edc4a6551165ef", - "5 | Legs [2/9] : 6f9f3de2da473290a0e3a03986", - "5 | Legs [3/9] : Default", - "5 | Legs [4/9] : 51d7e249ba7e3f5573b394e8270e3ac2c107e5", - "5 | Legs [5/9] : 873929d289e4b17df31989299f", - "5 | Legs [6/9] : 17689999336036087199", - "5 | Legs [7/9] : TICKER-34567", - "5 | Legs [8/9] : 15328375397031985698880352843511.86239", - "5 | Legs [9/9] : 1", - "6 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "6 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "6 | Portfolios [3/6] : 123456", - "6 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "6 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "6 | Portfolios [6/6] : 123456", - "7 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "7 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "8 | Mediators [1/4] : 92406dcdb80eed1f336075e0e3ef3cb31eee61", - "8 | Mediators [2/4] : 0600a964eca82224c8c1520001", - "8 | Mediators [3/4] : b54aa5992855b7e7901af5ec2c13c9d4b0d08a", - "8 | Mediators [4/4] : 401918e86c8bcdf37305413ff1", - "9 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Settlement : Add and affirm with mediators", - "1 | Venue id : 100", - "2 | Settlement type : 3437211917", - "3 | Trade date : 256", - "4 | Value date : 256", - "5 | Legs [1/9] : ca77204458f6e088935b8cf2edc4a6551165ef", - "5 | Legs [2/9] : 6f9f3de2da473290a0e3a03986", - "5 | Legs [3/9] : Default", - "5 | Legs [4/9] : 51d7e249ba7e3f5573b394e8270e3ac2c107e5", - "5 | Legs [5/9] : 873929d289e4b17df31989299f", - "5 | Legs [6/9] : 17689999336036087199", - "5 | Legs [7/9] : TICKER-34567", - "5 | Legs [8/9] : 15328375397031985698880352843511.86239", - "5 | Legs [9/9] : 1", - "6 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "6 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "6 | Portfolios [3/6] : 123456", - "6 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "6 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "6 | Portfolios [6/6] : 123456", - "7 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "7 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "8 | Mediators [1/4] : 92406dcdb80eed1f336075e0e3ef3cb31eee61", - "8 | Mediators [2/4] : 0600a964eca82224c8c1520001", - "8 | Mediators [3/4] : b54aa5992855b7e7901af5ec2c13c9d4b0d08a", - "8 | Mediators [4/4] : 401918e86c8bcdf37305413ff1", - "9 | Chain : Polymesh", - "10 | Nonce : 1", - "11 | Tip : POLYX 5552342.355555", - "12 | Era Phase : 61", - "13 | Era Period : 64", - "14 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "14 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1348, - "name": "Settlement_Add_and_affirm_with_mediators", - "blob": "251423090000000000000106d1c82a010008000000000000010008000000000000000001bfc0a4e8f733a301acf85c30c9319a53556e73bd4c75f931c2e6b4b508b9272c0c497c261273e2f40565c4ab974d38565c0c6fe090ff04fc9a85318bbb1cf1f94cbb193beb3e7c0fb35c08cbf43a453d18ef025bd367abc9a6fdc2e1ec917e2aa9caffc716103e975517102cf0be7de60cd80dc29982cbbadd28ed724530696ee7d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Add and affirm with mediators", - "1 | Venue id : 2339", - "2 | Settlement type : 717803782", - "3 | Trade date : 2048", - "4 | Value date : 2048", - "5 | Legs : ", - "6 | Portfolios : ", - "7 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "7 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "8 | Mediators [1/6] : 497c261273e2f40565c4ab974d38565c0c6fe0", - "8 | Mediators [2/6] : 90ff04fc9a85318bbb1cf1f94c", - "8 | Mediators [3/6] : bb193beb3e7c0fb35c08cbf43a453d18ef025b", - "8 | Mediators [4/6] : d367abc9a6fdc2e1ec917e2aa9", - "8 | Mediators [5/6] : caffc716103e975517102cf0be7de60cd80dc2", - "8 | Mediators [6/6] : 9982cbbadd28ed724530696ee7", - "9 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Settlement : Add and affirm with mediators", - "1 | Venue id : 2339", - "2 | Settlement type : 717803782", - "3 | Trade date : 2048", - "4 | Value date : 2048", - "5 | Legs : ", - "6 | Portfolios : ", - "7 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "7 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "8 | Mediators [1/6] : 497c261273e2f40565c4ab974d38565c0c6fe0", - "8 | Mediators [2/6] : 90ff04fc9a85318bbb1cf1f94c", - "8 | Mediators [3/6] : bb193beb3e7c0fb35c08cbf43a453d18ef025b", - "8 | Mediators [4/6] : d367abc9a6fdc2e1ec917e2aa9", - "8 | Mediators [5/6] : caffc716103e975517102cf0be7de60cd80dc2", - "8 | Mediators [6/6] : 9982cbbadd28ed724530696ee7", - "9 | Chain : Polymesh", - "10 | Nonce : 1", - "11 | Tip : POLYX 55.555555", - "12 | Era Phase : 61", - "13 | Era Period : 64", - "14 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "14 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1349, - "name": "Settlement_Add_and_affirm_with_mediators", - "blob": "25146400000000000000020db1dfcc0100080000000000000100080000000000000400ca77204458f6e088935b8cf2edc4a6551165ef6f9f3de2da473290a0e3a039860051d7e249ba7e3f5573b394e8270e3ac2c107e5873929d289e4b17df31989299f019fb553a5ab807ff55449434b45522d33343536377794cf358990bc7a3dadd7754123880b08dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebaba1e8b917895a773d353a68d6170140e20100000000000a812c840a4ca01bd77aa82b2712655136d1ae5482b754122c7a76b6cef180170140e201000000000001bfc0a4e8f733a301acf85c30c9319a53556e73bd4c75f931c2e6b4b508b9272c086d2b4ca7c297286145a17598b45b6edace764ba4e7c18ed68e3a0277eb9616f6bed2c99443f8fce2c07d744a7863a541481557d237847e0eb687038b075cf6f3d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Add and affirm with mediators", - "1 | Venue id : 100", - "2 | Settlement type : 3437211917", - "3 | Trade date : 2048", - "4 | Value date : 2048", - "5 | Legs [1/9] : ca77204458f6e088935b8cf2edc4a6551165ef", - "5 | Legs [2/9] : 6f9f3de2da473290a0e3a03986", - "5 | Legs [3/9] : Default", - "5 | Legs [4/9] : 51d7e249ba7e3f5573b394e8270e3ac2c107e5", - "5 | Legs [5/9] : 873929d289e4b17df31989299f", - "5 | Legs [6/9] : 17689999336036087199", - "5 | Legs [7/9] : TICKER-34567", - "5 | Legs [8/9] : 15328375397031985698880352843511.86239", - "5 | Legs [9/9] : 1", - "6 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "6 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "6 | Portfolios [3/6] : 123456", - "6 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "6 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "6 | Portfolios [6/6] : 123456", - "7 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "7 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "8 | Mediators [1/4] : 6d2b4ca7c297286145a17598b45b6edace764b", - "8 | Mediators [2/4] : a4e7c18ed68e3a0277eb9616f6", - "8 | Mediators [3/4] : bed2c99443f8fce2c07d744a7863a541481557", - "8 | Mediators [4/4] : d237847e0eb687038b075cf6f3", - "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "9 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Settlement : Add and affirm with mediators", - "1 | Venue id : 100", - "2 | Settlement type : 3437211917", - "3 | Trade date : 2048", - "4 | Value date : 2048", - "5 | Legs [1/9] : ca77204458f6e088935b8cf2edc4a6551165ef", - "5 | Legs [2/9] : 6f9f3de2da473290a0e3a03986", - "5 | Legs [3/9] : Default", - "5 | Legs [4/9] : 51d7e249ba7e3f5573b394e8270e3ac2c107e5", - "5 | Legs [5/9] : 873929d289e4b17df31989299f", - "5 | Legs [6/9] : 17689999336036087199", - "5 | Legs [7/9] : TICKER-34567", - "5 | Legs [8/9] : 15328375397031985698880352843511.86239", - "5 | Legs [9/9] : 1", - "6 | Portfolios [1/6] : dd0ccd9b41ddf209176cf8bcf0dd20e1c4ebab", - "6 | Portfolios [2/6] : a1e8b917895a773d353a68d617", - "6 | Portfolios [3/6] : 123456", - "6 | Portfolios [4/6] : 0a812c840a4ca01bd77aa82b2712655136d1ae", - "6 | Portfolios [5/6] : 5482b754122c7a76b6cef18017", - "6 | Portfolios [6/6] : 123456", - "7 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "7 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "8 | Mediators [1/4] : 6d2b4ca7c297286145a17598b45b6edace764b", - "8 | Mediators [2/4] : a4e7c18ed68e3a0277eb9616f6", - "8 | Mediators [3/4] : bed2c99443f8fce2c07d744a7863a541481557", - "8 | Mediators [4/4] : d237847e0eb687038b075cf6f3", - "9 | Chain : Polymesh", - "10 | Nonce : 1", - "11 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "11 | Tip [2/2] : 3.456789", - "12 | Era Phase : 61", - "13 | Era Period : 64", - "14 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "14 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1350, - "name": "Settlement_Add_and_affirm_with_mediators", - "blob": "25146bc400000000000000010001000000000000010008000000000000000001bfc0a4e8f733a301acf85c30c9319a53556e73bd4c75f931c2e6b4b508b9272c086d2b4ca7c297286145a17598b45b6edace764ba4e7c18ed68e3a0277eb9616f6bed2c99443f8fce2c07d744a7863a541481557d237847e0eb687038b075cf6f3d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Add and affirm with mediators", - "1 | Venue id : 50283", - "2 | Settlement type : SettleOnAffirmation", - "3 | Trade date : 256", - "4 | Value date : 2048", - "5 | Legs : ", - "6 | Portfolios : ", - "7 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "7 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "8 | Mediators [1/4] : 6d2b4ca7c297286145a17598b45b6edace764b", - "8 | Mediators [2/4] : a4e7c18ed68e3a0277eb9616f6", - "8 | Mediators [3/4] : bed2c99443f8fce2c07d744a7863a541481557", - "8 | Mediators [4/4] : d237847e0eb687038b075cf6f3" - ], - "output_expert": [ - "0 | Settlement : Add and affirm with mediators", - "1 | Venue id : 50283", - "2 | Settlement type : SettleOnAffirmation", - "3 | Trade date : 256", - "4 | Value date : 2048", - "5 | Legs : ", - "6 | Portfolios : ", - "7 | Instruction memo [1/2] : 0xbfc0a4e8f733a301acf85c30c9319a53556e", - "7 | Instruction memo [2/2] : 73bd4c75f931c2e6b4b508b9272c", - "8 | Mediators [1/4] : 6d2b4ca7c297286145a17598b45b6edace764b", - "8 | Mediators [2/4] : a4e7c18ed68e3a0277eb9616f6", - "8 | Mediators [3/4] : bed2c99443f8fce2c07d744a7863a541481557", - "8 | Mediators [4/4] : d237847e0eb687038b075cf6f3", - "9 | Chain : Polymesh", - "10 | Nonce : 2339", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1351, - "name": "Settlement_Affirm_instruction_as_mediator", - "blob": "25150000000000000000010001000000000000d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Affirm instruction as mediator", - "1 | Instruction id : 0", - "2 | Expiry : 256", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Settlement : Affirm instruction as mediator", - "1 | Instruction id : 0", - "2 | Expiry : 256", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1352, - "name": "Settlement_Affirm_instruction_as_mediator", - "blob": "25150100000000000000010008000000000000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Affirm instruction as mediator", - "1 | Instruction id : 1", - "2 | Expiry : 2048" - ], - "output_expert": [ - "0 | Settlement : Affirm instruction as mediator", - "1 | Instruction id : 1", - "2 | Expiry : 2048", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1353, - "name": "Settlement_Affirm_instruction_as_mediator", - "blob": "25150100000000000000010001000000000000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Affirm instruction as mediator", - "1 | Instruction id : 1", - "2 | Expiry : 256", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Settlement : Affirm instruction as mediator", - "1 | Instruction id : 1", - "2 | Expiry : 256", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1354, - "name": "Settlement_Affirm_instruction_as_mediator", - "blob": "25156bc4000000000000010008000000000000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Affirm instruction as mediator", - "1 | Instruction id : 50283", - "2 | Expiry : 2048", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Settlement : Affirm instruction as mediator", - "1 | Instruction id : 50283", - "2 | Expiry : 2048", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1355, - "name": "Settlement_Affirm_instruction_as_mediator", - "blob": "25156400000000000000018000000000000000d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Affirm instruction as mediator", - "1 | Instruction id : 100", - "2 | Expiry : 128", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Settlement : Affirm instruction as mediator", - "1 | Instruction id : 100", - "2 | Expiry : 128", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1356, - "name": "Settlement_Withdraw_affirmation_as_mediator", - "blob": "25162309000000000000d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Withdraw affirmation as mediator", - "1 | Instruction id : 2339", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Settlement : Withdraw affirmation as mediator", - "1 | Instruction id : 2339", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1357, - "name": "Settlement_Withdraw_affirmation_as_mediator", - "blob": "25166400000000000000d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Withdraw affirmation as mediator", - "1 | Instruction id : 100", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Settlement : Withdraw affirmation as mediator", - "1 | Instruction id : 100", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1358, - "name": "Settlement_Withdraw_affirmation_as_mediator", - "blob": "25166400000000000000d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Withdraw affirmation as mediator", - "1 | Instruction id : 100" - ], - "output_expert": [ - "0 | Settlement : Withdraw affirmation as mediator", - "1 | Instruction id : 100", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1359, - "name": "Settlement_Withdraw_affirmation_as_mediator", - "blob": "25160100000000000000d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Withdraw affirmation as mediator", - "1 | Instruction id : 1", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Settlement : Withdraw affirmation as mediator", - "1 | Instruction id : 1", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1360, - "name": "Settlement_Withdraw_affirmation_as_mediator", - "blob": "25160000000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Withdraw affirmation as mediator", - "1 | Instruction id : 0", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Settlement : Withdraw affirmation as mediator", - "1 | Instruction id : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1361, - "name": "Settlement_Reject_instruction_as_mediator", - "blob": "2517640000000000000000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Reject instruction as mediator", - "1 | Instruction id : 100", - "2 | Number of assets : None", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Settlement : Reject instruction as mediator", - "1 | Instruction id : 100", - "2 | Number of assets : None", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1362, - "name": "Settlement_Reject_instruction_as_mediator", - "blob": "25176bc400000000000000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Reject instruction as mediator", - "1 | Instruction id : 50283", - "2 | Number of assets : None", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Settlement : Reject instruction as mediator", - "1 | Instruction id : 50283", - "2 | Number of assets : None", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1363, - "name": "Settlement_Reject_instruction_as_mediator", - "blob": "25176bc400000000000000d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Reject instruction as mediator", - "1 | Instruction id : 50283", - "2 | Number of assets : None", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Settlement : Reject instruction as mediator", - "1 | Instruction id : 50283", - "2 | Number of assets : None", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1364, - "name": "Settlement_Reject_instruction_as_mediator", - "blob": "2517010000000000000000d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Reject instruction as mediator", - "1 | Instruction id : 1", - "2 | Number of assets : None", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Settlement : Reject instruction as mediator", - "1 | Instruction id : 1", - "2 | Number of assets : None", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1365, - "name": "Settlement_Reject_instruction_as_mediator", - "blob": "25176bc400000000000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Settlement : Reject instruction as mediator", - "1 | Instruction id : 50283", - "2 | Number of assets : None", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Settlement : Reject instruction as mediator", - "1 | Instruction id : 50283", - "2 | Number of assets : None", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1366, - "name": "Sto_Create_fundraiser", - "blob": "27000e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e20100000000005449434b45522d31323334350e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e20100000000005449434b45522d31323334350810255d07000000000000000000000000e803000000000000000000000000000010255d07000000000000000000000000e803000000000000000000000000000000000000000000000180000000000000000100080000000000003180ae395160d332d7c92e41b0aad70e3c46756e645261697365725f4e616d65d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Sto : Create fundraiser", - "1 | Offering portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | Offering portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | Offering portfolio [3/3] : 123456", - "2 | Offering asset : TICKER-12345", - "3 | Raising portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "3 | Raising portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "3 | Raising portfolio [3/3] : 123456", - "4 | Raising asset : TICKER-12345", - "5 | Tiers [1/4] : POLYX 123.544848", - "5 | Tiers [2/4] : POLYX 0.001", - "5 | Tiers [3/4] : POLYX 123.544848", - "5 | Tiers [4/4] : POLYX 0.001", - "6 | Venue id : 0", - "7 | Start : 128", - "8 | End : 2048", - "9 | Minimum investment [1/2] : 19728997739536122846747954930508.52971", - "9 | Minimum investment [2/2] : 3", - "10 | Fundraiser name : FundRaiser_Name", - "11 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Sto : Create fundraiser", - "1 | Offering portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | Offering portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | Offering portfolio [3/3] : 123456", - "2 | Offering asset : TICKER-12345", - "3 | Raising portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "3 | Raising portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "3 | Raising portfolio [3/3] : 123456", - "4 | Raising asset : TICKER-12345", - "5 | Tiers [1/4] : POLYX 123.544848", - "5 | Tiers [2/4] : POLYX 0.001", - "5 | Tiers [3/4] : POLYX 123.544848", - "5 | Tiers [4/4] : POLYX 0.001", - "6 | Venue id : 0", - "7 | Start : 128", - "8 | End : 2048", - "9 | Minimum investment [1/2] : 19728997739536122846747954930508.52971", - "9 | Minimum investment [2/2] : 3", - "10 | Fundraiser name : FundRaiser_Name", - "11 | Chain : Polymesh", - "12 | Nonce : 50283", - "13 | Tip : POLYX 0.000987", - "14 | Era Phase : 61", - "15 | Era Period : 64", - "16 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "16 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1367, - "name": "Sto_Create_fundraiser", - "blob": "27000e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e20100000000005449434b45522d31323334350e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e20100000000005449434b45522d31323334350810255d07000000000000000000000000e803000000000000000000000000000010255d07000000000000000000000000e803000000000000000000000000000023090000000000000180000000000000000100080000000000003180ae395160d332d7c92e41b0aad70e3c46756e645261697365725f4e616d65d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Sto : Create fundraiser", - "1 | Offering portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | Offering portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | Offering portfolio [3/3] : 123456", - "2 | Offering asset : TICKER-12345", - "3 | Raising portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "3 | Raising portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "3 | Raising portfolio [3/3] : 123456", - "4 | Raising asset : TICKER-12345", - "5 | Tiers [1/4] : POLYX 123.544848", - "5 | Tiers [2/4] : POLYX 0.001", - "5 | Tiers [3/4] : POLYX 123.544848", - "5 | Tiers [4/4] : POLYX 0.001", - "6 | Venue id : 2339", - "7 | Start : 128", - "8 | End : 2048", - "9 | Minimum investment [1/2] : 19728997739536122846747954930508.52971", - "9 | Minimum investment [2/2] : 3", - "10 | Fundraiser name : FundRaiser_Name", - "11 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Sto : Create fundraiser", - "1 | Offering portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | Offering portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | Offering portfolio [3/3] : 123456", - "2 | Offering asset : TICKER-12345", - "3 | Raising portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "3 | Raising portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "3 | Raising portfolio [3/3] : 123456", - "4 | Raising asset : TICKER-12345", - "5 | Tiers [1/4] : POLYX 123.544848", - "5 | Tiers [2/4] : POLYX 0.001", - "5 | Tiers [3/4] : POLYX 123.544848", - "5 | Tiers [4/4] : POLYX 0.001", - "6 | Venue id : 2339", - "7 | Start : 128", - "8 | End : 2048", - "9 | Minimum investment [1/2] : 19728997739536122846747954930508.52971", - "9 | Minimum investment [2/2] : 3", - "10 | Fundraiser name : FundRaiser_Name", - "11 | Chain : Polymesh", - "12 | Nonce : 1", - "13 | Tip : POLYX 1234.56789", - "14 | Era Phase : 61", - "15 | Era Period : 64", - "16 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "16 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1368, - "name": "Sto_Create_fundraiser", - "blob": "27000e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e20100000000005449434b45522d31323334350e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e20100000000005449434b45522d31323334350810255d07000000000000000000000000e803000000000000000000000000000010255d07000000000000000000000000e803000000000000000000000000000023090000000000000100080000000000000100080000000000003180ae395160d332d7c92e41b0aad70e3c46756e645261697365725f4e616d65d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Sto : Create fundraiser", - "1 | Offering portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | Offering portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | Offering portfolio [3/3] : 123456", - "2 | Offering asset : TICKER-12345", - "3 | Raising portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "3 | Raising portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "3 | Raising portfolio [3/3] : 123456", - "4 | Raising asset : TICKER-12345", - "5 | Tiers [1/4] : POLYX 123.544848", - "5 | Tiers [2/4] : POLYX 0.001", - "5 | Tiers [3/4] : POLYX 123.544848", - "5 | Tiers [4/4] : POLYX 0.001", - "6 | Venue id : 2339", - "7 | Start : 2048", - "8 | End : 2048", - "9 | Minimum investment [1/2] : 19728997739536122846747954930508.52971", - "9 | Minimum investment [2/2] : 3", - "10 | Fundraiser name : FundRaiser_Name", - "11 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Sto : Create fundraiser", - "1 | Offering portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | Offering portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | Offering portfolio [3/3] : 123456", - "2 | Offering asset : TICKER-12345", - "3 | Raising portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "3 | Raising portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "3 | Raising portfolio [3/3] : 123456", - "4 | Raising asset : TICKER-12345", - "5 | Tiers [1/4] : POLYX 123.544848", - "5 | Tiers [2/4] : POLYX 0.001", - "5 | Tiers [3/4] : POLYX 123.544848", - "5 | Tiers [4/4] : POLYX 0.001", - "6 | Venue id : 2339", - "7 | Start : 2048", - "8 | End : 2048", - "9 | Minimum investment [1/2] : 19728997739536122846747954930508.52971", - "9 | Minimum investment [2/2] : 3", - "10 | Fundraiser name : FundRaiser_Name", - "11 | Chain : Polymesh", - "12 | Nonce : 1", - "13 | Tip : POLYX 1234.56789", - "14 | Era Phase : 61", - "15 | Era Period : 64", - "16 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "16 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1369, - "name": "Sto_Create_fundraiser", - "blob": "27000e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e20100000000005449434b45522d31323334350e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e20100000000005449434b45522d31323334350810255d07000000000000000000000000e803000000000000000000000000000010255d07000000000000000000000000e803000000000000000000000000000064000000000000000100010000000000000180000000000000003180ae395160d332d7c92e41b0aad70e3c46756e645261697365725f4e616d65d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Sto : Create fundraiser", - "1 | Offering portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | Offering portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | Offering portfolio [3/3] : 123456", - "2 | Offering asset : TICKER-12345", - "3 | Raising portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "3 | Raising portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "3 | Raising portfolio [3/3] : 123456", - "4 | Raising asset : TICKER-12345", - "5 | Tiers [1/4] : POLYX 123.544848", - "5 | Tiers [2/4] : POLYX 0.001", - "5 | Tiers [3/4] : POLYX 123.544848", - "5 | Tiers [4/4] : POLYX 0.001", - "6 | Venue id : 100", - "7 | Start : 256", - "8 | End : 128", - "9 | Minimum investment [1/2] : 19728997739536122846747954930508.52971", - "9 | Minimum investment [2/2] : 3", - "10 | Fundraiser name : FundRaiser_Name" - ], - "output_expert": [ - "0 | Sto : Create fundraiser", - "1 | Offering portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | Offering portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | Offering portfolio [3/3] : 123456", - "2 | Offering asset : TICKER-12345", - "3 | Raising portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "3 | Raising portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "3 | Raising portfolio [3/3] : 123456", - "4 | Raising asset : TICKER-12345", - "5 | Tiers [1/4] : POLYX 123.544848", - "5 | Tiers [2/4] : POLYX 0.001", - "5 | Tiers [3/4] : POLYX 123.544848", - "5 | Tiers [4/4] : POLYX 0.001", - "6 | Venue id : 100", - "7 | Start : 256", - "8 | End : 128", - "9 | Minimum investment [1/2] : 19728997739536122846747954930508.52971", - "9 | Minimum investment [2/2] : 3", - "10 | Fundraiser name : FundRaiser_Name", - "11 | Chain : Polymesh", - "12 | Nonce : 50283", - "13 | Era Phase : 61", - "14 | Era Period : 64", - "15 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "15 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1370, - "name": "Sto_Create_fundraiser", - "blob": "27000e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e20100000000005449434b45522d31323334350e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e20100000000005449434b45522d31323334350810255d07000000000000000000000000e803000000000000000000000000000010255d07000000000000000000000000e803000000000000000000000000000023090000000000000180000000000000000180000000000000003180ae395160d332d7c92e41b0aad70e3c46756e645261697365725f4e616d65d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Sto : Create fundraiser", - "1 | Offering portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | Offering portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | Offering portfolio [3/3] : 123456", - "2 | Offering asset : TICKER-12345", - "3 | Raising portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "3 | Raising portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "3 | Raising portfolio [3/3] : 123456", - "4 | Raising asset : TICKER-12345", - "5 | Tiers [1/4] : POLYX 123.544848", - "5 | Tiers [2/4] : POLYX 0.001", - "5 | Tiers [3/4] : POLYX 123.544848", - "5 | Tiers [4/4] : POLYX 0.001", - "6 | Venue id : 2339", - "7 | Start : 128", - "8 | End : 128", - "9 | Minimum investment [1/2] : 19728997739536122846747954930508.52971", - "9 | Minimum investment [2/2] : 3", - "10 | Fundraiser name : FundRaiser_Name", - "11 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Sto : Create fundraiser", - "1 | Offering portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | Offering portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | Offering portfolio [3/3] : 123456", - "2 | Offering asset : TICKER-12345", - "3 | Raising portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "3 | Raising portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "3 | Raising portfolio [3/3] : 123456", - "4 | Raising asset : TICKER-12345", - "5 | Tiers [1/4] : POLYX 123.544848", - "5 | Tiers [2/4] : POLYX 0.001", - "5 | Tiers [3/4] : POLYX 123.544848", - "5 | Tiers [4/4] : POLYX 0.001", - "6 | Venue id : 2339", - "7 | Start : 128", - "8 | End : 128", - "9 | Minimum investment [1/2] : 19728997739536122846747954930508.52971", - "9 | Minimum investment [2/2] : 3", - "10 | Fundraiser name : FundRaiser_Name", - "11 | Chain : Polymesh", - "12 | Nonce : 2339", - "13 | Tip : POLYX 5552342.355555", - "14 | Era Phase : 61", - "15 | Era Period : 64", - "16 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "16 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1371, - "name": "Sto_Invest", - "blob": "27010e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e20100000000000e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e20100000000005449434b45522d31323334356bc40000000000003180ae395160d332d7c92e41b0aad70e01158139ae28a3dfaac5fe1560a5e9e05c01e104ef65420309fe596ae77f25e9d4b0151928624a19d32ca2b294b0d1d76659d9e0a6585501ba19cc278ac5f358fc2d52526cd947baf3c30185ca24d81ad63d24586d4b28f870e2f10c537c22e2b918d1be0f6a32f9738316f6a762107bc8fb6538a3e83746cb81c017919e00257186452598019b0790666901e6469169b223b393941cd03902d0867b6046d2a5e7036d3a517d051de6e32737d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Sto : Invest", - "1 | Investment portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | Investment portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | Investment portfolio [3/3] : 123456", - "2 | Funding portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Funding portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Funding portfolio [3/3] : 123456", - "3 | Offering asset : TICKER-12345", - "4 | Id : 50283", - "5 | Purchase amount [1/2] : 19728997739536122846747954930508.52971", - "5 | Purchase amount [2/2] : 3", - "6 | Max price [1/2] : POLYX 12345678901234567890123456789012", - "6 | Max price [2/2] : 3.456789", - "7 | Receipt [1/11] : 18305165744136979681", - "7 | Receipt [2/11] : 12742065593006910041", - "7 | Receipt [3/11] : 3229953165019846933", - "7 | Receipt [4/11] : 2G8EuhwAhN7LBkY2kE5jmgeCJBjPKAyebBYxfo", - "7 | Receipt [5/11] : cacXWfNABR", - "7 | Receipt [6/11] : 85ca24d81ad63d24586d4b28f870e2f10c537c", - "7 | Receipt [7/11] : 22e2b918d1be0f6a32f9738316f6a762107bc8", - "7 | Receipt [8/11] : fb6538a3e83746cb81c017919e002571864525", - "7 | Receipt [9/11] : 98019b07906669", - "7 | Receipt [10/11] : e6469169b223b393941cd03902d0867b6046d2", - "7 | Receipt [11/11] : a5e7036d3a517d051de6e32737", - "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "8 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Sto : Invest", - "1 | Investment portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | Investment portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | Investment portfolio [3/3] : 123456", - "2 | Funding portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Funding portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Funding portfolio [3/3] : 123456", - "3 | Offering asset : TICKER-12345", - "4 | Id : 50283", - "5 | Purchase amount [1/2] : 19728997739536122846747954930508.52971", - "5 | Purchase amount [2/2] : 3", - "6 | Max price [1/2] : POLYX 12345678901234567890123456789012", - "6 | Max price [2/2] : 3.456789", - "7 | Receipt [1/11] : 18305165744136979681", - "7 | Receipt [2/11] : 12742065593006910041", - "7 | Receipt [3/11] : 3229953165019846933", - "7 | Receipt [4/11] : 2G8EuhwAhN7LBkY2kE5jmgeCJBjPKAyebBYxfo", - "7 | Receipt [5/11] : cacXWfNABR", - "7 | Receipt [6/11] : 85ca24d81ad63d24586d4b28f870e2f10c537c", - "7 | Receipt [7/11] : 22e2b918d1be0f6a32f9738316f6a762107bc8", - "7 | Receipt [8/11] : fb6538a3e83746cb81c017919e002571864525", - "7 | Receipt [9/11] : 98019b07906669", - "7 | Receipt [10/11] : e6469169b223b393941cd03902d0867b6046d2", - "7 | Receipt [11/11] : a5e7036d3a517d051de6e32737", - "8 | Chain : Polymesh", - "9 | Nonce : 1", - "10 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "10 | Tip [2/2] : 3.456789", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1372, - "name": "Sto_Invest", - "blob": "27010e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e20100000000000e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e20100000000005449434b45522d313233343500000000000000003180ae395160d332d7c92e41b0aad70e0163ce64c10c050000000000000000000000d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Sto : Invest", - "1 | Investment portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | Investment portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | Investment portfolio [3/3] : 123456", - "2 | Funding portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Funding portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Funding portfolio [3/3] : 123456", - "3 | Offering asset : TICKER-12345", - "4 | Id : 0", - "5 | Purchase amount [1/2] : 19728997739536122846747954930508.52971", - "5 | Purchase amount [2/2] : 3", - "6 | Max price : POLYX 5552342.355555", - "7 | Receipt : None" - ], - "output_expert": [ - "0 | Sto : Invest", - "1 | Investment portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | Investment portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | Investment portfolio [3/3] : 123456", - "2 | Funding portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Funding portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Funding portfolio [3/3] : 123456", - "3 | Offering asset : TICKER-12345", - "4 | Id : 0", - "5 | Purchase amount [1/2] : 19728997739536122846747954930508.52971", - "5 | Purchase amount [2/2] : 3", - "6 | Max price : POLYX 5552342.355555", - "7 | Receipt : None", - "8 | Chain : Polymesh", - "9 | Nonce : 2339", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1373, - "name": "Sto_Invest", - "blob": "27010e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e20100000000000e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e20100000000005449434b45522d313233343523090000000000003180ae395160d332d7c92e41b0aad70e01db03000000000000000000000000000001aef324161a32699e39b6e373a41abdf64354b03b354566c07ac89604eecdfdf60176c7c2c16afb88a2565c94597158b069c203906005d7df00cba02232b2b5a203afd4907ea2e7f90ef03c835290a24131eed794292a90019bddb7ebaf9a776b07f8171f5c52735d34d31a7cfe4ff18792776af1363053e85a01b18d477abc76b0d5ee566855c424d70e3111a571d6c1cd5e222ed385efc7a765d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Sto : Invest", - "1 | Investment portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | Investment portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | Investment portfolio [3/3] : 123456", - "2 | Funding portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Funding portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Funding portfolio [3/3] : 123456", - "3 | Offering asset : TICKER-12345", - "4 | Id : 2339", - "5 | Purchase amount [1/2] : 19728997739536122846747954930508.52971", - "5 | Purchase amount [2/2] : 3", - "6 | Max price : POLYX 0.000987", - "7 | Receipt [1/11] : 11414709818169291694", - "7 | Receipt [2/11] : 17779396197549848121", - "7 | Receipt [3/11] : 13863844597843645507", - "7 | Receipt [4/11] : 2FDuXkiuAv5MZfwVFqupksyRFuETTAs69G1iWj", - "7 | Receipt [5/11] : enaRKdeS7t", - "7 | Receipt [6/11] : cba02232b2b5a203afd4907ea2e7f90ef03c83", - "7 | Receipt [7/11] : 5290a24131eed794292a90019bddb7ebaf9a77", - "7 | Receipt [8/11] : 6b07f8171f5c52735d34d31a7cfe4ff1879277", - "7 | Receipt [9/11] : 6af1363053e85a", - "7 | Receipt [10/11] : b18d477abc76b0d5ee566855c424d70e3111a5", - "7 | Receipt [11/11] : 71d6c1cd5e222ed385efc7a765", - "8 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Sto : Invest", - "1 | Investment portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | Investment portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | Investment portfolio [3/3] : 123456", - "2 | Funding portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Funding portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Funding portfolio [3/3] : 123456", - "3 | Offering asset : TICKER-12345", - "4 | Id : 2339", - "5 | Purchase amount [1/2] : 19728997739536122846747954930508.52971", - "5 | Purchase amount [2/2] : 3", - "6 | Max price : POLYX 0.000987", - "7 | Receipt [1/11] : 11414709818169291694", - "7 | Receipt [2/11] : 17779396197549848121", - "7 | Receipt [3/11] : 13863844597843645507", - "7 | Receipt [4/11] : 2FDuXkiuAv5MZfwVFqupksyRFuETTAs69G1iWj", - "7 | Receipt [5/11] : enaRKdeS7t", - "7 | Receipt [6/11] : cba02232b2b5a203afd4907ea2e7f90ef03c83", - "7 | Receipt [7/11] : 5290a24131eed794292a90019bddb7ebaf9a77", - "7 | Receipt [8/11] : 6b07f8171f5c52735d34d31a7cfe4ff1879277", - "7 | Receipt [9/11] : 6af1363053e85a", - "7 | Receipt [10/11] : b18d477abc76b0d5ee566855c424d70e3111a5", - "7 | Receipt [11/11] : 71d6c1cd5e222ed385efc7a765", - "8 | Chain : Polymesh", - "9 | Nonce : 50283", - "10 | Tip : POLYX 55.555555", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1374, - "name": "Sto_Invest", - "blob": "27010e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e20100000000000e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e20100000000005449434b45522d313233343523090000000000003180ae395160d332d7c92e41b0aad70e010000000000000000000000000000000001aef324161a32699e39b6e373a41abdf64354b03b354566c07ac89604eecdfdf60176c7c2c16afb88a2565c94597158b069c203906005d7df00cba02232b2b5a203afd4907ea2e7f90ef03c835290a24131eed794292a90019bddb7ebaf9a776b07f8171f5c52735d34d31a7cfe4ff18792776af1363053e85a01b18d477abc76b0d5ee566855c424d70e3111a571d6c1cd5e222ed385efc7a765d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Sto : Invest", - "1 | Investment portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | Investment portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | Investment portfolio [3/3] : 123456", - "2 | Funding portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Funding portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Funding portfolio [3/3] : 123456", - "3 | Offering asset : TICKER-12345", - "4 | Id : 2339", - "5 | Purchase amount [1/2] : 19728997739536122846747954930508.52971", - "5 | Purchase amount [2/2] : 3", - "6 | Max price : POLYX 0.0", - "7 | Receipt [1/11] : 11414709818169291694", - "7 | Receipt [2/11] : 17779396197549848121", - "7 | Receipt [3/11] : 13863844597843645507", - "7 | Receipt [4/11] : 2FDuXkiuAv5MZfwVFqupksyRFuETTAs69G1iWj", - "7 | Receipt [5/11] : enaRKdeS7t", - "7 | Receipt [6/11] : cba02232b2b5a203afd4907ea2e7f90ef03c83", - "7 | Receipt [7/11] : 5290a24131eed794292a90019bddb7ebaf9a77", - "7 | Receipt [8/11] : 6b07f8171f5c52735d34d31a7cfe4ff1879277", - "7 | Receipt [9/11] : 6af1363053e85a", - "7 | Receipt [10/11] : b18d477abc76b0d5ee566855c424d70e3111a5", - "7 | Receipt [11/11] : 71d6c1cd5e222ed385efc7a765", - "8 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Sto : Invest", - "1 | Investment portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | Investment portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | Investment portfolio [3/3] : 123456", - "2 | Funding portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Funding portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Funding portfolio [3/3] : 123456", - "3 | Offering asset : TICKER-12345", - "4 | Id : 2339", - "5 | Purchase amount [1/2] : 19728997739536122846747954930508.52971", - "5 | Purchase amount [2/2] : 3", - "6 | Max price : POLYX 0.0", - "7 | Receipt [1/11] : 11414709818169291694", - "7 | Receipt [2/11] : 17779396197549848121", - "7 | Receipt [3/11] : 13863844597843645507", - "7 | Receipt [4/11] : 2FDuXkiuAv5MZfwVFqupksyRFuETTAs69G1iWj", - "7 | Receipt [5/11] : enaRKdeS7t", - "7 | Receipt [6/11] : cba02232b2b5a203afd4907ea2e7f90ef03c83", - "7 | Receipt [7/11] : 5290a24131eed794292a90019bddb7ebaf9a77", - "7 | Receipt [8/11] : 6b07f8171f5c52735d34d31a7cfe4ff1879277", - "7 | Receipt [9/11] : 6af1363053e85a", - "7 | Receipt [10/11] : b18d477abc76b0d5ee566855c424d70e3111a5", - "7 | Receipt [11/11] : 71d6c1cd5e222ed385efc7a765", - "8 | Chain : Polymesh", - "9 | Nonce : 0", - "10 | Tip : POLYX 0.000987", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1375, - "name": "Sto_Invest", - "blob": "27010e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e20100000000000e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e20100000000005449434b45522d313233343523090000000000003180ae395160d332d7c92e41b0aad70e01158139ae28a3dfaac5fe1560a5e9e05c00d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Sto : Invest", - "1 | Investment portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | Investment portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | Investment portfolio [3/3] : 123456", - "2 | Funding portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Funding portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Funding portfolio [3/3] : 123456", - "3 | Offering asset : TICKER-12345", - "4 | Id : 2339", - "5 | Purchase amount [1/2] : 19728997739536122846747954930508.52971", - "5 | Purchase amount [2/2] : 3", - "6 | Max price [1/2] : POLYX 12345678901234567890123456789012", - "6 | Max price [2/2] : 3.456789", - "7 | Receipt : None" - ], - "output_expert": [ - "0 | Sto : Invest", - "1 | Investment portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "1 | Investment portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "1 | Investment portfolio [3/3] : 123456", - "2 | Funding portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "2 | Funding portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "2 | Funding portfolio [3/3] : 123456", - "3 | Offering asset : TICKER-12345", - "4 | Id : 2339", - "5 | Purchase amount [1/2] : 19728997739536122846747954930508.52971", - "5 | Purchase amount [2/2] : 3", - "6 | Max price [1/2] : POLYX 12345678901234567890123456789012", - "6 | Max price [2/2] : 3.456789", - "7 | Receipt : None", - "8 | Chain : Polymesh", - "9 | Nonce : 2339", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1376, - "name": "Sto_Freeze_fundraiser", - "blob": "27025449434b45522d31323334350000000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Sto : Freeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 0", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Sto : Freeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 0", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1377, - "name": "Sto_Freeze_fundraiser", - "blob": "27025449434b45522d31323334352309000000000000d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Sto : Freeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 2339", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Sto : Freeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 2339", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1378, - "name": "Sto_Freeze_fundraiser", - "blob": "27025449434b45522d31323334356bc4000000000000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Sto : Freeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 50283", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Sto : Freeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 50283", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1379, - "name": "Sto_Freeze_fundraiser", - "blob": "27025449434b45522d31323334356bc4000000000000d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Sto : Freeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 50283", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Sto : Freeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 50283", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1380, - "name": "Sto_Freeze_fundraiser", - "blob": "27025449434b45522d31323334356bc4000000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Sto : Freeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 50283", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Sto : Freeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 50283", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1381, - "name": "Sto_Unfreeze_fundraiser", - "blob": "27035449434b45522d31323334356400000000000000d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Sto : Unfreeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 100" - ], - "output_expert": [ - "0 | Sto : Unfreeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 100", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1382, - "name": "Sto_Unfreeze_fundraiser", - "blob": "27035449434b45522d31323334352309000000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Sto : Unfreeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 2339", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Sto : Unfreeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 2339", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1383, - "name": "Sto_Unfreeze_fundraiser", - "blob": "27035449434b45522d31323334356bc4000000000000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Sto : Unfreeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 50283", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Sto : Unfreeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 50283", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1384, - "name": "Sto_Unfreeze_fundraiser", - "blob": "27035449434b45522d31323334352309000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Sto : Unfreeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 2339", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Sto : Unfreeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 2339", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1385, - "name": "Sto_Unfreeze_fundraiser", - "blob": "27035449434b45522d31323334356bc4000000000000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Sto : Unfreeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 50283", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Sto : Unfreeze fundraiser", - "1 | Offering asset : TICKER-12345", - "2 | Id : 50283", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1386, - "name": "Sto_Modify_fundraiser_window", - "blob": "27045449434b45522d31323334356bc40000000000000001000000000000010008000000000000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Sto : Modify fundraiser window", - "1 | Offering asset : TICKER-12345", - "2 | Id : 50283", - "3 | Start : 256", - "4 | End : 2048", - "5 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Sto : Modify fundraiser window", - "1 | Offering asset : TICKER-12345", - "2 | Id : 50283", - "3 | Start : 256", - "4 | End : 2048", - "5 | Chain : Polymesh", - "6 | Nonce : 0", - "7 | Tip : POLYX 1234.56789", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1387, - "name": "Sto_Modify_fundraiser_window", - "blob": "27045449434b45522d313233343564000000000000000001000000000000018000000000000000d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Sto : Modify fundraiser window", - "1 | Offering asset : TICKER-12345", - "2 | Id : 100", - "3 | Start : 256", - "4 | End : 128", - "5 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Sto : Modify fundraiser window", - "1 | Offering asset : TICKER-12345", - "2 | Id : 100", - "3 | Start : 256", - "4 | End : 128", - "5 | Chain : Polymesh", - "6 | Nonce : 50283", - "7 | Tip : POLYX 55.555555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1388, - "name": "Sto_Modify_fundraiser_window", - "blob": "27045449434b45522d313233343500000000000000000001000000000000018000000000000000d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Sto : Modify fundraiser window", - "1 | Offering asset : TICKER-12345", - "2 | Id : 0", - "3 | Start : 256", - "4 | End : 128", - "5 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Sto : Modify fundraiser window", - "1 | Offering asset : TICKER-12345", - "2 | Id : 0", - "3 | Start : 256", - "4 | End : 128", - "5 | Chain : Polymesh", - "6 | Nonce : 100", - "7 | Tip : POLYX 1234.56789", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1389, - "name": "Sto_Modify_fundraiser_window", - "blob": "27045449434b45522d313233343501000000000000000001000000000000010001000000000000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Sto : Modify fundraiser window", - "1 | Offering asset : TICKER-12345", - "2 | Id : 1", - "3 | Start : 256", - "4 | End : 256", - "5 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Sto : Modify fundraiser window", - "1 | Offering asset : TICKER-12345", - "2 | Id : 1", - "3 | Start : 256", - "4 | End : 256", - "5 | Chain : Polymesh", - "6 | Nonce : 100", - "7 | Tip : POLYX 55.555555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1390, - "name": "Sto_Modify_fundraiser_window", - "blob": "27045449434b45522d313233343523090000000000000008000000000000010001000000000000d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Sto : Modify fundraiser window", - "1 | Offering asset : TICKER-12345", - "2 | Id : 2339", - "3 | Start : 2048", - "4 | End : 256", - "5 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Sto : Modify fundraiser window", - "1 | Offering asset : TICKER-12345", - "2 | Id : 2339", - "3 | Start : 2048", - "4 | End : 256", - "5 | Chain : Polymesh", - "6 | Nonce : 50283", - "7 | Tip : POLYX 55.555555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1391, - "name": "Sto_Stop", - "blob": "27055449434b45522d31323334356400000000000000d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Sto : Stop", - "1 | Offering asset : TICKER-12345", - "2 | Id : 100", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Sto : Stop", - "1 | Offering asset : TICKER-12345", - "2 | Id : 100", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1392, - "name": "Sto_Stop", - "blob": "27055449434b45522d31323334356400000000000000d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Sto : Stop", - "1 | Offering asset : TICKER-12345", - "2 | Id : 100", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Sto : Stop", - "1 | Offering asset : TICKER-12345", - "2 | Id : 100", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1393, - "name": "Sto_Stop", - "blob": "27055449434b45522d31323334352309000000000000d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Sto : Stop", - "1 | Offering asset : TICKER-12345", - "2 | Id : 2339" - ], - "output_expert": [ - "0 | Sto : Stop", - "1 | Offering asset : TICKER-12345", - "2 | Id : 2339", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1394, - "name": "Sto_Stop", - "blob": "27055449434b45522d31323334352309000000000000d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Sto : Stop", - "1 | Offering asset : TICKER-12345", - "2 | Id : 2339", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Sto : Stop", - "1 | Offering asset : TICKER-12345", - "2 | Id : 2339", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1395, - "name": "Sto_Stop", - "blob": "27055449434b45522d31323334350100000000000000d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Sto : Stop", - "1 | Offering asset : TICKER-12345", - "2 | Id : 1", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Sto : Stop", - "1 | Offering asset : TICKER-12345", - "2 | Id : 1", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1396, - "name": "Treasury_Disbursement", - "blob": "280004282498291be49eff252ef0b833edc83177da27c1da90dd64e4442c22752d68dbfcd91200000000000000000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Treasury : Disbursement", - "1 | Beneficiaries [1/3] : 282498291be49eff252ef0b833edc83177da27", - "1 | Beneficiaries [2/3] : c1da90dd64e4442c22752d68db", - "1 | Beneficiaries [3/3] : POLYX 1.235452", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Treasury : Disbursement", - "1 | Beneficiaries [1/3] : 282498291be49eff252ef0b833edc83177da27", - "1 | Beneficiaries [2/3] : c1da90dd64e4442c22752d68db", - "1 | Beneficiaries [3/3] : POLYX 1.235452", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1397, - "name": "Treasury_Disbursement", - "blob": "280000d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Treasury : Disbursement", - "1 | Beneficiaries : " - ], - "output_expert": [ - "0 | Treasury : Disbursement", - "1 | Beneficiaries : ", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1398, - "name": "Treasury_Disbursement", - "blob": "280004282498291be49eff252ef0b833edc83177da27c1da90dd64e4442c22752d68dbfcd91200000000000000000000000000d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Treasury : Disbursement", - "1 | Beneficiaries [1/3] : 282498291be49eff252ef0b833edc83177da27", - "1 | Beneficiaries [2/3] : c1da90dd64e4442c22752d68db", - "1 | Beneficiaries [3/3] : POLYX 1.235452", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Treasury : Disbursement", - "1 | Beneficiaries [1/3] : 282498291be49eff252ef0b833edc83177da27", - "1 | Beneficiaries [2/3] : c1da90dd64e4442c22752d68db", - "1 | Beneficiaries [3/3] : POLYX 1.235452", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1399, - "name": "Treasury_Disbursement", - "blob": "280004282498291be49eff252ef0b833edc83177da27c1da90dd64e4442c22752d68dbfcd91200000000000000000000000000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Treasury : Disbursement", - "1 | Beneficiaries [1/3] : 282498291be49eff252ef0b833edc83177da27", - "1 | Beneficiaries [2/3] : c1da90dd64e4442c22752d68db", - "1 | Beneficiaries [3/3] : POLYX 1.235452", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Treasury : Disbursement", - "1 | Beneficiaries [1/3] : 282498291be49eff252ef0b833edc83177da27", - "1 | Beneficiaries [2/3] : c1da90dd64e4442c22752d68db", - "1 | Beneficiaries [3/3] : POLYX 1.235452", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1400, - "name": "Treasury_Disbursement", - "blob": "280004282498291be49eff252ef0b833edc83177da27c1da90dd64e4442c22752d68dbfcd91200000000000000000000000000d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Treasury : Disbursement", - "1 | Beneficiaries [1/3] : 282498291be49eff252ef0b833edc83177da27", - "1 | Beneficiaries [2/3] : c1da90dd64e4442c22752d68db", - "1 | Beneficiaries [3/3] : POLYX 1.235452", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Treasury : Disbursement", - "1 | Beneficiaries [1/3] : 282498291be49eff252ef0b833edc83177da27", - "1 | Beneficiaries [2/3] : c1da90dd64e4442c22752d68db", - "1 | Beneficiaries [3/3] : POLYX 1.235452", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1401, - "name": "Treasury_Reimbursement", - "blob": "2801345fe7fc9c23bfb62334c8ca2c746feed503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Treasury : Reimbursement", - "1 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "1 | Amount [2/2] : 0.371252", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Treasury : Reimbursement", - "1 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "1 | Amount [2/2] : 0.371252", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1402, - "name": "Treasury_Reimbursement", - "blob": "2801345fe7fc9c23bfb62334c8ca2c746feed5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Treasury : Reimbursement", - "1 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "1 | Amount [2/2] : 0.371252", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Treasury : Reimbursement", - "1 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "1 | Amount [2/2] : 0.371252", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1403, - "name": "Treasury_Reimbursement", - "blob": "2801345fe7fc9c23bfb62334c8ca2c746feed503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Treasury : Reimbursement", - "1 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "1 | Amount [2/2] : 0.371252", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Treasury : Reimbursement", - "1 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "1 | Amount [2/2] : 0.371252", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1404, - "name": "Treasury_Reimbursement", - "blob": "2801345fe7fc9c23bfb62334c8ca2c746feed50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Treasury : Reimbursement", - "1 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "1 | Amount [2/2] : 0.371252", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Treasury : Reimbursement", - "1 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "1 | Amount [2/2] : 0.371252", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1405, - "name": "Treasury_Reimbursement", - "blob": "2801345fe7fc9c23bfb62334c8ca2c746feed5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Treasury : Reimbursement", - "1 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "1 | Amount [2/2] : 0.371252", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Treasury : Reimbursement", - "1 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "1 | Amount [2/2] : 0.371252", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1406, - "name": "Utility_Batch", - "blob": "2900040000083434d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Batch", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Utility : Batch", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1407, - "name": "Utility_Batch", - "blob": "2900040000083434d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Batch", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Utility : Batch", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1408, - "name": "Utility_Batch", - "blob": "2900040000083434d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Batch", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Utility : Batch", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1409, - "name": "Utility_Batch", - "blob": "29000800000834340000083838d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Batch", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Utility : Batch", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1410, - "name": "Utility_Batch", - "blob": "2900100000083434000008383800000c31333200000c313736d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Batch", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Utility : Batch", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1411, - "name": "Utility_Relay_tx", - "blob": "29013e687768a50d36e597c2eb73c8161ef62ba3c55f6aa5ca420e76dcd08b219d260266dc891e48a8c1cc714acc1fbaa2049247a797b195d607ada0305ad74612936802906b92c2d1415dce09027f7106fa4d3fe99023b77d8a9cffe76518d2064cd83cb2150000000000000000083434d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Relay tx", - "1 | Target [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Target [2/2] : kKMKAMQcg5", - "2 | Signature [1/4] : 66dc891e48a8c1cc714acc1fbaa2049247a797", - "2 | Signature [2/4] : b195d607ada0305ad74612936802906b92c2d1", - "2 | Signature [3/4] : 415dce09027f7106fa4d3fe99023b77d8a9cff", - "2 | Signature [4/4] : e76518d2064cd83c", - "3 | Call [1/3] : 5554", - "3 | Call [2/3] : Remark", - "3 | Call [3/3] : 3434", - "4 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Utility : Relay tx", - "1 | Target [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Target [2/2] : kKMKAMQcg5", - "2 | Signature [1/4] : 66dc891e48a8c1cc714acc1fbaa2049247a797", - "2 | Signature [2/4] : b195d607ada0305ad74612936802906b92c2d1", - "2 | Signature [3/4] : 415dce09027f7106fa4d3fe99023b77d8a9cff", - "2 | Signature [4/4] : e76518d2064cd83c", - "3 | Call [1/3] : 5554", - "3 | Call [2/3] : Remark", - "3 | Call [3/3] : 3434", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1412, - "name": "Utility_Relay_tx", - "blob": "29015cf93ef43e7f44d10f78045182931ed20d916dc1680da77e6e1e60c2f827bc7901ea39856c4ae930ab5fd3a9e82e8d9d583c0954b62eda7a7a36e8eb4b6d9cab65b5dae5204ad99455d35eda0a5533013b75b91f4190968c6e53a800c3e6211344b2150000000000000000083434d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Relay tx", - "1 | Target [1/2] : 2EYpYprRA7x9tq23MPgSiZGQ7nyg2TkNyVDEw2", - "1 | Target [2/2] : PVSHuQtD81", - "2 | Signature [1/4] : ea39856c4ae930ab5fd3a9e82e8d9d583c0954", - "2 | Signature [2/4] : b62eda7a7a36e8eb4b6d9cab65b5dae5204ad9", - "2 | Signature [3/4] : 9455d35eda0a5533013b75b91f4190968c6e53", - "2 | Signature [4/4] : a800c3e6211344", - "3 | Call [1/3] : 5554", - "3 | Call [2/3] : Remark", - "3 | Call [3/3] : 3434", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Utility : Relay tx", - "1 | Target [1/2] : 2EYpYprRA7x9tq23MPgSiZGQ7nyg2TkNyVDEw2", - "1 | Target [2/2] : PVSHuQtD81", - "2 | Signature [1/4] : ea39856c4ae930ab5fd3a9e82e8d9d583c0954", - "2 | Signature [2/4] : b62eda7a7a36e8eb4b6d9cab65b5dae5204ad9", - "2 | Signature [3/4] : 9455d35eda0a5533013b75b91f4190968c6e53", - "2 | Signature [4/4] : a800c3e6211344", - "3 | Call [1/3] : 5554", - "3 | Call [2/3] : Remark", - "3 | Call [3/3] : 3434", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1413, - "name": "Utility_Relay_tx", - "blob": "2901b673c14adc4fdaaa84b868330314bb524eb97de82eb6ad5c24401af92af33f540033754b6114dc8648fa993944d49757598935d84efaee7c8a411e7335b3983d97c51dd23cacc5157bd43d0fed1226bba9acb0cd8355ed3bfbc9dc44cd784a5dccb2150000000000000000083434d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Relay tx", - "1 | Target [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Target [2/2] : 6xRJgVAa3i", - "2 | Signature [1/4] : 33754b6114dc8648fa993944d49757598935d8", - "2 | Signature [2/4] : 4efaee7c8a411e7335b3983d97c51dd23cacc5", - "2 | Signature [3/4] : 157bd43d0fed1226bba9acb0cd8355ed3bfbc9", - "2 | Signature [4/4] : dc44cd784a5dcc", - "3 | Call [1/3] : 5554", - "3 | Call [2/3] : Remark", - "3 | Call [3/3] : 3434", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Utility : Relay tx", - "1 | Target [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Target [2/2] : 6xRJgVAa3i", - "2 | Signature [1/4] : 33754b6114dc8648fa993944d49757598935d8", - "2 | Signature [2/4] : 4efaee7c8a411e7335b3983d97c51dd23cacc5", - "2 | Signature [3/4] : 157bd43d0fed1226bba9acb0cd8355ed3bfbc9", - "2 | Signature [4/4] : dc44cd784a5dcc", - "3 | Call [1/3] : 5554", - "3 | Call [2/3] : Remark", - "3 | Call [3/3] : 3434", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1414, - "name": "Utility_Relay_tx", - "blob": "2901b673c14adc4fdaaa84b868330314bb524eb97de82eb6ad5c24401af92af33f540033754b6114dc8648fa993944d49757598935d84efaee7c8a411e7335b3983d97c51dd23cacc5157bd43d0fed1226bba9acb0cd8355ed3bfbc9dc44cd784a5dccb2150000000000000000083434d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Relay tx", - "1 | Target [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Target [2/2] : 6xRJgVAa3i", - "2 | Signature [1/4] : 33754b6114dc8648fa993944d49757598935d8", - "2 | Signature [2/4] : 4efaee7c8a411e7335b3983d97c51dd23cacc5", - "2 | Signature [3/4] : 157bd43d0fed1226bba9acb0cd8355ed3bfbc9", - "2 | Signature [4/4] : dc44cd784a5dcc", - "3 | Call [1/3] : 5554", - "3 | Call [2/3] : Remark", - "3 | Call [3/3] : 3434", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Utility : Relay tx", - "1 | Target [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | Target [2/2] : 6xRJgVAa3i", - "2 | Signature [1/4] : 33754b6114dc8648fa993944d49757598935d8", - "2 | Signature [2/4] : 4efaee7c8a411e7335b3983d97c51dd23cacc5", - "2 | Signature [3/4] : 157bd43d0fed1226bba9acb0cd8355ed3bfbc9", - "2 | Signature [4/4] : dc44cd784a5dcc", - "3 | Call [1/3] : 5554", - "3 | Call [2/3] : Remark", - "3 | Call [3/3] : 3434", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1415, - "name": "Utility_Relay_tx", - "blob": "29013e687768a50d36e597c2eb73c8161ef62ba3c55f6aa5ca420e76dcd08b219d260033754b6114dc8648fa993944d49757598935d84efaee7c8a411e7335b3983d97c51dd23cacc5157bd43d0fed1226bba9acb0cd8355ed3bfbc9dc44cd784a5dccb2150000000000000000083434d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Relay tx", - "1 | Target [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Target [2/2] : kKMKAMQcg5", - "2 | Signature [1/4] : 33754b6114dc8648fa993944d49757598935d8", - "2 | Signature [2/4] : 4efaee7c8a411e7335b3983d97c51dd23cacc5", - "2 | Signature [3/4] : 157bd43d0fed1226bba9acb0cd8355ed3bfbc9", - "2 | Signature [4/4] : dc44cd784a5dcc", - "3 | Call [1/3] : 5554", - "3 | Call [2/3] : Remark", - "3 | Call [3/3] : 3434", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Utility : Relay tx", - "1 | Target [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "1 | Target [2/2] : kKMKAMQcg5", - "2 | Signature [1/4] : 33754b6114dc8648fa993944d49757598935d8", - "2 | Signature [2/4] : 4efaee7c8a411e7335b3983d97c51dd23cacc5", - "2 | Signature [3/4] : 157bd43d0fed1226bba9acb0cd8355ed3bfbc9", - "2 | Signature [4/4] : dc44cd784a5dcc", - "3 | Call [1/3] : 5554", - "3 | Call [2/3] : Remark", - "3 | Call [3/3] : 3434", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1416, - "name": "Utility_Batch_all", - "blob": "2902100000083434000008383800000c31333200000c313736d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Batch all", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Utility : Batch all", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1417, - "name": "Utility_Batch_all", - "blob": "2902100000083434000008383800000c31333200000c313736d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Batch all", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736" - ], - "output_expert": [ - "0 | Utility : Batch all", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1418, - "name": "Utility_Batch_all", - "blob": "2902100000083434000008383800000c31333200000c313736d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Batch all", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Utility : Batch all", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1419, - "name": "Utility_Batch_all", - "blob": "29020800000834340000083838d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Batch all", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Utility : Batch all", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1420, - "name": "Utility_Batch_all", - "blob": "29020800000834340000083838d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Batch all", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838" - ], - "output_expert": [ - "0 | Utility : Batch all", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1421, - "name": "Utility_Dispatch_as", - "blob": "29030001c846e37afcc512ec5678c11fb6e3dc4f8f30ecd1c7bf1d8ca0d7f598ab1f95040000083434d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Dispatch as", - "1 | As origin [1/2] : 2GyWjkVCPNqvBdxbmC7syhWGacHhNehA394WeG", - "1 | As origin [2/2] : FmQEpbswRU", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Utility : Dispatch as", - "1 | As origin [1/2] : 2GyWjkVCPNqvBdxbmC7syhWGacHhNehA394WeG", - "1 | As origin [2/2] : FmQEpbswRU", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1422, - "name": "Utility_Dispatch_as", - "blob": "2903040000083434d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Dispatch as", - "1 | As origin : Void", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Utility : Dispatch as", - "1 | As origin : Void", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1423, - "name": "Utility_Dispatch_as", - "blob": "290300020000083434d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Dispatch as", - "1 | As origin : None", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Utility : Dispatch as", - "1 | As origin : None", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1424, - "name": "Utility_Dispatch_as", - "blob": "290309000000083434d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Dispatch as", - "1 | As origin [1/2] : PolymeshCommittee", - "1 | As origin [2/2] : Endorsed", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Utility : Dispatch as", - "1 | As origin [1/2] : PolymeshCommittee", - "1 | As origin [2/2] : Endorsed", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1425, - "name": "Utility_Dispatch_as", - "blob": "29030d000000083434d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Dispatch as", - "1 | As origin [1/2] : UpgradeCommittee", - "1 | As origin [2/2] : Endorsed", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434" - ], - "output_expert": [ - "0 | Utility : Dispatch as", - "1 | As origin [1/2] : UpgradeCommittee", - "1 | As origin [2/2] : Endorsed", - "2 | Call [1/2] : Remark", - "2 | Call [2/2] : 3434", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1426, - "name": "Utility_Force_batch", - "blob": "2904040000083434d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Force batch", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Utility : Force batch", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1427, - "name": "Utility_Force_batch", - "blob": "2904040000083434d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Force batch", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Utility : Force batch", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1428, - "name": "Utility_Force_batch", - "blob": "29040800000834340000083838d503040039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Force batch", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838" - ], - "output_expert": [ - "0 | Utility : Force batch", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1429, - "name": "Utility_Force_batch", - "blob": "29040800000834340000083838d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Force batch", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Utility : Force batch", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1430, - "name": "Utility_Force_batch", - "blob": "2904100000083434000008383800000c31333200000c313736d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Force batch", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Utility : Force batch", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1431, - "name": "Utility_With_weight", - "blob": "2905000008343485a8cda9d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : With weight", - "1 | Call [1/2] : Remark", - "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 10785", - "2 | Weight [2/2] : 10867", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Utility : With weight", - "1 | Call [1/2] : Remark", - "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 10785", - "2 | Weight [2/2] : 10867", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1432, - "name": "Utility_With_weight", - "blob": "2905000008343485a8cda9d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : With weight", - "1 | Call [1/2] : Remark", - "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 10785", - "2 | Weight [2/2] : 10867", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Utility : With weight", - "1 | Call [1/2] : Remark", - "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 10785", - "2 | Weight [2/2] : 10867", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1433, - "name": "Utility_With_weight", - "blob": "290500000834340ba8c717031abc2a403eb3d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : With weight", - "1 | Call [1/2] : Remark", - "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 206819907061672", - "2 | Weight [2/2] : 751800330", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Utility : With weight", - "1 | Call [1/2] : Remark", - "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 206819907061672", - "2 | Weight [2/2] : 751800330", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1434, - "name": "Utility_With_weight", - "blob": "2905000008343485a8cda9d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : With weight", - "1 | Call [1/2] : Remark", - "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 10785", - "2 | Weight [2/2] : 10867" - ], - "output_expert": [ - "0 | Utility : With weight", - "1 | Call [1/2] : Remark", - "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 10785", - "2 | Weight [2/2] : 10867", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1435, - "name": "Utility_With_weight", - "blob": "290500000834340ba8c717031abc2a403eb3d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : With weight", - "1 | Call [1/2] : Remark", - "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 206819907061672", - "2 | Weight [2/2] : 751800330" - ], - "output_expert": [ - "0 | Utility : With weight", - "1 | Call [1/2] : Remark", - "1 | Call [2/2] : 3434", - "2 | Weight [1/2] : 206819907061672", - "2 | Weight [2/2] : 751800330", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1436, - "name": "Utility_Batch_old", - "blob": "29060800000834340000083838d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Batch old", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Utility : Batch old", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1437, - "name": "Utility_Batch_old", - "blob": "2906040000083434d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Batch old", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Utility : Batch old", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1438, - "name": "Utility_Batch_old", - "blob": "2906100000083434000008383800000c31333200000c313736d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Batch old", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Utility : Batch old", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1439, - "name": "Utility_Batch_old", - "blob": "29060800000834340000083838d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Batch old", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Utility : Batch old", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1440, - "name": "Utility_Batch_old", - "blob": "2906100000083434000008383800000c31333200000c313736d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Batch old", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Utility : Batch old", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1441, - "name": "Utility_Batch_atomic", - "blob": "2907040000083434d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Batch atomic", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434" - ], - "output_expert": [ - "0 | Utility : Batch atomic", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1442, - "name": "Utility_Batch_atomic", - "blob": "2907100000083434000008383800000c31333200000c313736d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Batch atomic", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Utility : Batch atomic", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1443, - "name": "Utility_Batch_atomic", - "blob": "2907040000083434d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Batch atomic", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Utility : Batch atomic", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1444, - "name": "Utility_Batch_atomic", - "blob": "2907100000083434000008383800000c31333200000c313736d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Batch atomic", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Utility : Batch atomic", - "1 | Calls [1/8] : Remark", - "1 | Calls [2/8] : 3434", - "1 | Calls [3/8] : Remark", - "1 | Calls [4/8] : 3838", - "1 | Calls [5/8] : Remark", - "1 | Calls [6/8] : 313332", - "1 | Calls [7/8] : Remark", - "1 | Calls [8/8] : 313736", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1445, - "name": "Utility_Batch_atomic", - "blob": "29070800000834340000083838d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Batch atomic", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Utility : Batch atomic", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1446, - "name": "Utility_Batch_optimistic", - "blob": "2908040000083434d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Batch optimistic", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434" - ], - "output_expert": [ - "0 | Utility : Batch optimistic", - "1 | Calls [1/2] : Remark", - "1 | Calls [2/2] : 3434", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1447, - "name": "Utility_Batch_optimistic", - "blob": "29080800000834340000083838d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Batch optimistic", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Utility : Batch optimistic", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1448, - "name": "Utility_Batch_optimistic", - "blob": "29080800000834340000083838d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Batch optimistic", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Utility : Batch optimistic", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1449, - "name": "Utility_Batch_optimistic", - "blob": "29080800000834340000083838d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Batch optimistic", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Utility : Batch optimistic", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1450, - "name": "Utility_Batch_optimistic", - "blob": "29080800000834340000083838d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Utility : Batch optimistic", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Utility : Batch optimistic", - "1 | Calls [1/4] : Remark", - "1 | Calls [2/4] : 3434", - "1 | Calls [3/4] : Remark", - "1 | Calls [4/4] : 3838", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1451, - "name": "Externalagents_Create_group", - "blob": "2b005449434b45522d313233343502042050414c4c45545f4101082c44697370617463684142432c446973706174636858595ad503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Create group", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/5] : Except", - "2 | Perms [2/5] : PALLET_A", - "2 | Perms [3/5] : These", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Externalagents : Create group", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/5] : Except", - "2 | Perms [2/5] : PALLET_A", - "2 | Perms [3/5] : These", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1452, - "name": "Externalagents_Create_group", - "blob": "2b005449434b45522d313233343501042050414c4c45545f5102042c4469737061746368414243d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Create group", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/4] : These", - "2 | Perms [2/4] : PALLET_Q", - "2 | Perms [3/4] : Except", - "2 | Perms [4/4] : DispatchABC", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Externalagents : Create group", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/4] : These", - "2 | Perms [2/4] : PALLET_Q", - "2 | Perms [3/4] : Except", - "2 | Perms [4/4] : DispatchABC", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1453, - "name": "Externalagents_Create_group", - "blob": "2b005449434b45522d313233343501042050414c4c45545f5102042c4469737061746368414243d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Create group", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/4] : These", - "2 | Perms [2/4] : PALLET_Q", - "2 | Perms [3/4] : Except", - "2 | Perms [4/4] : DispatchABC", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Externalagents : Create group", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/4] : These", - "2 | Perms [2/4] : PALLET_Q", - "2 | Perms [3/4] : Except", - "2 | Perms [4/4] : DispatchABC", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1454, - "name": "Externalagents_Create_group", - "blob": "2b005449434b45522d313233343502042050414c4c45545f4101082c44697370617463684142432c446973706174636858595ad503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Create group", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/5] : Except", - "2 | Perms [2/5] : PALLET_A", - "2 | Perms [3/5] : These", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Externalagents : Create group", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/5] : Except", - "2 | Perms [2/5] : PALLET_A", - "2 | Perms [3/5] : These", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1455, - "name": "Externalagents_Create_group", - "blob": "2b005449434b45522d313233343502042050414c4c45545f4101082c44697370617463684142432c446973706174636858595ad503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Create group", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/5] : Except", - "2 | Perms [2/5] : PALLET_A", - "2 | Perms [3/5] : These", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ" - ], - "output_expert": [ - "0 | Externalagents : Create group", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/5] : Except", - "2 | Perms [2/5] : PALLET_A", - "2 | Perms [3/5] : These", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1456, - "name": "Externalagents_Set_group_permissions", - "blob": "2b015449434b45522d313233343551f565b601042050414c4c45545f5102042c4469737061746368414243d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Set group permissions", - "1 | Ticker : TICKER-12345", - "2 | Id : 3060135249", - "3 | Perms [1/4] : These", - "3 | Perms [2/4] : PALLET_Q", - "3 | Perms [3/4] : Except", - "3 | Perms [4/4] : DispatchABC", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Externalagents : Set group permissions", - "1 | Ticker : TICKER-12345", - "2 | Id : 3060135249", - "3 | Perms [1/4] : These", - "3 | Perms [2/4] : PALLET_Q", - "3 | Perms [3/4] : Except", - "3 | Perms [4/4] : DispatchABC", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1457, - "name": "Externalagents_Set_group_permissions", - "blob": "2b015449434b45522d313233343551f565b602042050414c4c45545f4101082c44697370617463684142432c446973706174636858595ad50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Set group permissions", - "1 | Ticker : TICKER-12345", - "2 | Id : 3060135249", - "3 | Perms [1/5] : Except", - "3 | Perms [2/5] : PALLET_A", - "3 | Perms [3/5] : These", - "3 | Perms [4/5] : DispatchABC", - "3 | Perms [5/5] : DispatchXYZ" - ], - "output_expert": [ - "0 | Externalagents : Set group permissions", - "1 | Ticker : TICKER-12345", - "2 | Id : 3060135249", - "3 | Perms [1/5] : Except", - "3 | Perms [2/5] : PALLET_A", - "3 | Perms [3/5] : These", - "3 | Perms [4/5] : DispatchABC", - "3 | Perms [5/5] : DispatchXYZ", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1458, - "name": "Externalagents_Set_group_permissions", - "blob": "2b015449434b45522d313233343551f565b602042050414c4c45545f4101082c44697370617463684142432c446973706174636858595ad5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Set group permissions", - "1 | Ticker : TICKER-12345", - "2 | Id : 3060135249", - "3 | Perms [1/5] : Except", - "3 | Perms [2/5] : PALLET_A", - "3 | Perms [3/5] : These", - "3 | Perms [4/5] : DispatchABC", - "3 | Perms [5/5] : DispatchXYZ", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Externalagents : Set group permissions", - "1 | Ticker : TICKER-12345", - "2 | Id : 3060135249", - "3 | Perms [1/5] : Except", - "3 | Perms [2/5] : PALLET_A", - "3 | Perms [3/5] : These", - "3 | Perms [4/5] : DispatchABC", - "3 | Perms [5/5] : DispatchXYZ", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1459, - "name": "Externalagents_Set_group_permissions", - "blob": "2b015449434b45522d3132333435d2e96c2602042050414c4c45545f4101082c44697370617463684142432c446973706174636858595ad503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Set group permissions", - "1 | Ticker : TICKER-12345", - "2 | Id : 644671954", - "3 | Perms [1/5] : Except", - "3 | Perms [2/5] : PALLET_A", - "3 | Perms [3/5] : These", - "3 | Perms [4/5] : DispatchABC", - "3 | Perms [5/5] : DispatchXYZ", - "4 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Externalagents : Set group permissions", - "1 | Ticker : TICKER-12345", - "2 | Id : 644671954", - "3 | Perms [1/5] : Except", - "3 | Perms [2/5] : PALLET_A", - "3 | Perms [3/5] : These", - "3 | Perms [4/5] : DispatchABC", - "3 | Perms [5/5] : DispatchXYZ", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1460, - "name": "Externalagents_Set_group_permissions", - "blob": "2b015449434b45522d313233343551f565b600d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Set group permissions", - "1 | Ticker : TICKER-12345", - "2 | Id : 3060135249", - "3 | Perms : Whole", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Externalagents : Set group permissions", - "1 | Ticker : TICKER-12345", - "2 | Id : 3060135249", - "3 | Perms : Whole", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1461, - "name": "Externalagents_Remove_agent", - "blob": "2b025449434b45522d313233343531c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Remove agent", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Agent [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Externalagents : Remove agent", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Agent [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1462, - "name": "Externalagents_Remove_agent", - "blob": "2b025449434b45522d313233343531c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Remove agent", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Agent [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Externalagents : Remove agent", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Agent [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1463, - "name": "Externalagents_Remove_agent", - "blob": "2b025449434b45522d313233343531c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Remove agent", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Agent [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Externalagents : Remove agent", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Agent [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1464, - "name": "Externalagents_Remove_agent", - "blob": "2b025449434b45522d313233343531c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Remove agent", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Agent [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Externalagents : Remove agent", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Agent [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1465, - "name": "Externalagents_Remove_agent", - "blob": "2b025449434b45522d313233343531c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Remove agent", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Agent [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Externalagents : Remove agent", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Agent [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1466, - "name": "Externalagents_Abdicate", - "blob": "2b035449434b45522d3132333435d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Abdicate", - "1 | Ticker : TICKER-12345", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Externalagents : Abdicate", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1467, - "name": "Externalagents_Abdicate", - "blob": "2b035449434b45522d3132333435d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Abdicate", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Externalagents : Abdicate", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1468, - "name": "Externalagents_Abdicate", - "blob": "2b035449434b45522d3132333435d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Abdicate", - "1 | Ticker : TICKER-12345" - ], - "output_expert": [ - "0 | Externalagents : Abdicate", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1469, - "name": "Externalagents_Abdicate", - "blob": "2b035449434b45522d3132333435d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Abdicate", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Externalagents : Abdicate", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1470, - "name": "Externalagents_Abdicate", - "blob": "2b035449434b45522d3132333435d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Abdicate", - "1 | Ticker : TICKER-12345", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Externalagents : Abdicate", - "1 | Ticker : TICKER-12345", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1471, - "name": "Externalagents_Change_group", - "blob": "2b045449434b45522d313233343531c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec04d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Change group", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Agent [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Group : PolymeshV1PIA", - "4 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Externalagents : Change group", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Agent [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Group : PolymeshV1PIA", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1472, - "name": "Externalagents_Change_group", - "blob": "2b045449434b45522d313233343531c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec02d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Change group", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Agent [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Group : ExceptMeta", - "4 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Externalagents : Change group", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Agent [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Group : ExceptMeta", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1473, - "name": "Externalagents_Change_group", - "blob": "2b045449434b45522d313233343531c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec0114f48e99d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Change group", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Agent [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Group [1/2] : Custom", - "3 | Group [2/2] : 2576282644", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Externalagents : Change group", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Agent [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Group [1/2] : Custom", - "3 | Group [2/2] : 2576282644", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1474, - "name": "Externalagents_Change_group", - "blob": "2b045449434b45522d313233343531c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec04d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Change group", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Agent [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Group : PolymeshV1PIA", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Externalagents : Change group", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Agent [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Group : PolymeshV1PIA", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1475, - "name": "Externalagents_Change_group", - "blob": "2b045449434b45522d313233343531c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec03d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Change group", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Agent [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Group : PolymeshV1CAA", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Externalagents : Change group", - "1 | Ticker : TICKER-12345", - "2 | Agent [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "2 | Agent [2/2] : 258ab3f4314e37a4eb089601ec", - "3 | Group : PolymeshV1CAA", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1476, - "name": "Externalagents_Accept_become_agent", - "blob": "2b052309000000000000d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Accept become agent", - "1 | Auth id : 2339", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Externalagents : Accept become agent", - "1 | Auth id : 2339", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1477, - "name": "Externalagents_Accept_become_agent", - "blob": "2b052309000000000000d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Accept become agent", - "1 | Auth id : 2339", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Externalagents : Accept become agent", - "1 | Auth id : 2339", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1478, - "name": "Externalagents_Accept_become_agent", - "blob": "2b056400000000000000d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Accept become agent", - "1 | Auth id : 100" - ], - "output_expert": [ - "0 | Externalagents : Accept become agent", - "1 | Auth id : 100", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1479, - "name": "Externalagents_Accept_become_agent", - "blob": "2b050100000000000000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Accept become agent", - "1 | Auth id : 1", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Externalagents : Accept become agent", - "1 | Auth id : 1", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1480, - "name": "Externalagents_Accept_become_agent", - "blob": "2b050000000000000000d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Accept become agent", - "1 | Auth id : 0", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Externalagents : Accept become agent", - "1 | Auth id : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1481, - "name": "Externalagents_Create_group_and_add_auth", - "blob": "2b065449434b45522d313233343502042050414c4c45545f4101082c44697370617463684142432c446973706174636858595a31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec018000000000000000d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Create group and add auth", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/5] : Except", - "2 | Perms [2/5] : PALLET_A", - "2 | Perms [3/5] : These", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "3 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "4 | Expiry : 128", - "5 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Externalagents : Create group and add auth", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/5] : Except", - "2 | Perms [2/5] : PALLET_A", - "2 | Perms [3/5] : These", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "3 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "4 | Expiry : 128", - "5 | Chain : Polymesh", - "6 | Nonce : 100", - "7 | Tip : POLYX 5552342.355555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1482, - "name": "Externalagents_Create_group_and_add_auth", - "blob": "2b065449434b45522d313233343502042050414c4c45545f4101082c44697370617463684142432c446973706174636858595a31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec018000000000000000d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Create group and add auth", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/5] : Except", - "2 | Perms [2/5] : PALLET_A", - "2 | Perms [3/5] : These", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "3 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "4 | Expiry : 128", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Externalagents : Create group and add auth", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/5] : Except", - "2 | Perms [2/5] : PALLET_A", - "2 | Perms [3/5] : These", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "3 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "4 | Expiry : 128", - "5 | Chain : Polymesh", - "6 | Nonce : 0", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1483, - "name": "Externalagents_Create_group_and_add_auth", - "blob": "2b065449434b45522d313233343502042050414c4c45545f4101082c44697370617463684142432c446973706174636858595a31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec010008000000000000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Create group and add auth", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/5] : Except", - "2 | Perms [2/5] : PALLET_A", - "2 | Perms [3/5] : These", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "3 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "4 | Expiry : 2048", - "5 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Externalagents : Create group and add auth", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/5] : Except", - "2 | Perms [2/5] : PALLET_A", - "2 | Perms [3/5] : These", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "3 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "4 | Expiry : 2048", - "5 | Chain : Polymesh", - "6 | Nonce : 100", - "7 | Tip : POLYX 55.555555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1484, - "name": "Externalagents_Create_group_and_add_auth", - "blob": "2b065449434b45522d313233343501042050414c4c45545f5102042c446973706174636841424331c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec018000000000000000d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Create group and add auth", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/4] : These", - "2 | Perms [2/4] : PALLET_Q", - "2 | Perms [3/4] : Except", - "2 | Perms [4/4] : DispatchABC", - "3 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "3 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "4 | Expiry : 128", - "5 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Externalagents : Create group and add auth", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/4] : These", - "2 | Perms [2/4] : PALLET_Q", - "2 | Perms [3/4] : Except", - "2 | Perms [4/4] : DispatchABC", - "3 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "3 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "4 | Expiry : 128", - "5 | Chain : Polymesh", - "6 | Nonce : 0", - "7 | Tip : POLYX 55.555555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1485, - "name": "Externalagents_Create_group_and_add_auth", - "blob": "2b065449434b45522d31323334350031c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ec018000000000000000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Create group and add auth", - "1 | Ticker : TICKER-12345", - "2 | Perms : Whole", - "3 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "3 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "4 | Expiry : 128", - "5 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Externalagents : Create group and add auth", - "1 | Ticker : TICKER-12345", - "2 | Perms : Whole", - "3 | Target [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "3 | Target [2/2] : 258ab3f4314e37a4eb089601ec", - "4 | Expiry : 128", - "5 | Chain : Polymesh", - "6 | Nonce : 2339", - "7 | Tip : POLYX 1234.56789", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1486, - "name": "Externalagents_Create_and_change_custom_group", - "blob": "2b075449434b45522d31323334350031c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Create and change custom group", - "1 | Ticker : TICKER-12345", - "2 | Perms : Whole", - "3 | Agent [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "3 | Agent [2/2] : 258ab3f4314e37a4eb089601ec" - ], - "output_expert": [ - "0 | Externalagents : Create and change custom group", - "1 | Ticker : TICKER-12345", - "2 | Perms : Whole", - "3 | Agent [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "3 | Agent [2/2] : 258ab3f4314e37a4eb089601ec", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1487, - "name": "Externalagents_Create_and_change_custom_group", - "blob": "2b075449434b45522d31323334350031c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Create and change custom group", - "1 | Ticker : TICKER-12345", - "2 | Perms : Whole", - "3 | Agent [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "3 | Agent [2/2] : 258ab3f4314e37a4eb089601ec", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Externalagents : Create and change custom group", - "1 | Ticker : TICKER-12345", - "2 | Perms : Whole", - "3 | Agent [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "3 | Agent [2/2] : 258ab3f4314e37a4eb089601ec", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1488, - "name": "Externalagents_Create_and_change_custom_group", - "blob": "2b075449434b45522d313233343502042050414c4c45545f4101082c44697370617463684142432c446973706174636858595a31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Create and change custom group", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/5] : Except", - "2 | Perms [2/5] : PALLET_A", - "2 | Perms [3/5] : These", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Agent [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "3 | Agent [2/2] : 258ab3f4314e37a4eb089601ec", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Externalagents : Create and change custom group", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/5] : Except", - "2 | Perms [2/5] : PALLET_A", - "2 | Perms [3/5] : These", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Agent [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "3 | Agent [2/2] : 258ab3f4314e37a4eb089601ec", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1489, - "name": "Externalagents_Create_and_change_custom_group", - "blob": "2b075449434b45522d313233343502042050414c4c45545f4101082c44697370617463684142432c446973706174636858595a31c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Create and change custom group", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/5] : Except", - "2 | Perms [2/5] : PALLET_A", - "2 | Perms [3/5] : These", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Agent [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "3 | Agent [2/2] : 258ab3f4314e37a4eb089601ec", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Externalagents : Create and change custom group", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/5] : Except", - "2 | Perms [2/5] : PALLET_A", - "2 | Perms [3/5] : These", - "2 | Perms [4/5] : DispatchABC", - "2 | Perms [5/5] : DispatchXYZ", - "3 | Agent [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "3 | Agent [2/2] : 258ab3f4314e37a4eb089601ec", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1490, - "name": "Externalagents_Create_and_change_custom_group", - "blob": "2b075449434b45522d313233343501042050414c4c45545f5102042c446973706174636841424331c0bd06041541073bf32d18b85cac3e3abdc0258ab3f4314e37a4eb089601ecd503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Externalagents : Create and change custom group", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/4] : These", - "2 | Perms [2/4] : PALLET_Q", - "2 | Perms [3/4] : Except", - "2 | Perms [4/4] : DispatchABC", - "3 | Agent [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "3 | Agent [2/2] : 258ab3f4314e37a4eb089601ec", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Externalagents : Create and change custom group", - "1 | Ticker : TICKER-12345", - "2 | Perms [1/4] : These", - "2 | Perms [2/4] : PALLET_Q", - "2 | Perms [3/4] : Except", - "2 | Perms [4/4] : DispatchABC", - "3 | Agent [1/2] : 31c0bd06041541073bf32d18b85cac3e3abdc0", - "3 | Agent [2/2] : 258ab3f4314e37a4eb089601ec", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1491, - "name": "Relayer_Set_paying_key", - "blob": "2c00b673c14adc4fdaaa84b868330314bb524eb97de82eb6ad5c24401af92af33f54345fe7fc9c23bfb62334c8ca2c746feed5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Relayer : Set paying key", - "1 | User key [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | User key [2/2] : 6xRJgVAa3i", - "2 | Polyx limit [1/2] : POLYX 31693496425641852120896906194770", - "2 | Polyx limit [2/2] : 0.371252", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Relayer : Set paying key", - "1 | User key [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | User key [2/2] : 6xRJgVAa3i", - "2 | Polyx limit [1/2] : POLYX 31693496425641852120896906194770", - "2 | Polyx limit [2/2] : 0.371252", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1492, - "name": "Relayer_Set_paying_key", - "blob": "2c00e6b9eabd5f8491bd24bb8ff940cd591871b9fb05be188713f14b32f73923df6c345fe7fc9c23bfb62334c8ca2c746feed5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Relayer : Set paying key", - "1 | User key [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | User key [2/2] : 8Aw2bPcNj9", - "2 | Polyx limit [1/2] : POLYX 31693496425641852120896906194770", - "2 | Polyx limit [2/2] : 0.371252", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Relayer : Set paying key", - "1 | User key [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | User key [2/2] : 8Aw2bPcNj9", - "2 | Polyx limit [1/2] : POLYX 31693496425641852120896906194770", - "2 | Polyx limit [2/2] : 0.371252", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1493, - "name": "Relayer_Set_paying_key", - "blob": "2c00e6b9eabd5f8491bd24bb8ff940cd591871b9fb05be188713f14b32f73923df6c345fe7fc9c23bfb62334c8ca2c746feed5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Relayer : Set paying key", - "1 | User key [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | User key [2/2] : 8Aw2bPcNj9", - "2 | Polyx limit [1/2] : POLYX 31693496425641852120896906194770", - "2 | Polyx limit [2/2] : 0.371252", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Relayer : Set paying key", - "1 | User key [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | User key [2/2] : 8Aw2bPcNj9", - "2 | Polyx limit [1/2] : POLYX 31693496425641852120896906194770", - "2 | Polyx limit [2/2] : 0.371252", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1494, - "name": "Relayer_Set_paying_key", - "blob": "2c005cf93ef43e7f44d10f78045182931ed20d916dc1680da77e6e1e60c2f827bc79345fe7fc9c23bfb62334c8ca2c746feed503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Relayer : Set paying key", - "1 | User key [1/2] : 2EYpYprRA7x9tq23MPgSiZGQ7nyg2TkNyVDEw2", - "1 | User key [2/2] : PVSHuQtD81", - "2 | Polyx limit [1/2] : POLYX 31693496425641852120896906194770", - "2 | Polyx limit [2/2] : 0.371252", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Relayer : Set paying key", - "1 | User key [1/2] : 2EYpYprRA7x9tq23MPgSiZGQ7nyg2TkNyVDEw2", - "1 | User key [2/2] : PVSHuQtD81", - "2 | Polyx limit [1/2] : POLYX 31693496425641852120896906194770", - "2 | Polyx limit [2/2] : 0.371252", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1495, - "name": "Relayer_Set_paying_key", - "blob": "2c0042ed86a3b5fd55b0ec57c2112f981fbc2d91f4225759141ea0b255fd34639d74345fe7fc9c23bfb62334c8ca2c746feed50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Relayer : Set paying key", - "1 | User key [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "1 | User key [2/2] : kvir9Rw75p", - "2 | Polyx limit [1/2] : POLYX 31693496425641852120896906194770", - "2 | Polyx limit [2/2] : 0.371252", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Relayer : Set paying key", - "1 | User key [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "1 | User key [2/2] : kvir9Rw75p", - "2 | Polyx limit [1/2] : POLYX 31693496425641852120896906194770", - "2 | Polyx limit [2/2] : 0.371252", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1496, - "name": "Relayer_Accept_paying_key", - "blob": "2c010000000000000000d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Relayer : Accept paying key", - "1 | Auth id : 0", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Relayer : Accept paying key", - "1 | Auth id : 0", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1497, - "name": "Relayer_Accept_paying_key", - "blob": "2c016400000000000000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Relayer : Accept paying key", - "1 | Auth id : 100", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Relayer : Accept paying key", - "1 | Auth id : 100", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1498, - "name": "Relayer_Accept_paying_key", - "blob": "2c010100000000000000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Relayer : Accept paying key", - "1 | Auth id : 1", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Relayer : Accept paying key", - "1 | Auth id : 1", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1499, - "name": "Relayer_Accept_paying_key", - "blob": "2c016bc4000000000000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Relayer : Accept paying key", - "1 | Auth id : 50283", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Relayer : Accept paying key", - "1 | Auth id : 50283", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1500, - "name": "Relayer_Accept_paying_key", - "blob": "2c016bc4000000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Relayer : Accept paying key", - "1 | Auth id : 50283", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Relayer : Accept paying key", - "1 | Auth id : 50283", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1501, - "name": "Relayer_Remove_paying_key", - "blob": "2c025cf93ef43e7f44d10f78045182931ed20d916dc1680da77e6e1e60c2f827bc7942ed86a3b5fd55b0ec57c2112f981fbc2d91f4225759141ea0b255fd34639d74d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Relayer : Remove paying key", - "1 | User key [1/2] : 2EYpYprRA7x9tq23MPgSiZGQ7nyg2TkNyVDEw2", - "1 | User key [2/2] : PVSHuQtD81", - "2 | Paying key [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "2 | Paying key [2/2] : kvir9Rw75p", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Relayer : Remove paying key", - "1 | User key [1/2] : 2EYpYprRA7x9tq23MPgSiZGQ7nyg2TkNyVDEw2", - "1 | User key [2/2] : PVSHuQtD81", - "2 | Paying key [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "2 | Paying key [2/2] : kvir9Rw75p", - "3 | Chain : Polymesh", - "4 | Nonce : 1", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1502, - "name": "Relayer_Remove_paying_key", - "blob": "2c021813b8c47c41f5279be46dc5272f7321cbfb8e6a91645a82458752c94de75b1c3e687768a50d36e597c2eb73c8161ef62ba3c55f6aa5ca420e76dcd08b219d26d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Relayer : Remove paying key", - "1 | User key [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | User key [2/2] : PmkgsnFWXr", - "2 | Paying key [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "2 | Paying key [2/2] : kKMKAMQcg5", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Relayer : Remove paying key", - "1 | User key [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | User key [2/2] : PmkgsnFWXr", - "2 | Paying key [1/2] : 2Drk71n3BFZPLHKpqaDq3HFL16DYSUaYYnMYrP", - "2 | Paying key [2/2] : kKMKAMQcg5", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1503, - "name": "Relayer_Remove_paying_key", - "blob": "2c021813b8c47c41f5279be46dc5272f7321cbfb8e6a91645a82458752c94de75b1cb673c14adc4fdaaa84b868330314bb524eb97de82eb6ad5c24401af92af33f54d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Relayer : Remove paying key", - "1 | User key [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | User key [2/2] : PmkgsnFWXr", - "2 | Paying key [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "2 | Paying key [2/2] : 6xRJgVAa3i", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Relayer : Remove paying key", - "1 | User key [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | User key [2/2] : PmkgsnFWXr", - "2 | Paying key [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "2 | Paying key [2/2] : 6xRJgVAa3i", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1504, - "name": "Relayer_Remove_paying_key", - "blob": "2c0244437e7896c15f809cbc7156673d31ecf873060385385e9c27d5ae4abc05561542ed86a3b5fd55b0ec57c2112f981fbc2d91f4225759141ea0b255fd34639d74d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Relayer : Remove paying key", - "1 | User key [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | User key [2/2] : yiDWE8dFzF", - "2 | Paying key [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "2 | Paying key [2/2] : kvir9Rw75p", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Relayer : Remove paying key", - "1 | User key [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | User key [2/2] : yiDWE8dFzF", - "2 | Paying key [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "2 | Paying key [2/2] : kvir9Rw75p", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1505, - "name": "Relayer_Remove_paying_key", - "blob": "2c021813b8c47c41f5279be46dc5272f7321cbfb8e6a91645a82458752c94de75b1cb673c14adc4fdaaa84b868330314bb524eb97de82eb6ad5c24401af92af33f54d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Relayer : Remove paying key", - "1 | User key [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | User key [2/2] : PmkgsnFWXr", - "2 | Paying key [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "2 | Paying key [2/2] : 6xRJgVAa3i", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Relayer : Remove paying key", - "1 | User key [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | User key [2/2] : PmkgsnFWXr", - "2 | Paying key [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "2 | Paying key [2/2] : 6xRJgVAa3i", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1506, - "name": "Relayer_Update_polyx_limit", - "blob": "2c03b673c14adc4fdaaa84b868330314bb524eb97de82eb6ad5c24401af92af33f54345fe7fc9c23bfb62334c8ca2c746feed503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Relayer : Update polyx limit", - "1 | User key [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | User key [2/2] : 6xRJgVAa3i", - "2 | Polyx limit [1/2] : POLYX 31693496425641852120896906194770", - "2 | Polyx limit [2/2] : 0.371252", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Relayer : Update polyx limit", - "1 | User key [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | User key [2/2] : 6xRJgVAa3i", - "2 | Polyx limit [1/2] : POLYX 31693496425641852120896906194770", - "2 | Polyx limit [2/2] : 0.371252", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1507, - "name": "Relayer_Update_polyx_limit", - "blob": "2c0342ed86a3b5fd55b0ec57c2112f981fbc2d91f4225759141ea0b255fd34639d74345fe7fc9c23bfb62334c8ca2c746feed5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Relayer : Update polyx limit", - "1 | User key [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "1 | User key [2/2] : kvir9Rw75p", - "2 | Polyx limit [1/2] : POLYX 31693496425641852120896906194770", - "2 | Polyx limit [2/2] : 0.371252", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Relayer : Update polyx limit", - "1 | User key [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "1 | User key [2/2] : kvir9Rw75p", - "2 | Polyx limit [1/2] : POLYX 31693496425641852120896906194770", - "2 | Polyx limit [2/2] : 0.371252", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1508, - "name": "Relayer_Update_polyx_limit", - "blob": "2c03e6b9eabd5f8491bd24bb8ff940cd591871b9fb05be188713f14b32f73923df6c345fe7fc9c23bfb62334c8ca2c746feed5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Relayer : Update polyx limit", - "1 | User key [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | User key [2/2] : 8Aw2bPcNj9", - "2 | Polyx limit [1/2] : POLYX 31693496425641852120896906194770", - "2 | Polyx limit [2/2] : 0.371252", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Relayer : Update polyx limit", - "1 | User key [1/2] : 2HfSLxmoKUxAgWAtUpFWWfozj2Tzjq9dLicUcC", - "1 | User key [2/2] : 8Aw2bPcNj9", - "2 | Polyx limit [1/2] : POLYX 31693496425641852120896906194770", - "2 | Polyx limit [2/2] : 0.371252", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1509, - "name": "Relayer_Update_polyx_limit", - "blob": "2c031813b8c47c41f5279be46dc5272f7321cbfb8e6a91645a82458752c94de75b1c345fe7fc9c23bfb62334c8ca2c746feed503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Relayer : Update polyx limit", - "1 | User key [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | User key [2/2] : PmkgsnFWXr", - "2 | Polyx limit [1/2] : POLYX 31693496425641852120896906194770", - "2 | Polyx limit [2/2] : 0.371252", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Relayer : Update polyx limit", - "1 | User key [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | User key [2/2] : PmkgsnFWXr", - "2 | Polyx limit [1/2] : POLYX 31693496425641852120896906194770", - "2 | Polyx limit [2/2] : 0.371252", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1510, - "name": "Relayer_Update_polyx_limit", - "blob": "2c031813b8c47c41f5279be46dc5272f7321cbfb8e6a91645a82458752c94de75b1c345fe7fc9c23bfb62334c8ca2c746feed503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Relayer : Update polyx limit", - "1 | User key [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | User key [2/2] : PmkgsnFWXr", - "2 | Polyx limit [1/2] : POLYX 31693496425641852120896906194770", - "2 | Polyx limit [2/2] : 0.371252", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Relayer : Update polyx limit", - "1 | User key [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | User key [2/2] : PmkgsnFWXr", - "2 | Polyx limit [1/2] : POLYX 31693496425641852120896906194770", - "2 | Polyx limit [2/2] : 0.371252", - "3 | Chain : Polymesh", - "4 | Nonce : 0", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1511, - "name": "Relayer_Increase_polyx_limit", - "blob": "2c0444437e7896c15f809cbc7156673d31ecf873060385385e9c27d5ae4abc055615345fe7fc9c23bfb62334c8ca2c746feed50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Relayer : Increase polyx limit", - "1 | User key [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | User key [2/2] : yiDWE8dFzF", - "2 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "2 | Amount [2/2] : 0.371252", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Relayer : Increase polyx limit", - "1 | User key [1/2] : 2DzRQf8ZcEgQEpAUyZTsqyNfn1Fu1WzFYhHbLx", - "1 | User key [2/2] : yiDWE8dFzF", - "2 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "2 | Amount [2/2] : 0.371252", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1512, - "name": "Relayer_Increase_polyx_limit", - "blob": "2c0442ed86a3b5fd55b0ec57c2112f981fbc2d91f4225759141ea0b255fd34639d74345fe7fc9c23bfb62334c8ca2c746feed503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Relayer : Increase polyx limit", - "1 | User key [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "1 | User key [2/2] : kvir9Rw75p", - "2 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "2 | Amount [2/2] : 0.371252" - ], - "output_expert": [ - "0 | Relayer : Increase polyx limit", - "1 | User key [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "1 | User key [2/2] : kvir9Rw75p", - "2 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "2 | Amount [2/2] : 0.371252", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1513, - "name": "Relayer_Increase_polyx_limit", - "blob": "2c045cf93ef43e7f44d10f78045182931ed20d916dc1680da77e6e1e60c2f827bc79345fe7fc9c23bfb62334c8ca2c746feed503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Relayer : Increase polyx limit", - "1 | User key [1/2] : 2EYpYprRA7x9tq23MPgSiZGQ7nyg2TkNyVDEw2", - "1 | User key [2/2] : PVSHuQtD81", - "2 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "2 | Amount [2/2] : 0.371252", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Relayer : Increase polyx limit", - "1 | User key [1/2] : 2EYpYprRA7x9tq23MPgSiZGQ7nyg2TkNyVDEw2", - "1 | User key [2/2] : PVSHuQtD81", - "2 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "2 | Amount [2/2] : 0.371252", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1514, - "name": "Relayer_Increase_polyx_limit", - "blob": "2c041813b8c47c41f5279be46dc5272f7321cbfb8e6a91645a82458752c94de75b1c345fe7fc9c23bfb62334c8ca2c746feed503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Relayer : Increase polyx limit", - "1 | User key [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | User key [2/2] : PmkgsnFWXr", - "2 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "2 | Amount [2/2] : 0.371252", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Relayer : Increase polyx limit", - "1 | User key [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | User key [2/2] : PmkgsnFWXr", - "2 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "2 | Amount [2/2] : 0.371252", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1515, - "name": "Relayer_Increase_polyx_limit", - "blob": "2c041813b8c47c41f5279be46dc5272f7321cbfb8e6a91645a82458752c94de75b1c345fe7fc9c23bfb62334c8ca2c746feed5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Relayer : Increase polyx limit", - "1 | User key [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | User key [2/2] : PmkgsnFWXr", - "2 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "2 | Amount [2/2] : 0.371252", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Relayer : Increase polyx limit", - "1 | User key [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | User key [2/2] : PmkgsnFWXr", - "2 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "2 | Amount [2/2] : 0.371252", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1516, - "name": "Relayer_Decrease_polyx_limit", - "blob": "2c051813b8c47c41f5279be46dc5272f7321cbfb8e6a91645a82458752c94de75b1c345fe7fc9c23bfb62334c8ca2c746feed5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Relayer : Decrease polyx limit", - "1 | User key [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | User key [2/2] : PmkgsnFWXr", - "2 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "2 | Amount [2/2] : 0.371252", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Relayer : Decrease polyx limit", - "1 | User key [1/2] : 2CzV7MnoSPYvx87yFuPUoPVftivZ5Rt1XfQWTv", - "1 | User key [2/2] : PmkgsnFWXr", - "2 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "2 | Amount [2/2] : 0.371252", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1517, - "name": "Relayer_Decrease_polyx_limit", - "blob": "2c0542ed86a3b5fd55b0ec57c2112f981fbc2d91f4225759141ea0b255fd34639d74345fe7fc9c23bfb62334c8ca2c746feed5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Relayer : Decrease polyx limit", - "1 | User key [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "1 | User key [2/2] : kvir9Rw75p", - "2 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "2 | Amount [2/2] : 0.371252", - "3 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Relayer : Decrease polyx limit", - "1 | User key [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "1 | User key [2/2] : kvir9Rw75p", - "2 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "2 | Amount [2/2] : 0.371252", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 55.555555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1518, - "name": "Relayer_Decrease_polyx_limit", - "blob": "2c05b673c14adc4fdaaa84b868330314bb524eb97de82eb6ad5c24401af92af33f54345fe7fc9c23bfb62334c8ca2c746feed50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Relayer : Decrease polyx limit", - "1 | User key [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | User key [2/2] : 6xRJgVAa3i", - "2 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "2 | Amount [2/2] : 0.371252", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Relayer : Decrease polyx limit", - "1 | User key [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | User key [2/2] : 6xRJgVAa3i", - "2 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "2 | Amount [2/2] : 0.371252", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1519, - "name": "Relayer_Decrease_polyx_limit", - "blob": "2c0542ed86a3b5fd55b0ec57c2112f981fbc2d91f4225759141ea0b255fd34639d74345fe7fc9c23bfb62334c8ca2c746feed503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Relayer : Decrease polyx limit", - "1 | User key [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "1 | User key [2/2] : kvir9Rw75p", - "2 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "2 | Amount [2/2] : 0.371252" - ], - "output_expert": [ - "0 | Relayer : Decrease polyx limit", - "1 | User key [1/2] : 2DxfpghCzNn75tM3tM8Dbx1KokdFLDwER4NzzB", - "1 | User key [2/2] : kvir9Rw75p", - "2 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "2 | Amount [2/2] : 0.371252", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1520, - "name": "Relayer_Decrease_polyx_limit", - "blob": "2c05b673c14adc4fdaaa84b868330314bb524eb97de82eb6ad5c24401af92af33f54345fe7fc9c23bfb62334c8ca2c746feed503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Relayer : Decrease polyx limit", - "1 | User key [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | User key [2/2] : 6xRJgVAa3i", - "2 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "2 | Amount [2/2] : 0.371252", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Relayer : Decrease polyx limit", - "1 | User key [1/2] : 2Ga9CnmbqGf1A2rjLUuS6ZXKKiQUM9NXELR6NB", - "1 | User key [2/2] : 6xRJgVAa3i", - "2 | Amount [1/2] : POLYX 31693496425641852120896906194770", - "2 | Amount [2/2] : 0.371252", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1521, - "name": "Contracts_Call_old_weight", - "blob": "2e000280bbe7a19522829178085039f39696ed48cb1f7c87e3c78c7b5f7b0c64c14153d66d0f0f16f17644c991e1012b6340448b830a0bf48a69ef2854d501016339e6e0873351f702d0cbffbdc3b3550184247413e88a3b3f3d722c6eda9ce28d04b66368160da05041d2685be5d398fb7d68ec2dad0677f0356b7de14fbc9ed503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Call old weight", - "1 | Dest [1/2] : bbe7a19522829178085039f39696ed48cb1f7c", - "1 | Dest [2/2] : 87e3c78c7b5f7b0c64c14153d6", - "2 | Amount : POLYX 0.000987", - "3 | Gas limit : 63492163382997270", - "4 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "4 | Storage deposit limit [2/2] : 115", - "5 | Data [1/4] : 6339e6e0873351f702d0cbffbdc3b355018424", - "5 | Data [2/4] : 7413e88a3b3f3d722c6eda9ce28d04b6636816", - "5 | Data [3/4] : 0da05041d2685be5d398fb7d68ec2dad0677f0", - "5 | Data [4/4] : 356b7de14fbc9e" - ], - "output_expert": [ - "0 | Contracts : Call old weight", - "1 | Dest [1/2] : bbe7a19522829178085039f39696ed48cb1f7c", - "1 | Dest [2/2] : 87e3c78c7b5f7b0c64c14153d6", - "2 | Amount : POLYX 0.000987", - "3 | Gas limit : 63492163382997270", - "4 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "4 | Storage deposit limit [2/2] : 115", - "5 | Data [1/4] : 6339e6e0873351f702d0cbffbdc3b355018424", - "5 | Data [2/4] : 7413e88a3b3f3d722c6eda9ce28d04b6636816", - "5 | Data [3/4] : 0da05041d2685be5d398fb7d68ec2dad0677f0", - "5 | Data [4/4] : 356b7de14fbc9e", - "6 | Chain : Polymesh", - "7 | Nonce : 0", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1522, - "name": "Contracts_Call_old_weight", - "blob": "2e00048443ca1c1b22505eecee4ab1426f43fd317d745c6d0fb178012b6340448b830a0bf48a69ef2854d580d1bf52d3cfc6bb2a8c0d557d53484e01677608fc8585158c1bd67087d94f45d6d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Call old weight", - "1 | Dest [1/2] : 8443ca1c1b22505eecee4ab1426f43fd317d74", - "1 | Dest [2/2] : 5c", - "2 | Amount : POLYX 0.000987", - "3 | Gas limit : 7724", - "4 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "4 | Storage deposit limit [2/2] : 115", - "5 | Data [1/2] : d1bf52d3cfc6bb2a8c0d557d53484e01677608", - "5 | Data [2/2] : fc8585158c1bd67087d94f45d6", - "6 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Contracts : Call old weight", - "1 | Dest [1/2] : 8443ca1c1b22505eecee4ab1426f43fd317d74", - "1 | Dest [2/2] : 5c", - "2 | Amount : POLYX 0.000987", - "3 | Gas limit : 7724", - "4 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "4 | Storage deposit limit [2/2] : 115", - "5 | Data [1/2] : d1bf52d3cfc6bb2a8c0d557d53484e01677608", - "5 | Data [2/2] : fc8585158c1bd67087d94f45d6", - "6 | Chain : Polymesh", - "7 | Nonce : 0", - "8 | Tip : POLYX 55.555555", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1523, - "name": "Contracts_Call_old_weight", - "blob": "2e00048443ca1c1b22505eecee4ab1426f43fd317d745c8ed73e0dbe319d2901f58601016339e6e0873351f702d0cbffbdc3b3550184247413e88a3b3f3d722c6eda9ce28d04b66368160da05041d2685be5d398fb7d68ec2dad0677f0356b7de14fbc9ed5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Call old weight", - "1 | Dest [1/2] : 8443ca1c1b22505eecee4ab1426f43fd317d74", - "1 | Dest [2/2] : 5c", - "2 | Amount : POLYX 55.555555", - "3 | Gas limit : 174541935", - "4 | Storage deposit limit : POLYX 0.008637", - "5 | Data [1/4] : 6339e6e0873351f702d0cbffbdc3b355018424", - "5 | Data [2/4] : 7413e88a3b3f3d722c6eda9ce28d04b6636816", - "5 | Data [3/4] : 0da05041d2685be5d398fb7d68ec2dad0677f0", - "5 | Data [4/4] : 356b7de14fbc9e", - "6 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Contracts : Call old weight", - "1 | Dest [1/2] : 8443ca1c1b22505eecee4ab1426f43fd317d74", - "1 | Dest [2/2] : 5c", - "2 | Amount : POLYX 55.555555", - "3 | Gas limit : 174541935", - "4 | Storage deposit limit : POLYX 0.008637", - "5 | Data [1/4] : 6339e6e0873351f702d0cbffbdc3b355018424", - "5 | Data [2/4] : 7413e88a3b3f3d722c6eda9ce28d04b6636816", - "5 | Data [3/4] : 0da05041d2685be5d398fb7d68ec2dad0677f0", - "5 | Data [4/4] : 356b7de14fbc9e", - "6 | Chain : Polymesh", - "7 | Nonce : 1", - "8 | Tip : POLYX 1234.56789", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1524, - "name": "Contracts_Call_old_weight", - "blob": "2e0000b1837d2d9cf166722c8ae384ed0525e5226d169f85d164d61152d3a7b77ee17633158139ae28a3dfaac5fe1560a5e9e05c0f16f17644c991e1012b6340448b830a0bf48a69ef2854d50101f23f5ec7810664c56409d9863fbdcb5ba5a7a9e822f795aef2be70d6bf944893dae55ea12273c6592ae45c4d5cafeb3d5f2ba2fb01ae0968728f877ce71a82d7d5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Call old weight", - "1 | Dest [1/2] : 2GTfdzXYD3mWWHFXcw1WJMvrrKWm9FoedY9xDA", - "1 | Dest [2/2] : LsguGU5VKA", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789", - "3 | Gas limit : 63492163382997270", - "4 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "4 | Storage deposit limit [2/2] : 115", - "5 | Data [1/4] : f23f5ec7810664c56409d9863fbdcb5ba5a7a9", - "5 | Data [2/4] : e822f795aef2be70d6bf944893dae55ea12273", - "5 | Data [3/4] : c6592ae45c4d5cafeb3d5f2ba2fb01ae096872", - "5 | Data [4/4] : 8f877ce71a82d7", - "6 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Contracts : Call old weight", - "1 | Dest [1/2] : 2GTfdzXYD3mWWHFXcw1WJMvrrKWm9FoedY9xDA", - "1 | Dest [2/2] : LsguGU5VKA", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789", - "3 | Gas limit : 63492163382997270", - "4 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "4 | Storage deposit limit [2/2] : 115", - "5 | Data [1/4] : f23f5ec7810664c56409d9863fbdcb5ba5a7a9", - "5 | Data [2/4] : e822f795aef2be70d6bf944893dae55ea12273", - "5 | Data [3/4] : c6592ae45c4d5cafeb3d5f2ba2fb01ae096872", - "5 | Data [4/4] : 8f877ce71a82d7", - "6 | Chain : Polymesh", - "7 | Nonce : 2339", - "8 | Tip : POLYX 5552342.355555", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1525, - "name": "Contracts_Call_old_weight", - "blob": "2e00048443ca1c1b22505eecee4ab1426f43fd317d745c33158139ae28a3dfaac5fe1560a5e9e05cbe319d29012b6340448b830a0bf48a69ef2854d5010147879e3330856791b0a30cbef57b186bc2bbda107087137c51fa6fbf11bb49badf8908c89199a44a6ee3d160503f45eadee081d0ba832118b82a4933ec5d0222d503ae1103000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Call old weight", - "1 | Dest [1/2] : 8443ca1c1b22505eecee4ab1426f43fd317d74", - "1 | Dest [2/2] : 5c", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789", - "3 | Gas limit : 174541935", - "4 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "4 | Storage deposit limit [2/2] : 115", - "5 | Data [1/4] : 47879e3330856791b0a30cbef57b186bc2bbda", - "5 | Data [2/4] : 107087137c51fa6fbf11bb49badf8908c89199", - "5 | Data [3/4] : a44a6ee3d160503f45eadee081d0ba832118b8", - "5 | Data [4/4] : 2a4933ec5d0222" - ], - "output_expert": [ - "0 | Contracts : Call old weight", - "1 | Dest [1/2] : 8443ca1c1b22505eecee4ab1426f43fd317d74", - "1 | Dest [2/2] : 5c", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789", - "3 | Gas limit : 174541935", - "4 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "4 | Storage deposit limit [2/2] : 115", - "5 | Data [1/4] : 47879e3330856791b0a30cbef57b186bc2bbda", - "5 | Data [2/4] : 107087137c51fa6fbf11bb49badf8908c89199", - "5 | Data [3/4] : a44a6ee3d160503f45eadee081d0ba832118b8", - "5 | Data [4/4] : 2a4933ec5d0222", - "6 | Chain : Polymesh", - "7 | Nonce : 50283", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1526, - "name": "Contracts_Instantiate_with_code_old_weight", - "blob": "2e018ed73e0dbe319d29012b775b33d0d4ab134f26e0b83d533f010147879e3330856791b0a30cbef57b186bc2bbda107087137c51fa6fbf11bb49badf8908c89199a44a6ee3d160503f45eadee081d0ba832118b82a4933ec5d0222010147879e3330856791b0a30cbef57b186bc2bbda107087137c51fa6fbf11bb49badf8908c89199a44a6ee3d160503f45eadee081d0ba832118b82a4933ec5d022201016339e6e0873351f702d0cbffbdc3b3550184247413e88a3b3f3d722c6eda9ce28d04b66368160da05041d2685be5d398fb7d68ec2dad0677f0356b7de14fbc9ed503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Instantiate with code old weight", - "1 | Amount : POLYX 55.555555", - "2 | Gas limit : 174541935", - "3 | Storage deposit limit [1/2] : POLYX 1284386844605205854394386895.559", - "3 | Storage deposit limit [2/2] : 543", - "4 | Code [1/4] : 47879e3330856791b0a30cbef57b186bc2bbda", - "4 | Code [2/4] : 107087137c51fa6fbf11bb49badf8908c89199", - "4 | Code [3/4] : a44a6ee3d160503f45eadee081d0ba832118b8", - "4 | Code [4/4] : 2a4933ec5d0222", - "5 | Data [1/4] : 47879e3330856791b0a30cbef57b186bc2bbda", - "5 | Data [2/4] : 107087137c51fa6fbf11bb49badf8908c89199", - "5 | Data [3/4] : a44a6ee3d160503f45eadee081d0ba832118b8", - "5 | Data [4/4] : 2a4933ec5d0222", - "6 | Salt [1/4] : 6339e6e0873351f702d0cbffbdc3b355018424", - "6 | Salt [2/4] : 7413e88a3b3f3d722c6eda9ce28d04b6636816", - "6 | Salt [3/4] : 0da05041d2685be5d398fb7d68ec2dad0677f0", - "6 | Salt [4/4] : 356b7de14fbc9e", - "7 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Contracts : Instantiate with code old weight", - "1 | Amount : POLYX 55.555555", - "2 | Gas limit : 174541935", - "3 | Storage deposit limit [1/2] : POLYX 1284386844605205854394386895.559", - "3 | Storage deposit limit [2/2] : 543", - "4 | Code [1/4] : 47879e3330856791b0a30cbef57b186bc2bbda", - "4 | Code [2/4] : 107087137c51fa6fbf11bb49badf8908c89199", - "4 | Code [3/4] : a44a6ee3d160503f45eadee081d0ba832118b8", - "4 | Code [4/4] : 2a4933ec5d0222", - "5 | Data [1/4] : 47879e3330856791b0a30cbef57b186bc2bbda", - "5 | Data [2/4] : 107087137c51fa6fbf11bb49badf8908c89199", - "5 | Data [3/4] : a44a6ee3d160503f45eadee081d0ba832118b8", - "5 | Data [4/4] : 2a4933ec5d0222", - "6 | Salt [1/4] : 6339e6e0873351f702d0cbffbdc3b355018424", - "6 | Salt [2/4] : 7413e88a3b3f3d722c6eda9ce28d04b6636816", - "6 | Salt [3/4] : 0da05041d2685be5d398fb7d68ec2dad0677f0", - "6 | Salt [4/4] : 356b7de14fbc9e", - "7 | Chain : Polymesh", - "8 | Nonce : 50283", - "9 | Tip : POLYX 0.000987", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1527, - "name": "Contracts_Instantiate_with_code_old_weight", - "blob": "2e018ed73e0d0f16f17644c991e1012b6340448b830a0bf48a69ef2854d501016339e6e0873351f702d0cbffbdc3b3550184247413e88a3b3f3d722c6eda9ce28d04b66368160da05041d2685be5d398fb7d68ec2dad0677f0356b7de14fbc9e0102368c239a6fcc7dc2a9d8fed983e117fcd1710782f908856693f511e26acf6d4613dcef6f0ee634a296ca02944c3a6343a1925a69b86589565853a61ac8195d03aa41f3671806b0290995b165a873474757b34f0ddb95cc9f6ddd3ad9f0898252a6cfe584ca84737098a009bed3aa2344725682ae6aab269f611299e265c0102901021173831f3e889e6399ee80f2b6711082c1dd85ed94cb6b323ab3681921b1a19b81bcf590f0fd5fc6bc957a3bc5690ff957df10324457218de583dce896287cf0b5145f15f75fec3fadc8d20f7b80b8f046b35c6e30c3f0e3e66bf560a51214af8fea31d5c2e4c768f57ab6d6b2a1bd28524c513f218e3e831901b1a9d707bb00d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Instantiate with code old weight", - "1 | Amount : POLYX 55.555555", - "2 | Gas limit : 63492163382997270", - "3 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "3 | Storage deposit limit [2/2] : 115", - "4 | Code [1/4] : 6339e6e0873351f702d0cbffbdc3b355018424", - "4 | Code [2/4] : 7413e88a3b3f3d722c6eda9ce28d04b6636816", - "4 | Code [3/4] : 0da05041d2685be5d398fb7d68ec2dad0677f0", - "4 | Code [4/4] : 356b7de14fbc9e", - "5 | Data [1/7] : 368c239a6fcc7dc2a9d8fed983e117fcd17107", - "5 | Data [2/7] : 82f908856693f511e26acf6d4613dcef6f0ee6", - "5 | Data [3/7] : 34a296ca02944c3a6343a1925a69b865895658", - "5 | Data [4/7] : 53a61ac8195d03aa41f3671806b0290995b165", - "5 | Data [5/7] : a873474757b34f0ddb95cc9f6ddd3ad9f08982", - "5 | Data [6/7] : 52a6cfe584ca84737098a009bed3aa23447256", - "5 | Data [7/7] : 82ae6aab269f611299e265c01029", - "6 | Salt [1/7] : 1173831f3e889e6399ee80f2b6711082c1dd85", - "6 | Salt [2/7] : ed94cb6b323ab3681921b1a19b81bcf590f0fd", - "6 | Salt [3/7] : 5fc6bc957a3bc5690ff957df10324457218de5", - "6 | Salt [4/7] : 83dce896287cf0b5145f15f75fec3fadc8d20f", - "6 | Salt [5/7] : 7b80b8f046b35c6e30c3f0e3e66bf560a51214", - "6 | Salt [6/7] : af8fea31d5c2e4c768f57ab6d6b2a1bd28524c", - "6 | Salt [7/7] : 513f218e3e831901b1a9d707bb00" - ], - "output_expert": [ - "0 | Contracts : Instantiate with code old weight", - "1 | Amount : POLYX 55.555555", - "2 | Gas limit : 63492163382997270", - "3 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "3 | Storage deposit limit [2/2] : 115", - "4 | Code [1/4] : 6339e6e0873351f702d0cbffbdc3b355018424", - "4 | Code [2/4] : 7413e88a3b3f3d722c6eda9ce28d04b6636816", - "4 | Code [3/4] : 0da05041d2685be5d398fb7d68ec2dad0677f0", - "4 | Code [4/4] : 356b7de14fbc9e", - "5 | Data [1/7] : 368c239a6fcc7dc2a9d8fed983e117fcd17107", - "5 | Data [2/7] : 82f908856693f511e26acf6d4613dcef6f0ee6", - "5 | Data [3/7] : 34a296ca02944c3a6343a1925a69b865895658", - "5 | Data [4/7] : 53a61ac8195d03aa41f3671806b0290995b165", - "5 | Data [5/7] : a873474757b34f0ddb95cc9f6ddd3ad9f08982", - "5 | Data [6/7] : 52a6cfe584ca84737098a009bed3aa23447256", - "5 | Data [7/7] : 82ae6aab269f611299e265c01029", - "6 | Salt [1/7] : 1173831f3e889e6399ee80f2b6711082c1dd85", - "6 | Salt [2/7] : ed94cb6b323ab3681921b1a19b81bcf590f0fd", - "6 | Salt [3/7] : 5fc6bc957a3bc5690ff957df10324457218de5", - "6 | Salt [4/7] : 83dce896287cf0b5145f15f75fec3fadc8d20f", - "6 | Salt [5/7] : 7b80b8f046b35c6e30c3f0e3e66bf560a51214", - "6 | Salt [6/7] : af8fea31d5c2e4c768f57ab6d6b2a1bd28524c", - "6 | Salt [7/7] : 513f218e3e831901b1a9d707bb00", - "7 | Chain : Polymesh", - "8 | Nonce : 0", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1528, - "name": "Contracts_Instantiate_with_code_old_weight", - "blob": "2e016d0fbe319d29012b6340448b830a0bf48a69ef2854d501016339e6e0873351f702d0cbffbdc3b3550184247413e88a3b3f3d722c6eda9ce28d04b66368160da05041d2685be5d398fb7d68ec2dad0677f0356b7de14fbc9e80486862a8e32ce887f398acfe94d8db07d95ccb7a7d03f93240a5ac9aee51cda8010147879e3330856791b0a30cbef57b186bc2bbda107087137c51fa6fbf11bb49badf8908c89199a44a6ee3d160503f45eadee081d0ba832118b82a4933ec5d0222d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Instantiate with code old weight", - "1 | Amount : POLYX 0.000987", - "2 | Gas limit : 174541935", - "3 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "3 | Storage deposit limit [2/2] : 115", - "4 | Code [1/4] : 6339e6e0873351f702d0cbffbdc3b355018424", - "4 | Code [2/4] : 7413e88a3b3f3d722c6eda9ce28d04b6636816", - "4 | Code [3/4] : 0da05041d2685be5d398fb7d68ec2dad0677f0", - "4 | Code [4/4] : 356b7de14fbc9e", - "5 | Data [1/2] : 486862a8e32ce887f398acfe94d8db07d95ccb", - "5 | Data [2/2] : 7a7d03f93240a5ac9aee51cda8", - "6 | Salt [1/4] : 47879e3330856791b0a30cbef57b186bc2bbda", - "6 | Salt [2/4] : 107087137c51fa6fbf11bb49badf8908c89199", - "6 | Salt [3/4] : a44a6ee3d160503f45eadee081d0ba832118b8", - "6 | Salt [4/4] : 2a4933ec5d0222", - "7 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Contracts : Instantiate with code old weight", - "1 | Amount : POLYX 0.000987", - "2 | Gas limit : 174541935", - "3 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "3 | Storage deposit limit [2/2] : 115", - "4 | Code [1/4] : 6339e6e0873351f702d0cbffbdc3b355018424", - "4 | Code [2/4] : 7413e88a3b3f3d722c6eda9ce28d04b6636816", - "4 | Code [3/4] : 0da05041d2685be5d398fb7d68ec2dad0677f0", - "4 | Code [4/4] : 356b7de14fbc9e", - "5 | Data [1/2] : 486862a8e32ce887f398acfe94d8db07d95ccb", - "5 | Data [2/2] : 7a7d03f93240a5ac9aee51cda8", - "6 | Salt [1/4] : 47879e3330856791b0a30cbef57b186bc2bbda", - "6 | Salt [2/4] : 107087137c51fa6fbf11bb49badf8908c89199", - "6 | Salt [3/4] : a44a6ee3d160503f45eadee081d0ba832118b8", - "6 | Salt [4/4] : 2a4933ec5d0222", - "7 | Chain : Polymesh", - "8 | Nonce : 50283", - "9 | Tip : POLYX 5552342.355555", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1529, - "name": "Contracts_Instantiate_with_code_old_weight", - "blob": "2e0100b17801f586010147879e3330856791b0a30cbef57b186bc2bbda107087137c51fa6fbf11bb49badf8908c89199a44a6ee3d160503f45eadee081d0ba832118b82a4933ec5d022201028e052f3965a1a5a99a4ae3618d4179334d3a27c51ac05f7c5bf21cca6aaa184dafa2964dafae333f953c37049f368eb0629e8d4ad14ada72fabbb3f70ce9b6b6d50f1ead62953e13c95a3601d05a11e84f036538ed8348c77c21162db0f25eb223d5f8c9ea35d38e9a470d9288bf574c8263c462f792b9f9b1924231e536393380486862a8e32ce887f398acfe94d8db07d95ccb7a7d03f93240a5ac9aee51cda8d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Instantiate with code old weight", - "1 | Amount : POLYX 0.0", - "2 | Gas limit : 7724", - "3 | Storage deposit limit : POLYX 0.008637", - "4 | Code [1/4] : 47879e3330856791b0a30cbef57b186bc2bbda", - "4 | Code [2/4] : 107087137c51fa6fbf11bb49badf8908c89199", - "4 | Code [3/4] : a44a6ee3d160503f45eadee081d0ba832118b8", - "4 | Code [4/4] : 2a4933ec5d0222", - "5 | Data [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "5 | Data [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "5 | Data [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "5 | Data [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "5 | Data [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "5 | Data [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "5 | Data [7/7] : c462f792b9f9b1924231e5363933", - "6 | Salt [1/2] : 486862a8e32ce887f398acfe94d8db07d95ccb", - "6 | Salt [2/2] : 7a7d03f93240a5ac9aee51cda8", - "7 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Contracts : Instantiate with code old weight", - "1 | Amount : POLYX 0.0", - "2 | Gas limit : 7724", - "3 | Storage deposit limit : POLYX 0.008637", - "4 | Code [1/4] : 47879e3330856791b0a30cbef57b186bc2bbda", - "4 | Code [2/4] : 107087137c51fa6fbf11bb49badf8908c89199", - "4 | Code [3/4] : a44a6ee3d160503f45eadee081d0ba832118b8", - "4 | Code [4/4] : 2a4933ec5d0222", - "5 | Data [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "5 | Data [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "5 | Data [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "5 | Data [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "5 | Data [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "5 | Data [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "5 | Data [7/7] : c462f792b9f9b1924231e5363933", - "6 | Salt [1/2] : 486862a8e32ce887f398acfe94d8db07d95ccb", - "6 | Salt [2/2] : 7a7d03f93240a5ac9aee51cda8", - "7 | Chain : Polymesh", - "8 | Nonce : 2339", - "9 | Tip : POLYX 55.555555", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1530, - "name": "Contracts_Instantiate_with_code_old_weight", - "blob": "2e016d0fbe319d29012b775b33d0d4ab134f26e0b83d533f80486862a8e32ce887f398acfe94d8db07d95ccb7a7d03f93240a5ac9aee51cda801016339e6e0873351f702d0cbffbdc3b3550184247413e88a3b3f3d722c6eda9ce28d04b66368160da05041d2685be5d398fb7d68ec2dad0677f0356b7de14fbc9e010147879e3330856791b0a30cbef57b186bc2bbda107087137c51fa6fbf11bb49badf8908c89199a44a6ee3d160503f45eadee081d0ba832118b82a4933ec5d0222d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Instantiate with code old weight", - "1 | Amount : POLYX 0.000987", - "2 | Gas limit : 174541935", - "3 | Storage deposit limit [1/2] : POLYX 1284386844605205854394386895.559", - "3 | Storage deposit limit [2/2] : 543", - "4 | Code [1/2] : 486862a8e32ce887f398acfe94d8db07d95ccb", - "4 | Code [2/2] : 7a7d03f93240a5ac9aee51cda8", - "5 | Data [1/4] : 6339e6e0873351f702d0cbffbdc3b355018424", - "5 | Data [2/4] : 7413e88a3b3f3d722c6eda9ce28d04b6636816", - "5 | Data [3/4] : 0da05041d2685be5d398fb7d68ec2dad0677f0", - "5 | Data [4/4] : 356b7de14fbc9e", - "6 | Salt [1/4] : 47879e3330856791b0a30cbef57b186bc2bbda", - "6 | Salt [2/4] : 107087137c51fa6fbf11bb49badf8908c89199", - "6 | Salt [3/4] : a44a6ee3d160503f45eadee081d0ba832118b8", - "6 | Salt [4/4] : 2a4933ec5d0222", - "7 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Contracts : Instantiate with code old weight", - "1 | Amount : POLYX 0.000987", - "2 | Gas limit : 174541935", - "3 | Storage deposit limit [1/2] : POLYX 1284386844605205854394386895.559", - "3 | Storage deposit limit [2/2] : 543", - "4 | Code [1/2] : 486862a8e32ce887f398acfe94d8db07d95ccb", - "4 | Code [2/2] : 7a7d03f93240a5ac9aee51cda8", - "5 | Data [1/4] : 6339e6e0873351f702d0cbffbdc3b355018424", - "5 | Data [2/4] : 7413e88a3b3f3d722c6eda9ce28d04b6636816", - "5 | Data [3/4] : 0da05041d2685be5d398fb7d68ec2dad0677f0", - "5 | Data [4/4] : 356b7de14fbc9e", - "6 | Salt [1/4] : 47879e3330856791b0a30cbef57b186bc2bbda", - "6 | Salt [2/4] : 107087137c51fa6fbf11bb49badf8908c89199", - "6 | Salt [3/4] : a44a6ee3d160503f45eadee081d0ba832118b8", - "6 | Salt [4/4] : 2a4933ec5d0222", - "7 | Chain : Polymesh", - "8 | Nonce : 50283", - "9 | Tip : POLYX 1234.56789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1531, - "name": "Contracts_Instantiate_old_weight", - "blob": "2e0233158139ae28a3dfaac5fe1560a5e9e05cb178012b6340448b830a0bf48a69ef2854d56fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40630101f23f5ec7810664c56409d9863fbdcb5ba5a7a9e822f795aef2be70d6bf944893dae55ea12273c6592ae45c4d5cafeb3d5f2ba2fb01ae0968728f877ce71a82d701021173831f3e889e6399ee80f2b6711082c1dd85ed94cb6b323ab3681921b1a19b81bcf590f0fd5fc6bc957a3bc5690ff957df10324457218de583dce896287cf0b5145f15f75fec3fadc8d20f7b80b8f046b35c6e30c3f0e3e66bf560a51214af8fea31d5c2e4c768f57ab6d6b2a1bd28524c513f218e3e831901b1a9d707bb00d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Instantiate old weight", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Gas limit : 7724", - "3 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "3 | Storage deposit limit [2/2] : 115", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : f23f5ec7810664c56409d9863fbdcb5ba5a7a9", - "5 | Data [2/4] : e822f795aef2be70d6bf944893dae55ea12273", - "5 | Data [3/4] : c6592ae45c4d5cafeb3d5f2ba2fb01ae096872", - "5 | Data [4/4] : 8f877ce71a82d7", - "6 | Salt [1/7] : 1173831f3e889e6399ee80f2b6711082c1dd85", - "6 | Salt [2/7] : ed94cb6b323ab3681921b1a19b81bcf590f0fd", - "6 | Salt [3/7] : 5fc6bc957a3bc5690ff957df10324457218de5", - "6 | Salt [4/7] : 83dce896287cf0b5145f15f75fec3fadc8d20f", - "6 | Salt [5/7] : 7b80b8f046b35c6e30c3f0e3e66bf560a51214", - "6 | Salt [6/7] : af8fea31d5c2e4c768f57ab6d6b2a1bd28524c", - "6 | Salt [7/7] : 513f218e3e831901b1a9d707bb00", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Contracts : Instantiate old weight", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Gas limit : 7724", - "3 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "3 | Storage deposit limit [2/2] : 115", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : f23f5ec7810664c56409d9863fbdcb5ba5a7a9", - "5 | Data [2/4] : e822f795aef2be70d6bf944893dae55ea12273", - "5 | Data [3/4] : c6592ae45c4d5cafeb3d5f2ba2fb01ae096872", - "5 | Data [4/4] : 8f877ce71a82d7", - "6 | Salt [1/7] : 1173831f3e889e6399ee80f2b6711082c1dd85", - "6 | Salt [2/7] : ed94cb6b323ab3681921b1a19b81bcf590f0fd", - "6 | Salt [3/7] : 5fc6bc957a3bc5690ff957df10324457218de5", - "6 | Salt [4/7] : 83dce896287cf0b5145f15f75fec3fadc8d20f", - "6 | Salt [5/7] : 7b80b8f046b35c6e30c3f0e3e66bf560a51214", - "6 | Salt [6/7] : af8fea31d5c2e4c768f57ab6d6b2a1bd28524c", - "6 | Salt [7/7] : 513f218e3e831901b1a9d707bb00", - "7 | Chain : Polymesh", - "8 | Nonce : 2339", - "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "9 | Tip [2/2] : 3.456789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1532, - "name": "Contracts_Instantiate_old_weight", - "blob": "2e02000f16f17644c991e1012b775b33d0d4ab134f26e0b83d533f6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f406301028e052f3965a1a5a99a4ae3618d4179334d3a27c51ac05f7c5bf21cca6aaa184dafa2964dafae333f953c37049f368eb0629e8d4ad14ada72fabbb3f70ce9b6b6d50f1ead62953e13c95a3601d05a11e84f036538ed8348c77c21162db0f25eb223d5f8c9ea35d38e9a470d9288bf574c8263c462f792b9f9b1924231e536393380d1bf52d3cfc6bb2a8c0d557d53484e01677608fc8585158c1bd67087d94f45d6d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Instantiate old weight", - "1 | Amount : POLYX 0.0", - "2 | Gas limit : 63492163382997270", - "3 | Storage deposit limit [1/2] : POLYX 1284386844605205854394386895.559", - "3 | Storage deposit limit [2/2] : 543", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "5 | Data [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "5 | Data [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "5 | Data [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "5 | Data [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "5 | Data [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "5 | Data [7/7] : c462f792b9f9b1924231e5363933", - "6 | Salt [1/2] : d1bf52d3cfc6bb2a8c0d557d53484e01677608", - "6 | Salt [2/2] : fc8585158c1bd67087d94f45d6", - "7 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Contracts : Instantiate old weight", - "1 | Amount : POLYX 0.0", - "2 | Gas limit : 63492163382997270", - "3 | Storage deposit limit [1/2] : POLYX 1284386844605205854394386895.559", - "3 | Storage deposit limit [2/2] : 543", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "5 | Data [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "5 | Data [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "5 | Data [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "5 | Data [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "5 | Data [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "5 | Data [7/7] : c462f792b9f9b1924231e5363933", - "6 | Salt [1/2] : d1bf52d3cfc6bb2a8c0d557d53484e01677608", - "6 | Salt [2/2] : fc8585158c1bd67087d94f45d6", - "7 | Chain : Polymesh", - "8 | Nonce : 50283", - "9 | Tip : POLYX 1234.56789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1533, - "name": "Contracts_Instantiate_old_weight", - "blob": "2e026d0fbe319d29012b6340448b830a0bf48a69ef2854d56fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f406380d1bf52d3cfc6bb2a8c0d557d53484e01677608fc8585158c1bd67087d94f45d6010147879e3330856791b0a30cbef57b186bc2bbda107087137c51fa6fbf11bb49badf8908c89199a44a6ee3d160503f45eadee081d0ba832118b82a4933ec5d0222d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Instantiate old weight", - "1 | Amount : POLYX 0.000987", - "2 | Gas limit : 174541935", - "3 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "3 | Storage deposit limit [2/2] : 115", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/2] : d1bf52d3cfc6bb2a8c0d557d53484e01677608", - "5 | Data [2/2] : fc8585158c1bd67087d94f45d6", - "6 | Salt [1/4] : 47879e3330856791b0a30cbef57b186bc2bbda", - "6 | Salt [2/4] : 107087137c51fa6fbf11bb49badf8908c89199", - "6 | Salt [3/4] : a44a6ee3d160503f45eadee081d0ba832118b8", - "6 | Salt [4/4] : 2a4933ec5d0222", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Contracts : Instantiate old weight", - "1 | Amount : POLYX 0.000987", - "2 | Gas limit : 174541935", - "3 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "3 | Storage deposit limit [2/2] : 115", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/2] : d1bf52d3cfc6bb2a8c0d557d53484e01677608", - "5 | Data [2/2] : fc8585158c1bd67087d94f45d6", - "6 | Salt [1/4] : 47879e3330856791b0a30cbef57b186bc2bbda", - "6 | Salt [2/4] : 107087137c51fa6fbf11bb49badf8908c89199", - "6 | Salt [3/4] : a44a6ee3d160503f45eadee081d0ba832118b8", - "6 | Salt [4/4] : 2a4933ec5d0222", - "7 | Chain : Polymesh", - "8 | Nonce : 100", - "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "9 | Tip [2/2] : 3.456789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1534, - "name": "Contracts_Instantiate_old_weight", - "blob": "2e0233158139ae28a3dfaac5fe1560a5e9e05cbe319d29012b6340448b830a0bf48a69ef2854d56fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f406301028e052f3965a1a5a99a4ae3618d4179334d3a27c51ac05f7c5bf21cca6aaa184dafa2964dafae333f953c37049f368eb0629e8d4ad14ada72fabbb3f70ce9b6b6d50f1ead62953e13c95a3601d05a11e84f036538ed8348c77c21162db0f25eb223d5f8c9ea35d38e9a470d9288bf574c8263c462f792b9f9b1924231e536393301028e052f3965a1a5a99a4ae3618d4179334d3a27c51ac05f7c5bf21cca6aaa184dafa2964dafae333f953c37049f368eb0629e8d4ad14ada72fabbb3f70ce9b6b6d50f1ead62953e13c95a3601d05a11e84f036538ed8348c77c21162db0f25eb223d5f8c9ea35d38e9a470d9288bf574c8263c462f792b9f9b1924231e5363933d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Instantiate old weight", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Gas limit : 174541935", - "3 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "3 | Storage deposit limit [2/2] : 115", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "5 | Data [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "5 | Data [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "5 | Data [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "5 | Data [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "5 | Data [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "5 | Data [7/7] : c462f792b9f9b1924231e5363933", - "6 | Salt [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "6 | Salt [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "6 | Salt [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "6 | Salt [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "6 | Salt [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "6 | Salt [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "6 | Salt [7/7] : c462f792b9f9b1924231e5363933", - "7 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Contracts : Instantiate old weight", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Gas limit : 174541935", - "3 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "3 | Storage deposit limit [2/2] : 115", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "5 | Data [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "5 | Data [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "5 | Data [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "5 | Data [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "5 | Data [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "5 | Data [7/7] : c462f792b9f9b1924231e5363933", - "6 | Salt [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "6 | Salt [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "6 | Salt [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "6 | Salt [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "6 | Salt [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "6 | Salt [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "6 | Salt [7/7] : c462f792b9f9b1924231e5363933", - "7 | Chain : Polymesh", - "8 | Nonce : 100", - "9 | Tip : POLYX 1234.56789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1535, - "name": "Contracts_Instantiate_old_weight", - "blob": "2e02008250d2bc012b775b33d0d4ab134f26e0b83d533f6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f406380d1bf52d3cfc6bb2a8c0d557d53484e01677608fc8585158c1bd67087d94f45d60102368c239a6fcc7dc2a9d8fed983e117fcd1710782f908856693f511e26acf6d4613dcef6f0ee634a296ca02944c3a6343a1925a69b86589565853a61ac8195d03aa41f3671806b0290995b165a873474757b34f0ddb95cc9f6ddd3ad9f0898252a6cfe584ca84737098a009bed3aa2344725682ae6aab269f611299e265c01029d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Instantiate old weight", - "1 | Amount : POLYX 0.0", - "2 | Gas limit : 791974944", - "3 | Storage deposit limit [1/2] : POLYX 1284386844605205854394386895.559", - "3 | Storage deposit limit [2/2] : 543", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/2] : d1bf52d3cfc6bb2a8c0d557d53484e01677608", - "5 | Data [2/2] : fc8585158c1bd67087d94f45d6", - "6 | Salt [1/7] : 368c239a6fcc7dc2a9d8fed983e117fcd17107", - "6 | Salt [2/7] : 82f908856693f511e26acf6d4613dcef6f0ee6", - "6 | Salt [3/7] : 34a296ca02944c3a6343a1925a69b865895658", - "6 | Salt [4/7] : 53a61ac8195d03aa41f3671806b0290995b165", - "6 | Salt [5/7] : a873474757b34f0ddb95cc9f6ddd3ad9f08982", - "6 | Salt [6/7] : 52a6cfe584ca84737098a009bed3aa23447256", - "6 | Salt [7/7] : 82ae6aab269f611299e265c01029", - "7 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Contracts : Instantiate old weight", - "1 | Amount : POLYX 0.0", - "2 | Gas limit : 791974944", - "3 | Storage deposit limit [1/2] : POLYX 1284386844605205854394386895.559", - "3 | Storage deposit limit [2/2] : 543", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/2] : d1bf52d3cfc6bb2a8c0d557d53484e01677608", - "5 | Data [2/2] : fc8585158c1bd67087d94f45d6", - "6 | Salt [1/7] : 368c239a6fcc7dc2a9d8fed983e117fcd17107", - "6 | Salt [2/7] : 82f908856693f511e26acf6d4613dcef6f0ee6", - "6 | Salt [3/7] : 34a296ca02944c3a6343a1925a69b865895658", - "6 | Salt [4/7] : 53a61ac8195d03aa41f3671806b0290995b165", - "6 | Salt [5/7] : a873474757b34f0ddb95cc9f6ddd3ad9f08982", - "6 | Salt [6/7] : 52a6cfe584ca84737098a009bed3aa23447256", - "6 | Salt [7/7] : 82ae6aab269f611299e265c01029", - "7 | Chain : Polymesh", - "8 | Nonce : 100", - "9 | Tip : POLYX 0.000987", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1536, - "name": "Contracts_Upload_code", - "blob": "2e0301028e052f3965a1a5a99a4ae3618d4179334d3a27c51ac05f7c5bf21cca6aaa184dafa2964dafae333f953c37049f368eb0629e8d4ad14ada72fabbb3f70ce9b6b6d50f1ead62953e13c95a3601d05a11e84f036538ed8348c77c21162db0f25eb223d5f8c9ea35d38e9a470d9288bf574c8263c462f792b9f9b1924231e5363933012b6340448b830a0bf48a69ef2854d500d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Upload code", - "1 | Code [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "1 | Code [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "1 | Code [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "1 | Code [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "1 | Code [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "1 | Code [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "1 | Code [7/7] : c462f792b9f9b1924231e5363933", - "2 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "2 | Storage deposit limit [2/2] : 115", - "3 | Determinism : Deterministic", - "4 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Contracts : Upload code", - "1 | Code [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "1 | Code [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "1 | Code [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "1 | Code [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "1 | Code [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "1 | Code [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "1 | Code [7/7] : c462f792b9f9b1924231e5363933", - "2 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "2 | Storage deposit limit [2/2] : 115", - "3 | Determinism : Deterministic", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1537, - "name": "Contracts_Upload_code", - "blob": "2e0380d1bf52d3cfc6bb2a8c0d557d53484e01677608fc8585158c1bd67087d94f45d6012b6340448b830a0bf48a69ef2854d500d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Upload code", - "1 | Code [1/2] : d1bf52d3cfc6bb2a8c0d557d53484e01677608", - "1 | Code [2/2] : fc8585158c1bd67087d94f45d6", - "2 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "2 | Storage deposit limit [2/2] : 115", - "3 | Determinism : Deterministic", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Contracts : Upload code", - "1 | Code [1/2] : d1bf52d3cfc6bb2a8c0d557d53484e01677608", - "1 | Code [2/2] : fc8585158c1bd67087d94f45d6", - "2 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "2 | Storage deposit limit [2/2] : 115", - "3 | Determinism : Deterministic", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1538, - "name": "Contracts_Upload_code", - "blob": "2e0380486862a8e32ce887f398acfe94d8db07d95ccb7a7d03f93240a5ac9aee51cda8012b775b33d0d4ab134f26e0b83d533f00d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Upload code", - "1 | Code [1/2] : 486862a8e32ce887f398acfe94d8db07d95ccb", - "1 | Code [2/2] : 7a7d03f93240a5ac9aee51cda8", - "2 | Storage deposit limit [1/2] : POLYX 1284386844605205854394386895.559", - "2 | Storage deposit limit [2/2] : 543", - "3 | Determinism : Deterministic", - "4 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Contracts : Upload code", - "1 | Code [1/2] : 486862a8e32ce887f398acfe94d8db07d95ccb", - "1 | Code [2/2] : 7a7d03f93240a5ac9aee51cda8", - "2 | Storage deposit limit [1/2] : POLYX 1284386844605205854394386895.559", - "2 | Storage deposit limit [2/2] : 543", - "3 | Determinism : Deterministic", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1539, - "name": "Contracts_Upload_code", - "blob": "2e0301016339e6e0873351f702d0cbffbdc3b3550184247413e88a3b3f3d722c6eda9ce28d04b66368160da05041d2685be5d398fb7d68ec2dad0677f0356b7de14fbc9e01f58601d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Upload code", - "1 | Code [1/4] : 6339e6e0873351f702d0cbffbdc3b355018424", - "1 | Code [2/4] : 7413e88a3b3f3d722c6eda9ce28d04b6636816", - "1 | Code [3/4] : 0da05041d2685be5d398fb7d68ec2dad0677f0", - "1 | Code [4/4] : 356b7de14fbc9e", - "2 | Storage deposit limit : POLYX 0.008637", - "3 | Determinism : AllowIndeterminism", - "4 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Contracts : Upload code", - "1 | Code [1/4] : 6339e6e0873351f702d0cbffbdc3b355018424", - "1 | Code [2/4] : 7413e88a3b3f3d722c6eda9ce28d04b6636816", - "1 | Code [3/4] : 0da05041d2685be5d398fb7d68ec2dad0677f0", - "1 | Code [4/4] : 356b7de14fbc9e", - "2 | Storage deposit limit : POLYX 0.008637", - "3 | Determinism : AllowIndeterminism", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1540, - "name": "Contracts_Upload_code", - "blob": "2e030102368c239a6fcc7dc2a9d8fed983e117fcd1710782f908856693f511e26acf6d4613dcef6f0ee634a296ca02944c3a6343a1925a69b86589565853a61ac8195d03aa41f3671806b0290995b165a873474757b34f0ddb95cc9f6ddd3ad9f0898252a6cfe584ca84737098a009bed3aa2344725682ae6aab269f611299e265c0102901f58600d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Upload code", - "1 | Code [1/7] : 368c239a6fcc7dc2a9d8fed983e117fcd17107", - "1 | Code [2/7] : 82f908856693f511e26acf6d4613dcef6f0ee6", - "1 | Code [3/7] : 34a296ca02944c3a6343a1925a69b865895658", - "1 | Code [4/7] : 53a61ac8195d03aa41f3671806b0290995b165", - "1 | Code [5/7] : a873474757b34f0ddb95cc9f6ddd3ad9f08982", - "1 | Code [6/7] : 52a6cfe584ca84737098a009bed3aa23447256", - "1 | Code [7/7] : 82ae6aab269f611299e265c01029", - "2 | Storage deposit limit : POLYX 0.008637", - "3 | Determinism : Deterministic", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Contracts : Upload code", - "1 | Code [1/7] : 368c239a6fcc7dc2a9d8fed983e117fcd17107", - "1 | Code [2/7] : 82f908856693f511e26acf6d4613dcef6f0ee6", - "1 | Code [3/7] : 34a296ca02944c3a6343a1925a69b865895658", - "1 | Code [4/7] : 53a61ac8195d03aa41f3671806b0290995b165", - "1 | Code [5/7] : a873474757b34f0ddb95cc9f6ddd3ad9f08982", - "1 | Code [6/7] : 52a6cfe584ca84737098a009bed3aa23447256", - "1 | Code [7/7] : 82ae6aab269f611299e265c01029", - "2 | Storage deposit limit : POLYX 0.008637", - "3 | Determinism : Deterministic", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1541, - "name": "Contracts_Remove_code", - "blob": "2e046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Remove code", - "1 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Contracts : Remove code", - "1 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1542, - "name": "Contracts_Remove_code", - "blob": "2e046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Remove code", - "1 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Contracts : Remove code", - "1 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1543, - "name": "Contracts_Remove_code", - "blob": "2e046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Remove code", - "1 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Contracts : Remove code", - "1 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1544, - "name": "Contracts_Remove_code", - "blob": "2e046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Remove code", - "1 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Contracts : Remove code", - "1 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1545, - "name": "Contracts_Remove_code", - "blob": "2e046fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d503910103d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Remove code", - "1 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Contracts : Remove code", - "1 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1546, - "name": "Contracts_Set_code", - "blob": "2e0503d15da16dd51a24cf651f08ab363f6fe3141b9b46dc33ab95be43f967772a807d6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Set code", - "1 | Dest [1/2] : d15da16dd51a24cf651f08ab363f6fe3141b9b", - "1 | Dest [2/2] : 46dc33ab95be43f967772a807d", - "2 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "2 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Contracts : Set code", - "1 | Dest [1/2] : d15da16dd51a24cf651f08ab363f6fe3141b9b", - "1 | Dest [2/2] : 46dc33ab95be43f967772a807d", - "2 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "2 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1547, - "name": "Contracts_Set_code", - "blob": "2e050280bbe7a19522829178085039f39696ed48cb1f7c87e3c78c7b5f7b0c64c14153d66fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Set code", - "1 | Dest [1/2] : bbe7a19522829178085039f39696ed48cb1f7c", - "1 | Dest [2/2] : 87e3c78c7b5f7b0c64c14153d6", - "2 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "2 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Contracts : Set code", - "1 | Dest [1/2] : bbe7a19522829178085039f39696ed48cb1f7c", - "1 | Dest [2/2] : 87e3c78c7b5f7b0c64c14153d6", - "2 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "2 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1548, - "name": "Contracts_Set_code", - "blob": "2e0503d15da16dd51a24cf651f08ab363f6fe3141b9b46dc33ab95be43f967772a807d6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Set code", - "1 | Dest [1/2] : d15da16dd51a24cf651f08ab363f6fe3141b9b", - "1 | Dest [2/2] : 46dc33ab95be43f967772a807d", - "2 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "2 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ], - "output_expert": [ - "0 | Contracts : Set code", - "1 | Dest [1/2] : d15da16dd51a24cf651f08ab363f6fe3141b9b", - "1 | Dest [2/2] : 46dc33ab95be43f967772a807d", - "2 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "2 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1549, - "name": "Contracts_Set_code", - "blob": "2e0500b1837d2d9cf166722c8ae384ed0525e5226d169f85d164d61152d3a7b77ee1766fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Set code", - "1 | Dest [1/2] : 2GTfdzXYD3mWWHFXcw1WJMvrrKWm9FoedY9xDA", - "1 | Dest [2/2] : LsguGU5VKA", - "2 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "2 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Contracts : Set code", - "1 | Dest [1/2] : 2GTfdzXYD3mWWHFXcw1WJMvrrKWm9FoedY9xDA", - "1 | Dest [2/2] : LsguGU5VKA", - "2 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "2 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1550, - "name": "Contracts_Set_code", - "blob": "2e05048443ca1c1b22505eecee4ab1426f43fd317d745c6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Set code", - "1 | Dest [1/2] : 8443ca1c1b22505eecee4ab1426f43fd317d74", - "1 | Dest [2/2] : 5c", - "2 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "2 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "3 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Contracts : Set code", - "1 | Dest [1/2] : 8443ca1c1b22505eecee4ab1426f43fd317d74", - "1 | Dest [2/2] : 5c", - "2 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "2 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "3 | Chain : Polymesh", - "4 | Nonce : 50283", - "5 | Tip : POLYX 5552342.355555", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1551, - "name": "Contracts_Call", - "blob": "2e06048443ca1c1b22505eecee4ab1426f43fd317d745c33158139ae28a3dfaac5fe1560a5e9e05c85a8cda901f58601021173831f3e889e6399ee80f2b6711082c1dd85ed94cb6b323ab3681921b1a19b81bcf590f0fd5fc6bc957a3bc5690ff957df10324457218de583dce896287cf0b5145f15f75fec3fadc8d20f7b80b8f046b35c6e30c3f0e3e66bf560a51214af8fea31d5c2e4c768f57ab6d6b2a1bd28524c513f218e3e831901b1a9d707bb00d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Call", - "1 | Dest [1/2] : 8443ca1c1b22505eecee4ab1426f43fd317d74", - "1 | Dest [2/2] : 5c", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789", - "3 | Gas limit [1/2] : 10785", - "3 | Gas limit [2/2] : 10867", - "4 | Storage deposit limit : POLYX 0.008637", - "5 | Data [1/7] : 1173831f3e889e6399ee80f2b6711082c1dd85", - "5 | Data [2/7] : ed94cb6b323ab3681921b1a19b81bcf590f0fd", - "5 | Data [3/7] : 5fc6bc957a3bc5690ff957df10324457218de5", - "5 | Data [4/7] : 83dce896287cf0b5145f15f75fec3fadc8d20f", - "5 | Data [5/7] : 7b80b8f046b35c6e30c3f0e3e66bf560a51214", - "5 | Data [6/7] : af8fea31d5c2e4c768f57ab6d6b2a1bd28524c", - "5 | Data [7/7] : 513f218e3e831901b1a9d707bb00", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Contracts : Call", - "1 | Dest [1/2] : 8443ca1c1b22505eecee4ab1426f43fd317d74", - "1 | Dest [2/2] : 5c", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789", - "3 | Gas limit [1/2] : 10785", - "3 | Gas limit [2/2] : 10867", - "4 | Storage deposit limit : POLYX 0.008637", - "5 | Data [1/7] : 1173831f3e889e6399ee80f2b6711082c1dd85", - "5 | Data [2/7] : ed94cb6b323ab3681921b1a19b81bcf590f0fd", - "5 | Data [3/7] : 5fc6bc957a3bc5690ff957df10324457218de5", - "5 | Data [4/7] : 83dce896287cf0b5145f15f75fec3fadc8d20f", - "5 | Data [5/7] : 7b80b8f046b35c6e30c3f0e3e66bf560a51214", - "5 | Data [6/7] : af8fea31d5c2e4c768f57ab6d6b2a1bd28524c", - "5 | Data [7/7] : 513f218e3e831901b1a9d707bb00", - "6 | Chain : Polymesh", - "7 | Nonce : 0", - "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "8 | Tip [2/2] : 3.456789", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1552, - "name": "Contracts_Call", - "blob": "2e0600b1837d2d9cf166722c8ae384ed0525e5226d169f85d164d61152d3a7b77ee17633158139ae28a3dfaac5fe1560a5e9e05c0ba8c717031abc2a403eb3012b775b33d0d4ab134f26e0b83d533f010147879e3330856791b0a30cbef57b186bc2bbda107087137c51fa6fbf11bb49badf8908c89199a44a6ee3d160503f45eadee081d0ba832118b82a4933ec5d0222d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Call", - "1 | Dest [1/2] : 2GTfdzXYD3mWWHFXcw1WJMvrrKWm9FoedY9xDA", - "1 | Dest [2/2] : LsguGU5VKA", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789", - "3 | Gas limit [1/2] : 206819907061672", - "3 | Gas limit [2/2] : 751800330", - "4 | Storage deposit limit [1/2] : POLYX 1284386844605205854394386895.559", - "4 | Storage deposit limit [2/2] : 543", - "5 | Data [1/4] : 47879e3330856791b0a30cbef57b186bc2bbda", - "5 | Data [2/4] : 107087137c51fa6fbf11bb49badf8908c89199", - "5 | Data [3/4] : a44a6ee3d160503f45eadee081d0ba832118b8", - "5 | Data [4/4] : 2a4933ec5d0222", - "6 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Contracts : Call", - "1 | Dest [1/2] : 2GTfdzXYD3mWWHFXcw1WJMvrrKWm9FoedY9xDA", - "1 | Dest [2/2] : LsguGU5VKA", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789", - "3 | Gas limit [1/2] : 206819907061672", - "3 | Gas limit [2/2] : 751800330", - "4 | Storage deposit limit [1/2] : POLYX 1284386844605205854394386895.559", - "4 | Storage deposit limit [2/2] : 543", - "5 | Data [1/4] : 47879e3330856791b0a30cbef57b186bc2bbda", - "5 | Data [2/4] : 107087137c51fa6fbf11bb49badf8908c89199", - "5 | Data [3/4] : a44a6ee3d160503f45eadee081d0ba832118b8", - "5 | Data [4/4] : 2a4933ec5d0222", - "6 | Chain : Polymesh", - "7 | Nonce : 100", - "8 | Tip : POLYX 5552342.355555", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1553, - "name": "Contracts_Call", - "blob": "2e0600b1837d2d9cf166722c8ae384ed0525e5226d169f85d164d61152d3a7b77ee1768ed73e0d1359aca23b925c6f9e131da1208579bd4c0e012b6340448b830a0bf48a69ef2854d501021173831f3e889e6399ee80f2b6711082c1dd85ed94cb6b323ab3681921b1a19b81bcf590f0fd5fc6bc957a3bc5690ff957df10324457218de583dce896287cf0b5145f15f75fec3fadc8d20f7b80b8f046b35c6e30c3f0e3e66bf560a51214af8fea31d5c2e4c768f57ab6d6b2a1bd28524c513f218e3e831901b1a9d707bb00d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Call", - "1 | Dest [1/2] : 2GTfdzXYD3mWWHFXcw1WJMvrrKWm9FoedY9xDA", - "1 | Dest [2/2] : LsguGU5VKA", - "2 | Amount : POLYX 55.555555", - "3 | Gas limit [1/2] : 11416445363542994009", - "3 | Gas limit [2/2] : 1030406744383201565", - "4 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "4 | Storage deposit limit [2/2] : 115", - "5 | Data [1/7] : 1173831f3e889e6399ee80f2b6711082c1dd85", - "5 | Data [2/7] : ed94cb6b323ab3681921b1a19b81bcf590f0fd", - "5 | Data [3/7] : 5fc6bc957a3bc5690ff957df10324457218de5", - "5 | Data [4/7] : 83dce896287cf0b5145f15f75fec3fadc8d20f", - "5 | Data [5/7] : 7b80b8f046b35c6e30c3f0e3e66bf560a51214", - "5 | Data [6/7] : af8fea31d5c2e4c768f57ab6d6b2a1bd28524c", - "5 | Data [7/7] : 513f218e3e831901b1a9d707bb00", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Contracts : Call", - "1 | Dest [1/2] : 2GTfdzXYD3mWWHFXcw1WJMvrrKWm9FoedY9xDA", - "1 | Dest [2/2] : LsguGU5VKA", - "2 | Amount : POLYX 55.555555", - "3 | Gas limit [1/2] : 11416445363542994009", - "3 | Gas limit [2/2] : 1030406744383201565", - "4 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "4 | Storage deposit limit [2/2] : 115", - "5 | Data [1/7] : 1173831f3e889e6399ee80f2b6711082c1dd85", - "5 | Data [2/7] : ed94cb6b323ab3681921b1a19b81bcf590f0fd", - "5 | Data [3/7] : 5fc6bc957a3bc5690ff957df10324457218de5", - "5 | Data [4/7] : 83dce896287cf0b5145f15f75fec3fadc8d20f", - "5 | Data [5/7] : 7b80b8f046b35c6e30c3f0e3e66bf560a51214", - "5 | Data [6/7] : af8fea31d5c2e4c768f57ab6d6b2a1bd28524c", - "5 | Data [7/7] : 513f218e3e831901b1a9d707bb00", - "6 | Chain : Polymesh", - "7 | Nonce : 50283", - "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "8 | Tip [2/2] : 3.456789", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1554, - "name": "Contracts_Call", - "blob": "2e0600b1837d2d9cf166722c8ae384ed0525e5226d169f85d164d61152d3a7b77ee1766d0f85a8cda901f58601028e052f3965a1a5a99a4ae3618d4179334d3a27c51ac05f7c5bf21cca6aaa184dafa2964dafae333f953c37049f368eb0629e8d4ad14ada72fabbb3f70ce9b6b6d50f1ead62953e13c95a3601d05a11e84f036538ed8348c77c21162db0f25eb223d5f8c9ea35d38e9a470d9288bf574c8263c462f792b9f9b1924231e5363933d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Call", - "1 | Dest [1/2] : 2GTfdzXYD3mWWHFXcw1WJMvrrKWm9FoedY9xDA", - "1 | Dest [2/2] : LsguGU5VKA", - "2 | Amount : POLYX 0.000987", - "3 | Gas limit [1/2] : 10785", - "3 | Gas limit [2/2] : 10867", - "4 | Storage deposit limit : POLYX 0.008637", - "5 | Data [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "5 | Data [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "5 | Data [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "5 | Data [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "5 | Data [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "5 | Data [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "5 | Data [7/7] : c462f792b9f9b1924231e5363933", - "6 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Contracts : Call", - "1 | Dest [1/2] : 2GTfdzXYD3mWWHFXcw1WJMvrrKWm9FoedY9xDA", - "1 | Dest [2/2] : LsguGU5VKA", - "2 | Amount : POLYX 0.000987", - "3 | Gas limit [1/2] : 10785", - "3 | Gas limit [2/2] : 10867", - "4 | Storage deposit limit : POLYX 0.008637", - "5 | Data [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "5 | Data [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "5 | Data [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "5 | Data [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "5 | Data [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "5 | Data [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "5 | Data [7/7] : c462f792b9f9b1924231e5363933", - "6 | Chain : Polymesh", - "7 | Nonce : 1", - "8 | Tip : POLYX 55.555555", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1555, - "name": "Contracts_Call", - "blob": "2e06048443ca1c1b22505eecee4ab1426f43fd317d745c33158139ae28a3dfaac5fe1560a5e9e05c0ba8c717031abc2a403eb3012b6340448b830a0bf48a69ef2854d501016339e6e0873351f702d0cbffbdc3b3550184247413e88a3b3f3d722c6eda9ce28d04b66368160da05041d2685be5d398fb7d68ec2dad0677f0356b7de14fbc9ed5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Call", - "1 | Dest [1/2] : 8443ca1c1b22505eecee4ab1426f43fd317d74", - "1 | Dest [2/2] : 5c", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789", - "3 | Gas limit [1/2] : 206819907061672", - "3 | Gas limit [2/2] : 751800330", - "4 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "4 | Storage deposit limit [2/2] : 115", - "5 | Data [1/4] : 6339e6e0873351f702d0cbffbdc3b355018424", - "5 | Data [2/4] : 7413e88a3b3f3d722c6eda9ce28d04b6636816", - "5 | Data [3/4] : 0da05041d2685be5d398fb7d68ec2dad0677f0", - "5 | Data [4/4] : 356b7de14fbc9e", - "6 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Contracts : Call", - "1 | Dest [1/2] : 8443ca1c1b22505eecee4ab1426f43fd317d74", - "1 | Dest [2/2] : 5c", - "2 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "2 | Amount [2/2] : 3.456789", - "3 | Gas limit [1/2] : 206819907061672", - "3 | Gas limit [2/2] : 751800330", - "4 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "4 | Storage deposit limit [2/2] : 115", - "5 | Data [1/4] : 6339e6e0873351f702d0cbffbdc3b355018424", - "5 | Data [2/4] : 7413e88a3b3f3d722c6eda9ce28d04b6636816", - "5 | Data [3/4] : 0da05041d2685be5d398fb7d68ec2dad0677f0", - "5 | Data [4/4] : 356b7de14fbc9e", - "6 | Chain : Polymesh", - "7 | Nonce : 1", - "8 | Tip : POLYX 1234.56789", - "9 | Era Phase : 61", - "10 | Era Period : 64", - "11 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "11 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1556, - "name": "Contracts_Instantiate_with_code", - "blob": "2e0733158139ae28a3dfaac5fe1560a5e9e05c1359aca23b925c6f9e131da1208579bd4c0e012b6340448b830a0bf48a69ef2854d50102368c239a6fcc7dc2a9d8fed983e117fcd1710782f908856693f511e26acf6d4613dcef6f0ee634a296ca02944c3a6343a1925a69b86589565853a61ac8195d03aa41f3671806b0290995b165a873474757b34f0ddb95cc9f6ddd3ad9f0898252a6cfe584ca84737098a009bed3aa2344725682ae6aab269f611299e265c0102980d1bf52d3cfc6bb2a8c0d557d53484e01677608fc8585158c1bd67087d94f45d601028e052f3965a1a5a99a4ae3618d4179334d3a27c51ac05f7c5bf21cca6aaa184dafa2964dafae333f953c37049f368eb0629e8d4ad14ada72fabbb3f70ce9b6b6d50f1ead62953e13c95a3601d05a11e84f036538ed8348c77c21162db0f25eb223d5f8c9ea35d38e9a470d9288bf574c8263c462f792b9f9b1924231e5363933d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Instantiate with code", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Gas limit [1/2] : 11416445363542994009", - "2 | Gas limit [2/2] : 1030406744383201565", - "3 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "3 | Storage deposit limit [2/2] : 115", - "4 | Code [1/7] : 368c239a6fcc7dc2a9d8fed983e117fcd17107", - "4 | Code [2/7] : 82f908856693f511e26acf6d4613dcef6f0ee6", - "4 | Code [3/7] : 34a296ca02944c3a6343a1925a69b865895658", - "4 | Code [4/7] : 53a61ac8195d03aa41f3671806b0290995b165", - "4 | Code [5/7] : a873474757b34f0ddb95cc9f6ddd3ad9f08982", - "4 | Code [6/7] : 52a6cfe584ca84737098a009bed3aa23447256", - "4 | Code [7/7] : 82ae6aab269f611299e265c01029", - "5 | Data [1/2] : d1bf52d3cfc6bb2a8c0d557d53484e01677608", - "5 | Data [2/2] : fc8585158c1bd67087d94f45d6", - "6 | Salt [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "6 | Salt [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "6 | Salt [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "6 | Salt [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "6 | Salt [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "6 | Salt [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "6 | Salt [7/7] : c462f792b9f9b1924231e5363933", - "7 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Contracts : Instantiate with code", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Gas limit [1/2] : 11416445363542994009", - "2 | Gas limit [2/2] : 1030406744383201565", - "3 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "3 | Storage deposit limit [2/2] : 115", - "4 | Code [1/7] : 368c239a6fcc7dc2a9d8fed983e117fcd17107", - "4 | Code [2/7] : 82f908856693f511e26acf6d4613dcef6f0ee6", - "4 | Code [3/7] : 34a296ca02944c3a6343a1925a69b865895658", - "4 | Code [4/7] : 53a61ac8195d03aa41f3671806b0290995b165", - "4 | Code [5/7] : a873474757b34f0ddb95cc9f6ddd3ad9f08982", - "4 | Code [6/7] : 52a6cfe584ca84737098a009bed3aa23447256", - "4 | Code [7/7] : 82ae6aab269f611299e265c01029", - "5 | Data [1/2] : d1bf52d3cfc6bb2a8c0d557d53484e01677608", - "5 | Data [2/2] : fc8585158c1bd67087d94f45d6", - "6 | Salt [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "6 | Salt [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "6 | Salt [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "6 | Salt [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "6 | Salt [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "6 | Salt [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "6 | Salt [7/7] : c462f792b9f9b1924231e5363933", - "7 | Chain : Polymesh", - "8 | Nonce : 50283", - "9 | Tip : POLYX 55.555555", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1557, - "name": "Contracts_Instantiate_with_code", - "blob": "2e07001359aca23b925c6f9e131da1208579bd4c0e012b6340448b830a0bf48a69ef2854d580486862a8e32ce887f398acfe94d8db07d95ccb7a7d03f93240a5ac9aee51cda801028e052f3965a1a5a99a4ae3618d4179334d3a27c51ac05f7c5bf21cca6aaa184dafa2964dafae333f953c37049f368eb0629e8d4ad14ada72fabbb3f70ce9b6b6d50f1ead62953e13c95a3601d05a11e84f036538ed8348c77c21162db0f25eb223d5f8c9ea35d38e9a470d9288bf574c8263c462f792b9f9b1924231e536393301028e052f3965a1a5a99a4ae3618d4179334d3a27c51ac05f7c5bf21cca6aaa184dafa2964dafae333f953c37049f368eb0629e8d4ad14ada72fabbb3f70ce9b6b6d50f1ead62953e13c95a3601d05a11e84f036538ed8348c77c21162db0f25eb223d5f8c9ea35d38e9a470d9288bf574c8263c462f792b9f9b1924231e5363933d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Instantiate with code", - "1 | Amount : POLYX 0.0", - "2 | Gas limit [1/2] : 11416445363542994009", - "2 | Gas limit [2/2] : 1030406744383201565", - "3 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "3 | Storage deposit limit [2/2] : 115", - "4 | Code [1/2] : 486862a8e32ce887f398acfe94d8db07d95ccb", - "4 | Code [2/2] : 7a7d03f93240a5ac9aee51cda8", - "5 | Data [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "5 | Data [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "5 | Data [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "5 | Data [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "5 | Data [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "5 | Data [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "5 | Data [7/7] : c462f792b9f9b1924231e5363933", - "6 | Salt [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "6 | Salt [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "6 | Salt [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "6 | Salt [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "6 | Salt [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "6 | Salt [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "6 | Salt [7/7] : c462f792b9f9b1924231e5363933", - "7 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Contracts : Instantiate with code", - "1 | Amount : POLYX 0.0", - "2 | Gas limit [1/2] : 11416445363542994009", - "2 | Gas limit [2/2] : 1030406744383201565", - "3 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "3 | Storage deposit limit [2/2] : 115", - "4 | Code [1/2] : 486862a8e32ce887f398acfe94d8db07d95ccb", - "4 | Code [2/2] : 7a7d03f93240a5ac9aee51cda8", - "5 | Data [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "5 | Data [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "5 | Data [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "5 | Data [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "5 | Data [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "5 | Data [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "5 | Data [7/7] : c462f792b9f9b1924231e5363933", - "6 | Salt [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "6 | Salt [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "6 | Salt [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "6 | Salt [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "6 | Salt [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "6 | Salt [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "6 | Salt [7/7] : c462f792b9f9b1924231e5363933", - "7 | Chain : Polymesh", - "8 | Nonce : 1", - "9 | Tip : POLYX 55.555555", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1558, - "name": "Contracts_Instantiate_with_code", - "blob": "2e078ed73e0d0ba8c717031abc2a403eb3012b775b33d0d4ab134f26e0b83d533f80486862a8e32ce887f398acfe94d8db07d95ccb7a7d03f93240a5ac9aee51cda801016339e6e0873351f702d0cbffbdc3b3550184247413e88a3b3f3d722c6eda9ce28d04b66368160da05041d2685be5d398fb7d68ec2dad0677f0356b7de14fbc9e0102368c239a6fcc7dc2a9d8fed983e117fcd1710782f908856693f511e26acf6d4613dcef6f0ee634a296ca02944c3a6343a1925a69b86589565853a61ac8195d03aa41f3671806b0290995b165a873474757b34f0ddb95cc9f6ddd3ad9f0898252a6cfe584ca84737098a009bed3aa2344725682ae6aab269f611299e265c01029d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Instantiate with code", - "1 | Amount : POLYX 55.555555", - "2 | Gas limit [1/2] : 206819907061672", - "2 | Gas limit [2/2] : 751800330", - "3 | Storage deposit limit [1/2] : POLYX 1284386844605205854394386895.559", - "3 | Storage deposit limit [2/2] : 543", - "4 | Code [1/2] : 486862a8e32ce887f398acfe94d8db07d95ccb", - "4 | Code [2/2] : 7a7d03f93240a5ac9aee51cda8", - "5 | Data [1/4] : 6339e6e0873351f702d0cbffbdc3b355018424", - "5 | Data [2/4] : 7413e88a3b3f3d722c6eda9ce28d04b6636816", - "5 | Data [3/4] : 0da05041d2685be5d398fb7d68ec2dad0677f0", - "5 | Data [4/4] : 356b7de14fbc9e", - "6 | Salt [1/7] : 368c239a6fcc7dc2a9d8fed983e117fcd17107", - "6 | Salt [2/7] : 82f908856693f511e26acf6d4613dcef6f0ee6", - "6 | Salt [3/7] : 34a296ca02944c3a6343a1925a69b865895658", - "6 | Salt [4/7] : 53a61ac8195d03aa41f3671806b0290995b165", - "6 | Salt [5/7] : a873474757b34f0ddb95cc9f6ddd3ad9f08982", - "6 | Salt [6/7] : 52a6cfe584ca84737098a009bed3aa23447256", - "6 | Salt [7/7] : 82ae6aab269f611299e265c01029", - "7 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Contracts : Instantiate with code", - "1 | Amount : POLYX 55.555555", - "2 | Gas limit [1/2] : 206819907061672", - "2 | Gas limit [2/2] : 751800330", - "3 | Storage deposit limit [1/2] : POLYX 1284386844605205854394386895.559", - "3 | Storage deposit limit [2/2] : 543", - "4 | Code [1/2] : 486862a8e32ce887f398acfe94d8db07d95ccb", - "4 | Code [2/2] : 7a7d03f93240a5ac9aee51cda8", - "5 | Data [1/4] : 6339e6e0873351f702d0cbffbdc3b355018424", - "5 | Data [2/4] : 7413e88a3b3f3d722c6eda9ce28d04b6636816", - "5 | Data [3/4] : 0da05041d2685be5d398fb7d68ec2dad0677f0", - "5 | Data [4/4] : 356b7de14fbc9e", - "6 | Salt [1/7] : 368c239a6fcc7dc2a9d8fed983e117fcd17107", - "6 | Salt [2/7] : 82f908856693f511e26acf6d4613dcef6f0ee6", - "6 | Salt [3/7] : 34a296ca02944c3a6343a1925a69b865895658", - "6 | Salt [4/7] : 53a61ac8195d03aa41f3671806b0290995b165", - "6 | Salt [5/7] : a873474757b34f0ddb95cc9f6ddd3ad9f08982", - "6 | Salt [6/7] : 52a6cfe584ca84737098a009bed3aa23447256", - "6 | Salt [7/7] : 82ae6aab269f611299e265c01029", - "7 | Chain : Polymesh", - "8 | Nonce : 100", - "9 | Tip : POLYX 55.555555", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1559, - "name": "Contracts_Instantiate_with_code", - "blob": "2e0703d202964985a8cda901f586010147879e3330856791b0a30cbef57b186bc2bbda107087137c51fa6fbf11bb49badf8908c89199a44a6ee3d160503f45eadee081d0ba832118b82a4933ec5d022201028e052f3965a1a5a99a4ae3618d4179334d3a27c51ac05f7c5bf21cca6aaa184dafa2964dafae333f953c37049f368eb0629e8d4ad14ada72fabbb3f70ce9b6b6d50f1ead62953e13c95a3601d05a11e84f036538ed8348c77c21162db0f25eb223d5f8c9ea35d38e9a470d9288bf574c8263c462f792b9f9b1924231e536393301028e052f3965a1a5a99a4ae3618d4179334d3a27c51ac05f7c5bf21cca6aaa184dafa2964dafae333f953c37049f368eb0629e8d4ad14ada72fabbb3f70ce9b6b6d50f1ead62953e13c95a3601d05a11e84f036538ed8348c77c21162db0f25eb223d5f8c9ea35d38e9a470d9288bf574c8263c462f792b9f9b1924231e5363933d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Instantiate with code", - "1 | Amount : POLYX 1234.56789", - "2 | Gas limit [1/2] : 10785", - "2 | Gas limit [2/2] : 10867", - "3 | Storage deposit limit : POLYX 0.008637", - "4 | Code [1/4] : 47879e3330856791b0a30cbef57b186bc2bbda", - "4 | Code [2/4] : 107087137c51fa6fbf11bb49badf8908c89199", - "4 | Code [3/4] : a44a6ee3d160503f45eadee081d0ba832118b8", - "4 | Code [4/4] : 2a4933ec5d0222", - "5 | Data [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "5 | Data [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "5 | Data [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "5 | Data [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "5 | Data [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "5 | Data [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "5 | Data [7/7] : c462f792b9f9b1924231e5363933", - "6 | Salt [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "6 | Salt [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "6 | Salt [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "6 | Salt [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "6 | Salt [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "6 | Salt [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "6 | Salt [7/7] : c462f792b9f9b1924231e5363933", - "7 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Contracts : Instantiate with code", - "1 | Amount : POLYX 1234.56789", - "2 | Gas limit [1/2] : 10785", - "2 | Gas limit [2/2] : 10867", - "3 | Storage deposit limit : POLYX 0.008637", - "4 | Code [1/4] : 47879e3330856791b0a30cbef57b186bc2bbda", - "4 | Code [2/4] : 107087137c51fa6fbf11bb49badf8908c89199", - "4 | Code [3/4] : a44a6ee3d160503f45eadee081d0ba832118b8", - "4 | Code [4/4] : 2a4933ec5d0222", - "5 | Data [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "5 | Data [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "5 | Data [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "5 | Data [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "5 | Data [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "5 | Data [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "5 | Data [7/7] : c462f792b9f9b1924231e5363933", - "6 | Salt [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "6 | Salt [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "6 | Salt [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "6 | Salt [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "6 | Salt [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "6 | Salt [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "6 | Salt [7/7] : c462f792b9f9b1924231e5363933", - "7 | Chain : Polymesh", - "8 | Nonce : 100", - "9 | Tip : POLYX 55.555555", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1560, - "name": "Contracts_Instantiate_with_code", - "blob": "2e078ed73e0d85a8cda9012b6340448b830a0bf48a69ef2854d580486862a8e32ce887f398acfe94d8db07d95ccb7a7d03f93240a5ac9aee51cda80102368c239a6fcc7dc2a9d8fed983e117fcd1710782f908856693f511e26acf6d4613dcef6f0ee634a296ca02944c3a6343a1925a69b86589565853a61ac8195d03aa41f3671806b0290995b165a873474757b34f0ddb95cc9f6ddd3ad9f0898252a6cfe584ca84737098a009bed3aa2344725682ae6aab269f611299e265c0102901028e052f3965a1a5a99a4ae3618d4179334d3a27c51ac05f7c5bf21cca6aaa184dafa2964dafae333f953c37049f368eb0629e8d4ad14ada72fabbb3f70ce9b6b6d50f1ead62953e13c95a3601d05a11e84f036538ed8348c77c21162db0f25eb223d5f8c9ea35d38e9a470d9288bf574c8263c462f792b9f9b1924231e5363933d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Instantiate with code", - "1 | Amount : POLYX 55.555555", - "2 | Gas limit [1/2] : 10785", - "2 | Gas limit [2/2] : 10867", - "3 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "3 | Storage deposit limit [2/2] : 115", - "4 | Code [1/2] : 486862a8e32ce887f398acfe94d8db07d95ccb", - "4 | Code [2/2] : 7a7d03f93240a5ac9aee51cda8", - "5 | Data [1/7] : 368c239a6fcc7dc2a9d8fed983e117fcd17107", - "5 | Data [2/7] : 82f908856693f511e26acf6d4613dcef6f0ee6", - "5 | Data [3/7] : 34a296ca02944c3a6343a1925a69b865895658", - "5 | Data [4/7] : 53a61ac8195d03aa41f3671806b0290995b165", - "5 | Data [5/7] : a873474757b34f0ddb95cc9f6ddd3ad9f08982", - "5 | Data [6/7] : 52a6cfe584ca84737098a009bed3aa23447256", - "5 | Data [7/7] : 82ae6aab269f611299e265c01029", - "6 | Salt [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "6 | Salt [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "6 | Salt [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "6 | Salt [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "6 | Salt [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "6 | Salt [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "6 | Salt [7/7] : c462f792b9f9b1924231e5363933", - "7 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Contracts : Instantiate with code", - "1 | Amount : POLYX 55.555555", - "2 | Gas limit [1/2] : 10785", - "2 | Gas limit [2/2] : 10867", - "3 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "3 | Storage deposit limit [2/2] : 115", - "4 | Code [1/2] : 486862a8e32ce887f398acfe94d8db07d95ccb", - "4 | Code [2/2] : 7a7d03f93240a5ac9aee51cda8", - "5 | Data [1/7] : 368c239a6fcc7dc2a9d8fed983e117fcd17107", - "5 | Data [2/7] : 82f908856693f511e26acf6d4613dcef6f0ee6", - "5 | Data [3/7] : 34a296ca02944c3a6343a1925a69b865895658", - "5 | Data [4/7] : 53a61ac8195d03aa41f3671806b0290995b165", - "5 | Data [5/7] : a873474757b34f0ddb95cc9f6ddd3ad9f08982", - "5 | Data [6/7] : 52a6cfe584ca84737098a009bed3aa23447256", - "5 | Data [7/7] : 82ae6aab269f611299e265c01029", - "6 | Salt [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "6 | Salt [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "6 | Salt [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "6 | Salt [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "6 | Salt [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "6 | Salt [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "6 | Salt [7/7] : c462f792b9f9b1924231e5363933", - "7 | Chain : Polymesh", - "8 | Nonce : 50283", - "9 | Tip : POLYX 55.555555", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1561, - "name": "Contracts_Instantiate", - "blob": "2e080b63ce64c10c050ba8c717031abc2a403eb3012b6340448b830a0bf48a69ef2854d56fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063010147879e3330856791b0a30cbef57b186bc2bbda107087137c51fa6fbf11bb49badf8908c89199a44a6ee3d160503f45eadee081d0ba832118b82a4933ec5d02220102368c239a6fcc7dc2a9d8fed983e117fcd1710782f908856693f511e26acf6d4613dcef6f0ee634a296ca02944c3a6343a1925a69b86589565853a61ac8195d03aa41f3671806b0290995b165a873474757b34f0ddb95cc9f6ddd3ad9f0898252a6cfe584ca84737098a009bed3aa2344725682ae6aab269f611299e265c01029d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Instantiate", - "1 | Amount : POLYX 5552342.355555", - "2 | Gas limit [1/2] : 206819907061672", - "2 | Gas limit [2/2] : 751800330", - "3 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "3 | Storage deposit limit [2/2] : 115", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 47879e3330856791b0a30cbef57b186bc2bbda", - "5 | Data [2/4] : 107087137c51fa6fbf11bb49badf8908c89199", - "5 | Data [3/4] : a44a6ee3d160503f45eadee081d0ba832118b8", - "5 | Data [4/4] : 2a4933ec5d0222", - "6 | Salt [1/7] : 368c239a6fcc7dc2a9d8fed983e117fcd17107", - "6 | Salt [2/7] : 82f908856693f511e26acf6d4613dcef6f0ee6", - "6 | Salt [3/7] : 34a296ca02944c3a6343a1925a69b865895658", - "6 | Salt [4/7] : 53a61ac8195d03aa41f3671806b0290995b165", - "6 | Salt [5/7] : a873474757b34f0ddb95cc9f6ddd3ad9f08982", - "6 | Salt [6/7] : 52a6cfe584ca84737098a009bed3aa23447256", - "6 | Salt [7/7] : 82ae6aab269f611299e265c01029", - "7 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Contracts : Instantiate", - "1 | Amount : POLYX 5552342.355555", - "2 | Gas limit [1/2] : 206819907061672", - "2 | Gas limit [2/2] : 751800330", - "3 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "3 | Storage deposit limit [2/2] : 115", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 47879e3330856791b0a30cbef57b186bc2bbda", - "5 | Data [2/4] : 107087137c51fa6fbf11bb49badf8908c89199", - "5 | Data [3/4] : a44a6ee3d160503f45eadee081d0ba832118b8", - "5 | Data [4/4] : 2a4933ec5d0222", - "6 | Salt [1/7] : 368c239a6fcc7dc2a9d8fed983e117fcd17107", - "6 | Salt [2/7] : 82f908856693f511e26acf6d4613dcef6f0ee6", - "6 | Salt [3/7] : 34a296ca02944c3a6343a1925a69b865895658", - "6 | Salt [4/7] : 53a61ac8195d03aa41f3671806b0290995b165", - "6 | Salt [5/7] : a873474757b34f0ddb95cc9f6ddd3ad9f08982", - "6 | Salt [6/7] : 52a6cfe584ca84737098a009bed3aa23447256", - "6 | Salt [7/7] : 82ae6aab269f611299e265c01029", - "7 | Chain : Polymesh", - "8 | Nonce : 50283", - "9 | Tip : POLYX 1234.56789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1562, - "name": "Contracts_Instantiate", - "blob": "2e088ed73e0d0ba8c717031abc2a403eb3012b775b33d0d4ab134f26e0b83d533f6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40630102368c239a6fcc7dc2a9d8fed983e117fcd1710782f908856693f511e26acf6d4613dcef6f0ee634a296ca02944c3a6343a1925a69b86589565853a61ac8195d03aa41f3671806b0290995b165a873474757b34f0ddb95cc9f6ddd3ad9f0898252a6cfe584ca84737098a009bed3aa2344725682ae6aab269f611299e265c0102980486862a8e32ce887f398acfe94d8db07d95ccb7a7d03f93240a5ac9aee51cda8d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Instantiate", - "1 | Amount : POLYX 55.555555", - "2 | Gas limit [1/2] : 206819907061672", - "2 | Gas limit [2/2] : 751800330", - "3 | Storage deposit limit [1/2] : POLYX 1284386844605205854394386895.559", - "3 | Storage deposit limit [2/2] : 543", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/7] : 368c239a6fcc7dc2a9d8fed983e117fcd17107", - "5 | Data [2/7] : 82f908856693f511e26acf6d4613dcef6f0ee6", - "5 | Data [3/7] : 34a296ca02944c3a6343a1925a69b865895658", - "5 | Data [4/7] : 53a61ac8195d03aa41f3671806b0290995b165", - "5 | Data [5/7] : a873474757b34f0ddb95cc9f6ddd3ad9f08982", - "5 | Data [6/7] : 52a6cfe584ca84737098a009bed3aa23447256", - "5 | Data [7/7] : 82ae6aab269f611299e265c01029", - "6 | Salt [1/2] : 486862a8e32ce887f398acfe94d8db07d95ccb", - "6 | Salt [2/2] : 7a7d03f93240a5ac9aee51cda8", - "7 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Contracts : Instantiate", - "1 | Amount : POLYX 55.555555", - "2 | Gas limit [1/2] : 206819907061672", - "2 | Gas limit [2/2] : 751800330", - "3 | Storage deposit limit [1/2] : POLYX 1284386844605205854394386895.559", - "3 | Storage deposit limit [2/2] : 543", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/7] : 368c239a6fcc7dc2a9d8fed983e117fcd17107", - "5 | Data [2/7] : 82f908856693f511e26acf6d4613dcef6f0ee6", - "5 | Data [3/7] : 34a296ca02944c3a6343a1925a69b865895658", - "5 | Data [4/7] : 53a61ac8195d03aa41f3671806b0290995b165", - "5 | Data [5/7] : a873474757b34f0ddb95cc9f6ddd3ad9f08982", - "5 | Data [6/7] : 52a6cfe584ca84737098a009bed3aa23447256", - "5 | Data [7/7] : 82ae6aab269f611299e265c01029", - "6 | Salt [1/2] : 486862a8e32ce887f398acfe94d8db07d95ccb", - "6 | Salt [2/2] : 7a7d03f93240a5ac9aee51cda8", - "7 | Chain : Polymesh", - "8 | Nonce : 1", - "9 | Tip : POLYX 1234.56789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1563, - "name": "Contracts_Instantiate", - "blob": "2e080b63ce64c10c051359aca23b925c6f9e131da1208579bd4c0e01f5866fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f406301016339e6e0873351f702d0cbffbdc3b3550184247413e88a3b3f3d722c6eda9ce28d04b66368160da05041d2685be5d398fb7d68ec2dad0677f0356b7de14fbc9e01021173831f3e889e6399ee80f2b6711082c1dd85ed94cb6b323ab3681921b1a19b81bcf590f0fd5fc6bc957a3bc5690ff957df10324457218de583dce896287cf0b5145f15f75fec3fadc8d20f7b80b8f046b35c6e30c3f0e3e66bf560a51214af8fea31d5c2e4c768f57ab6d6b2a1bd28524c513f218e3e831901b1a9d707bb00d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Instantiate", - "1 | Amount : POLYX 5552342.355555", - "2 | Gas limit [1/2] : 11416445363542994009", - "2 | Gas limit [2/2] : 1030406744383201565", - "3 | Storage deposit limit : POLYX 0.008637", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 6339e6e0873351f702d0cbffbdc3b355018424", - "5 | Data [2/4] : 7413e88a3b3f3d722c6eda9ce28d04b6636816", - "5 | Data [3/4] : 0da05041d2685be5d398fb7d68ec2dad0677f0", - "5 | Data [4/4] : 356b7de14fbc9e", - "6 | Salt [1/7] : 1173831f3e889e6399ee80f2b6711082c1dd85", - "6 | Salt [2/7] : ed94cb6b323ab3681921b1a19b81bcf590f0fd", - "6 | Salt [3/7] : 5fc6bc957a3bc5690ff957df10324457218de5", - "6 | Salt [4/7] : 83dce896287cf0b5145f15f75fec3fadc8d20f", - "6 | Salt [5/7] : 7b80b8f046b35c6e30c3f0e3e66bf560a51214", - "6 | Salt [6/7] : af8fea31d5c2e4c768f57ab6d6b2a1bd28524c", - "6 | Salt [7/7] : 513f218e3e831901b1a9d707bb00", - "7 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Contracts : Instantiate", - "1 | Amount : POLYX 5552342.355555", - "2 | Gas limit [1/2] : 11416445363542994009", - "2 | Gas limit [2/2] : 1030406744383201565", - "3 | Storage deposit limit : POLYX 0.008637", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 6339e6e0873351f702d0cbffbdc3b355018424", - "5 | Data [2/4] : 7413e88a3b3f3d722c6eda9ce28d04b6636816", - "5 | Data [3/4] : 0da05041d2685be5d398fb7d68ec2dad0677f0", - "5 | Data [4/4] : 356b7de14fbc9e", - "6 | Salt [1/7] : 1173831f3e889e6399ee80f2b6711082c1dd85", - "6 | Salt [2/7] : ed94cb6b323ab3681921b1a19b81bcf590f0fd", - "6 | Salt [3/7] : 5fc6bc957a3bc5690ff957df10324457218de5", - "6 | Salt [4/7] : 83dce896287cf0b5145f15f75fec3fadc8d20f", - "6 | Salt [5/7] : 7b80b8f046b35c6e30c3f0e3e66bf560a51214", - "6 | Salt [6/7] : af8fea31d5c2e4c768f57ab6d6b2a1bd28524c", - "6 | Salt [7/7] : 513f218e3e831901b1a9d707bb00", - "7 | Chain : Polymesh", - "8 | Nonce : 0", - "9 | Tip : POLYX 55.555555", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1564, - "name": "Contracts_Instantiate", - "blob": "2e0833158139ae28a3dfaac5fe1560a5e9e05c0ba8c717031abc2a403eb3012b775b33d0d4ab134f26e0b83d533f6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40630102368c239a6fcc7dc2a9d8fed983e117fcd1710782f908856693f511e26acf6d4613dcef6f0ee634a296ca02944c3a6343a1925a69b86589565853a61ac8195d03aa41f3671806b0290995b165a873474757b34f0ddb95cc9f6ddd3ad9f0898252a6cfe584ca84737098a009bed3aa2344725682ae6aab269f611299e265c0102980d1bf52d3cfc6bb2a8c0d557d53484e01677608fc8585158c1bd67087d94f45d6d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Instantiate", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Gas limit [1/2] : 206819907061672", - "2 | Gas limit [2/2] : 751800330", - "3 | Storage deposit limit [1/2] : POLYX 1284386844605205854394386895.559", - "3 | Storage deposit limit [2/2] : 543", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/7] : 368c239a6fcc7dc2a9d8fed983e117fcd17107", - "5 | Data [2/7] : 82f908856693f511e26acf6d4613dcef6f0ee6", - "5 | Data [3/7] : 34a296ca02944c3a6343a1925a69b865895658", - "5 | Data [4/7] : 53a61ac8195d03aa41f3671806b0290995b165", - "5 | Data [5/7] : a873474757b34f0ddb95cc9f6ddd3ad9f08982", - "5 | Data [6/7] : 52a6cfe584ca84737098a009bed3aa23447256", - "5 | Data [7/7] : 82ae6aab269f611299e265c01029", - "6 | Salt [1/2] : d1bf52d3cfc6bb2a8c0d557d53484e01677608", - "6 | Salt [2/2] : fc8585158c1bd67087d94f45d6", - "7 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Contracts : Instantiate", - "1 | Amount [1/2] : POLYX 12345678901234567890123456789012", - "1 | Amount [2/2] : 3.456789", - "2 | Gas limit [1/2] : 206819907061672", - "2 | Gas limit [2/2] : 751800330", - "3 | Storage deposit limit [1/2] : POLYX 1284386844605205854394386895.559", - "3 | Storage deposit limit [2/2] : 543", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/7] : 368c239a6fcc7dc2a9d8fed983e117fcd17107", - "5 | Data [2/7] : 82f908856693f511e26acf6d4613dcef6f0ee6", - "5 | Data [3/7] : 34a296ca02944c3a6343a1925a69b865895658", - "5 | Data [4/7] : 53a61ac8195d03aa41f3671806b0290995b165", - "5 | Data [5/7] : a873474757b34f0ddb95cc9f6ddd3ad9f08982", - "5 | Data [6/7] : 52a6cfe584ca84737098a009bed3aa23447256", - "5 | Data [7/7] : 82ae6aab269f611299e265c01029", - "6 | Salt [1/2] : d1bf52d3cfc6bb2a8c0d557d53484e01677608", - "6 | Salt [2/2] : fc8585158c1bd67087d94f45d6", - "7 | Chain : Polymesh", - "8 | Nonce : 1", - "9 | Tip : POLYX 55.555555", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1565, - "name": "Contracts_Instantiate", - "blob": "2e080b63ce64c10c0585a8cda9012b6340448b830a0bf48a69ef2854d56fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f406380486862a8e32ce887f398acfe94d8db07d95ccb7a7d03f93240a5ac9aee51cda801028e052f3965a1a5a99a4ae3618d4179334d3a27c51ac05f7c5bf21cca6aaa184dafa2964dafae333f953c37049f368eb0629e8d4ad14ada72fabbb3f70ce9b6b6d50f1ead62953e13c95a3601d05a11e84f036538ed8348c77c21162db0f25eb223d5f8c9ea35d38e9a470d9288bf574c8263c462f792b9f9b1924231e5363933d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Contracts : Instantiate", - "1 | Amount : POLYX 5552342.355555", - "2 | Gas limit [1/2] : 10785", - "2 | Gas limit [2/2] : 10867", - "3 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "3 | Storage deposit limit [2/2] : 115", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/2] : 486862a8e32ce887f398acfe94d8db07d95ccb", - "5 | Data [2/2] : 7a7d03f93240a5ac9aee51cda8", - "6 | Salt [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "6 | Salt [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "6 | Salt [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "6 | Salt [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "6 | Salt [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "6 | Salt [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "6 | Salt [7/7] : c462f792b9f9b1924231e5363933", - "7 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Contracts : Instantiate", - "1 | Amount : POLYX 5552342.355555", - "2 | Gas limit [1/2] : 10785", - "2 | Gas limit [2/2] : 10867", - "3 | Storage deposit limit [1/2] : POLYX 4326821080061079462901958719.062", - "3 | Storage deposit limit [2/2] : 115", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/2] : 486862a8e32ce887f398acfe94d8db07d95ccb", - "5 | Data [2/2] : 7a7d03f93240a5ac9aee51cda8", - "6 | Salt [1/7] : 8e052f3965a1a5a99a4ae3618d4179334d3a27", - "6 | Salt [2/7] : c51ac05f7c5bf21cca6aaa184dafa2964dafae", - "6 | Salt [3/7] : 333f953c37049f368eb0629e8d4ad14ada72fa", - "6 | Salt [4/7] : bbb3f70ce9b6b6d50f1ead62953e13c95a3601", - "6 | Salt [5/7] : d05a11e84f036538ed8348c77c21162db0f25e", - "6 | Salt [6/7] : b223d5f8c9ea35d38e9a470d9288bf574c8263", - "6 | Salt [7/7] : c462f792b9f9b1924231e5363933", - "7 | Chain : Polymesh", - "8 | Nonce : 50283", - "9 | Tip : POLYX 5552342.355555", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1566, - "name": "Polymeshcontracts_Instantiate_with_code_perms", - "blob": "2f00345fe7fc9c23bfb62334c8ca2c746fee1359aca23b925c6f9e131da1208579bd4c0e01e3b54f03000000000000000000000000100c293435100c293435100e2a0c49000000d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcontracts : Instantiate with code perms", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 11416445363542994009", - "2 | Gas limit [2/2] : 1030406744383201565", - "3 | Storage deposit limit : POLYX 55.555555", - "4 | Code [1/4] : 12", - "4 | Code [2/4] : 41", - "4 | Code [3/4] : 52", - "4 | Code [4/4] : 53", - "5 | Data [1/4] : 12", - "5 | Data [2/4] : 41", - "5 | Data [3/4] : 52", - "5 | Data [4/4] : 53", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73", - "7 | Perms [1/3] : Whole", - "7 | Perms [2/3] : Whole", - "7 | Perms [3/3] : Whole", - "8 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Polymeshcontracts : Instantiate with code perms", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 11416445363542994009", - "2 | Gas limit [2/2] : 1030406744383201565", - "3 | Storage deposit limit : POLYX 55.555555", - "4 | Code [1/4] : 12", - "4 | Code [2/4] : 41", - "4 | Code [3/4] : 52", - "4 | Code [4/4] : 53", - "5 | Data [1/4] : 12", - "5 | Data [2/4] : 41", - "5 | Data [3/4] : 52", - "5 | Data [4/4] : 53", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73", - "7 | Perms [1/3] : Whole", - "7 | Perms [2/3] : Whole", - "7 | Perms [3/3] : Whole", - "8 | Chain : Polymesh", - "9 | Nonce : 1", - "10 | Tip : POLYX 1234.56789", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1567, - "name": "Polymeshcontracts_Instantiate_with_code_perms", - "blob": "2f00345fe7fc9c23bfb62334c8ca2c746fee0ba8c717031abc2a403eb301158139ae28a3dfaac5fe1560a5e9e05c10200b200b100c293435100c293435000000d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcontracts : Instantiate with code perms", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 206819907061672", - "2 | Gas limit [2/2] : 751800330", - "3 | Storage deposit limit [1/2] : POLYX 12345678901234567890123456789012", - "3 | Storage deposit limit [2/2] : 3.456789", - "4 | Code [1/4] : 32", - "4 | Code [2/4] : 11", - "4 | Code [3/4] : 32", - "4 | Code [4/4] : 11", - "5 | Data [1/4] : 12", - "5 | Data [2/4] : 41", - "5 | Data [3/4] : 52", - "5 | Data [4/4] : 53", - "6 | Salt [1/4] : 12", - "6 | Salt [2/4] : 41", - "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", - "7 | Perms [1/3] : Whole", - "7 | Perms [2/3] : Whole", - "7 | Perms [3/3] : Whole", - "8 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Polymeshcontracts : Instantiate with code perms", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 206819907061672", - "2 | Gas limit [2/2] : 751800330", - "3 | Storage deposit limit [1/2] : POLYX 12345678901234567890123456789012", - "3 | Storage deposit limit [2/2] : 3.456789", - "4 | Code [1/4] : 32", - "4 | Code [2/4] : 11", - "4 | Code [3/4] : 32", - "4 | Code [4/4] : 11", - "5 | Data [1/4] : 12", - "5 | Data [2/4] : 41", - "5 | Data [3/4] : 52", - "5 | Data [4/4] : 53", - "6 | Salt [1/4] : 12", - "6 | Salt [2/4] : 41", - "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", - "7 | Perms [1/3] : Whole", - "7 | Perms [2/3] : Whole", - "7 | Perms [3/3] : Whole", - "8 | Chain : Polymesh", - "9 | Nonce : 50283", - "10 | Tip : POLYX 1234.56789", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1568, - "name": "Polymeshcontracts_Instantiate_with_code_perms", - "blob": "2f00345fe7fc9c23bfb62334c8ca2c746fee0ba8c717031abc2a403eb301d2029649000000000000000000000000100d0c132310200b200b100c29343501085449434b45522d31323836335449434b45522d313238373301042050414c4c45545f4101082c44697370617463684142432c446973706174636858595a0104ec3afa636af4d0af311f6b516f8cfabc37e3000e7a918e0ae166fca21b0ef2270140e2010000000000d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcontracts : Instantiate with code perms", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 206819907061672", - "2 | Gas limit [2/2] : 751800330", - "3 | Storage deposit limit : POLYX 1234.56789", - "4 | Code [1/4] : 13", - "4 | Code [2/4] : 12", - "4 | Code [3/4] : 19", - "4 | Code [4/4] : 35", - "5 | Data [1/4] : 32", - "5 | Data [2/4] : 11", - "5 | Data [3/4] : 32", - "5 | Data [4/4] : 11", - "6 | Salt [1/4] : 12", - "6 | Salt [2/4] : 41", - "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", - "7 | Perms [1/12] : These", - "7 | Perms [2/12] : TICKER-12863", - "7 | Perms [3/12] : TICKER-12873", - "7 | Perms [4/12] : These", - "7 | Perms [5/12] : PALLET_A", - "7 | Perms [6/12] : These", - "7 | Perms [7/12] : DispatchABC", - "7 | Perms [8/12] : DispatchXYZ", - "7 | Perms [9/12] : These", - "7 | Perms [10/12] : ec3afa636af4d0af311f6b516f8cfabc37e300", - "7 | Perms [11/12] : 0e7a918e0ae166fca21b0ef227", - "7 | Perms [12/12] : 123456", - "8 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Polymeshcontracts : Instantiate with code perms", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 206819907061672", - "2 | Gas limit [2/2] : 751800330", - "3 | Storage deposit limit : POLYX 1234.56789", - "4 | Code [1/4] : 13", - "4 | Code [2/4] : 12", - "4 | Code [3/4] : 19", - "4 | Code [4/4] : 35", - "5 | Data [1/4] : 32", - "5 | Data [2/4] : 11", - "5 | Data [3/4] : 32", - "5 | Data [4/4] : 11", - "6 | Salt [1/4] : 12", - "6 | Salt [2/4] : 41", - "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", - "7 | Perms [1/12] : These", - "7 | Perms [2/12] : TICKER-12863", - "7 | Perms [3/12] : TICKER-12873", - "7 | Perms [4/12] : These", - "7 | Perms [5/12] : PALLET_A", - "7 | Perms [6/12] : These", - "7 | Perms [7/12] : DispatchABC", - "7 | Perms [8/12] : DispatchXYZ", - "7 | Perms [9/12] : These", - "7 | Perms [10/12] : ec3afa636af4d0af311f6b516f8cfabc37e300", - "7 | Perms [11/12] : 0e7a918e0ae166fca21b0ef227", - "7 | Perms [12/12] : 123456", - "8 | Chain : Polymesh", - "9 | Nonce : 100", - "10 | Tip : POLYX 5552342.355555", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1569, - "name": "Polymeshcontracts_Instantiate_with_code_perms", - "blob": "2f00345fe7fc9c23bfb62334c8ca2c746fee1359aca23b925c6f9e131da1208579bd4c0e01158139ae28a3dfaac5fe1560a5e9e05c10200b200b100d0c1323100d0c1323000000d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcontracts : Instantiate with code perms", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 11416445363542994009", - "2 | Gas limit [2/2] : 1030406744383201565", - "3 | Storage deposit limit [1/2] : POLYX 12345678901234567890123456789012", - "3 | Storage deposit limit [2/2] : 3.456789", - "4 | Code [1/4] : 32", - "4 | Code [2/4] : 11", - "4 | Code [3/4] : 32", - "4 | Code [4/4] : 11", - "5 | Data [1/4] : 13", - "5 | Data [2/4] : 12", - "5 | Data [3/4] : 19", - "5 | Data [4/4] : 35", - "6 | Salt [1/4] : 13", - "6 | Salt [2/4] : 12", - "6 | Salt [3/4] : 19", - "6 | Salt [4/4] : 35", - "7 | Perms [1/3] : Whole", - "7 | Perms [2/3] : Whole", - "7 | Perms [3/3] : Whole", - "8 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Polymeshcontracts : Instantiate with code perms", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 11416445363542994009", - "2 | Gas limit [2/2] : 1030406744383201565", - "3 | Storage deposit limit [1/2] : POLYX 12345678901234567890123456789012", - "3 | Storage deposit limit [2/2] : 3.456789", - "4 | Code [1/4] : 32", - "4 | Code [2/4] : 11", - "4 | Code [3/4] : 32", - "4 | Code [4/4] : 11", - "5 | Data [1/4] : 13", - "5 | Data [2/4] : 12", - "5 | Data [3/4] : 19", - "5 | Data [4/4] : 35", - "6 | Salt [1/4] : 13", - "6 | Salt [2/4] : 12", - "6 | Salt [3/4] : 19", - "6 | Salt [4/4] : 35", - "7 | Perms [1/3] : Whole", - "7 | Perms [2/3] : Whole", - "7 | Perms [3/3] : Whole", - "8 | Chain : Polymesh", - "9 | Nonce : 100", - "10 | Tip : POLYX 55.555555", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1570, - "name": "Polymeshcontracts_Instantiate_with_code_perms", - "blob": "2f00345fe7fc9c23bfb62334c8ca2c746fee1359aca23b925c6f9e131da1208579bd4c0e01db030000000000000000000000000000100d0c1323100c293435100c293435000000d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcontracts : Instantiate with code perms", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 11416445363542994009", - "2 | Gas limit [2/2] : 1030406744383201565", - "3 | Storage deposit limit : POLYX 0.000987", - "4 | Code [1/4] : 13", - "4 | Code [2/4] : 12", - "4 | Code [3/4] : 19", - "4 | Code [4/4] : 35", - "5 | Data [1/4] : 12", - "5 | Data [2/4] : 41", - "5 | Data [3/4] : 52", - "5 | Data [4/4] : 53", - "6 | Salt [1/4] : 12", - "6 | Salt [2/4] : 41", - "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", - "7 | Perms [1/3] : Whole", - "7 | Perms [2/3] : Whole", - "7 | Perms [3/3] : Whole", - "8 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Polymeshcontracts : Instantiate with code perms", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 11416445363542994009", - "2 | Gas limit [2/2] : 1030406744383201565", - "3 | Storage deposit limit : POLYX 0.000987", - "4 | Code [1/4] : 13", - "4 | Code [2/4] : 12", - "4 | Code [3/4] : 19", - "4 | Code [4/4] : 35", - "5 | Data [1/4] : 12", - "5 | Data [2/4] : 41", - "5 | Data [3/4] : 52", - "5 | Data [4/4] : 53", - "6 | Salt [1/4] : 12", - "6 | Salt [2/4] : 41", - "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", - "7 | Perms [1/3] : Whole", - "7 | Perms [2/3] : Whole", - "7 | Perms [3/3] : Whole", - "8 | Chain : Polymesh", - "9 | Nonce : 2339", - "10 | Tip : POLYX 55.555555", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1571, - "name": "Polymeshcontracts_Instantiate_with_hash_perms", - "blob": "2f01345fe7fc9c23bfb62334c8ca2c746fee0ba8c717031abc2a403eb30163ce64c10c05000000000000000000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f406310200b200b100e2a0c49000000d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcontracts : Instantiate with hash perms", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 206819907061672", - "2 | Gas limit [2/2] : 751800330", - "3 | Storage deposit limit : POLYX 5552342.355555", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 32", - "5 | Data [2/4] : 11", - "5 | Data [3/4] : 32", - "5 | Data [4/4] : 11", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73", - "7 | Perms [1/3] : Whole", - "7 | Perms [2/3] : Whole", - "7 | Perms [3/3] : Whole", - "8 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Polymeshcontracts : Instantiate with hash perms", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 206819907061672", - "2 | Gas limit [2/2] : 751800330", - "3 | Storage deposit limit : POLYX 5552342.355555", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 32", - "5 | Data [2/4] : 11", - "5 | Data [3/4] : 32", - "5 | Data [4/4] : 11", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73", - "7 | Perms [1/3] : Whole", - "7 | Perms [2/3] : Whole", - "7 | Perms [3/3] : Whole", - "8 | Chain : Polymesh", - "9 | Nonce : 2339", - "10 | Tip : POLYX 1234.56789", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1572, - "name": "Polymeshcontracts_Instantiate_with_hash_perms", - "blob": "2f01345fe7fc9c23bfb62334c8ca2c746fee1359aca23b925c6f9e131da1208579bd4c0e01e3b54f030000000000000000000000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063100d0c1323100c29343501085449434b45522d31323836335449434b45522d313238373301042050414c4c45545f4101082c44697370617463684142432c446973706174636858595a0104ec3afa636af4d0af311f6b516f8cfabc37e3000e7a918e0ae166fca21b0ef2270140e2010000000000d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcontracts : Instantiate with hash perms", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 11416445363542994009", - "2 | Gas limit [2/2] : 1030406744383201565", - "3 | Storage deposit limit : POLYX 55.555555", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 13", - "5 | Data [2/4] : 12", - "5 | Data [3/4] : 19", - "5 | Data [4/4] : 35", - "6 | Salt [1/4] : 12", - "6 | Salt [2/4] : 41", - "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", - "7 | Perms [1/12] : These", - "7 | Perms [2/12] : TICKER-12863", - "7 | Perms [3/12] : TICKER-12873", - "7 | Perms [4/12] : These", - "7 | Perms [5/12] : PALLET_A", - "7 | Perms [6/12] : These", - "7 | Perms [7/12] : DispatchABC", - "7 | Perms [8/12] : DispatchXYZ", - "7 | Perms [9/12] : These", - "7 | Perms [10/12] : ec3afa636af4d0af311f6b516f8cfabc37e300", - "7 | Perms [11/12] : 0e7a918e0ae166fca21b0ef227", - "7 | Perms [12/12] : 123456" - ], - "output_expert": [ - "0 | Polymeshcontracts : Instantiate with hash perms", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 11416445363542994009", - "2 | Gas limit [2/2] : 1030406744383201565", - "3 | Storage deposit limit : POLYX 55.555555", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 13", - "5 | Data [2/4] : 12", - "5 | Data [3/4] : 19", - "5 | Data [4/4] : 35", - "6 | Salt [1/4] : 12", - "6 | Salt [2/4] : 41", - "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", - "7 | Perms [1/12] : These", - "7 | Perms [2/12] : TICKER-12863", - "7 | Perms [3/12] : TICKER-12873", - "7 | Perms [4/12] : These", - "7 | Perms [5/12] : PALLET_A", - "7 | Perms [6/12] : These", - "7 | Perms [7/12] : DispatchABC", - "7 | Perms [8/12] : DispatchXYZ", - "7 | Perms [9/12] : These", - "7 | Perms [10/12] : ec3afa636af4d0af311f6b516f8cfabc37e300", - "7 | Perms [11/12] : 0e7a918e0ae166fca21b0ef227", - "7 | Perms [12/12] : 123456", - "8 | Chain : Polymesh", - "9 | Nonce : 100", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1573, - "name": "Polymeshcontracts_Instantiate_with_hash_perms", - "blob": "2f01345fe7fc9c23bfb62334c8ca2c746fee0ba8c717031abc2a403eb301d20296490000000000000000000000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063100e2a0c49100e2a0c4901085449434b45522d31323836335449434b45522d313238373301042050414c4c45545f4101082c44697370617463684142432c446973706174636858595a0104ec3afa636af4d0af311f6b516f8cfabc37e3000e7a918e0ae166fca21b0ef2270140e2010000000000d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcontracts : Instantiate with hash perms", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 206819907061672", - "2 | Gas limit [2/2] : 751800330", - "3 | Storage deposit limit : POLYX 1234.56789", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 14", - "5 | Data [2/4] : 42", - "5 | Data [3/4] : 12", - "5 | Data [4/4] : 73", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73", - "7 | Perms [1/12] : These", - "7 | Perms [2/12] : TICKER-12863", - "7 | Perms [3/12] : TICKER-12873", - "7 | Perms [4/12] : These", - "7 | Perms [5/12] : PALLET_A", - "7 | Perms [6/12] : These", - "7 | Perms [7/12] : DispatchABC", - "7 | Perms [8/12] : DispatchXYZ", - "7 | Perms [9/12] : These", - "7 | Perms [10/12] : ec3afa636af4d0af311f6b516f8cfabc37e300", - "7 | Perms [11/12] : 0e7a918e0ae166fca21b0ef227", - "7 | Perms [12/12] : 123456", - "8 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Polymeshcontracts : Instantiate with hash perms", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 206819907061672", - "2 | Gas limit [2/2] : 751800330", - "3 | Storage deposit limit : POLYX 1234.56789", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 14", - "5 | Data [2/4] : 42", - "5 | Data [3/4] : 12", - "5 | Data [4/4] : 73", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73", - "7 | Perms [1/12] : These", - "7 | Perms [2/12] : TICKER-12863", - "7 | Perms [3/12] : TICKER-12873", - "7 | Perms [4/12] : These", - "7 | Perms [5/12] : PALLET_A", - "7 | Perms [6/12] : These", - "7 | Perms [7/12] : DispatchABC", - "7 | Perms [8/12] : DispatchXYZ", - "7 | Perms [9/12] : These", - "7 | Perms [10/12] : ec3afa636af4d0af311f6b516f8cfabc37e300", - "7 | Perms [11/12] : 0e7a918e0ae166fca21b0ef227", - "7 | Perms [12/12] : 123456", - "8 | Chain : Polymesh", - "9 | Nonce : 0", - "10 | Tip : POLYX 1234.56789", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1574, - "name": "Polymeshcontracts_Instantiate_with_hash_perms", - "blob": "2f01345fe7fc9c23bfb62334c8ca2c746fee85a8cda901158139ae28a3dfaac5fe1560a5e9e05c6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f406310200b200b100c29343501085449434b45522d31323836335449434b45522d313238373301042050414c4c45545f4101082c44697370617463684142432c446973706174636858595a0104ec3afa636af4d0af311f6b516f8cfabc37e3000e7a918e0ae166fca21b0ef2270140e2010000000000d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcontracts : Instantiate with hash perms", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 10785", - "2 | Gas limit [2/2] : 10867", - "3 | Storage deposit limit [1/2] : POLYX 12345678901234567890123456789012", - "3 | Storage deposit limit [2/2] : 3.456789", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 32", - "5 | Data [2/4] : 11", - "5 | Data [3/4] : 32", - "5 | Data [4/4] : 11", - "6 | Salt [1/4] : 12", - "6 | Salt [2/4] : 41", - "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", - "7 | Perms [1/12] : These", - "7 | Perms [2/12] : TICKER-12863", - "7 | Perms [3/12] : TICKER-12873", - "7 | Perms [4/12] : These", - "7 | Perms [5/12] : PALLET_A", - "7 | Perms [6/12] : These", - "7 | Perms [7/12] : DispatchABC", - "7 | Perms [8/12] : DispatchXYZ", - "7 | Perms [9/12] : These", - "7 | Perms [10/12] : ec3afa636af4d0af311f6b516f8cfabc37e300", - "7 | Perms [11/12] : 0e7a918e0ae166fca21b0ef227", - "7 | Perms [12/12] : 123456", - "8 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Polymeshcontracts : Instantiate with hash perms", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 10785", - "2 | Gas limit [2/2] : 10867", - "3 | Storage deposit limit [1/2] : POLYX 12345678901234567890123456789012", - "3 | Storage deposit limit [2/2] : 3.456789", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 32", - "5 | Data [2/4] : 11", - "5 | Data [3/4] : 32", - "5 | Data [4/4] : 11", - "6 | Salt [1/4] : 12", - "6 | Salt [2/4] : 41", - "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", - "7 | Perms [1/12] : These", - "7 | Perms [2/12] : TICKER-12863", - "7 | Perms [3/12] : TICKER-12873", - "7 | Perms [4/12] : These", - "7 | Perms [5/12] : PALLET_A", - "7 | Perms [6/12] : These", - "7 | Perms [7/12] : DispatchABC", - "7 | Perms [8/12] : DispatchXYZ", - "7 | Perms [9/12] : These", - "7 | Perms [10/12] : ec3afa636af4d0af311f6b516f8cfabc37e300", - "7 | Perms [11/12] : 0e7a918e0ae166fca21b0ef227", - "7 | Perms [12/12] : 123456", - "8 | Chain : Polymesh", - "9 | Nonce : 50283", - "10 | Tip : POLYX 55.555555", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1575, - "name": "Polymeshcontracts_Instantiate_with_hash_perms", - "blob": "2f01345fe7fc9c23bfb62334c8ca2c746fee0ba8c717031abc2a403eb30163ce64c10c05000000000000000000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063100d0c132310200b200b01085449434b45522d31323836335449434b45522d313238373301042050414c4c45545f4101082c44697370617463684142432c446973706174636858595a0104ec3afa636af4d0af311f6b516f8cfabc37e3000e7a918e0ae166fca21b0ef2270140e2010000000000d503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcontracts : Instantiate with hash perms", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 206819907061672", - "2 | Gas limit [2/2] : 751800330", - "3 | Storage deposit limit : POLYX 5552342.355555", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 13", - "5 | Data [2/4] : 12", - "5 | Data [3/4] : 19", - "5 | Data [4/4] : 35", - "6 | Salt [1/4] : 32", - "6 | Salt [2/4] : 11", - "6 | Salt [3/4] : 32", - "6 | Salt [4/4] : 11", - "7 | Perms [1/12] : These", - "7 | Perms [2/12] : TICKER-12863", - "7 | Perms [3/12] : TICKER-12873", - "7 | Perms [4/12] : These", - "7 | Perms [5/12] : PALLET_A", - "7 | Perms [6/12] : These", - "7 | Perms [7/12] : DispatchABC", - "7 | Perms [8/12] : DispatchXYZ", - "7 | Perms [9/12] : These", - "7 | Perms [10/12] : ec3afa636af4d0af311f6b516f8cfabc37e300", - "7 | Perms [11/12] : 0e7a918e0ae166fca21b0ef227", - "7 | Perms [12/12] : 123456", - "8 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "8 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Polymeshcontracts : Instantiate with hash perms", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 206819907061672", - "2 | Gas limit [2/2] : 751800330", - "3 | Storage deposit limit : POLYX 5552342.355555", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 13", - "5 | Data [2/4] : 12", - "5 | Data [3/4] : 19", - "5 | Data [4/4] : 35", - "6 | Salt [1/4] : 32", - "6 | Salt [2/4] : 11", - "6 | Salt [3/4] : 32", - "6 | Salt [4/4] : 11", - "7 | Perms [1/12] : These", - "7 | Perms [2/12] : TICKER-12863", - "7 | Perms [3/12] : TICKER-12873", - "7 | Perms [4/12] : These", - "7 | Perms [5/12] : PALLET_A", - "7 | Perms [6/12] : These", - "7 | Perms [7/12] : DispatchABC", - "7 | Perms [8/12] : DispatchXYZ", - "7 | Perms [9/12] : These", - "7 | Perms [10/12] : ec3afa636af4d0af311f6b516f8cfabc37e300", - "7 | Perms [11/12] : 0e7a918e0ae166fca21b0ef227", - "7 | Perms [12/12] : 123456", - "8 | Chain : Polymesh", - "9 | Nonce : 50283", - "10 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "10 | Tip [2/2] : 3.456789", - "11 | Era Phase : 61", - "12 | Era Period : 64", - "13 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "13 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1576, - "name": "Polymeshcontracts_Update_call_runtime_whitelist", - "blob": "2f0200d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcontracts : Update call runtime whitelist", - "1 | Updates : ", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Polymeshcontracts : Update call runtime whitelist", - "1 | Updates : ", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1577, - "name": "Polymeshcontracts_Update_call_runtime_whitelist", - "blob": "2f0208ac6d019b4f00d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcontracts : Update call runtime whitelist", - "1 | Updates [1/6] : 172", - "1 | Updates [2/6] : 109", - "1 | Updates [3/6] : True", - "1 | Updates [4/6] : 155", - "1 | Updates [5/6] : 79", - "1 | Updates [6/6] : False", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Polymeshcontracts : Update call runtime whitelist", - "1 | Updates [1/6] : 172", - "1 | Updates [2/6] : 109", - "1 | Updates [3/6] : True", - "1 | Updates [4/6] : 155", - "1 | Updates [5/6] : 79", - "1 | Updates [6/6] : False", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1578, - "name": "Polymeshcontracts_Update_call_runtime_whitelist", - "blob": "2f0208ac6d019b4f00d50391018ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcontracts : Update call runtime whitelist", - "1 | Updates [1/6] : 172", - "1 | Updates [2/6] : 109", - "1 | Updates [3/6] : True", - "1 | Updates [4/6] : 155", - "1 | Updates [5/6] : 79", - "1 | Updates [6/6] : False", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Polymeshcontracts : Update call runtime whitelist", - "1 | Updates [1/6] : 172", - "1 | Updates [2/6] : 109", - "1 | Updates [3/6] : True", - "1 | Updates [4/6] : 155", - "1 | Updates [5/6] : 79", - "1 | Updates [6/6] : False", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1579, - "name": "Polymeshcontracts_Update_call_runtime_whitelist", - "blob": "2f0208ac6d019b4f00d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcontracts : Update call runtime whitelist", - "1 | Updates [1/6] : 172", - "1 | Updates [2/6] : 109", - "1 | Updates [3/6] : True", - "1 | Updates [4/6] : 155", - "1 | Updates [5/6] : 79", - "1 | Updates [6/6] : False", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Polymeshcontracts : Update call runtime whitelist", - "1 | Updates [1/6] : 172", - "1 | Updates [2/6] : 109", - "1 | Updates [3/6] : True", - "1 | Updates [4/6] : 155", - "1 | Updates [5/6] : 79", - "1 | Updates [6/6] : False", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1580, - "name": "Polymeshcontracts_Update_call_runtime_whitelist", - "blob": "2f0208ac6d019b4f00d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcontracts : Update call runtime whitelist", - "1 | Updates [1/6] : 172", - "1 | Updates [2/6] : 109", - "1 | Updates [3/6] : True", - "1 | Updates [4/6] : 155", - "1 | Updates [5/6] : 79", - "1 | Updates [6/6] : False", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Polymeshcontracts : Update call runtime whitelist", - "1 | Updates [1/6] : 172", - "1 | Updates [2/6] : 109", - "1 | Updates [3/6] : True", - "1 | Updates [4/6] : 155", - "1 | Updates [5/6] : 79", - "1 | Updates [6/6] : False", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1581, - "name": "Polymeshcontracts_Instantiate_with_code_as_primary_key", - "blob": "2f03345fe7fc9c23bfb62334c8ca2c746fee85a8cda9010000000000000000000000000000000010200b200b10200b200b100c293435d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcontracts : Instantiate with code as primary key", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 10785", - "2 | Gas limit [2/2] : 10867", - "3 | Storage deposit limit : POLYX 0.0", - "4 | Code [1/4] : 32", - "4 | Code [2/4] : 11", - "4 | Code [3/4] : 32", - "4 | Code [4/4] : 11", - "5 | Data [1/4] : 32", - "5 | Data [2/4] : 11", - "5 | Data [3/4] : 32", - "5 | Data [4/4] : 11", - "6 | Salt [1/4] : 12", - "6 | Salt [2/4] : 41", - "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", - "7 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Polymeshcontracts : Instantiate with code as primary key", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 10785", - "2 | Gas limit [2/2] : 10867", - "3 | Storage deposit limit : POLYX 0.0", - "4 | Code [1/4] : 32", - "4 | Code [2/4] : 11", - "4 | Code [3/4] : 32", - "4 | Code [4/4] : 11", - "5 | Data [1/4] : 32", - "5 | Data [2/4] : 11", - "5 | Data [3/4] : 32", - "5 | Data [4/4] : 11", - "6 | Salt [1/4] : 12", - "6 | Salt [2/4] : 41", - "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", - "7 | Chain : Polymesh", - "8 | Nonce : 0", - "9 | Tip : POLYX 5552342.355555", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1582, - "name": "Polymeshcontracts_Instantiate_with_code_as_primary_key", - "blob": "2f03345fe7fc9c23bfb62334c8ca2c746fee85a8cda901db03000000000000000000000000000010200b200b100d0c1323100c293435d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcontracts : Instantiate with code as primary key", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 10785", - "2 | Gas limit [2/2] : 10867", - "3 | Storage deposit limit : POLYX 0.000987", - "4 | Code [1/4] : 32", - "4 | Code [2/4] : 11", - "4 | Code [3/4] : 32", - "4 | Code [4/4] : 11", - "5 | Data [1/4] : 13", - "5 | Data [2/4] : 12", - "5 | Data [3/4] : 19", - "5 | Data [4/4] : 35", - "6 | Salt [1/4] : 12", - "6 | Salt [2/4] : 41", - "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", - "7 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Polymeshcontracts : Instantiate with code as primary key", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 10785", - "2 | Gas limit [2/2] : 10867", - "3 | Storage deposit limit : POLYX 0.000987", - "4 | Code [1/4] : 32", - "4 | Code [2/4] : 11", - "4 | Code [3/4] : 32", - "4 | Code [4/4] : 11", - "5 | Data [1/4] : 13", - "5 | Data [2/4] : 12", - "5 | Data [3/4] : 19", - "5 | Data [4/4] : 35", - "6 | Salt [1/4] : 12", - "6 | Salt [2/4] : 41", - "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", - "7 | Chain : Polymesh", - "8 | Nonce : 1", - "9 | Tip : POLYX 0.000987", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1583, - "name": "Polymeshcontracts_Instantiate_with_code_as_primary_key", - "blob": "2f03345fe7fc9c23bfb62334c8ca2c746fee0ba8c717031abc2a403eb301e3b54f03000000000000000000000000100d0c1323100d0c132310200b200bd5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcontracts : Instantiate with code as primary key", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 206819907061672", - "2 | Gas limit [2/2] : 751800330", - "3 | Storage deposit limit : POLYX 55.555555", - "4 | Code [1/4] : 13", - "4 | Code [2/4] : 12", - "4 | Code [3/4] : 19", - "4 | Code [4/4] : 35", - "5 | Data [1/4] : 13", - "5 | Data [2/4] : 12", - "5 | Data [3/4] : 19", - "5 | Data [4/4] : 35", - "6 | Salt [1/4] : 32", - "6 | Salt [2/4] : 11", - "6 | Salt [3/4] : 32", - "6 | Salt [4/4] : 11", - "7 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Polymeshcontracts : Instantiate with code as primary key", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 206819907061672", - "2 | Gas limit [2/2] : 751800330", - "3 | Storage deposit limit : POLYX 55.555555", - "4 | Code [1/4] : 13", - "4 | Code [2/4] : 12", - "4 | Code [3/4] : 19", - "4 | Code [4/4] : 35", - "5 | Data [1/4] : 13", - "5 | Data [2/4] : 12", - "5 | Data [3/4] : 19", - "5 | Data [4/4] : 35", - "6 | Salt [1/4] : 32", - "6 | Salt [2/4] : 11", - "6 | Salt [3/4] : 32", - "6 | Salt [4/4] : 11", - "7 | Chain : Polymesh", - "8 | Nonce : 0", - "9 | Tip : POLYX 1234.56789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1584, - "name": "Polymeshcontracts_Instantiate_with_code_as_primary_key", - "blob": "2f03345fe7fc9c23bfb62334c8ca2c746fee85a8cda90163ce64c10c0500000000000000000000100c293435100e2a0c4910200b200bd503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcontracts : Instantiate with code as primary key", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 10785", - "2 | Gas limit [2/2] : 10867", - "3 | Storage deposit limit : POLYX 5552342.355555", - "4 | Code [1/4] : 12", - "4 | Code [2/4] : 41", - "4 | Code [3/4] : 52", - "4 | Code [4/4] : 53", - "5 | Data [1/4] : 14", - "5 | Data [2/4] : 42", - "5 | Data [3/4] : 12", - "5 | Data [4/4] : 73", - "6 | Salt [1/4] : 32", - "6 | Salt [2/4] : 11", - "6 | Salt [3/4] : 32", - "6 | Salt [4/4] : 11", - "7 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Polymeshcontracts : Instantiate with code as primary key", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 10785", - "2 | Gas limit [2/2] : 10867", - "3 | Storage deposit limit : POLYX 5552342.355555", - "4 | Code [1/4] : 12", - "4 | Code [2/4] : 41", - "4 | Code [3/4] : 52", - "4 | Code [4/4] : 53", - "5 | Data [1/4] : 14", - "5 | Data [2/4] : 42", - "5 | Data [3/4] : 12", - "5 | Data [4/4] : 73", - "6 | Salt [1/4] : 32", - "6 | Salt [2/4] : 11", - "6 | Salt [3/4] : 32", - "6 | Salt [4/4] : 11", - "7 | Chain : Polymesh", - "8 | Nonce : 0", - "9 | Tip : POLYX 0.000987", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1585, - "name": "Polymeshcontracts_Instantiate_with_code_as_primary_key", - "blob": "2f03345fe7fc9c23bfb62334c8ca2c746fee1359aca23b925c6f9e131da1208579bd4c0e0100000000000000000000000000000000100e2a0c49100e2a0c49100d0c1323d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcontracts : Instantiate with code as primary key", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 11416445363542994009", - "2 | Gas limit [2/2] : 1030406744383201565", - "3 | Storage deposit limit : POLYX 0.0", - "4 | Code [1/4] : 14", - "4 | Code [2/4] : 42", - "4 | Code [3/4] : 12", - "4 | Code [4/4] : 73", - "5 | Data [1/4] : 14", - "5 | Data [2/4] : 42", - "5 | Data [3/4] : 12", - "5 | Data [4/4] : 73", - "6 | Salt [1/4] : 13", - "6 | Salt [2/4] : 12", - "6 | Salt [3/4] : 19", - "6 | Salt [4/4] : 35", - "7 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "7 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Polymeshcontracts : Instantiate with code as primary key", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 11416445363542994009", - "2 | Gas limit [2/2] : 1030406744383201565", - "3 | Storage deposit limit : POLYX 0.0", - "4 | Code [1/4] : 14", - "4 | Code [2/4] : 42", - "4 | Code [3/4] : 12", - "4 | Code [4/4] : 73", - "5 | Data [1/4] : 14", - "5 | Data [2/4] : 42", - "5 | Data [3/4] : 12", - "5 | Data [4/4] : 73", - "6 | Salt [1/4] : 13", - "6 | Salt [2/4] : 12", - "6 | Salt [3/4] : 19", - "6 | Salt [4/4] : 35", - "7 | Chain : Polymesh", - "8 | Nonce : 1", - "9 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "9 | Tip [2/2] : 3.456789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1586, - "name": "Polymeshcontracts_Instantiate_with_hash_as_primary_key", - "blob": "2f04345fe7fc9c23bfb62334c8ca2c746fee1359aca23b925c6f9e131da1208579bd4c0e01e3b54f030000000000000000000000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063100d0c1323100e2a0c49d503000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcontracts : Instantiate with hash as primary key", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 11416445363542994009", - "2 | Gas limit [2/2] : 1030406744383201565", - "3 | Storage deposit limit : POLYX 55.555555", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 13", - "5 | Data [2/4] : 12", - "5 | Data [3/4] : 19", - "5 | Data [4/4] : 35", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73", - "7 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Polymeshcontracts : Instantiate with hash as primary key", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 11416445363542994009", - "2 | Gas limit [2/2] : 1030406744383201565", - "3 | Storage deposit limit : POLYX 55.555555", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 13", - "5 | Data [2/4] : 12", - "5 | Data [3/4] : 19", - "5 | Data [4/4] : 35", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73", - "7 | Chain : Polymesh", - "8 | Nonce : 0", - "9 | Tip : POLYX 5552342.355555", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1587, - "name": "Polymeshcontracts_Instantiate_with_hash_as_primary_key", - "blob": "2f04345fe7fc9c23bfb62334c8ca2c746fee85a8cda90163ce64c10c05000000000000000000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063100c293435100e2a0c49d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcontracts : Instantiate with hash as primary key", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 10785", - "2 | Gas limit [2/2] : 10867", - "3 | Storage deposit limit : POLYX 5552342.355555", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 12", - "5 | Data [2/4] : 41", - "5 | Data [3/4] : 52", - "5 | Data [4/4] : 53", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73", - "7 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Polymeshcontracts : Instantiate with hash as primary key", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 10785", - "2 | Gas limit [2/2] : 10867", - "3 | Storage deposit limit : POLYX 5552342.355555", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 12", - "5 | Data [2/4] : 41", - "5 | Data [3/4] : 52", - "5 | Data [4/4] : 53", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73", - "7 | Chain : Polymesh", - "8 | Nonce : 2339", - "9 | Tip : POLYX 0.000987", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1588, - "name": "Polymeshcontracts_Instantiate_with_hash_as_primary_key", - "blob": "2f04345fe7fc9c23bfb62334c8ca2c746fee85a8cda901000000000000000000000000000000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063100e2a0c49100c293435d5030403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcontracts : Instantiate with hash as primary key", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 10785", - "2 | Gas limit [2/2] : 10867", - "3 | Storage deposit limit : POLYX 0.0", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 14", - "5 | Data [2/4] : 42", - "5 | Data [3/4] : 12", - "5 | Data [4/4] : 73", - "6 | Salt [1/4] : 12", - "6 | Salt [2/4] : 41", - "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", - "7 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Polymeshcontracts : Instantiate with hash as primary key", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 10785", - "2 | Gas limit [2/2] : 10867", - "3 | Storage deposit limit : POLYX 0.0", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 14", - "5 | Data [2/4] : 42", - "5 | Data [3/4] : 12", - "5 | Data [4/4] : 73", - "6 | Salt [1/4] : 12", - "6 | Salt [2/4] : 41", - "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", - "7 | Chain : Polymesh", - "8 | Nonce : 1", - "9 | Tip : POLYX 1234.56789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1589, - "name": "Polymeshcontracts_Instantiate_with_hash_as_primary_key", - "blob": "2f04345fe7fc9c23bfb62334c8ca2c746fee85a8cda901d20296490000000000000000000000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f406310200b200b100e2a0c49d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcontracts : Instantiate with hash as primary key", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 10785", - "2 | Gas limit [2/2] : 10867", - "3 | Storage deposit limit : POLYX 1234.56789", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 32", - "5 | Data [2/4] : 11", - "5 | Data [3/4] : 32", - "5 | Data [4/4] : 11", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73", - "7 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Polymeshcontracts : Instantiate with hash as primary key", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 10785", - "2 | Gas limit [2/2] : 10867", - "3 | Storage deposit limit : POLYX 1234.56789", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 32", - "5 | Data [2/4] : 11", - "5 | Data [3/4] : 32", - "5 | Data [4/4] : 11", - "6 | Salt [1/4] : 14", - "6 | Salt [2/4] : 42", - "6 | Salt [3/4] : 12", - "6 | Salt [4/4] : 73", - "7 | Chain : Polymesh", - "8 | Nonce : 0", - "9 | Tip : POLYX 55.555555", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1590, - "name": "Polymeshcontracts_Instantiate_with_hash_as_primary_key", - "blob": "2f04345fe7fc9c23bfb62334c8ca2c746fee1359aca23b925c6f9e131da1208579bd4c0e0163ce64c10c05000000000000000000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063100e2a0c49100c293435d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcontracts : Instantiate with hash as primary key", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 11416445363542994009", - "2 | Gas limit [2/2] : 1030406744383201565", - "3 | Storage deposit limit : POLYX 5552342.355555", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 14", - "5 | Data [2/4] : 42", - "5 | Data [3/4] : 12", - "5 | Data [4/4] : 73", - "6 | Salt [1/4] : 12", - "6 | Salt [2/4] : 41", - "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", - "7 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Polymeshcontracts : Instantiate with hash as primary key", - "1 | Endowment [1/2] : POLYX 31693496425641852120896906194770", - "1 | Endowment [2/2] : 0.371252", - "2 | Gas limit [1/2] : 11416445363542994009", - "2 | Gas limit [2/2] : 1030406744383201565", - "3 | Storage deposit limit : POLYX 5552342.355555", - "4 | Code hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "4 | Code hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "5 | Data [1/4] : 14", - "5 | Data [2/4] : 42", - "5 | Data [3/4] : 12", - "5 | Data [4/4] : 73", - "6 | Salt [1/4] : 12", - "6 | Salt [2/4] : 41", - "6 | Salt [3/4] : 52", - "6 | Salt [4/4] : 53", - "7 | Chain : Polymesh", - "8 | Nonce : 2339", - "9 | Tip : POLYX 1234.56789", - "10 | Era Phase : 61", - "11 | Era Period : 64", - "12 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "12 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1591, - "name": "Polymeshcontracts_Upgrade_api", - "blob": "2f05353bcdcbd2bfd28efd1b54f87f95c95848bc2644372760db23d30908cafc19118a19f83f3c054a360435b179f522cc7fd5038d240039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcontracts : Upgrade api", - "1 | Api [1/2] : 2396176338", - "1 | Api [2/2] : 353bcdcb", - "2 | Next upgrade [1/4] : 4166261757", - "2 | Next upgrade [2/4] : 1489606015", - "2 | Next upgrade [3/4] : 48bc2644372760db23d30908cafc19118a19f8", - "2 | Next upgrade [4/4] : 3f3c054a360435b179f522cc7f" - ], - "output_expert": [ - "0 | Polymeshcontracts : Upgrade api", - "1 | Api [1/2] : 2396176338", - "1 | Api [2/2] : 353bcdcb", - "2 | Next upgrade [1/4] : 4166261757", - "2 | Next upgrade [2/4] : 1489606015", - "2 | Next upgrade [3/4] : 48bc2644372760db23d30908cafc19118a19f8", - "2 | Next upgrade [4/4] : 3f3c054a360435b179f522cc7f", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1592, - "name": "Polymeshcontracts_Upgrade_api", - "blob": "2f0527019cde8c569b222f8e32c39879775a55222d259057d9dfd244edd5b86ebd6c6e6f3a334c83f5c53d92076c69e06a2ed50391016d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcontracts : Upgrade api", - "1 | Api [1/2] : 580605580", - "1 | Api [2/2] : 27019cde", - "2 | Next upgrade [1/4] : 3274870319", - "2 | Next upgrade [2/4] : 1517779352", - "2 | Next upgrade [3/4] : 55222d259057d9dfd244edd5b86ebd6c6e6f3a", - "2 | Next upgrade [4/4] : 334c83f5c53d92076c69e06a2e", - "3 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Polymeshcontracts : Upgrade api", - "1 | Api [1/2] : 580605580", - "1 | Api [2/2] : 27019cde", - "2 | Next upgrade [1/4] : 3274870319", - "2 | Next upgrade [2/4] : 1517779352", - "2 | Next upgrade [3/4] : 55222d259057d9dfd244edd5b86ebd6c6e6f3a", - "2 | Next upgrade [4/4] : 334c83f5c53d92076c69e06a2e", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip : POLYX 0.000987", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1593, - "name": "Polymeshcontracts_Upgrade_api", - "blob": "2f05af73c136511a99b6d76fd735a691bf7aab9b060f979c1e457c5922f10bf567d7c7fc0a447b429dc72cf7f4ce55644a9ed503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcontracts : Upgrade api", - "1 | Api [1/2] : 3063487057", - "1 | Api [2/2] : af73c136", - "2 | Next upgrade [1/4] : 903311319", - "2 | Next upgrade [2/4] : 2059375014", - "2 | Next upgrade [3/4] : ab9b060f979c1e457c5922f10bf567d7c7fc0a", - "2 | Next upgrade [4/4] : 447b429dc72cf7f4ce55644a9e", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Polymeshcontracts : Upgrade api", - "1 | Api [1/2] : 3063487057", - "1 | Api [2/2] : af73c136", - "2 | Next upgrade [1/4] : 903311319", - "2 | Next upgrade [2/4] : 2059375014", - "2 | Next upgrade [3/4] : ab9b060f979c1e457c5922f10bf567d7c7fc0a", - "2 | Next upgrade [4/4] : 447b429dc72cf7f4ce55644a9e", - "3 | Chain : Polymesh", - "4 | Nonce : 100", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1594, - "name": "Polymeshcontracts_Upgrade_api", - "blob": "2f0527019cde8c569b22d76fd735a691bf7aab9b060f979c1e457c5922f10bf567d7c7fc0a447b429dc72cf7f4ce55644a9ed5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcontracts : Upgrade api", - "1 | Api [1/2] : 580605580", - "1 | Api [2/2] : 27019cde", - "2 | Next upgrade [1/4] : 903311319", - "2 | Next upgrade [2/4] : 2059375014", - "2 | Next upgrade [3/4] : ab9b060f979c1e457c5922f10bf567d7c7fc0a", - "2 | Next upgrade [4/4] : 447b429dc72cf7f4ce55644a9e", - "3 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "3 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Polymeshcontracts : Upgrade api", - "1 | Api [1/2] : 580605580", - "1 | Api [2/2] : 27019cde", - "2 | Next upgrade [1/4] : 903311319", - "2 | Next upgrade [2/4] : 2059375014", - "2 | Next upgrade [3/4] : ab9b060f979c1e457c5922f10bf567d7c7fc0a", - "2 | Next upgrade [4/4] : 447b429dc72cf7f4ce55644a9e", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "5 | Tip [2/2] : 3.456789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1595, - "name": "Polymeshcontracts_Upgrade_api", - "blob": "2f05353bcdcbd2bfd28efd1b54f87f95c95848bc2644372760db23d30908cafc19118a19f83f3c054a360435b179f522cc7fd5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Polymeshcontracts : Upgrade api", - "1 | Api [1/2] : 2396176338", - "1 | Api [2/2] : 353bcdcb", - "2 | Next upgrade [1/4] : 4166261757", - "2 | Next upgrade [2/4] : 1489606015", - "2 | Next upgrade [3/4] : 48bc2644372760db23d30908cafc19118a19f8", - "2 | Next upgrade [4/4] : 3f3c054a360435b179f522cc7f", - "3 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Polymeshcontracts : Upgrade api", - "1 | Api [1/2] : 2396176338", - "1 | Api [2/2] : 353bcdcb", - "2 | Next upgrade [1/4] : 4166261757", - "2 | Next upgrade [2/4] : 1489606015", - "2 | Next upgrade [3/4] : 48bc2644372760db23d30908cafc19118a19f8", - "2 | Next upgrade [4/4] : 3f3c054a360435b179f522cc7f", - "3 | Chain : Polymesh", - "4 | Nonce : 2339", - "5 | Tip : POLYX 1234.56789", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1596, - "name": "Preimage_Note_preimage", - "blob": "3000100c293435d5030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Preimage : Note preimage", - "1 | Bytes [1/4] : 12", - "1 | Bytes [2/4] : 41", - "1 | Bytes [3/4] : 52", - "1 | Bytes [4/4] : 53", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Preimage : Note preimage", - "1 | Bytes [1/4] : 12", - "1 | Bytes [2/4] : 41", - "1 | Bytes [3/4] : 52", - "1 | Bytes [4/4] : 53", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1597, - "name": "Preimage_Note_preimage", - "blob": "3000100d0c1323d503048ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Preimage : Note preimage", - "1 | Bytes [1/4] : 13", - "1 | Bytes [2/4] : 12", - "1 | Bytes [3/4] : 19", - "1 | Bytes [4/4] : 35", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Preimage : Note preimage", - "1 | Bytes [1/4] : 13", - "1 | Bytes [2/4] : 12", - "1 | Bytes [3/4] : 19", - "1 | Bytes [4/4] : 35", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1598, - "name": "Preimage_Note_preimage", - "blob": "300010200b200bd5038d240b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Preimage : Note preimage", - "1 | Bytes [1/4] : 32", - "1 | Bytes [2/4] : 11", - "1 | Bytes [3/4] : 32", - "1 | Bytes [4/4] : 11", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Preimage : Note preimage", - "1 | Bytes [1/4] : 32", - "1 | Bytes [2/4] : 11", - "1 | Bytes [3/4] : 32", - "1 | Bytes [4/4] : 11", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1599, - "name": "Preimage_Note_preimage", - "blob": "3000100d0c1323d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Preimage : Note preimage", - "1 | Bytes [1/4] : 13", - "1 | Bytes [2/4] : 12", - "1 | Bytes [3/4] : 19", - "1 | Bytes [4/4] : 35", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Preimage : Note preimage", - "1 | Bytes [1/4] : 13", - "1 | Bytes [2/4] : 12", - "1 | Bytes [3/4] : 19", - "1 | Bytes [4/4] : 35", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1600, - "name": "Preimage_Note_preimage", - "blob": "3000100e2a0c49d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Preimage : Note preimage", - "1 | Bytes [1/4] : 14", - "1 | Bytes [2/4] : 42", - "1 | Bytes [3/4] : 12", - "1 | Bytes [4/4] : 73", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Preimage : Note preimage", - "1 | Bytes [1/4] : 14", - "1 | Bytes [2/4] : 42", - "1 | Bytes [3/4] : 12", - "1 | Bytes [4/4] : 73", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1601, - "name": "Preimage_Unnote_preimage", - "blob": "30016fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Preimage : Unnote preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Preimage : Unnote preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1602, - "name": "Preimage_Unnote_preimage", - "blob": "30016fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Preimage : Unnote preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Preimage : Unnote preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1603, - "name": "Preimage_Unnote_preimage", - "blob": "30016fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d5038d248ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Preimage : Unnote preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Preimage : Unnote preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1604, - "name": "Preimage_Unnote_preimage", - "blob": "30016fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d5030433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Preimage : Unnote preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Preimage : Unnote preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1605, - "name": "Preimage_Unnote_preimage", - "blob": "30016fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Preimage : Unnote preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Preimage : Unnote preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1606, - "name": "Preimage_Request_preimage", - "blob": "30026fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Preimage : Request preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ], - "output_expert": [ - "0 | Preimage : Request preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1607, - "name": "Preimage_Request_preimage", - "blob": "30026fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Preimage : Request preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Preimage : Request preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 55.555555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1608, - "name": "Preimage_Request_preimage", - "blob": "30026fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Preimage : Request preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Preimage : Request preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 1234.56789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1609, - "name": "Preimage_Request_preimage", - "blob": "30026fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Preimage : Request preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Preimage : Request preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1610, - "name": "Preimage_Request_preimage", - "blob": "30026fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Preimage : Request preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Preimage : Request preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 50283", - "4 | Tip : POLYX 5552342.355555", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1611, - "name": "Preimage_Unrequest_preimage", - "blob": "30036fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Preimage : Unrequest preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Preimage : Unrequest preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 0", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1612, - "name": "Preimage_Unrequest_preimage", - "blob": "30036fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Preimage : Unrequest preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Preimage : Unrequest preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 1", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1613, - "name": "Preimage_Unrequest_preimage", - "blob": "30036fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Preimage : Unrequest preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "2 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Preimage : Unrequest preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1614, - "name": "Preimage_Unrequest_preimage", - "blob": "30036fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Preimage : Unrequest preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ], - "output_expert": [ - "0 | Preimage : Unrequest preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 100", - "4 | Era Phase : 61", - "5 | Era Period : 64", - "6 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "6 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1615, - "name": "Preimage_Unrequest_preimage", - "blob": "30036fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Preimage : Unrequest preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Preimage : Unrequest preimage", - "1 | Hash [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "1 | Hash [2/2] : aa37c6bc4d0c2fa12e8b2f4063", - "2 | Chain : Polymesh", - "3 | Nonce : 2339", - "4 | Tip : POLYX 0.000987", - "5 | Era Phase : 61", - "6 | Era Period : 64", - "7 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "7 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1616, - "name": "Nft_Create_nft_collection", - "blob": "31005449434b45522d313233343501010400dac19137ceffc9a6d50391010b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Nft : Create nft collection", - "1 | Ticker : TICKER-12345", - "2 | Nft type : FixedIncome", - "3 | Collection keys : 12018418341775524314", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Nft : Create nft collection", - "1 | Ticker : TICKER-12345", - "2 | Nft type : FixedIncome", - "3 | Collection keys : 12018418341775524314", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1617, - "name": "Nft_Create_nft_collection", - "blob": "31005449434b45522d3132333435010382cdfe390400dac19137ceffc9a6d503ae1103000b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Nft : Create nft collection", - "1 | Ticker : TICKER-12345", - "2 | Nft type [1/2] : Custom", - "2 | Nft type [2/2] : 973000066", - "3 | Collection keys : 12018418341775524314", - "4 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Nft : Create nft collection", - "1 | Ticker : TICKER-12345", - "2 | Nft type [1/2] : Custom", - "2 | Nft type [2/2] : 973000066", - "3 | Collection keys : 12018418341775524314", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 5552342.355555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1618, - "name": "Nft_Create_nft_collection", - "blob": "31005449434b45522d313233343501000801edd89b0e867c581100193c0f76f394ce03d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Nft : Create nft collection", - "1 | Ticker : TICKER-12345", - "2 | Nft type : Derivative", - "3 | Collection keys [1/2] : 1249885811807869165", - "3 | Collection keys [2/2] : 274320400694852633", - "4 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Nft : Create nft collection", - "1 | Ticker : TICKER-12345", - "2 | Nft type : Derivative", - "3 | Collection keys [1/2] : 1249885811807869165", - "3 | Collection keys [2/2] : 274320400694852633", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1619, - "name": "Nft_Create_nft_collection", - "blob": "31005449434b45522d3132333435000801edd89b0e867c581100193c0f76f394ce03d503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Nft : Create nft collection", - "1 | Ticker : TICKER-12345", - "2 | Nft type : None", - "3 | Collection keys [1/2] : 1249885811807869165", - "3 | Collection keys [2/2] : 274320400694852633", - "4 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Nft : Create nft collection", - "1 | Ticker : TICKER-12345", - "2 | Nft type : None", - "3 | Collection keys [1/2] : 1249885811807869165", - "3 | Collection keys [2/2] : 274320400694852633", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1620, - "name": "Nft_Create_nft_collection", - "blob": "31005449434b45522d313233343501010801edd89b0e867c581100193c0f76f394ce03d503ae1103008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Nft : Create nft collection", - "1 | Ticker : TICKER-12345", - "2 | Nft type : FixedIncome", - "3 | Collection keys [1/2] : 1249885811807869165", - "3 | Collection keys [2/2] : 274320400694852633", - "4 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Nft : Create nft collection", - "1 | Ticker : TICKER-12345", - "2 | Nft type : FixedIncome", - "3 | Collection keys [1/2] : 1249885811807869165", - "3 | Collection keys [2/2] : 274320400694852633", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 55.555555", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1621, - "name": "Nft_Issue_nft", - "blob": "31015449434b45522d31323334350001b8f822db38c2fa85d5038d246d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Nft : Issue nft", - "1 | Ticker : TICKER-12345", - "2 | Nft metadata attributes : ", - "3 | Portfolio kind : 9654242300672538808", - "4 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Nft : Issue nft", - "1 | Ticker : TICKER-12345", - "2 | Nft metadata attributes : ", - "3 | Portfolio kind : 9654242300672538808", - "4 | Chain : Polymesh", - "5 | Nonce : 2339", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1622, - "name": "Nft_Issue_nft", - "blob": "31015449434b45522d31323334350001bbb00ff5b8af54b6d50391010039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Nft : Issue nft", - "1 | Ticker : TICKER-12345", - "2 | Nft metadata attributes : ", - "3 | Portfolio kind : 13138319221866868923" - ], - "output_expert": [ - "0 | Nft : Issue nft", - "1 | Ticker : TICKER-12345", - "2 | Nft metadata attributes : ", - "3 | Portfolio kind : 13138319221866868923", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Era Phase : 61", - "7 | Era Period : 64", - "8 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "8 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1623, - "name": "Nft_Issue_nft", - "blob": "31015449434b45522d313233343508003108e9c26b81203e0102b71a86a7a6f42f356ba2cebfd986c4854e72d1e3a6bb0b6e4d8713cd0a121bcf36a292599b547f91df59cea56b7d8ceb36dc73ba5a0c362287252bd26e062e76410f017dcee709be3108791cb749b4dac742f081538b7c949fb075c988869655fccacd1ae5d8d4b6dee2a57908f23d810ac5a31cee46e1f9875a788648d95f15016cca5b94a0056c3c01013ea9d5df0b1670018d9b14c5d42bc2df3d83ee00adea28b79412d0bfcd7211ce61e949a12f255f8d95ca1a7dc0609d20fcdf8a322318404be3fb3d070d1d857a01bbb00ff5b8af54b6d503006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Nft : Issue nft", - "1 | Ticker : TICKER-12345", - "2 | Nft metadata attributes [1/13] : 4476720329437808689", - "2 | Nft metadata attributes [2/13] : b71a86a7a6f42f356ba2cebfd986c4854e72d1", - "2 | Nft metadata attributes [3/13] : e3a6bb0b6e4d8713cd0a121bcf36a292599b54", - "2 | Nft metadata attributes [4/13] : 7f91df59cea56b7d8ceb36dc73ba5a0c362287", - "2 | Nft metadata attributes [5/13] : 252bd26e062e76410f017dcee709be3108791c", - "2 | Nft metadata attributes [6/13] : b749b4dac742f081538b7c949fb075c9888696", - "2 | Nft metadata attributes [7/13] : 55fccacd1ae5d8d4b6dee2a57908f23d810ac5", - "2 | Nft metadata attributes [8/13] : a31cee46e1f9875a788648d95f15", - "2 | Nft metadata attributes [9/13] : 4353861127002376812", - "2 | Nft metadata attributes [10/13] : 3ea9d5df0b1670018d9b14c5d42bc2df3d83ee", - "2 | Nft metadata attributes [11/13] : 00adea28b79412d0bfcd7211ce61e949a12f25", - "2 | Nft metadata attributes [12/13] : 5f8d95ca1a7dc0609d20fcdf8a322318404be3", - "2 | Nft metadata attributes [13/13] : fb3d070d1d857a", - "3 | Portfolio kind : 13138319221866868923", - "4 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Nft : Issue nft", - "1 | Ticker : TICKER-12345", - "2 | Nft metadata attributes [1/13] : 4476720329437808689", - "2 | Nft metadata attributes [2/13] : b71a86a7a6f42f356ba2cebfd986c4854e72d1", - "2 | Nft metadata attributes [3/13] : e3a6bb0b6e4d8713cd0a121bcf36a292599b54", - "2 | Nft metadata attributes [4/13] : 7f91df59cea56b7d8ceb36dc73ba5a0c362287", - "2 | Nft metadata attributes [5/13] : 252bd26e062e76410f017dcee709be3108791c", - "2 | Nft metadata attributes [6/13] : b749b4dac742f081538b7c949fb075c9888696", - "2 | Nft metadata attributes [7/13] : 55fccacd1ae5d8d4b6dee2a57908f23d810ac5", - "2 | Nft metadata attributes [8/13] : a31cee46e1f9875a788648d95f15", - "2 | Nft metadata attributes [9/13] : 4353861127002376812", - "2 | Nft metadata attributes [10/13] : 3ea9d5df0b1670018d9b14c5d42bc2df3d83ee", - "2 | Nft metadata attributes [11/13] : 00adea28b79412d0bfcd7211ce61e949a12f25", - "2 | Nft metadata attributes [12/13] : 5f8d95ca1a7dc0609d20fcdf8a322318404be3", - "2 | Nft metadata attributes [13/13] : fb3d070d1d857a", - "3 | Portfolio kind : 13138319221866868923", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1624, - "name": "Nft_Issue_nft", - "blob": "31015449434b45522d31323334350001b8f822db38c2fa85d5030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Nft : Issue nft", - "1 | Ticker : TICKER-12345", - "2 | Nft metadata attributes : ", - "3 | Portfolio kind : 9654242300672538808", - "4 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Nft : Issue nft", - "1 | Ticker : TICKER-12345", - "2 | Nft metadata attributes : ", - "3 | Portfolio kind : 9654242300672538808", - "4 | Chain : Polymesh", - "5 | Nonce : 0", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1625, - "name": "Nft_Issue_nft", - "blob": "31015449434b45522d313233343508003108e9c26b81203e0102b71a86a7a6f42f356ba2cebfd986c4854e72d1e3a6bb0b6e4d8713cd0a121bcf36a292599b547f91df59cea56b7d8ceb36dc73ba5a0c362287252bd26e062e76410f017dcee709be3108791cb749b4dac742f081538b7c949fb075c988869655fccacd1ae5d8d4b6dee2a57908f23d810ac5a31cee46e1f9875a788648d95f15016cca5b94a0056c3c01013ea9d5df0b1670018d9b14c5d42bc2df3d83ee00adea28b79412d0bfcd7211ce61e949a12f255f8d95ca1a7dc0609d20fcdf8a322318404be3fb3d070d1d857a01bbb00ff5b8af54b6d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Nft : Issue nft", - "1 | Ticker : TICKER-12345", - "2 | Nft metadata attributes [1/13] : 4476720329437808689", - "2 | Nft metadata attributes [2/13] : b71a86a7a6f42f356ba2cebfd986c4854e72d1", - "2 | Nft metadata attributes [3/13] : e3a6bb0b6e4d8713cd0a121bcf36a292599b54", - "2 | Nft metadata attributes [4/13] : 7f91df59cea56b7d8ceb36dc73ba5a0c362287", - "2 | Nft metadata attributes [5/13] : 252bd26e062e76410f017dcee709be3108791c", - "2 | Nft metadata attributes [6/13] : b749b4dac742f081538b7c949fb075c9888696", - "2 | Nft metadata attributes [7/13] : 55fccacd1ae5d8d4b6dee2a57908f23d810ac5", - "2 | Nft metadata attributes [8/13] : a31cee46e1f9875a788648d95f15", - "2 | Nft metadata attributes [9/13] : 4353861127002376812", - "2 | Nft metadata attributes [10/13] : 3ea9d5df0b1670018d9b14c5d42bc2df3d83ee", - "2 | Nft metadata attributes [11/13] : 00adea28b79412d0bfcd7211ce61e949a12f25", - "2 | Nft metadata attributes [12/13] : 5f8d95ca1a7dc0609d20fcdf8a322318404be3", - "2 | Nft metadata attributes [13/13] : fb3d070d1d857a", - "3 | Portfolio kind : 13138319221866868923", - "4 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Nft : Issue nft", - "1 | Ticker : TICKER-12345", - "2 | Nft metadata attributes [1/13] : 4476720329437808689", - "2 | Nft metadata attributes [2/13] : b71a86a7a6f42f356ba2cebfd986c4854e72d1", - "2 | Nft metadata attributes [3/13] : e3a6bb0b6e4d8713cd0a121bcf36a292599b54", - "2 | Nft metadata attributes [4/13] : 7f91df59cea56b7d8ceb36dc73ba5a0c362287", - "2 | Nft metadata attributes [5/13] : 252bd26e062e76410f017dcee709be3108791c", - "2 | Nft metadata attributes [6/13] : b749b4dac742f081538b7c949fb075c9888696", - "2 | Nft metadata attributes [7/13] : 55fccacd1ae5d8d4b6dee2a57908f23d810ac5", - "2 | Nft metadata attributes [8/13] : a31cee46e1f9875a788648d95f15", - "2 | Nft metadata attributes [9/13] : 4353861127002376812", - "2 | Nft metadata attributes [10/13] : 3ea9d5df0b1670018d9b14c5d42bc2df3d83ee", - "2 | Nft metadata attributes [11/13] : 00adea28b79412d0bfcd7211ce61e949a12f25", - "2 | Nft metadata attributes [12/13] : 5f8d95ca1a7dc0609d20fcdf8a322318404be3", - "2 | Nft metadata attributes [13/13] : fb3d070d1d857a", - "3 | Portfolio kind : 13138319221866868923", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1626, - "name": "Nft_Redeem_nft", - "blob": "31025449434b45522d3132333435cddaf8c6122f7e61016d7923cc5f1a4adcd503ae11030033158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Nft : Redeem nft", - "1 | Ticker : TICKER-12345", - "2 | Nft id : 7025104226438666957", - "3 | Portfolio kind : 15873528835369826669", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Nft : Redeem nft", - "1 | Ticker : TICKER-12345", - "2 | Nft id : 7025104226438666957", - "3 | Portfolio kind : 15873528835369826669", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1627, - "name": "Nft_Redeem_nft", - "blob": "31025449434b45522d313233343551bc9c9aea5997e701bbb00ff5b8af54b6d503ae1103006d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Nft : Redeem nft", - "1 | Ticker : TICKER-12345", - "2 | Nft id : 16687905808395844689", - "3 | Portfolio kind : 13138319221866868923", - "4 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Nft : Redeem nft", - "1 | Ticker : TICKER-12345", - "2 | Nft id : 16687905808395844689", - "3 | Portfolio kind : 13138319221866868923", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1628, - "name": "Nft_Redeem_nft", - "blob": "31025449434b45522d3132333435cddaf8c6122f7e6101bbb00ff5b8af54b6d503046d0f39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Nft : Redeem nft", - "1 | Ticker : TICKER-12345", - "2 | Nft id : 7025104226438666957", - "3 | Portfolio kind : 13138319221866868923", - "4 | Tip : POLYX 0.000987" - ], - "output_expert": [ - "0 | Nft : Redeem nft", - "1 | Ticker : TICKER-12345", - "2 | Nft id : 7025104226438666957", - "3 | Portfolio kind : 13138319221866868923", - "4 | Chain : Polymesh", - "5 | Nonce : 1", - "6 | Tip : POLYX 0.000987", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1629, - "name": "Nft_Redeem_nft", - "blob": "31025449434b45522d3132333435b6468e420502df9401b8f822db38c2fa85d503910133158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Nft : Redeem nft", - "1 | Ticker : TICKER-12345", - "2 | Nft id : 10727295059034523318", - "3 | Portfolio kind : 9654242300672538808", - "4 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "4 | Tip [2/2] : 3.456789" - ], - "output_expert": [ - "0 | Nft : Redeem nft", - "1 | Ticker : TICKER-12345", - "2 | Nft id : 10727295059034523318", - "3 | Portfolio kind : 9654242300672538808", - "4 | Chain : Polymesh", - "5 | Nonce : 100", - "6 | Tip [1/2] : POLYX 12345678901234567890123456789012", - "6 | Tip [2/2] : 3.456789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1630, - "name": "Nft_Redeem_nft", - "blob": "31025449434b45522d3132333435b6468e420502df94016d7923cc5f1a4adcd503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Nft : Redeem nft", - "1 | Ticker : TICKER-12345", - "2 | Nft id : 10727295059034523318", - "3 | Portfolio kind : 15873528835369826669", - "4 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Nft : Redeem nft", - "1 | Ticker : TICKER-12345", - "2 | Nft id : 10727295059034523318", - "3 | Portfolio kind : 15873528835369826669", - "4 | Chain : Polymesh", - "5 | Nonce : 50283", - "6 | Tip : POLYX 1234.56789", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1631, - "name": "Nft_Controller_transfer", - "blob": "31035449434b45522d31323334355449434b45522d333435363708a5fb4ce5e9bfbc007112a8b5da145d5b0e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e2010000000000016d7923cc5f1a4adcd503ae11030003d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Nft : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Nfts [1/3] : TICKER-34567", - "2 | Nfts [2/3] : 53128306916916133", - "2 | Nfts [3/3] : 6583441159868650097", - "3 | Source portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "3 | Source portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "3 | Source portfolio [3/3] : 123456", - "4 | Callers portfolio kind : 15873528835369826669", - "5 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Nft : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Nfts [1/3] : TICKER-34567", - "2 | Nfts [2/3] : 53128306916916133", - "2 | Nfts [3/3] : 6583441159868650097", - "3 | Source portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "3 | Source portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "3 | Source portfolio [3/3] : 123456", - "4 | Callers portfolio kind : 15873528835369826669", - "5 | Chain : Polymesh", - "6 | Nonce : 50283", - "7 | Tip : POLYX 1234.56789", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1632, - "name": "Nft_Controller_transfer", - "blob": "31035449434b45522d31323334355449434b45522d3334353637083086d35d494cf689ed551b24487d5d090e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e2010000000000016d7923cc5f1a4adcd503040b63ce64c10c0539995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Nft : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Nfts [1/3] : TICKER-34567", - "2 | Nfts [2/3] : 9941217105457415728", - "2 | Nfts [3/3] : 674833267972330989", - "3 | Source portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "3 | Source portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "3 | Source portfolio [3/3] : 123456", - "4 | Callers portfolio kind : 15873528835369826669", - "5 | Tip : POLYX 5552342.355555" - ], - "output_expert": [ - "0 | Nft : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Nfts [1/3] : TICKER-34567", - "2 | Nfts [2/3] : 9941217105457415728", - "2 | Nfts [3/3] : 674833267972330989", - "3 | Source portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "3 | Source portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "3 | Source portfolio [3/3] : 123456", - "4 | Callers portfolio kind : 15873528835369826669", - "5 | Chain : Polymesh", - "6 | Nonce : 1", - "7 | Tip : POLYX 5552342.355555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1633, - "name": "Nft_Controller_transfer", - "blob": "31035449434b45522d31323334355449434b45522d33343536370c9f1a8d1c339514501869654fe94eb390868ed8e147c3086c0e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e201000000000001b8f822db38c2fa85d503008ed73e0d39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Nft : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Nfts [1/4] : TICKER-34567", - "2 | Nfts [2/4] : 5770401069323328159", - "2 | Nfts [3/4] : 10426764326259222808", - "2 | Nfts [4/4] : 7784686669409062534", - "3 | Source portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "3 | Source portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "3 | Source portfolio [3/3] : 123456", - "4 | Callers portfolio kind : 9654242300672538808", - "5 | Tip : POLYX 55.555555" - ], - "output_expert": [ - "0 | Nft : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Nfts [1/4] : TICKER-34567", - "2 | Nfts [2/4] : 5770401069323328159", - "2 | Nfts [3/4] : 10426764326259222808", - "2 | Nfts [4/4] : 7784686669409062534", - "3 | Source portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "3 | Source portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "3 | Source portfolio [3/3] : 123456", - "4 | Callers portfolio kind : 9654242300672538808", - "5 | Chain : Polymesh", - "6 | Nonce : 0", - "7 | Tip : POLYX 55.555555", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1634, - "name": "Nft_Controller_transfer", - "blob": "31035449434b45522d31323334355449434b45522d33343536370c9f1a8d1c339514501869654fe94eb390868ed8e147c3086c0e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e2010000000000016d7923cc5f1a4adcd5038d2403d202964939995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Nft : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Nfts [1/4] : TICKER-34567", - "2 | Nfts [2/4] : 5770401069323328159", - "2 | Nfts [3/4] : 10426764326259222808", - "2 | Nfts [4/4] : 7784686669409062534", - "3 | Source portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "3 | Source portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "3 | Source portfolio [3/3] : 123456", - "4 | Callers portfolio kind : 15873528835369826669", - "5 | Tip : POLYX 1234.56789" - ], - "output_expert": [ - "0 | Nft : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Nfts [1/4] : TICKER-34567", - "2 | Nfts [2/4] : 5770401069323328159", - "2 | Nfts [3/4] : 10426764326259222808", - "2 | Nfts [4/4] : 7784686669409062534", - "3 | Source portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "3 | Source portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "3 | Source portfolio [3/3] : 123456", - "4 | Callers portfolio kind : 15873528835369826669", - "5 | Chain : Polymesh", - "6 | Nonce : 2339", - "7 | Tip : POLYX 1234.56789", - "8 | Era Phase : 61", - "9 | Era Period : 64", - "10 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "10 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - }, - { - "index": 1635, - "name": "Nft_Controller_transfer", - "blob": "31035449434b45522d31323334355449434b45522d33343536370c9f1a8d1c339514501869654fe94eb390868ed8e147c3086c0e4a569410a80731bdd62962b759781632657d9d4d3c70ca42c466bed8d324580140e201000000000000d503000039995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", - "output": [ - "0 | Nft : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Nfts [1/4] : TICKER-34567", - "2 | Nfts [2/4] : 5770401069323328159", - "2 | Nfts [3/4] : 10426764326259222808", - "2 | Nfts [4/4] : 7784686669409062534", - "3 | Source portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "3 | Source portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "3 | Source portfolio [3/3] : 123456", - "4 | Callers portfolio kind : Default" - ], - "output_expert": [ - "0 | Nft : Controller transfer", - "1 | Ticker : TICKER-12345", - "2 | Nfts [1/4] : TICKER-34567", - "2 | Nfts [2/4] : 5770401069323328159", - "2 | Nfts [3/4] : 10426764326259222808", - "2 | Nfts [4/4] : 7784686669409062534", - "3 | Source portfolio [1/3] : 0e4a569410a80731bdd62962b759781632657d", - "3 | Source portfolio [2/3] : 9d4d3c70ca42c466bed8d32458", - "3 | Source portfolio [3/3] : 123456", - "4 | Callers portfolio kind : Default", - "5 | Chain : Polymesh", - "6 | Nonce : 0", - "7 | Era Phase : 61", - "8 | Era Period : 64", - "9 | Block [1/2] : 6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7c", - "9 | Block [2/2] : aa37c6bc4d0c2fa12e8b2f4063" - ] - } -] \ No newline at end of file diff --git a/tests_zemu/tests/zemu_blobs.ts b/tests_zemu/tests/zemu_blobs.ts index 730b799..a9506fe 100644 --- a/tests_zemu/tests/zemu_blobs.ts +++ b/tests_zemu/tests/zemu_blobs.ts @@ -14,17 +14,14 @@ * limitations under the License. ******************************************************************************* */ -export const txBalances_transfer = - '050000313233343536373839303132333435363738393031323334353637383930313233158139ae28a3dfaac5fe1560a5e9e05cd5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063' - export const txIdentity_addClaim = - '070621fb3357f380fa8d142d491dfc8dade2d43b794f9a8e1b00a6b9df6a1262a64300015449434b45522d3334353637010001000000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063' + '070621fb3357f380fa8d142d491dfc8dade2d43b794f9a8e1b00a6b9df6a1262a6430001417373657449442d3537383632323132010001000000000000d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a' export const txStaking_nominate = - '110510003132333435363738393031323334353637383930313233343536373839303132003132333435363738393031323334353637383930313233343536373839303133003132333435363738393031323334353637383930313233343536373839303134003132333435363738393031323334353637383930313233343536373839303135d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063' + '110510003132333435363738393031323334353637383930313233343536373839303132003132333435363738393031323334353637383930313233343536373839303133003132333435363738393031323334353637383930313233343536373839303134003132333435363738393031323334353637383930313233343536373839303135d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a' export const txSession_setKeys = - '1300313233343536373839303132333435363738393031323334353637383930313231323334353637383930313233343536373839303132333435363738393031323132333435363738393031323334353637383930313233343536373839303132313233343536373839303132333435363738393031323334353637383930313200d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063' + '1300313233343536373839303132333435363738393031323334353637383930313231323334353637383930313233343536373839303132333435363738393031323132333435363738393031323334353637383930313233343536373839303132313233343536373839303132333435363738393031323334353637383930313200d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a' export const txUtility_batch = - '29000800000834340000083838d5038d2433158139ae28a3dfaac5fe1560a5e9e05c39995b00040000006fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f40636fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063' + '29000800000834340000083838d5038d2433158139ae28a3dfaac5fe1560a5e9e05cc0cf6a0007000000885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a885d727362e25873fb2c5fcda890a91018f52425b41ba30e0c1aaf1ab411dd0a'